Simplify CSS and JS registrations. CSS will now be imported using the

standard link and so can be merged.

svn path=/plone.app.discussion/trunk/; revision=50260
This commit is contained in:
Laurence Rowe 2011-06-05 21:52:01 +00:00
parent c27c8aa5ca
commit b18da3f1ae
3 changed files with 6 additions and 10 deletions

View File

@ -5,6 +5,10 @@ Changelog
2.0.5 (Unreleased)
------------------
- Simplify CSS and JS registrations. CSS will now be imported using the
standard link and so can be merged.
[elro]
- Enable the left-menu on the configlet, to be more consistent with all other configlets.
Related to https://dev.plone.org/plone/ticket/11737
[WouterVH]

View File

@ -1,8 +1,4 @@
<?xml version="1.0"?>
<object name="portal_css">
<stylesheet title=""
id="++resource++plone.app.discussion.stylesheets/discussion.css"
media="screen" rel="stylesheet" rendering="import"
cacheable="True" compression="safe" cookable="False"
enabled="1" expression=""/>
<stylesheet id="++resource++plone.app.discussion.stylesheets/discussion.css"/>
</object>

View File

@ -1,8 +1,4 @@
<?xml version="1.0"?>
<object name="portal_javascripts">
<javascript
id="++resource++plone.app.discussion.javascripts/comments.js"
cacheable="True" compression="safe" cookable="True"
enabled="True" expression="" inline="False"
/>
<javascript id="++resource++plone.app.discussion.javascripts/comments.js"/>
</object>