allura
修訂 | 92a04f43e22483b1dc13f7606168c11739543dee (tree) |
---|---|
時間 | 2010-04-24 00:22:52 |
作者 | Jonathan T. Beard <jbeard@geek...> |
Commiter | Jonathan T. Beard |
Temporary fix for discussion on re.sourceforge.net
@@ -44,7 +44,8 @@ def make_app(global_conf, full_stack=True, **app_conf): | ||
44 | 44 | ming.configure(**app_conf) |
45 | 45 | # Wrap your base TurboGears 2 application with custom middleware here |
46 | 46 | if hasattr(ew.ResourceManager, 'configure'): |
47 | - ew.ResourceManager.configure(compress=not asbool(global_conf['debug'])) | |
47 | +# ew.ResourceManager.configure(compress=not asbool(global_conf['debug'])) | |
48 | + ew.ResourceManager.configure(compress=False) | |
48 | 49 | ew.ResourceManager.register_all_resources() |
49 | 50 | return app |
50 | 51 |