Changeset 1050 for www.gawel.org/trunk/src/wwwgawelorg/startup.py
- Timestamp:
- 07/26/08 11:35:31 (4 months ago)
- Files:
-
- 1 modified
-
www.gawel.org/trunk/src/wwwgawelorg/startup.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
www.gawel.org/trunk/src/wwwgawelorg/startup.py
r1036 r1050 14 14 comments='/tmp/comments', 15 15 vhost='www.gawel.org', 16 docs_root='', 16 17 docs_path=''): 17 18 engine = create_engine('sqlite:///%s' % comments) ⦠⦠20 21 21 22 zopeapp = zope.app.wsgi.getWSGIApplication(zope_conf) 22 vhost = '/++ skin++blurb/++vh++http:%s:80/++' % vhost23 vhost = '/++vh++http:%s:80/++' % vhost 23 24 24 25 def zopewrapper(environ, start_response): ⦠⦠26 27 return zopeapp(environ, start_response) 27 28 28 docsapp = sphinxdocs.wsgiapp.make_app(global_conf, docs_path) 29 docsapp = sphinxdocs.wsgiapp.make_app(global_conf, 30 root=docs_root, 31 path=docs_path) 29 32 30 33 app = URLMap({})



