- Timestamp:
- 3 Jun 2012, 17:58:59 (13 years ago)
- Location:
- main/waeup.futminna/trunk
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.futminna/trunk/README-zeo.txt
r8035 r8620 1 Deploying waeup. unibenas ZEO-install1 Deploying waeup.futminna as ZEO-install 2 2 ************************************* 3 3 … … 14 14 ======================== 15 15 16 To install waeup. unibenZEO-based you can run `buildout` with the given16 To install waeup.futminna ZEO-based you can run `buildout` with the given 17 17 (or your own) configuration file like this:: 18 18 -
main/waeup.futminna/trunk/buildout-windows.cfg
r8360 r8620 25 25 # This creates only the paster script in bin/. 26 26 recipe = zc.recipe.egg 27 eggs = waeup. uniben27 eggs = waeup.futminna 28 28 z3c.evalexception>=2.0 29 29 Paste -
main/waeup.futminna/trunk/buildout-zeo.cfg
r8061 r8620 112 112 # See http://pypi.python.org/pypi/zc.recipe.egg for details... 113 113 recipe = zc.recipe.egg 114 eggs = waeup. uniben[beaker]114 eggs = waeup.futminna [beaker] 115 115 arguments = "${buildout:parts-directory}/etc/zeo1.conf" 116 116 scripts = kofactl=zeo_client1 … … 119 119 # See http://pypi.python.org/pypi/zc.recipe.egg for details... 120 120 recipe = zc.recipe.egg 121 eggs = waeup. uniben[beaker]121 eggs = waeup.futminna [beaker] 122 122 arguments = "${buildout:parts-directory}/etc/zeo2.conf" 123 123 scripts = kofactl=zeo_client2 -
main/waeup.futminna/trunk/buildout.cfg
r8360 r8620 34 34 # This creates all scripts in bin/. The kofactl created here is 'faulty'. 35 35 recipe = zc.recipe.egg 36 eggs = waeup. uniben[beaker]36 eggs = waeup.futminna [beaker] 37 37 z3c.evalexception>=2.0 38 38 Paste … … 47 47 # fixed path to zdaemon.conf as argument. 48 48 recipe = zc.recipe.egg 49 eggs = waeup. uniben[beaker]49 eggs = waeup.futminna [beaker] 50 50 arguments = "${buildout:parts-directory}/etc/zdaemon.conf" 51 51 scripts = kofactl=kofactl … … 62 62 [test] 63 63 recipe = zc.recipe.testrunner 64 eggs = waeup. uniben[beaker, test]64 eggs = waeup.futminna [beaker, test] 65 65 defaults = ['--tests-pattern', '^f?tests$', '-v'] 66 66 … … 68 68 [i18n] 69 69 recipe = z3c.recipe.i18n:i18n 70 packages = waeup. uniben71 eggs = waeup. uniben72 domain = waeup. uniben73 output = src/waeup/ uniben/locales70 packages = waeup.futminna 71 eggs = waeup.futminna 72 domain = waeup.futminna 73 output = src/waeup/futminna/locales 74 74 zcml = 75 75 … … 78 78 [zpasswd] 79 79 recipe = z3c.recipe.dev:script 80 eggs = waeup. uniben80 eggs = waeup.futminna 81 81 module = zope.app.server.zpasswd 82 82 method = main … … 135 135 [waeupdocs] 136 136 recipe = collective.recipe.sphinxbuilder 137 eggs = waeup. uniben[docs]137 eggs = waeup.futminna[docs] 138 138 source = ${buildout:directory}/docs/source 139 139 build = ${buildout:directory}/docs/build … … 142 142 [coverage-detect] 143 143 recipe = zc.recipe.testrunner 144 eggs = waeup. uniben[beaker]144 eggs = waeup.futminna[beaker] 145 145 defaults = ['--tests-pattern', '^f?tests$', '-v', '--coverage', 'coverage'] 146 146 -
main/waeup.futminna/trunk/etc/debug.ini.in
r8020 r8620 54 54 55 55 [app:zope] 56 use = egg:waeup. uniben#debug56 use = egg:waeup.futminna#debug 57 57 filter-with = translogger 58 58 exempt-exceptions = zope.security.interfaces.IUnauthorized -
main/waeup.futminna/trunk/etc/deploy.ini.in
r8585 r8620 48 48 49 49 [app:main] 50 use = egg:waeup. uniben50 use = egg:waeup.futminna 51 51 filter-with = translogger 52 52 … … 54 54 use = egg:Paste#http 55 55 host = 0.0.0.0 56 port = 70 1156 port = 7041 57 57 58 58 [DEFAULT] -
main/waeup.futminna/trunk/etc/profile.ini.in
r8035 r8620 52 52 53 53 [app:app] 54 use = egg:waeup. uniben54 use = egg:waeup.futminna 55 55 56 56 [pipeline:main] -
main/waeup.futminna/trunk/etc/site.zcml.in
r8020 r8620 1 1 <configure xmlns="http://namespaces.zope.org/zope" 2 2 xmlns:kofa="http://namespaces.waeup.org/kofa" 3 i18n_domain="waeup. uniben">3 i18n_domain="waeup.futminna"> 4 4 5 <include package="waeup. uniben" />6 <include package="waeup. uniben" file="mail.zcml" />5 <include package="waeup.futminna" /> 6 <include package="waeup.futminna" file="mail.zcml" /> 7 7 8 8 <!-- Where should the datacenter reside by default? --> … … 10 10 path="${buildout:directory}/var/datacenter" /> 11 11 12 <configure i18n_domain="waeup. uniben">12 <configure i18n_domain="waeup.futminna"> 13 13 14 14 <unauthenticatedPrincipal id="zope.anybody" -
main/waeup.futminna/trunk/etc/zdaemon.conf.in
r5502 r8620 5 5 socket-name ${zope_conf:logfiles}/zdaemonsock 6 6 # Enable this to run the child process as a different user 7 # user zope7 user kofa 8 8 </runner> -
main/waeup.futminna/trunk/etc/zeo1.ini.in
r8061 r8620 48 48 49 49 [app:main] 50 use = egg:waeup. uniben50 use = egg:waeup.futminna 51 51 filter-with = translogger 52 52 … … 54 54 use = egg:Paste#http 55 55 host = 0.0.0.0 56 port = 70 1156 port = 7041 57 57 threadpool_workers = 50 58 58 use_threadpool = True -
main/waeup.futminna/trunk/etc/zeo2.ini.in
r8061 r8620 48 48 49 49 [app:main] 50 use = egg:waeup. uniben50 use = egg:waeup.futminna 51 51 filter-with = translogger 52 52 … … 54 54 use = egg:Paste#http 55 55 host = 0.0.0.0 56 port = 70 1256 port = 7042 57 57 threadpool_workers = 50 58 58 use_threadpool = True -
main/waeup.futminna/trunk/etc/zope_zeo1.conf.in
r8133 r8620 24 24 # Uncomment this if you want to connect to a ZEO server instead: 25 25 <zeoclient> 26 server localhost:70 1026 server localhost:7040 27 27 storage 1 28 28 # ZEO client cache, in bytes -
main/waeup.futminna/trunk/etc/zope_zeo2.conf.in
r8133 r8620 24 24 # Uncomment this if you want to connect to a ZEO server instead: 25 25 <zeoclient> 26 server localhost:70 1026 server localhost:7040 27 27 storage 1 28 28 # ZEO client cache, in bytes -
main/waeup.futminna/trunk/setup.py
r8443 r8620 43 43 read('README.txt') 44 44 + '\n\n' 45 + read('src', 'waeup', ' uniben', 'README.txt')45 + read('src', 'waeup', 'futminna', 'README.txt') 46 46 + '\n\n' 47 47 + read('CHANGES.txt') … … 51 51 ) 52 52 53 setup(name = 'waeup. uniben',53 setup(name = 'waeup.futminna', 54 54 version = version, 55 55 description = "A customized waeup.kofa", … … 89 89 # Add entry points here 90 90 [hurry.resource.libraries] 91 waeup_custom = waeup. uniben.browser.resources:waeup_custom91 waeup_custom = waeup.futminna.browser.resources:waeup_custom 92 92 [console_scripts] 93 93 kofa-debug = grokcore.startup:interactive_debug_prompt
Note: See TracChangeset for help on using the changeset viewer.