Changeset 7825 for main/waeup.custom/trunk
- Timestamp:
- 9 Mar 2012, 10:32:18 (13 years ago)
- Location:
- main/waeup.custom/trunk
- Files:
-
- 8 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.custom/trunk/CHANGES.txt
r5228 r7825 9 9 10 10 * Started switch to groktoolkit (grok 1.1) based 11 application. `waeup. sirp` is not compatible with grok 1.0 anymore.11 application. `waeup.kofa` is not compatible with grok 1.0 anymore. 12 12 13 13 * Added first rudimentary support for application plugins. Plugins are … … 28 28 * Removed all references to stuff in university submodule into the 29 29 module itself or replaced it with proper code. This way the 30 university submodule could be factored out of the waeup. sirp30 university submodule could be factored out of the waeup.kofa 31 31 package. Fixed bug #23. 32 32 -
main/waeup.custom/trunk/README.txt
r5768 r7825 1 What is `waeup. sirp`?1 What is `waeup.kofa`? 2 2 ********************* 3 3 4 The WAeUP Student Information and Registration Portal. `waeup. sirp` is4 The WAeUP Student Information and Registration Portal. `waeup.kofa` is 5 5 a web-based management tool for managing universities and schools. 6 6 -
main/waeup.custom/trunk/buildout.cfg
r7695 r7825 1 1 [buildout] 2 develop = . waeup. sirp2 develop = . waeup.kofa 3 3 parts = 4 4 eggbasket … … 16 16 coverage-detect 17 17 coverage-report 18 # sirpctl creation must be _after_ app!19 sirpctl18 # kofactl creation must be _after_ app! 19 kofactl 20 20 # For backward compatibility, telling buildout not to throw away 21 21 # the data and log subdirectories from the parts directory. … … 60 60 61 61 [app] 62 # This creates all scripts in bin/. The sirpctl created here is 'faulty'.62 # This creates all scripts in bin/. The kofactl created here is 'faulty'. 63 63 recipe = zc.recipe.egg 64 64 eggs = waeup.custom [beaker] … … 69 69 interpreter = python-console 70 70 71 [ sirpctl]71 [kofactl] 72 72 # See http://pypi.python.org/pypi/zc.recipe.egg for details... 73 # Here we create the sirpctl script again, this time with a73 # Here we create the kofactl script again, this time with a 74 74 # fixed path to zdaemon.conf as argument. 75 75 recipe = zc.recipe.egg 76 76 eggs = waeup.custom [beaker] 77 77 arguments = "${buildout:parts-directory}/etc/zdaemon.conf" 78 scripts = sirpctl=sirpctl78 scripts = kofactl=kofactl 79 79 80 80 [mkdirs] -
main/waeup.custom/trunk/etc/site.zcml.in
r7607 r7825 1 1 <configure xmlns="http://namespaces.zope.org/zope" 2 xmlns: sirp="http://namespaces.waeup.org/sirp"2 xmlns:kofa="http://namespaces.waeup.org/kofa" 3 3 i18n_domain="waeup.custom"> 4 4 … … 7 7 8 8 <!-- Where should the datacenter reside by default? --> 9 < sirp:datacenter9 <kofa:datacenter 10 10 path="${buildout:directory}/var/datacenter" /> 11 11 -
main/waeup.custom/trunk/setup.py
r7695 r7825 9 9 'grokui.admin', 10 10 'grokcore.startup', 11 'waeup. sirp',11 'waeup.kofa', 12 12 ], 13 13 … … 53 53 setup(name = 'waeup.custom', 54 54 version = version, 55 description = "A customized waeup. sirp",55 description = "A customized waeup.kofa", 56 56 long_description = long_description, 57 57 58 keywords = "portal waeup sirpstudent university registration grok zope",58 keywords = "portal waeup kofa student university registration grok zope", 59 59 # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers 60 60 classifiers = [ … … 91 91 waeup_custom = waeup.custom.browser.resources:waeup_custom 92 92 [console_scripts] 93 sirp-debug = grokcore.startup:interactive_debug_prompt94 sirpctl = grokcore.startup:zdaemon_controller93 kofa-debug = grokcore.startup:interactive_debug_prompt 94 kofactl = grokcore.startup:zdaemon_controller 95 95 [paste.app_factory] 96 96 main = grokcore.startup:application_factory
Note: See TracChangeset for help on using the changeset viewer.