goa/skel/main.py
changeset 2485 ae74b46ea96c
parent 2476 1294a6bdf3bf
child 2650 18aec79ec3a3
--- a/goa/skel/main.py	Fri Jul 24 14:59:54 2009 +0200
+++ b/goa/skel/main.py	Fri Jul 24 15:00:49 2009 +0200
@@ -1,4 +1,4 @@
-"""module defining the root handler for a lax application. You should not have
+"""module defining the root handler for a lax instance. You should not have
 to change anything here.
 
 :organization: Logilab
@@ -8,7 +8,7 @@
 """
 __docformat__ = "restructuredtext en"
 
-# compute application's root directory
+# compute instance's root directory
 from os.path import dirname, abspath
 APPLROOT = dirname(abspath(__file__))
 
@@ -16,7 +16,7 @@
 from cubicweb import goa
 goa.do_monkey_patch()
 
-# get application's configuration (will be loaded from app.conf file)
+# get instance's configuration (will be loaded from app.conf file)
 from cubicweb.goa.goaconfig import GAEConfiguration
 GAEConfiguration.ext_resources['JAVASCRIPTS'].append('DATADIR/goa.js')
 config = GAEConfiguration('toto', APPLROOT)
@@ -29,13 +29,13 @@
 # before schema loading
 import custom
 
-# load application'schema
+# load instance'schema
 vreg.schema = config.load_schema()
 
 # load dynamic objects
 vreg.load(APPLROOT)
 
-# call the postinit so custom get a chance to do application specific stuff
+# call the postinit so custom get a chance to do instance specific stuff
 custom.postinit(vreg)
 
 from cubicweb.wsgi.handler import CubicWebWSGIApplication