Mercurial > piecrust2
view piecrust/wsgiutil/__init__.py @ 495:4284c673bb91
internal: Fix some edge-cases for splitting sub-URIs.
A given URI may or may not have a trailing slash, regardless of the
`trailing_slash` configuration setting. Add unit tests to check those cases.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Thu, 23 Jul 2015 22:11:59 -0700 |
parents | d40b744a9d99 |
children | cc6f3dbe3048 |
line wrap: on
line source
from piecrust.serving.server import Server def get_app(root_dir, sub_cache_dir='prod', enable_debug_info=False): server = Server(root_dir, sub_cache_dir=sub_cache_dir, enable_debug_info=enable_debug_info) app = server.getWsgiApp() return app