goa/dbinit.py
branchtls-sprint
changeset 1802 d628defebc17
parent 1398 5fe84a5f7035
child 1977 606923dff11b
--- a/goa/dbinit.py	Thu May 14 10:24:56 2009 +0200
+++ b/goa/dbinit.py	Thu May 14 11:38:40 2009 +0200
@@ -1,7 +1,7 @@
 """some utility functions for datastore initialization.
 
 :organization: Logilab
-:copyright: 2008 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
+:copyright: 2008-2009 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
 :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
 """
 __docformat__ = "restructuredtext en"
@@ -72,7 +72,7 @@
         dsrelation = 'o_' + rschema.type
         if not dsrelation in gaeentity:
             gaeentity[dsrelation] = None
-    
+
 def fix_entities(schema):
     for etype in ('CWUser', 'CWGroup'):
         eschema = schema.eschema(etype)
@@ -81,7 +81,7 @@
             # XXX o_is on CWEType entity
             gaeentity['s_is'] = Key.from_path('CWEType', 'key_' + etype, parent=None)
             Put(gaeentity)
-    
+
 def init_persistent_schema(ssession, schema):
     execute = ssession.unsafe_execute
     rql = ('INSERT CWEType X: X name %(name)s, X description %(descr)s,'
@@ -105,4 +105,3 @@
         execute('INSERT CWProperty X: X pkey %(pk)s, X value%(v)s',
                 {'pk': u'system.version.%s' % cube,
                  'v': unicode(config.cube_version(cube))})
-