[Checkins] SVN: Products.SQLAlchemyDA/trunk/ moved

Andreas Jung andreas at andreas-jung.com
Wed Mar 12 06:59:35 EDT 2008


Log message for revision 84601:
  moved
  

Changed:
  A   Products.SQLAlchemyDA/trunk/Products/SQLAlchemyDA/__init__.py
  D   Products.SQLAlchemyDA/trunk/__init__.py

-=-
Copied: Products.SQLAlchemyDA/trunk/Products/SQLAlchemyDA/__init__.py (from rev 84599, Products.SQLAlchemyDA/trunk/__init__.py)
===================================================================
--- Products.SQLAlchemyDA/trunk/Products/SQLAlchemyDA/__init__.py	                        (rev 0)
+++ Products.SQLAlchemyDA/trunk/Products/SQLAlchemyDA/__init__.py	2008-03-12 10:59:34 UTC (rev 84601)
@@ -0,0 +1,26 @@
+##########################################################################
+# A DA-like integration of SQLAlchemy based on z3c.sqlalchemy
+#
+# (C) Zope Corporation and Contributors
+# Written by Andreas Jung for Haufe Mediengruppe, Freiburg, Germany
+# and ZOPYX Ltd. & Co. KG, Tuebingen, Germany
+##########################################################################
+
+try:
+    import z3c.sqlalchemy
+except ImportError:
+    raise ImportError('The z3c.sqlalchemy is not installed properly')
+
+from config import ADD_SA_WRAPPER_PERMISSION
+
+
+def initialize(context):
+
+    from da import (SAWrapper, manage_addSAWrapper, 
+                   manage_addSAWrapperForm)
+
+    context.registerClass(SAWrapper, 
+                          constructors=(manage_addSAWrapperForm, 
+                                        manage_addSAWrapper),
+                          icon = SOFTWARE_HOME + '/Shared/DC/ZRDB/www/DBAdapterFolder_icon.gif',
+                          permission=ADD_SA_WRAPPER_PERMISSION)                          

Deleted: Products.SQLAlchemyDA/trunk/__init__.py
===================================================================
--- Products.SQLAlchemyDA/trunk/__init__.py	2008-03-12 10:59:11 UTC (rev 84600)
+++ Products.SQLAlchemyDA/trunk/__init__.py	2008-03-12 10:59:34 UTC (rev 84601)
@@ -1,26 +0,0 @@
-##########################################################################
-# A DA-like integration of SQLAlchemy based on z3c.sqlalchemy
-#
-# (C) Zope Corporation and Contributors
-# Written by Andreas Jung for Haufe Mediengruppe, Freiburg, Germany
-# and ZOPYX Ltd. & Co. KG, Tuebingen, Germany
-##########################################################################
-
-try:
-    import z3c.sqlalchemy
-except ImportError:
-    raise ImportError('The z3c.sqlalchemy is not installed properly')
-
-from config import ADD_SA_WRAPPER_PERMISSION
-
-
-def initialize(context):
-
-    from da import (SAWrapper, manage_addSAWrapper, 
-                   manage_addSAWrapperForm)
-
-    context.registerClass(SAWrapper, 
-                          constructors=(manage_addSAWrapperForm, 
-                                        manage_addSAWrapper),
-                          icon = SOFTWARE_HOME + '/Shared/DC/ZRDB/www/DBAdapterFolder_icon.gif',
-                          permission=ADD_SA_WRAPPER_PERMISSION)                          



More information about the Checkins mailing list