Changeset 7818
- Timestamp:
- 8 Mar 2012, 22:23:57 (13 years ago)
- Location:
- main/waeup.kofa/trunk/docs
- Files:
-
- 2 deleted
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/docs/INSTALL.txt
r7589 r7818 2 2 *************************************** 3 3 4 .. note:: `waeup. sirp` might not work with Python > 2.74 .. note:: `waeup.kofa` might not work with Python > 2.7 5 5 currently. Use of Python 2.6 or 2.7 is recommended. 6 6 … … 8 8 ============= 9 9 10 The `waeup. sirp` package is based on `Grok`_, which is a Python10 The `waeup.kofa` package is based on `Grok`_, which is a Python 11 11 framework for agile webapplication development. Grok itself is based 12 12 on `Zope`_. … … 24 24 compile the parts written in C. 25 25 26 To deploy `waeup. sirp` most easily, we use `zc.buildout`_26 To deploy `waeup.kofa` most easily, we use `zc.buildout`_ 27 27 28 28 .. _zc.buildout: http://cheeseshop.python.org/pypi/zc.buildout … … 57 57 eggs-directory = /home/bruno/buildout-eggs 58 58 59 Running the `waeup. sirp` application59 Running the `waeup.kofa` application 60 60 ====================================== 61 61 62 62 You can start Zope with the with the following command:: 63 63 64 $ bin/ sirpctl fg64 $ bin/kofactl fg 65 65 66 66 Alternatively you can do: -
main/waeup.kofa/trunk/docs/INSTALLWIN.txt
r7808 r7818 35 35 36 36 **Step 3**. Open up a command window and change to the folder where you want to place the sandbox 37 that will contain your K OFAproject. In this HowTo we will assume and recommend this folder is ``C:\`` ::37 that will contain your Kofa project. In this HowTo we will assume and recommend this folder is ``C:\`` :: 38 38 39 39 C:\[any_path]> cd c:\ … … 54 54 Note that the system prompt has changed. 55 55 56 Run K OFA56 Run Kofa 57 57 ======== 58 58 … … 72 72 (winkofa) C:\winkofa\waeup.kofa> ..\Scripts\deactivate 73 73 74 **Step 11**. Start your K OFA::74 **Step 11**. Start your Kofa:: 75 75 76 76 C:\winkofa\waeup.kofa> bin\paster serve parts\etc\deploy.ini … … 80 80 C:\[any_path]> C:\winkofa\trunk\bin\paster serve C:\winkofa\trunk\parts\etc\deploy.ini 81 81 82 **Step 12**. Visit the K OFAwebsite and create your university instance:82 **Step 12**. Visit the Kofa website and create your university instance: 83 83 84 84 | http://localhost:8080 -
main/waeup.kofa/trunk/docs/source/conf.py
r7808 r7818 1 1 # -*- coding: utf-8 -*- 2 2 # 3 # WAeUP Student Information and Registration Portal (K OFA) documentation build configuration file, created by3 # WAeUP Student Information and Registration Portal (Kofa) documentation build configuration file, created by 4 4 # sphinx-quickstart on Thu Jul 29 10:41:59 2010. 5 5 # … … 48 48 49 49 # General information about the project. 50 project = u'WAeUP.K OFA'50 project = u'WAeUP.Kofa' 51 51 copyright = u'2011, WAeUP Team' 52 52 … … 174 174 175 175 # Output file base name for HTML help builder. 176 htmlhelp_basename = 'WAeUPStudentInformationandRegistrationPortalK OFAdoc'176 htmlhelp_basename = 'WAeUPStudentInformationandRegistrationPortalKofadoc' 177 177 178 178 … … 188 188 # (source start file, target name, title, author, documentclass [howto/manual]). 189 189 latex_documents = [ 190 ('index', 'WAeUPStudentInformationandRegistrationPortalK OFA.tex', u'WAeUP Student Information and Registration Portal (KOFA) Documentation',190 ('index', 'WAeUPStudentInformationandRegistrationPortalKofa.tex', u'WAeUP Student Information and Registration Portal (Kofa) Documentation', 191 191 u'WAeUP Team', 'manual'), 192 192 ] -
main/waeup.kofa/trunk/docs/source/contents.rst
r7808 r7818 1 1 .. _contents: 2 2 3 WAeUP.K OFADocumentation Contents3 WAeUP.Kofa Documentation Contents 4 4 ================================= 5 5 -
main/waeup.kofa/trunk/docs/source/developerdocs/api/api_applicants.rst
r7808 r7818 26 26 applicants/api_browser 27 27 applicants/api_permissions 28 applicants/api_vocabularies29 28 applicants/api_workflow 30 29 -
main/waeup.kofa/trunk/docs/source/developerdocs/api/api_payments.rst
r7808 r7818 20 20 payments/api_payment 21 21 payments/api_container 22 payments/api_vocabularies23 22 payments/api_interfaces -
main/waeup.kofa/trunk/docs/source/developerdocs/developernotes.rst
r7808 r7818 2 2 *************** 3 3 4 How to setup a developer instance of the WAeUP.K OFA, handle tests, docs4 How to setup a developer instance of the WAeUP.Kofa, handle tests, docs 5 5 etc. 6 6 7 The new WAeUP.K OFAis based on `Grok <http://grok.zope.org/>`_.7 The new WAeUP.Kofa is based on `Grok <http://grok.zope.org/>`_. 8 8 9 9 Installing a developer copy … … 15 15 -------------------- 16 16 17 To create a working copy of the WAeUP.K OFAwe recommend use of17 To create a working copy of the WAeUP.Kofa we recommend use of 18 18 `virtualenv`. You, however, need also some basic libraries, a C 19 19 compiler and some things more. … … 127 127 In the sandbox (or anywhere else) we now create our real working 128 128 environment. To do this, we change to the sandbox and checkout the 129 sources of the WAeUP.K OFAfrom the subversion server::129 sources of the WAeUP.Kofa from the subversion server:: 130 130 131 131 $ cd mysandbox/ … … 277 277 278 278 Most unit tests furthermore declare that they want to be run inside 279 the `WAeUPK OFAUnitTestLayer` defined in `waeup.kofa.testing`. This279 the `WAeUPKofaUnitTestLayer` defined in `waeup.kofa.testing`. This 280 280 layer groks the whole `waeup.kofa` package, so that all ZCA 281 281 components are already setup when you start your tests. … … 284 284 layer, the testfile has to provide the following line:: 285 285 286 .. :layer: waeup.kofa.testing.WAeUPK OFAUnitTestLayer286 .. :layer: waeup.kofa.testing.WAeUPKofaUnitTestLayer 287 287 288 288 Use it, if in your tests you make use of registered components like -
main/waeup.kofa/trunk/docs/source/glossary.rst
r7808 r7818 6 6 .. glossary:: 7 7 8 K OFA8 Kofa 9 9 Student Information and Registration Portal. 10 10 -
main/waeup.kofa/trunk/docs/source/index.rst
r7808 r7818 1 .. WAeUP Student Information and Registration Portal (K OFA) documentation master file, created by1 .. WAeUP Student Information and Registration Portal (Kofa) documentation master file, created by 2 2 sphinx-quickstart on Thu Jul 29 10:41:59 2010. 3 3 You can adapt this file completely to your liking, but it should at least
Note: See TracChangeset for help on using the changeset viewer.