Changeset 11075
- Timestamp:
- 12 Feb 2014, 17:12:11 (11 years ago)
- Location:
- main/waeup.skeleton/branches/uli-diazo-themed
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.skeleton/branches/uli-diazo-themed/CHANGES.txt
r10761 r11075 1 1 Changes 2 2 ******* 3 1.0 (unreleased) 4 ================ 5 6 * Diazofied whole package. 7 3 8 4 9 0.2 (unreleased) -
main/waeup.skeleton/branches/uli-diazo-themed/buildout-zeo.cfg
r10761 r11075 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.skeleton [beaker ]121 eggs = waeup.skeleton [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.skeleton [beaker ]128 eggs = waeup.skeleton [beaker, diazo] 125 129 arguments = "${buildout:parts-directory}/etc/zeo2.conf" 126 130 scripts = kofactl=zeo_client2 -
main/waeup.skeleton/branches/uli-diazo-themed/buildout.cfg
r10761 r11075 18 18 site_zcml 19 19 zdaemon_conf 20 deploy_ini 21 debug_ini 20 raw_deploy_ini 21 raw_debug_ini 22 themed_deploy_ini 23 themed_debug_ini 22 24 profile_ini 23 25 waeupdocs … … 26 28 # kofactl creation must be _after_ app! 27 29 kofactl 30 lxml 31 diazo 28 32 # For backward compatibility, telling buildout not to throw away 29 33 # the data and log subdirectories from the parts directory. … … 32 36 # newest = false 33 37 34 extends = versions.cfg 38 extends = 39 http://good-py.appspot.com/release/diazo/1.0 40 versions.cfg 35 41 show-picked-versions = true 36 42 update-versions-file = versions.cfg … … 63 69 # number of preopened paster threads, default 10 64 70 threadpool_workers = 10 71 devel_pkg = waeup.skeleton 65 72 66 73 [app] 67 74 # This creates all scripts in bin/. The kofactl created here is 'faulty'. 68 75 recipe = zc.recipe.egg 69 eggs = waeup.skeleton [beaker ]76 eggs = waeup.skeleton [beaker, diazo] 70 77 z3c.evalexception>=2.0 71 78 Paste … … 81 88 # fixed path to zdaemon.conf as argument. 82 89 recipe = zc.recipe.egg 83 eggs = waeup.skeleton [beaker ]90 eggs = waeup.skeleton [beaker, diazo] 84 91 arguments = "${buildout:parts-directory}/etc/zdaemon.conf" 85 92 scripts = kofactl=kofactl … … 147 154 output = ${buildout:parts-directory}/etc/zdaemon.conf 148 155 149 [deploy_ini] 150 recipe = collective.recipe.template 151 input = etc/deploy.ini.in 152 output = ${buildout:parts-directory}/etc/deploy.ini 153 154 [debug_ini] 155 recipe = collective.recipe.template 156 input = etc/debug.ini.in 157 output = ${buildout:parts-directory}/etc/debug.ini 156 [raw_debug_ini] 157 recipe = collective.recipe.template 158 input = etc/raw/debug.ini.in 159 output = ${buildout:parts-directory}/etc/raw-debug.ini 160 161 [raw_deploy_ini] 162 recipe = collective.recipe.template 163 input = etc/raw/deploy.ini.in 164 output = ${buildout:parts-directory}/etc/raw-deploy.ini 165 166 [themed_debug_ini] 167 recipe = collective.recipe.template 168 input = etc/themed/debug.ini.in 169 output = ${buildout:parts-directory}/etc/themed-debug.ini 170 171 [themed_deploy_ini] 172 recipe = collective.recipe.template 173 input = etc/themed/deploy.ini.in 174 output = ${buildout:parts-directory}/etc/themed-deploy.ini 158 175 159 176 [profile_ini] … … 187 204 scripts = coveragereport 188 205 arguments = ('${buildout:parts-directory}/coverage-detect/working-directory/coverage', '${buildout:directory}/coverage-report') 206 207 [lxml] 208 recipe = z3c.recipe.staticlxml 209 egg = lxml 210 211 [diazo] 212 recipe = zc.recipe.egg 213 eggs = 214 diazo [wsgi] 215 PasteScript 216 waeup.skeleton [beaker, diazo] -
main/waeup.skeleton/branches/uli-diazo-themed/etc/zdaemon.conf.in
r10761 r11075 1 1 <runner> 2 program ${buildout:directory}/bin/paster serve ${buildout:directory}/parts/etc/ deploy.ini2 program ${buildout:directory}/bin/paster serve ${buildout:directory}/parts/etc/themed-deploy.ini 3 3 daemon on 4 4 transcript ${zope_conf:logfiles}/zdaemon.log -
main/waeup.skeleton/branches/uli-diazo-themed/setup.py
r10761 r11075 2 2 from setuptools import setup, find_packages 3 3 4 version = '0. 1dev'4 version = '0.2dev' 5 5 6 6 install_requires = [ … … 21 21 'dolmen.beaker', 22 22 ] 23 24 diazo_require = [ 25 'diazo', 26 'webob', 27 ] 23 28 24 29 tests_require = [ … … 86 91 docs = docs_require, 87 92 beaker = beaker_require, 93 diazo = diazo_require, 88 94 ), 89 95 entry_points=""" -
main/waeup.skeleton/branches/uli-diazo-themed/versions.cfg
r10761 r11075 128 128 # zc.recipe.testrunner==2.0.0 129 129 zope.testrunner = 4.3.3 130 131 # Added by buildout at 2014-02-12 16:15:49.898520 132 z3c.recipe.staticlxml = 0.10 133 134 # Required by: 135 # z3c.recipe.staticlxml==0.10 136 zc.recipe.cmmi = 1.3.5
Note: See TracChangeset for help on using the changeset viewer.