- Timestamp:
- 16 Jan 2014, 10:23:22 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/branches/uli-diazo-themed/etc/themed/debug.ini.in
r10913 r10935 1 1 # debug.ini 2 2 # 3 # Debugging configuration for use with paster/WSGI 3 # Debugging configuration for use with paster/WSGI and diazo 4 4 # 5 5 … … 73 73 logger_name = wsgi 74 74 75 [filter -app:main]75 [filter:debugger] 76 76 # Change the last part from 'ajax' to 'pdb' for a post-mortem debugger 77 77 # on the console: 78 78 use = egg:z3c.evalexception#ajax 79 next = zope80 79 81 80 [app:zope] 82 81 use = egg:${kofa_params:devel_pkg}#debug 83 filter-with = translogger84 82 exempt-exceptions = zope.security.interfaces.IUnauthorized 83 84 [app:bootstrap] 85 use = egg:Paste#static 86 document_root = ${buildout:directory}/src/bootstrap/dist/ 87 88 [app:static] 89 use = egg:Paste#static 90 document_root = %(LAYOUT_DIR)s/static/ 91 92 [composite:main] 93 use = egg:Paste#urlmap 94 /static/bootstrap = bootstrap 95 /static/static = static 96 / = default 97 98 [filter:theme] 99 use = egg:diazo 100 rules = %(LAYOUT_DIR)s/base.xml 101 prefix = /static 102 doctype = <!DOCTYPE html> 103 # set to false, if you don't want base.xml being rebuild on each request 104 debug = true 105 106 [pipeline:default] 107 pipeline = theme 108 translogger 109 debugger 110 zope 85 111 86 112 [server:main] … … 93 119 zope_conf = %(here)s/zope.conf 94 120 env_vars = ZC_ASYNC_UUID ${buildout:directory}/var/uuid1.txt 121 # the directory where all real diazo config is done (no trailing slash) 122 LAYOUT_DIR = ${buildout:directory}/layout 123 STATIC_DIR = %(LAYOUT_DIR)s/static
Note: See TracChangeset for help on using the changeset viewer.