[Zope-Checkins] CVS: Zope3 - z3.py:1.1.2.6
Brian Lloyd
brian@digicool.com
Mon, 19 Nov 2001 16:27:54 -0500
Update of /cvs-repository/Zope3
In directory cvs.zope.org:/tmp/cvs-serv2345
Modified Files:
Tag: Zope-3x-branch
z3.py
Log Message:
moved global registration to config.py for now
=== Zope3/z3.py 1.1.2.5 => 1.1.2.6 ===
import Zope.Server, asyncore, zLOG
-Zope.Server.setNumberOfThreads(4)
+# temp hack
+import config
+
+Zope.Server.setNumberOfThreads(4)
class App(RootFolder):
""" """
- __implements__ = IBrowserPublisher
def __call__(self, URL):
+ """ """
return 'You have reached the wrong number. Please try again later.'
def index_html(self):
+ """ """
return 'You have reached the index_html method. Death to index_html!'