[Checkins] SVN: zope.viewlet/trunk/ - Optimize the the script tag for the JS viewlet. This makes

Stephan Richter srichter at gmail.com
Sun Aug 2 01:28:26 EDT 2009


Log message for revision 102415:
  - Optimize the the script tag for the JS viewlet. This makes 
    YSlow happy.
  
  - Get ready for release.
  

Changed:
  U   zope.viewlet/trunk/CHANGES.txt
  U   zope.viewlet/trunk/setup.py
  U   zope.viewlet/trunk/src/zope/viewlet/javascript_viewlet.pt

-=-
Modified: zope.viewlet/trunk/CHANGES.txt
===================================================================
--- zope.viewlet/trunk/CHANGES.txt	2009-08-01 20:07:30 UTC (rev 102414)
+++ zope.viewlet/trunk/CHANGES.txt	2009-08-02 05:28:26 UTC (rev 102415)
@@ -2,9 +2,11 @@
 CHANGES
 =======
 
-3.5.1 (unreleased)
+3.6.0 (2009-08-02)
 ------------------
 
+- Optimize the the script tag for the JS viewlet. This makes YSlow happy.
+
 - Remove ZCML slugs and old zpkg-related files.
 
 - Drop all testing dependncies except ``zope.testing``.

Modified: zope.viewlet/trunk/setup.py
===================================================================
--- zope.viewlet/trunk/setup.py	2009-08-01 20:07:30 UTC (rev 102414)
+++ zope.viewlet/trunk/setup.py	2009-08-02 05:28:26 UTC (rev 102415)
@@ -22,7 +22,7 @@
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
 setup(name='zope.viewlet',
-      version = '3.5.1dev',
+      version = '3.6.0',
       author='Zope Corporation and Contributors',
       author_email='zope-dev at zope.org',
       description='Zope Viewlets',

Modified: zope.viewlet/trunk/src/zope/viewlet/javascript_viewlet.pt
===================================================================
--- zope.viewlet/trunk/src/zope/viewlet/javascript_viewlet.pt	2009-08-01 20:07:30 UTC (rev 102414)
+++ zope.viewlet/trunk/src/zope/viewlet/javascript_viewlet.pt	2009-08-02 05:28:26 UTC (rev 102415)
@@ -1,3 +1,2 @@
 <script type="text/javascript" src="some-library.js"
-        tal:attributes="src view/getURL">
-</script>
+        tal:attributes="src view/getURL"></script>



More information about the Checkins mailing list