[z3-checkins] r45689 - in z3/hurry.workflow/trunk: . src/hurry/workflow
faassen at codespeak.net
faassen at codespeak.net
Wed Aug 15 21:11:56 CEST 2007
Author: faassen
Date: Wed Aug 15 21:11:55 2007
New Revision: 45689
Modified:
z3/hurry.workflow/trunk/CHANGES.txt
z3/hurry.workflow/trunk/setup.py
z3/hurry.workflow/trunk/src/hurry/workflow/configure.zcml
z3/hurry.workflow/trunk/src/hurry/workflow/workflow.py
Log:
Now actually apply the fixes!
Modified: z3/hurry.workflow/trunk/CHANGES.txt
==============================================================================
--- z3/hurry.workflow/trunk/CHANGES.txt (original)
+++ z3/hurry.workflow/trunk/CHANGES.txt Wed Aug 15 21:11:55 2007
@@ -1,6 +1,15 @@
hurry.workflow changes
**********************
+0.9.2.1 (2007-08-15)
+====================
+
+Bug fixes
+---------
+
+* Oops, the patches in 0.9.2 were not actually applied. Fixed them
+ now.
+
0.9.2 (2007-08-15)
==================
Modified: z3/hurry.workflow/trunk/setup.py
==============================================================================
--- z3/hurry.workflow/trunk/setup.py (original)
+++ z3/hurry.workflow/trunk/setup.py Wed Aug 15 21:11:55 2007
@@ -22,7 +22,7 @@
setup(
name="hurry.workflow",
- version="0.9.2",
+ version="0.9.2.1",
packages=find_packages('src'),
package_dir= {'':'src'},
Modified: z3/hurry.workflow/trunk/src/hurry/workflow/configure.zcml
==============================================================================
--- z3/hurry.workflow/trunk/src/hurry/workflow/configure.zcml (original)
+++ z3/hurry.workflow/trunk/src/hurry/workflow/configure.zcml Wed Aug 15 21:11:55 2007
@@ -2,14 +2,11 @@
xmlns="http://namespaces.zope.org/zope"
>
- <localUtility class=".workflow.Workflow">
- <factory
- id="hurry.workflow.Workflow"
- />
+ <class class=".workflow.Workflow">
<require
interface=".interfaces.IWorkflow"
permission="zope.Public"
/>
- </localUtility>
+ </class>
</configure>
Modified: z3/hurry.workflow/trunk/src/hurry/workflow/workflow.py
==============================================================================
--- z3/hurry.workflow/trunk/src/hurry/workflow/workflow.py (original)
+++ z3/hurry.workflow/trunk/src/hurry/workflow/workflow.py Wed Aug 15 21:11:55 2007
@@ -3,9 +3,9 @@
from persistent import Persistent
from zope.interface import implements
from zope.event import notify
-from zope.security.management import getInteraction, NoInteraction
-from zope.security.interfaces import Unauthorized
from zope.security.checker import CheckerPublic
+from zope.security.interfaces import NoInteraction, Unauthorized
+from zope.security.management import getInteraction
from zope.app import zapi
from zope.annotation.interfaces import IAnnotations
More information about the z3-checkins
mailing list