[Checkins] SVN: z3c.traverser/trunk/ eggification

Jürgen Kartnaller juergen at kartnaller.at
Thu Sep 21 19:38:42 EDT 2006


Log message for revision 70316:
  eggification

Changed:
  A   z3c.traverser/trunk/README.txt
  A   z3c.traverser/trunk/setup.cfg
  A   z3c.traverser/trunk/setup.py
  U   z3c.traverser/trunk/src/z3c/__init__.py

-=-
Added: z3c.traverser/trunk/README.txt
===================================================================
--- z3c.traverser/trunk/README.txt	2006-09-21 23:36:01 UTC (rev 70315)
+++ z3c.traverser/trunk/README.txt	2006-09-21 23:38:41 UTC (rev 70316)
@@ -0,0 +1,10 @@
+Traversers are Zope's mechanism to convert URI paths to an object of the
+application. They provide an extremly flexible mechanism to make decisions
+based on the policies of the application. Unfortunately the default traverser
+implementation is not flexible enough to deal with arbitrary extensions (via
+adapters) of objects that also wish to participate in the traversal decision
+process.
+
+The pluggable traverser allows developers, especially third-party developers,
+to add new traversers to an object without altering the original traversal
+implementation.


Property changes on: z3c.traverser/trunk/README.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Added: z3c.traverser/trunk/setup.cfg
===================================================================
--- z3c.traverser/trunk/setup.cfg	2006-09-21 23:36:01 UTC (rev 70315)
+++ z3c.traverser/trunk/setup.cfg	2006-09-21 23:38:41 UTC (rev 70316)
@@ -0,0 +1,3 @@
+[egg_info]
+tag_build = .dev
+tag_svn_revision = 1

Added: z3c.traverser/trunk/setup.py
===================================================================
--- z3c.traverser/trunk/setup.py	2006-09-21 23:36:01 UTC (rev 70315)
+++ z3c.traverser/trunk/setup.py	2006-09-21 23:38:41 UTC (rev 70316)
@@ -0,0 +1,19 @@
+#!python
+from setuptools import setup, find_packages
+
+setup(name='z3c.traverser',
+      version='0.1.0',
+      author = "Zope Community",
+      author_email = "zope3-dev at zope.org",
+      description = open("README.txt").read(),
+      license = "ZPL 2.1",
+      keywords = "zope zope3",
+      url='http://svn.zope.org//z3c.traverser',
+
+      zip_safe=False,
+      packages=find_packages('src'),
+      include_package_data=True,
+      package_dir = {'':'src'},
+      namespace_packages=['z3c',],
+     )
+


Property changes on: z3c.traverser/trunk/setup.py
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: z3c.traverser/trunk/src/z3c/__init__.py
===================================================================
--- z3c.traverser/trunk/src/z3c/__init__.py	2006-09-21 23:36:01 UTC (rev 70315)
+++ z3c.traverser/trunk/src/z3c/__init__.py	2006-09-21 23:38:41 UTC (rev 70316)
@@ -1 +1,5 @@
-# Make a package.
+# this is a namespace package
+try:
+    __import__('pkg_resources').declare_namespace(__name__)
+except ImportError:
+    pass



More information about the Checkins mailing list