Changeset 11140 for main/waeup.uniben
- Timestamp:
- 20 Feb 2014, 18:54:46 (11 years ago)
- Location:
- main/waeup.uniben/branches/henrik-diazo-themed
- Files:
-
- 13 added
- 6 deleted
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/branches/henrik-diazo-themed
- Property svn:ignore
-
old new 5 5 develop-eggs 6 6 parts 7 sources 7 8 var
-
- Property svn:ignore
-
main/waeup.uniben/branches/henrik-diazo-themed/CHANGES.txt
r7825 r11140 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.uniben/branches/henrik-diazo-themed/buildout-zeo.cfg
r9878 r11140 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.uniben [beaker ]121 eggs = waeup.uniben [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.uniben [beaker ]128 eggs = waeup.uniben [beaker, diazo] 125 129 arguments = "${buildout:parts-directory}/etc/zeo2.conf" 126 130 scripts = kofactl=zeo_client2 -
main/waeup.uniben/branches/henrik-diazo-themed/buildout.cfg
r10137 r11140 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. … … 41 45 42 46 [sources] 43 waeup.kofa = svn https://svn.waeup.org/repos/main/waeup.kofa/ trunk47 waeup.kofa = svn https://svn.waeup.org/repos/main/waeup.kofa/branches/uli-diazo-themed 44 48 kofacustom.nigeria = svn https://svn.waeup.org/repos/main/kofacustom.nigeria/trunk 45 49 … … 62 66 # number of preopened paster threads, default 10 63 67 threadpool_workers = 10 68 devel_pkg = waeup.uniben 64 69 65 70 [app] 66 71 # This creates all scripts in bin/. The kofactl created here is 'faulty'. 67 72 recipe = zc.recipe.egg 68 eggs = waeup.uniben [beaker ]73 eggs = waeup.uniben [beaker, diazo] 69 74 z3c.evalexception>=2.0 70 75 Paste … … 80 85 # fixed path to zdaemon.conf as argument. 81 86 recipe = zc.recipe.egg 82 eggs = waeup.uniben [beaker ]87 eggs = waeup.uniben [beaker, diazo] 83 88 arguments = "${buildout:parts-directory}/etc/zdaemon.conf" 84 89 scripts = kofactl=kofactl … … 146 151 output = ${buildout:parts-directory}/etc/zdaemon.conf 147 152 148 [deploy_ini] 149 recipe = collective.recipe.template 150 input = etc/deploy.ini.in 151 output = ${buildout:parts-directory}/etc/deploy.ini 152 153 [debug_ini] 154 recipe = collective.recipe.template 155 input = etc/debug.ini.in 156 output = ${buildout:parts-directory}/etc/debug.ini 153 [raw_debug_ini] 154 recipe = collective.recipe.template 155 input = etc/raw/debug.ini.in 156 output = ${buildout:parts-directory}/etc/raw-debug.ini 157 158 [raw_deploy_ini] 159 recipe = collective.recipe.template 160 input = etc/raw/deploy.ini.in 161 output = ${buildout:parts-directory}/etc/raw-deploy.ini 162 163 [themed_debug_ini] 164 recipe = collective.recipe.template 165 input = etc/themed/debug.ini.in 166 output = ${buildout:parts-directory}/etc/themed-debug.ini 167 168 [themed_deploy_ini] 169 recipe = collective.recipe.template 170 input = etc/themed/deploy.ini.in 171 output = ${buildout:parts-directory}/etc/themed-deploy.ini 157 172 158 173 [profile_ini] … … 186 201 scripts = coveragereport 187 202 arguments = ('${buildout:parts-directory}/coverage-detect/working-directory/coverage', '${buildout:directory}/coverage-report') 203 204 [lxml] 205 recipe = z3c.recipe.staticlxml 206 egg = lxml 207 208 [diazo] 209 recipe = zc.recipe.egg 210 eggs = 211 diazo [wsgi] 212 PasteScript 213 waeup.uniben [beaker, diazo] -
main/waeup.uniben/branches/henrik-diazo-themed/etc/zdaemon.conf.in
r5502 r11140 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.uniben/branches/henrik-diazo-themed/setup.py
r9222 r11140 2 2 from setuptools import setup, find_packages 3 3 4 version = ' 0.1dev'4 version = '1.0dev' 5 5 6 install_requires = 6 install_requires =[ 7 7 'setuptools', 8 8 'grok', … … 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=""" 90 # Add entry points here91 [hurry.resource.libraries]92 waeup_custom = waeup.uniben.browser.resources:waeup_custom93 96 [console_scripts] 94 97 kofa-debug = grokcore.startup:interactive_debug_prompt -
main/waeup.uniben/branches/henrik-diazo-themed/src/waeup/uniben/browser/tests.py
r8441 r11140 49 49 shutil.rmtree(self.dc_root) 50 50 51 def test_custom_theme(self):52 self.browser.addHeader('Authorization', 'Basic mgr:mgrpw')53 self.browser.open('http://localhost/app/configuration')54 self.assertMatches('...Uniben Theme...', self.browser.contents)55 self.browser.getControl(name="form.skin").value = ['custom theme']56 self.browser.getControl("Save").click()57 self.browser.open('http://localhost/app/configuration')58 return59 60 51 def test_access_live_url(self): 61 52 # We can't access the system with basic authentication -
main/waeup.uniben/branches/henrik-diazo-themed/versions.cfg
r10199 r11140 128 128 # zc.recipe.testrunner==2.0.0 129 129 zope.testrunner = 4.3.3 130 131 # Added by buildout at 2014-02-20 19:40:23.862079 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.