[Zope3-checkins]
SVN: Zope3/branches/srichter-twisted-integration/src/zope/app/server/http.py
Some name changes for clarity.
Stephan Richter
srichter at cosmos.phy.tufts.edu
Tue Apr 19 15:32:37 EDT 2005
Log message for revision 30048:
Some name changes for clarity.
Changed:
U Zope3/branches/srichter-twisted-integration/src/zope/app/server/http.py
-=-
Modified: Zope3/branches/srichter-twisted-integration/src/zope/app/server/http.py
===================================================================
--- Zope3/branches/srichter-twisted-integration/src/zope/app/server/http.py 2005-04-19 18:52:51 UTC (rev 30047)
+++ Zope3/branches/srichter-twisted-integration/src/zope/app/server/http.py 2005-04-19 19:32:37 UTC (rev 30048)
@@ -34,12 +34,12 @@
https = SSLServerType(createHTTPFactory, 8443)
-def createHTTPFactory(db):
+def createPMHTTPFactory(db):
resource = twisted.web2.wsgi.WSGIResource(
wsgi.PMDBWSGIPublisherApplication(db))
return twisted.web2.server.Site(resource)
-pmhttp = ServerType(createHTTPFactory, 8080)
+pmhttp = ServerType(createPMHTTPFactory, 8080)
More information about the Zope3-Checkins
mailing list