[Checkins] SVN: z3ext.cssregistry/tags/1.3.2/ release tag

Nikolay Kim fafhrd at datacom.kz
Mon Nov 24 06:11:45 EST 2008


Log message for revision 93300:
  release tag

Changed:
  A   z3ext.cssregistry/tags/1.3.2/
  D   z3ext.cssregistry/tags/1.3.2/CHANGES.txt
  A   z3ext.cssregistry/tags/1.3.2/CHANGES.txt
  U   z3ext.cssregistry/tags/1.3.2/setup.py
  D   z3ext.cssregistry/tags/1.3.2/src/z3ext/cssregistry/configlet.zcml
  A   z3ext.cssregistry/tags/1.3.2/src/z3ext/cssregistry/configlet.zcml

-=-
Deleted: z3ext.cssregistry/tags/1.3.2/CHANGES.txt
===================================================================
--- z3ext.cssregistry/trunk/CHANGES.txt	2008-11-23 22:08:40 UTC (rev 93287)
+++ z3ext.cssregistry/tags/1.3.2/CHANGES.txt	2008-11-24 11:11:44 UTC (rev 93300)
@@ -1,74 +0,0 @@
-=======
-CHANGES
-=======
-
-1.3.1 (2008-11-13)
-------------------
-
-- Added property title
-
-- Property description is i18n aware
-
-- Fix Persistent property management
-
-- Added translations: ru, nl
-
-
-1.3.0 (2008-10-10)
-------------------
-
-- Update i18n
-
-- Do not use Persistent for registry and property
-
-
-1.2.2 (2008-04-01)
-------------------
-
-- Configlet declaration moved to seperate zcml file
-
-
-1.2.1 (2008-03-31)
-------------------
-
-- Fix wrong import
-
-
-1.2.0 (2008-03-21)
-------------------
-
-- tests updated
-
-- move to svn.zope.org
-
-
-1.1.3 (2008-02-11)
-------------------
-
-- Fixed control panel configlet
-
-
-1.1.2 (2008-02-08)
-------------------
-
-- Security declarations fixed
-
-
-1.1.1 (2008-02-08)
-------------------
-
-- Remove support cssregistry as utility
-
-
-1.1.0 (2008-02-08)
-------------------
-
-- Added controlpanel configlet
-
-- Code cleanup
-
-
-1.0.0 (2007-12-01)
-------------------
-
-- Initial release.

Copied: z3ext.cssregistry/tags/1.3.2/CHANGES.txt (from rev 93299, z3ext.cssregistry/trunk/CHANGES.txt)
===================================================================
--- z3ext.cssregistry/tags/1.3.2/CHANGES.txt	                        (rev 0)
+++ z3ext.cssregistry/tags/1.3.2/CHANGES.txt	2008-11-24 11:11:44 UTC (rev 93300)
@@ -0,0 +1,80 @@
+=======
+CHANGES
+=======
+
+1.3.2 (2008-11-24)
+------------------
+
+- Include z3ext.controlpanel if installed
+
+
+1.3.1 (2008-11-13)
+------------------
+
+- Added property title
+
+- Property description is i18n aware
+
+- Fix Persistent property management
+
+- Added translations: ru, nl
+
+
+1.3.0 (2008-10-10)
+------------------
+
+- Update i18n
+
+- Do not use Persistent for registry and property
+
+
+1.2.2 (2008-04-01)
+------------------
+
+- Configlet declaration moved to seperate zcml file
+
+
+1.2.1 (2008-03-31)
+------------------
+
+- Fix wrong import
+
+
+1.2.0 (2008-03-21)
+------------------
+
+- tests updated
+
+- move to svn.zope.org
+
+
+1.1.3 (2008-02-11)
+------------------
+
+- Fixed control panel configlet
+
+
+1.1.2 (2008-02-08)
+------------------
+
+- Security declarations fixed
+
+
+1.1.1 (2008-02-08)
+------------------
+
+- Remove support cssregistry as utility
+
+
+1.1.0 (2008-02-08)
+------------------
+
+- Added controlpanel configlet
+
+- Code cleanup
+
+
+1.0.0 (2007-12-01)
+------------------
+
+- Initial release.

Modified: z3ext.cssregistry/tags/1.3.2/setup.py
===================================================================
--- z3ext.cssregistry/trunk/setup.py	2008-11-23 22:08:40 UTC (rev 93287)
+++ z3ext.cssregistry/tags/1.3.2/setup.py	2008-11-24 11:11:44 UTC (rev 93300)
@@ -21,7 +21,7 @@
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-version = '1.3.2dev'
+version = '1.3.2'
 
 
 setup(name='z3ext.cssregistry',

Deleted: z3ext.cssregistry/tags/1.3.2/src/z3ext/cssregistry/configlet.zcml
===================================================================
--- z3ext.cssregistry/trunk/src/z3ext/cssregistry/configlet.zcml	2008-11-23 22:08:40 UTC (rev 93287)
+++ z3ext.cssregistry/tags/1.3.2/src/z3ext/cssregistry/configlet.zcml	2008-11-24 11:11:44 UTC (rev 93300)
@@ -1,37 +0,0 @@
-<configure 
-   xmlns="http://namespaces.zope.org/zope"
-   xmlns:zcml="http://namespaces.zope.org/zcml"
-   xmlns:z3ext="http://namespaces.zope.org/z3ext"
-   xmlns:browser="http://namespaces.zope.org/browser"
-   zcml:condition="installed z3ext.controlpanel"
-   i18n_domain="z3ext.cssregistry">
-
-  <include package="z3ext.controlpanel" file="meta.zcml" />
-
-  <z3ext:configlet
-     name="ui.cssregistry"
-     title="CSS Properties"
-     description="CSS properties registry configuration."
-     schema=".interfaces.ICSSRegistryConfiglet"
-     class=".configlet.CSSRegistryConfiglet" />
-  
-  <adapter factory=".configlet.portalCssRegistry" />
-
-  <class class=".configlet.CSSRegistryConfiglet">
-    <require
-       permission="zope.Public"
-       attributes="name title"
-       interface="zope.interface.common.mapping.IEnumerableMapping" />
-    <require
-       permission="z3ext.Configure"
-       interface="zope.interface.common.mapping.IWriteMapping" />
-  </class>
-  
-  <browser:page
-     name="index.html"
-     for=".interfaces.ICSSRegistryConfiglet"
-     template="configletview.pt"
-     class=".configletview.ViewRegistry"
-     permission="z3ext.Configure" />
-
-</configure>

Copied: z3ext.cssregistry/tags/1.3.2/src/z3ext/cssregistry/configlet.zcml (from rev 93299, z3ext.cssregistry/trunk/src/z3ext/cssregistry/configlet.zcml)
===================================================================
--- z3ext.cssregistry/tags/1.3.2/src/z3ext/cssregistry/configlet.zcml	                        (rev 0)
+++ z3ext.cssregistry/tags/1.3.2/src/z3ext/cssregistry/configlet.zcml	2008-11-24 11:11:44 UTC (rev 93300)
@@ -0,0 +1,38 @@
+<configure 
+   xmlns="http://namespaces.zope.org/zope"
+   xmlns:zcml="http://namespaces.zope.org/zcml"
+   xmlns:z3ext="http://namespaces.zope.org/z3ext"
+   xmlns:browser="http://namespaces.zope.org/browser"
+   zcml:condition="installed z3ext.controlpanel"
+   i18n_domain="z3ext.cssregistry">
+
+  <include package="z3ext.controlpanel" file="meta.zcml" />
+  <include package="z3ext.controlpanel" />
+
+  <z3ext:configlet
+     name="ui.cssregistry"
+     title="CSS Properties"
+     description="CSS properties registry configuration."
+     schema=".interfaces.ICSSRegistryConfiglet"
+     class=".configlet.CSSRegistryConfiglet" />
+  
+  <adapter factory=".configlet.portalCssRegistry" />
+
+  <class class=".configlet.CSSRegistryConfiglet">
+    <require
+       permission="zope.Public"
+       attributes="name title"
+       interface="zope.interface.common.mapping.IEnumerableMapping" />
+    <require
+       permission="z3ext.Configure"
+       interface="zope.interface.common.mapping.IWriteMapping" />
+  </class>
+  
+  <browser:page
+     name="index.html"
+     for=".interfaces.ICSSRegistryConfiglet"
+     template="configletview.pt"
+     class=".configletview.ViewRegistry"
+     permission="z3ext.Configure" />
+
+</configure>



More information about the Checkins mailing list