etwist/twconfig.py
changeset 2476 1294a6bdf3bf
parent 1977 606923dff11b
child 2657 de974465d381
--- a/etwist/twconfig.py	Fri Jul 24 13:50:59 2009 +0200
+++ b/etwist/twconfig.py	Fri Jul 24 14:33:37 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