Changeset 7818 for main/waeup.kofa


Ignore:
Timestamp:
8 Mar 2012, 22:23:57 (13 years ago)
Author:
Henrik Bettermann
Message:

KOFA -> Kofa

Remove outdated apis.

Location:
main/waeup.kofa/trunk/docs
Files:
2 deleted
9 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/docs/INSTALL.txt

    r7589 r7818  
    22***************************************
    33
    4 .. note:: `waeup.sirp` might not work with Python > 2.7
     4.. note:: `waeup.kofa` might not work with Python > 2.7
    55          currently. Use of Python 2.6 or 2.7 is recommended.
    66
     
    88=============
    99
    10 The `waeup.sirp` package is based on `Grok`_, which is a Python
     10The `waeup.kofa` package is based on `Grok`_, which is a Python
    1111framework for agile webapplication development. Grok itself is based
    1212on `Zope`_.
     
    2424compile the parts written in C.
    2525
    26 To deploy `waeup.sirp` most easily, we use `zc.buildout`_
     26To deploy `waeup.kofa` most easily, we use `zc.buildout`_
    2727
    2828.. _zc.buildout: http://cheeseshop.python.org/pypi/zc.buildout
     
    5757    eggs-directory = /home/bruno/buildout-eggs
    5858
    59 Running the `waeup.sirp` application
     59Running the `waeup.kofa` application
    6060======================================
    6161
    6262You can start Zope with the with the following command::
    6363
    64     $ bin/sirpctl fg
     64    $ bin/kofactl fg
    6565   
    6666Alternatively you can do:
  • main/waeup.kofa/trunk/docs/INSTALLWIN.txt

    r7808 r7818  
    3535
    3636**Step 3**. Open up a command window and change to the folder where you want to place the sandbox
    37 that will contain your KOFA project. In this HowTo we will assume and recommend this folder is ``C:\`` ::
     37that will contain your Kofa project. In this HowTo we will assume and recommend this folder is ``C:\`` ::
    3838
    3939  C:\[any_path]> cd c:\
     
    5454Note that the system prompt has changed.
    5555
    56 Run KOFA
     56Run Kofa
    5757========
    5858
     
    7272 (winkofa) C:\winkofa\waeup.kofa> ..\Scripts\deactivate
    7373
    74 **Step 11**. Start your KOFA::
     74**Step 11**. Start your Kofa::
    7575
    7676 C:\winkofa\waeup.kofa> bin\paster serve parts\etc\deploy.ini
     
    8080 C:\[any_path]> C:\winkofa\trunk\bin\paster serve C:\winkofa\trunk\parts\etc\deploy.ini
    8181
    82 **Step 12**. Visit the KOFA website and create your university instance:
     82**Step 12**. Visit the Kofa website and create your university instance:
    8383
    8484| http://localhost:8080
  • main/waeup.kofa/trunk/docs/source/conf.py

    r7808 r7818  
    11# -*- coding: utf-8 -*-
    22#
    3 # WAeUP Student Information and Registration Portal (KOFA) documentation build configuration file, created by
     3# WAeUP Student Information and Registration Portal (Kofa) documentation build configuration file, created by
    44# sphinx-quickstart on Thu Jul 29 10:41:59 2010.
    55#
     
    4848
    4949# General information about the project.
    50 project = u'WAeUP.KOFA'
     50project = u'WAeUP.Kofa'
    5151copyright = u'2011, WAeUP Team'
    5252
     
    174174
    175175# Output file base name for HTML help builder.
    176 htmlhelp_basename = 'WAeUPStudentInformationandRegistrationPortalKOFAdoc'
     176htmlhelp_basename = 'WAeUPStudentInformationandRegistrationPortalKofadoc'
    177177
    178178
     
    188188# (source start file, target name, title, author, documentclass [howto/manual]).
    189189latex_documents = [
    190   ('index', 'WAeUPStudentInformationandRegistrationPortalKOFA.tex', u'WAeUP Student Information and Registration Portal (KOFA) Documentation',
     190  ('index', 'WAeUPStudentInformationandRegistrationPortalKofa.tex', u'WAeUP Student Information and Registration Portal (Kofa) Documentation',
    191191   u'WAeUP Team', 'manual'),
    192192]
  • main/waeup.kofa/trunk/docs/source/contents.rst

    r7808 r7818  
    11.. _contents:
    22
    3 WAeUP.KOFA Documentation Contents
     3WAeUP.Kofa Documentation Contents
    44=================================
    55
  • main/waeup.kofa/trunk/docs/source/developerdocs/api/api_applicants.rst

    r7808 r7818  
    2626   applicants/api_browser
    2727   applicants/api_permissions
    28    applicants/api_vocabularies
    2928   applicants/api_workflow
    3029
  • main/waeup.kofa/trunk/docs/source/developerdocs/api/api_payments.rst

    r7808 r7818  
    2020   payments/api_payment
    2121   payments/api_container
    22    payments/api_vocabularies
    2322   payments/api_interfaces
  • main/waeup.kofa/trunk/docs/source/developerdocs/developernotes.rst

    r7808 r7818  
    22***************
    33
    4 How to setup a developer instance of the WAeUP.KOFA, handle tests, docs
     4How to setup a developer instance of the WAeUP.Kofa, handle tests, docs
    55etc.
    66
    7 The new WAeUP.KOFA is based on `Grok <http://grok.zope.org/>`_.
     7The new WAeUP.Kofa is based on `Grok <http://grok.zope.org/>`_.
    88
    99Installing a developer copy
     
    1515--------------------
    1616
    17 To create a working copy of the WAeUP.KOFA we recommend use of
     17To create a working copy of the WAeUP.Kofa we recommend use of
    1818`virtualenv`. You, however, need also some basic libraries, a C
    1919compiler and some things more.
     
    127127In the sandbox (or anywhere else) we now create our real working
    128128environment. To do this, we change to the sandbox and checkout the
    129 sources of the WAeUP.KOFA from the subversion server::
     129sources of the WAeUP.Kofa from the subversion server::
    130130
    131131  $ cd mysandbox/
     
    277277
    278278  Most unit tests furthermore declare that they want to be run inside
    279   the `WAeUPKOFAUnitTestLayer` defined in `waeup.kofa.testing`. This
     279  the `WAeUPKofaUnitTestLayer` defined in `waeup.kofa.testing`. This
    280280  layer groks the whole `waeup.kofa` package, so that all ZCA
    281281  components are already setup when you start your tests.
     
    284284  layer, the testfile has to provide the following line::
    285285
    286     .. :layer: waeup.kofa.testing.WAeUPKOFAUnitTestLayer
     286    .. :layer: waeup.kofa.testing.WAeUPKofaUnitTestLayer
    287287
    288288  Use it, if in your tests you make use of registered components like
  • main/waeup.kofa/trunk/docs/source/glossary.rst

    r7808 r7818  
    66.. glossary::
    77
    8    KOFA
     8   Kofa
    99     Student Information and Registration Portal.
    1010
  • main/waeup.kofa/trunk/docs/source/index.rst

    r7808 r7818  
    1 .. WAeUP Student Information and Registration Portal (KOFA) documentation master file, created by
     1.. WAeUP Student Information and Registration Portal (Kofa) documentation master file, created by
    22   sphinx-quickstart on Thu Jul 29 10:41:59 2010.
    33   You can adapt this file completely to your liking, but it should at least
Note: See TracChangeset for help on using the changeset viewer.