[Checkins] SVN: z3c.authenticator/trunk/ Removed svn:externals since we have eggs

Roger Ineichen roger at projekt01.ch
Tue Apr 15 22:45:56 EDT 2008


Log message for revision 85415:
  Removed svn:externals since we have eggs
  Added generations package
  Prepare for release

Changed:
  U   z3c.authenticator/trunk/CHANGES.txt
  D   z3c.authenticator/trunk/TODO.txt
  U   z3c.authenticator/trunk/buildout.cfg
  D   z3c.authenticator/trunk/externals/
  U   z3c.authenticator/trunk/setup.py
  U   z3c.authenticator/trunk/src/z3c/authenticator/README.txt
  U   z3c.authenticator/trunk/src/z3c/authenticator/configure.zcml
  A   z3c.authenticator/trunk/src/z3c/authenticator/generations/
  A   z3c.authenticator/trunk/src/z3c/authenticator/generations/__init__.py
  A   z3c.authenticator/trunk/src/z3c/authenticator/generations/configure.zcml

-=-
Modified: z3c.authenticator/trunk/CHANGES.txt
===================================================================
--- z3c.authenticator/trunk/CHANGES.txt	2008-04-16 02:10:55 UTC (rev 85414)
+++ z3c.authenticator/trunk/CHANGES.txt	2008-04-16 02:45:56 UTC (rev 85415)
@@ -2,7 +2,7 @@
 CHANGES
 =======
 
-Version 0.5.0 (unreleased)
--------------------------
+Version 0.5.0 (2008-04-16)
+--------------------------
 
 - Initial Release

Deleted: z3c.authenticator/trunk/TODO.txt
===================================================================
--- z3c.authenticator/trunk/TODO.txt	2008-04-16 02:10:55 UTC (rev 85414)
+++ z3c.authenticator/trunk/TODO.txt	2008-04-16 02:45:56 UTC (rev 85415)
@@ -1,9 +0,0 @@
-====
-TODO
-====
-
-- implement nickName, email and phone?
-
-- check imports
-
-- check dependency in buildout setup

Modified: z3c.authenticator/trunk/buildout.cfg
===================================================================
--- z3c.authenticator/trunk/buildout.cfg	2008-04-16 02:10:55 UTC (rev 85414)
+++ z3c.authenticator/trunk/buildout.cfg	2008-04-16 02:45:56 UTC (rev 85415)
@@ -1,8 +1,5 @@
 [buildout]
 develop = .
-          externals/z3c.contents
-          externals/z3c.table
-
 parts = test checker coverage-test coverage-report
 
 

Modified: z3c.authenticator/trunk/setup.py
===================================================================
--- z3c.authenticator/trunk/setup.py	2008-04-16 02:10:55 UTC (rev 85414)
+++ z3c.authenticator/trunk/setup.py	2008-04-16 02:45:56 UTC (rev 85415)
@@ -23,7 +23,7 @@
 
 setup (
     name='z3c.authenticator',
-    version='0.5.0dev',
+    version='0.5.0',
     author = "Roger Ineichen and the Zope Community",
     author_email = "zope3-dev at zope.org",
     description = "IAuthentication implementation for for Zope3",

Modified: z3c.authenticator/trunk/src/z3c/authenticator/README.txt
===================================================================
--- z3c.authenticator/trunk/src/z3c/authenticator/README.txt	2008-04-16 02:10:55 UTC (rev 85414)
+++ z3c.authenticator/trunk/src/z3c/authenticator/README.txt	2008-04-16 02:45:56 UTC (rev 85415)
@@ -442,4 +442,3 @@
 
   >>> authenticated.email
   u'max at foobar.com'
-

Modified: z3c.authenticator/trunk/src/z3c/authenticator/configure.zcml
===================================================================
--- z3c.authenticator/trunk/src/z3c/authenticator/configure.zcml	2008-04-16 02:10:55 UTC (rev 85414)
+++ z3c.authenticator/trunk/src/z3c/authenticator/configure.zcml	2008-04-16 02:45:56 UTC (rev 85415)
@@ -2,6 +2,8 @@
     xmlns="http://namespaces.zope.org/zope"
     i18n_domain="z3c">
 
+  <include package=".generations" />
+
   <class class=".authentication.Authenticator">
     <implements
         interface="zope.annotation.interfaces.IAttributeAnnotatable"

Added: z3c.authenticator/trunk/src/z3c/authenticator/generations/__init__.py
===================================================================
--- z3c.authenticator/trunk/src/z3c/authenticator/generations/__init__.py	                        (rev 0)
+++ z3c.authenticator/trunk/src/z3c/authenticator/generations/__init__.py	2008-04-16 02:45:56 UTC (rev 85415)
@@ -0,0 +1,20 @@
+##############################################################################
+#
+# Copyright (c) 2003, 2004, 2005 Projekt01 GmbH.
+# All Rights Reserved.
+#
+##############################################################################
+"""
+$Id: __init__.py 25 2006-04-17 13:17:27Z roger.ineichen $
+"""
+__docformat__ = "reStructuredText"
+
+from zope.app.generations.generations import SchemaManager
+
+pkg = 'z3c.authenticator.generations'
+
+
+schemaManager = SchemaManager(
+    minimum_generation=0,
+    generation=0,
+    package_name=pkg)


Property changes on: z3c.authenticator/trunk/src/z3c/authenticator/generations/__init__.py
___________________________________________________________________
Name: svn:eol-style
   + native

Added: z3c.authenticator/trunk/src/z3c/authenticator/generations/configure.zcml
===================================================================
--- z3c.authenticator/trunk/src/z3c/authenticator/generations/configure.zcml	                        (rev 0)
+++ z3c.authenticator/trunk/src/z3c/authenticator/generations/configure.zcml	2008-04-16 02:45:56 UTC (rev 85415)
@@ -0,0 +1,9 @@
+<configure xmlns="http://namespaces.zope.org/zope">
+
+  <utility
+      name="z3c.authenticator"
+      provides="zope.app.generations.interfaces.ISchemaManager"
+      component=".schemaManager"
+      />
+
+</configure>


Property changes on: z3c.authenticator/trunk/src/z3c/authenticator/generations/configure.zcml
___________________________________________________________________
Name: svn:eol-style
   + native



More information about the Checkins mailing list