Changeset 11050 for main/waeup.kofa/branches
- Timestamp:
- 4 Feb 2014, 14:26:41 (11 years ago)
- Location:
- main/waeup.kofa/branches/uli-diazo-themed
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/branches/uli-diazo-themed/buildout-zeo.cfg
r9217 r11050 13 13 site_zcml 14 14 zdaemon_conf 15 deploy_ini 16 debug_ini 15 raw_deploy_ini 16 raw_debug_ini 17 themed_deploy_ini 18 themed_debug_ini 17 19 profile_ini 18 20 zeo1_ini … … 23 25 # kofactl creation must be _after_ app! 24 26 kofactl 27 lxml 28 diazo 25 29 # For backward compatibility, telling buildout not to throw away 26 30 # the data and log subdirectories from the parts directory. … … 115 119 # See http://pypi.python.org/pypi/zc.recipe.egg for details... 116 120 recipe = zc.recipe.egg 117 eggs = waeup.kofa [beaker ]121 eggs = waeup.kofa [beaker, diazo] 118 122 arguments = "${buildout:parts-directory}/etc/zeo1.conf" 119 123 scripts = kofactl=zeo_client1 … … 122 126 # See http://pypi.python.org/pypi/zc.recipe.egg for details... 123 127 recipe = zc.recipe.egg 124 eggs = waeup.kofa [beaker ]128 eggs = waeup.kofa [beaker, diazo] 125 129 arguments = "${buildout:parts-directory}/etc/zeo2.conf" 126 130 scripts = kofactl=zeo_client2 -
main/waeup.kofa/branches/uli-diazo-themed/etc/zeo1.ini.in
r9893 r11050 80 80 logger_name = wsgi 81 81 82 [app: main]82 [app:zope] 83 83 use = egg:${kofa_params:devel_pkg} 84 84 filter-with = translogger 85 86 [app:static] 87 use = egg:Paste#static 88 document_root = %(LAYOUT_DIR)s/static/ 89 90 [pipeline:default] 91 pipeline = theme 92 zope 93 94 [composite:main] 95 use = egg:Paste#urlmap 96 /static = static 97 / = default 98 99 [filter:theme] 100 use = egg:diazo 101 rules = %(LAYOUT_DIR)s/rules.xml 102 prefix = / 103 doctype = <!DOCTYPE html> 104 # set to true, if you want rules.xml being rebuild on each request 105 debug = false 85 106 86 107 [server:main] … … 95 116 zope_conf = %(here)s/zope_zeo1.conf 96 117 env_vars = ZC_ASYNC_UUID ${buildout:directory}/var/uuid1.txt 118 LAYOUT_DIR = ${buildout:directory}/layout 119 STATIC_DIR = %(LAYOUT_DIR)s/static -
main/waeup.kofa/branches/uli-diazo-themed/etc/zeo2.ini.in
r9893 r11050 80 80 logger_name = wsgi 81 81 82 [app: main]82 [app:zope] 83 83 use = egg:${kofa_params:devel_pkg} 84 84 filter-with = translogger 85 86 [app:static] 87 use = egg:Paste#static 88 document_root = %(LAYOUT_DIR)s/static 89 90 [pipeline:default] 91 pipeline = theme 92 zope 93 94 [composite:main] 95 use = egg:Paste#urlmap 96 /static = static 97 / = default 98 99 [filter:theme] 100 use = egg:diazo 101 rules = %(LAYOUT_DIR)s/rules.xml 102 prefix = / 103 doctype = <!DOCTYPE html> 104 # set to true, if you want rules.xml being rebuild on each request 105 debug = false 85 106 86 107 [server:main] … … 95 116 zope_conf = %(here)s/zope_zeo2.conf 96 117 env_vars = ZC_ASYNC_UUID ${buildout:directory}/var/uuid2.txt 118 LAYOUT_DIR = ${buildout:directory}/layout 119 STATIC_DIR = %(LAYOUT_DIR)s/static
Note: See TracChangeset for help on using the changeset viewer.