Changeset 7825


Ignore:
Timestamp:
9 Mar 2012, 10:32:18 (13 years ago)
Author:
Henrik Bettermann
Message:

Rename sirp-kofa part 3.

Location:
main/waeup.custom/trunk
Files:
8 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.custom/trunk/CHANGES.txt

    r5228 r7825  
    99
    1010* 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.
    1212
    1313* Added first rudimentary support for application plugins. Plugins are
     
    2828* Removed all references to stuff in university submodule into the
    2929  module itself or replaced it with proper code. This way the
    30   university submodule could be factored out of the waeup.sirp
     30  university submodule could be factored out of the waeup.kofa
    3131  package. Fixed bug #23.
    3232
  • main/waeup.custom/trunk/README.txt

    r5768 r7825  
    1 What is `waeup.sirp`?
     1What is `waeup.kofa`?
    22*********************
    33
    4 The WAeUP Student Information and Registration Portal. `waeup.sirp` is
     4The WAeUP Student Information and Registration Portal. `waeup.kofa` is
    55a web-based management tool for managing universities and schools.
    66
  • main/waeup.custom/trunk/buildout.cfg

    r7695 r7825  
    11[buildout]
    2 develop = . waeup.sirp
     2develop = . waeup.kofa
    33parts =
    44    eggbasket
     
    1616    coverage-detect
    1717    coverage-report
    18 # sirpctl creation must be _after_ app!
    19     sirpctl
     18# kofactl creation must be _after_ app!
     19    kofactl
    2020# For backward compatibility, telling buildout not to throw away
    2121# the data and log subdirectories from the parts directory.
     
    6060
    6161[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'.
    6363recipe = zc.recipe.egg
    6464eggs = waeup.custom [beaker]
     
    6969interpreter = python-console
    7070
    71 [sirpctl]
     71[kofactl]
    7272# See http://pypi.python.org/pypi/zc.recipe.egg for details...
    73 # Here we create the sirpctl script again, this time with a
     73# Here we create the kofactl script again, this time with a
    7474# fixed path to zdaemon.conf as argument.
    7575recipe = zc.recipe.egg
    7676eggs = waeup.custom [beaker]
    7777arguments = "${buildout:parts-directory}/etc/zdaemon.conf"
    78 scripts = sirpctl=sirpctl
     78scripts = kofactl=kofactl
    7979
    8080[mkdirs]
  • main/waeup.custom/trunk/etc/site.zcml.in

    r7607 r7825  
    11<configure xmlns="http://namespaces.zope.org/zope"
    2            xmlns:sirp="http://namespaces.waeup.org/sirp"
     2           xmlns:kofa="http://namespaces.waeup.org/kofa"
    33           i18n_domain="waeup.custom">
    44
     
    77
    88  <!-- Where should the datacenter reside by default? -->
    9   <sirp:datacenter
     9  <kofa:datacenter
    1010      path="${buildout:directory}/var/datacenter" />
    1111
  • main/waeup.custom/trunk/setup.py

    r7695 r7825  
    99    'grokui.admin',
    1010    'grokcore.startup',
    11     'waeup.sirp',
     11    'waeup.kofa',
    1212    ],
    1313
     
    5353setup(name = 'waeup.custom',
    5454      version = version,
    55       description = "A customized waeup.sirp",
     55      description = "A customized waeup.kofa",
    5656      long_description = long_description,
    5757
    58       keywords = "portal waeup sirp student university registration grok zope",
     58      keywords = "portal waeup kofa student university registration grok zope",
    5959      # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
    6060      classifiers = [
     
    9191      waeup_custom = waeup.custom.browser.resources:waeup_custom
    9292      [console_scripts]
    93       sirp-debug = grokcore.startup:interactive_debug_prompt
    94       sirpctl = grokcore.startup:zdaemon_controller
     93      kofa-debug = grokcore.startup:interactive_debug_prompt
     94      kofactl = grokcore.startup:zdaemon_controller
    9595      [paste.app_factory]
    9696      main = grokcore.startup:application_factory
Note: See TracChangeset for help on using the changeset viewer.