diff -r b6753521129d -r 1294a6bdf3bf server/__init__.py --- a/server/__init__.py Fri Jul 24 13:50:59 2009 +0200 +++ b/server/__init__.py Fri Jul 24 14:33:37 2009 +0200 @@ -31,9 +31,9 @@ from cubicweb.server.sqlutils import sqlexec, sqlschema, sqldropschema # configuration to avoid db schema loading and user'state checking # on connection - read_application_schema = config.read_application_schema + read_instance_schema = config.read_instance_schema bootstrap_schema = config.bootstrap_schema - config.read_application_schema = False + config.read_instance_schema = False config.creating = True config.bootstrap_schema = True config.consider_user_state = False @@ -137,11 +137,11 @@ session.close() # restore initial configuration config.creating = False - config.read_application_schema = read_application_schema + config.read_instance_schema = read_instance_schema config.bootstrap_schema = bootstrap_schema config.consider_user_state = True config.set_language = True - print '-> database for application %s initialized.' % config.appid + print '-> database for instance %s initialized.' % config.appid def initialize_schema(config, schema, mhandler, event='create'): @@ -153,7 +153,7 @@ # execute cubes pre script if any for path in reversed(paths): mhandler.exec_event_script('pre%s' % event, path) - # enter application'schema into the database + # enter instance'schema into the database serialize_schema(mhandler.rqlcursor, schema) # execute cubicweb's post script mhandler.exec_event_script('post%s' % event)