[z3-checkins] r28814 - in z3/hurry.workflow/trunk: . src/hurry src/hurry/file src/hurry/query

faassen at codespeak.net faassen at codespeak.net
Thu Jun 15 15:14:21 CEST 2006


Author: faassen
Date: Thu Jun 15 15:14:20 2006
New Revision: 28814

Added:
   z3/hurry.workflow/trunk/hurry.workflow-configure.zcml
Removed:
   z3/hurry.workflow/trunk/VERSION.txt
   z3/hurry.workflow/trunk/hurry-configure.zcml
   z3/hurry.workflow/trunk/src/hurry/configure.zcml
   z3/hurry.workflow/trunk/src/hurry/file/
   z3/hurry.workflow/trunk/src/hurry/query/
   z3/hurry.workflow/trunk/zc.catalog-configure.zcml
Modified:
   z3/hurry.workflow/trunk/CHANGES.txt
   z3/hurry.workflow/trunk/CREDITS.txt
   z3/hurry.workflow/trunk/INSTALL.txt
   z3/hurry.workflow/trunk/LICENSE.txt
   z3/hurry.workflow/trunk/README.txt
   z3/hurry.workflow/trunk/src/hurry/__init__.py
Log:
Lots of cleanups to separate out hurry.workflow from hurry.


Modified: z3/hurry.workflow/trunk/CHANGES.txt
==============================================================================
--- z3/hurry.workflow/trunk/CHANGES.txt	(original)
+++ z3/hurry.workflow/trunk/CHANGES.txt	Thu Jun 15 15:14:20 2006
@@ -1,5 +1,12 @@
-hurry changes
-=============
+hurry.workflow changes
+======================
+
+unreleased
+----------
+
+* separate out from hurry package into hurry.workflow
+
+* eggification work
 
 0.8 (2006-05-01)
 ----------------

Modified: z3/hurry.workflow/trunk/CREDITS.txt
==============================================================================
--- z3/hurry.workflow/trunk/CREDITS.txt	(original)
+++ z3/hurry.workflow/trunk/CREDITS.txt	Thu Jun 15 15:14:20 2006
@@ -4,5 +4,5 @@
 Martijn Faassen - initial and main developer
 Jan-Wijbrand Kolman - suggestions and feedback
 
-The hurry library for Zope 3 was originally developed at Infrae
-(http://www.infrae.com).
+The hurry.workflow library for Zope 3 was originally developed at
+Infrae (http://www.infrae.com).

Modified: z3/hurry.workflow/trunk/INSTALL.txt
==============================================================================
--- z3/hurry.workflow/trunk/INSTALL.txt	(original)
+++ z3/hurry.workflow/trunk/INSTALL.txt	Thu Jun 15 15:14:20 2006
@@ -1,14 +1,8 @@
 Installation
 ------------
 
-Hurry needs Zope 3.1 or Zope 3.2. 
+hurry.workflow needs Zope 3.3.
 
-Make sure hurry's src directory is on the Python path somehow, and
-then copy hurry-configure.zcml into your Zope's `etc/package-includes`
-directory.
-
-hurry.query also has support for zc.catalog SetIndexes in
-hurry.query.set. If you want to use this extension, you need to
-install zc.catalog. It can be found in Zope's SVN repository.  You
-then also need to copy `zc.catalog-configure.zcml` into your Zope's
+Make sure hurry.workflow's src directory is on the Python path
+somehow, and then copy hurry.workflow-configure.zcml into your Zope's
 `etc/package-includes` directory.

Modified: z3/hurry.workflow/trunk/LICENSE.txt
==============================================================================
--- z3/hurry.workflow/trunk/LICENSE.txt	(original)
+++ z3/hurry.workflow/trunk/LICENSE.txt	Thu Jun 15 15:14:20 2006
@@ -1,4 +1,4 @@
-Copyright (c) 2005 Infrae. All rights reserved.
+Copyright (c) 2005-2006 Infrae. All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are

Modified: z3/hurry.workflow/trunk/README.txt
==============================================================================
--- z3/hurry.workflow/trunk/README.txt	(original)
+++ z3/hurry.workflow/trunk/README.txt	Thu Jun 15 15:14:20 2006
@@ -1,17 +1,2 @@
-Packages that could be generic and eventually might, in changed form,
-end up in the Zope 3 core or Zope 3 ECM, but that we (at Infrae) built
-in isolation for now, as we're in a hurry to use them.
-
-It includes:
-
-hurry.query - higher level query system built on top of the Zope 3
-              catalog. Some inspiration came from Dieter Maurer's
-              AdvancedQuery. See src/hurry/query/query.txt for
-              documentation.
-
 hurry.workflow - a simple but quite nifty workflow system. See
              src/hurry/workflow/workflow.txt for documentation.
-
-hurry.file - advanced file widget which tries its best to behave like
-             other widgets. See the doctest in
-             src/hurry/file/browser/file.txt for some documentation.

Deleted: /z3/hurry.workflow/trunk/VERSION.txt
==============================================================================
--- /z3/hurry.workflow/trunk/VERSION.txt	Thu Jun 15 15:14:20 2006
+++ (empty file)
@@ -1 +0,0 @@
-0.8

Deleted: /z3/hurry.workflow/trunk/hurry-configure.zcml
==============================================================================
--- /z3/hurry.workflow/trunk/hurry-configure.zcml	Thu Jun 15 15:14:20 2006
+++ (empty file)
@@ -1,3 +0,0 @@
-<!-- install this into your Zope 3 instance's etc/package-includes 
-     directory -->
-<include package="hurry"/>

Added: z3/hurry.workflow/trunk/hurry.workflow-configure.zcml
==============================================================================
--- (empty file)
+++ z3/hurry.workflow/trunk/hurry.workflow-configure.zcml	Thu Jun 15 15:14:20 2006
@@ -0,0 +1,3 @@
+<!-- install this into your Zope 3 instance's etc/package-includes 
+     directory -->
+<include package="hurry.workflow"/>
\ No newline at end of file

Modified: z3/hurry.workflow/trunk/src/hurry/__init__.py
==============================================================================
--- z3/hurry.workflow/trunk/src/hurry/__init__.py	(original)
+++ z3/hurry.workflow/trunk/src/hurry/__init__.py	Thu Jun 15 15:14:20 2006
@@ -1 +1,5 @@
-# this is a package
+# this is a namespace package
+try:
+    __import__('pkg_resources').declare_namespace(__name__)
+except ImportError:
+    pass

Deleted: /z3/hurry.workflow/trunk/src/hurry/configure.zcml
==============================================================================
--- /z3/hurry.workflow/trunk/src/hurry/configure.zcml	Thu Jun 15 15:14:20 2006
+++ (empty file)
@@ -1,11 +0,0 @@
-<configure
-  xmlns="http://namespaces.zope.org/zope"
-  >
-  
-  <include package=".workflow"/>
-
-  <include package=".file"/>
-
-  <include package=".query" />
-
-</configure>

Deleted: /z3/hurry.workflow/trunk/zc.catalog-configure.zcml
==============================================================================
--- /z3/hurry.workflow/trunk/zc.catalog-configure.zcml	Thu Jun 15 15:14:20 2006
+++ (empty file)
@@ -1,5 +0,0 @@
-<!-- install this into your Zope 3 instance's etc/package-includes 
-     directory. You need zc.catalog installed in your Zope 3 installation.
-     Right now you can get it from Zope 3 svn in Sandbox/zc/catalog/)
---> 
-<include package="zc.catalog"/>


More information about the z3-checkins mailing list