diff -r 7e9283731db8 -r ae74b46ea96c etwist/twconfig.py --- a/etwist/twconfig.py Fri Jul 24 14:59:54 2009 +0200 +++ b/etwist/twconfig.py Fri Jul 24 15:00:49 2009 +0200 @@ -1,9 +1,9 @@ """twisted server configurations: -* the "twisted" configuration to get a web application running in a standalone +* the "twisted" configuration to get a web instance running in a standalone twisted web server which talk to a repository server using Pyro -* the "all-in-one" configuration to get a web application running in a twisted +* the "all-in-one" configuration to get a web instance running in a twisted web server integrating a repository server in the same process (only available if the repository part of the software is installed @@ -19,7 +19,7 @@ from cubicweb.web.webconfig import WebConfiguration, merge_options, Method class TwistedConfiguration(WebConfiguration): - """web application (in a twisted web server) client of a RQL server""" + """web instance (in a twisted web server) client of a RQL server""" name = 'twisted' options = merge_options(( @@ -81,7 +81,7 @@ from cubicweb.server.serverconfig import ServerConfiguration class AllInOneConfiguration(TwistedConfiguration, ServerConfiguration): - """repository and web application in the same twisted process""" + """repository and web instance in the same twisted process""" name = 'all-in-one' repo_method = 'inmemory' options = merge_options(TwistedConfiguration.options