[Zope3-checkins] SVN: Zope3/trunk/src/zc/ Added externals for zc.sourcefactory since this package is used in zope.app.form (testing)

Roger Ineichen roger at projekt01.ch
Thu Dec 11 00:13:09 EST 2008


Log message for revision 93880:
  Added externals for zc.sourcefactory since this package is used in zope.app.form (testing)
  and without this package the test will not pass. I'm not sure if this old style dev trunk
  is really used anymore, but since it's useful for debugging and prototyping I think it's
  fine to keep it up to date. 

Changed:
  A   Zope3/trunk/src/zc/
  A   Zope3/trunk/src/zc/__init__.py

-=-

Property changes on: Zope3/trunk/src/zc
___________________________________________________________________
Added: svn:externals
   + sourcefactory          svn://svn.zope.org/repos/main/zc.sourcefactory/trunk/src/zc/sourcefactory


Added: Zope3/trunk/src/zc/__init__.py
===================================================================
--- Zope3/trunk/src/zc/__init__.py	                        (rev 0)
+++ Zope3/trunk/src/zc/__init__.py	2008-12-11 05:13:09 UTC (rev 93880)
@@ -0,0 +1,22 @@
+##############################################################################
+#
+# Copyright (c) 2004 Zope Corporation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+#
+# This file is necessary to make this directory a package.
+
+try:
+    # Declare this a namespace package if pkg_resources is available.
+    import pkg_resources
+    pkg_resources.declare_namespace('zc')
+except ImportError:
+    pass



More information about the Zope3-Checkins mailing list