INSTALL (Debian Lenny) ====================== 1. Requirements pylons ------ apt-get install python-pylons (>= 0.9.7, can be found in lenny backports) apt-get install python-psycopg2 apt-get install python-pybabel libformed --------- wget \ http://wald.intevation.org/frs/download.php/710/libformed_0.1.tar.gz tar xzvf libformed.tar.gz cd libformed python setup.py install libmpuls -------- wget \ http://wald.intevation.org/frs/download.php/705/libmpuls_0.4.4.tar.gz tar xzvf libmpuls_0.4.4.tar.gz cd libmpuls_0.4.4 python setup.py install mpuls ----- svn checkout \ https://svn.wald.intevation.org/svn/mpuls/wasko/branches/2.0 mpulsweb 2. Installation cd mpulsweb cp development.ini wasko.ini # Configure wasko.ini for for needs. See details below paster serve wasko.ini -> Server is up and running. :) CONFIGURATION ============= WASKO ----- 1. In the ini file: mpuls.app.name="WASKO" <- Choose whatever you want mpuls.app.config=%(here)s/wasko.json mpuls.app.instance=waskaweb mpuls.app.indexcontroller=waska * Setup database connection! 2. Temporary workaround to make i18n work cd mpulsweb ln -s ../waskaweb/i18n . cd .. python setup.py compile_catalog 3. Currently there are no more modifications needed. wasko.json already is ready to run. CASEMANAGEMENT CONFIGURATION ============================ Fields in case digest --------------------- Which fields are shown on the case digest page (URL /case/digest/) is currently defined in a python list called fields at the top of the template waskaweb/templates/casemanagement/digest_body.mako . The names in that list are the names used in the formed descripttion. Any name that outside of repeat groups can be used. Columns in case overview/search results --------------------------------------- Which columns are shown for whom in which way on the search results page (URL /case_overview) is determined by the python list called fields near the top of the template waskaweb/templates/casemanagement/caselist.mako. See the comments there for more information.