Changeset 11090 for main/kofacustom.nigeria
- Timestamp:
- 13 Feb 2014, 07:54:48 (11 years ago)
- Location:
- main/kofacustom.nigeria/branches/henrik-diazo-themed
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.nigeria/branches/henrik-diazo-themed/buildout.cfg
r10136 r11090 16 16 site_zcml 17 17 zdaemon_conf 18 deploy_ini 19 debug_ini 18 raw_deploy_ini 19 raw_debug_ini 20 themed_deploy_ini 21 themed_debug_ini 20 22 profile_ini 21 23 # waeupdocs … … 24 26 # kofactl creation must be _after_ app! 25 27 kofactl 28 lxml 29 diazo 26 30 # For backward compatibility, telling buildout not to throw away 27 31 # the data and log subdirectories from the parts directory. … … 34 38 update-versions-file = versions.cfg 35 39 40 36 41 # eggs will be installed in the default buildout location 37 42 # (see .buildout/default.cfg in your home directory) … … 39 44 40 45 [sources] 41 waeup.kofa = svn https://svn.waeup.org/repos/main/waeup.kofa/trunk 42 46 waeup.kofa = svn https://svn.waeup.org/repos/main/waeup.kofa/branches/uli-diazo-themed 43 47 [kofa_params] 44 48 ## Basic parameters for deployment. … … 64 68 # This creates all scripts in bin/. The kofactl created here is 'faulty'. 65 69 recipe = zc.recipe.egg 66 eggs = kofacustom.nigeria [beaker ]70 eggs = kofacustom.nigeria [beaker, diazo] 67 71 z3c.evalexception>=2.0 68 72 Paste … … 78 82 # fixed path to zdaemon.conf as argument. 79 83 recipe = zc.recipe.egg 80 eggs = kofacustom.nigeria [beaker ]84 eggs = kofacustom.nigeria [beaker, diazo] 81 85 waeup.kofa 82 86 arguments = "${buildout:parts-directory}/etc/zdaemon.conf" … … 151 155 output = ${buildout:parts-directory}/etc/zdaemon.conf 152 156 153 [deploy_ini] 154 recipe = collective.recipe.template 155 input = etc/deploy.ini.in 156 output = ${buildout:parts-directory}/etc/deploy.ini 157 158 [debug_ini] 159 recipe = collective.recipe.template 160 input = etc/debug.ini.in 161 output = ${buildout:parts-directory}/etc/debug.ini 157 [raw_debug_ini] 158 recipe = collective.recipe.template 159 input = etc/raw/debug.ini.in 160 output = ${buildout:parts-directory}/etc/raw-debug.ini 161 162 [raw_deploy_ini] 163 recipe = collective.recipe.template 164 input = etc/raw/deploy.ini.in 165 output = ${buildout:parts-directory}/etc/raw-deploy.ini 166 167 [themed_debug_ini] 168 recipe = collective.recipe.template 169 input = etc/themed/debug.ini.in 170 output = ${buildout:parts-directory}/etc/themed-debug.ini 171 172 [themed_deploy_ini] 173 recipe = collective.recipe.template 174 input = etc/themed/deploy.ini.in 175 output = ${buildout:parts-directory}/etc/themed-deploy.ini 162 176 163 177 [profile_ini] … … 191 205 scripts = coveragereport 192 206 arguments = ('${buildout:parts-directory}/coverage-detect/working-directory/coverage', '${buildout:directory}/coverage-report') 207 208 [lxml] 209 recipe = z3c.recipe.staticlxml 210 egg = lxml 211 212 [diazo] 213 recipe = zc.recipe.egg 214 eggs = 215 diazo [wsgi] 216 PasteScript 217 kofacustom.nigeria [beaker,diazo] -
main/kofacustom.nigeria/branches/henrik-diazo-themed/setup.py
r9226 r11090 33 33 'roman', 34 34 'repoze.sphinx.autointerface', 35 ] 36 37 diazo_require = [ 38 'diazo', 39 'webob', 35 40 ] 36 41 … … 81 86 docs = docs_require, 82 87 beaker = beaker_require, 88 diazo = diazo_require, 83 89 ), 84 90 entry_points=""" -
main/kofacustom.nigeria/branches/henrik-diazo-themed/src/kofacustom/nigeria/students/tests/test_browser.py
r11054 r11090 287 287 name='upload_acceptanceletterupload').click() 288 288 self.assertTrue( 289 ' <a target="image" href="acc_let">'289 'http://localhost/app/students/K1000000/acc_let' 290 290 in self.browser.contents) 291 291 self.browser.getControl( -
main/kofacustom.nigeria/branches/henrik-diazo-themed/versions.cfg
r10195 r11090 128 128 # zc.recipe.testrunner==2.0.0 129 129 zope.testrunner = 4.3.3 130 131 # Added by buildout at 2014-02-13 08:26:53.898100 132 WebOb = 1.3.1 133 diazo = 1.0.5 134 repoze.xmliter = 0.5 135 z3c.recipe.staticlxml = 0.10 136 137 # Required by: 138 # diazo==1.0.5 139 experimental.cssselect = 0.3 140 141 # Required by: 142 # diazo==1.0.5 143 # experimental.cssselect==0.3 144 lxml = 3.3.1 145 146 # Required by: 147 # z3c.recipe.staticlxml==0.10 148 zc.recipe.cmmi = 1.3.5
Note: See TracChangeset for help on using the changeset viewer.