[Mpuls-commits] r1263 - wasko/branches/2.0

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Fri Feb 5 09:59:19 CET 2010


Author: torsten
Date: 2010-02-05 09:59:16 +0100 (Fri, 05 Feb 2010)
New Revision: 1263

Modified:
   wasko/branches/2.0/development.ini
Log:
* development.ini: Adoped development.ini file for mpulsweb. Added
comments and some config vars.


Modified: wasko/branches/2.0/development.ini
===================================================================
--- wasko/branches/2.0/development.ini	2010-02-05 08:34:51 UTC (rev 1262)
+++ wasko/branches/2.0/development.ini	2010-02-05 08:59:16 UTC (rev 1263)
@@ -1,5 +1,5 @@
 #
-# waskaweb - Pylons development environment configuration
+# mpulsweb - Pylons development environment configuration
 #
 # The %(here)s variable will be replaced with the parent directory of this file
 #
@@ -9,7 +9,6 @@
 #email_to = you at yourdomain.com
 smtp_server = localhost
 error_email_from = paste at localhost
-formed_tree = ../../formed/formedtree_web.xml
 
 # set this to 'false' if you do not want the application
 # to handle static content.
@@ -17,26 +16,37 @@
 
 # Name of the application
 mpuls.app.name = "Default application Name"
+
 # You can provide a user specific configuration for the mpuls server.
 mpuls.app.root=%(here)s
+
+# Where is the config file for this application. Config is used to define
+# which moduls are enabled or which phases are present.
 mpuls.app.config=%(here)s/default.json
-mpuls.app.instance=waskaweb
-mpuls.app.path=%(mpuls.app.root)s/%(mpuls.app.instance)s
+# What is the name of the application instance. This is the name of the
+# directory containing the instance specific controller, templates and model.
+mpuls.app.instance=mpulsweb
+# Which controller should be the entry point of the appliction?
+mpuls.app.indexcontroller=waska
 
 # installation specific search paths
+mpuls.app.path=%(mpuls.app.root)s/%(mpuls.app.instance)s
 mpuls.app.path.public = %(mpuls.app.path)s/public 
-mpuls.app.path.i18n = 
-mpuls.app.path.addons = 
+mpuls.app.path.controllers = %(mpuls.app.path)s/controllers
 mpuls.app.path.templates = %(mpuls.app.path)s/templates
+#mpuls.app.path.i18n = 
+#mpuls.app.path.addons = 
 
 # for connections to PostgeSQL database
 # db_database: %s will be replaced by certificate value
-# db_user:     first %s -> database name, second %s -> user
+mpuls.db.host     = 127.0.0.1 
+mpuls.db.port     = 5432 
+# Define fallback name of the database if fetching name from
+# SSL_CLIENT_S_DN_CN in ssl certificte fails. 
 mpuls.db.name     = mydb 
 mpuls.db.database = ka_%s_db
+# db_user:     first %s -> database name, second %s -> user
 mpuls.db.user     = ka_%s_%s
-mpuls.db.host     = 127.0.0.1 
-mpuls.db.port     = 5432 
 
 [server:main]
 use = egg:Paste#http
@@ -45,11 +55,11 @@
 #ssl_pem = *
 
 [app:main]
-use = egg:waskaweb
+use = egg:mpulsweb
 lang = de 
 full_stack = true
 cache_dir = %(here)s/data
-beaker.session.key = waskaweb
+beaker.session.key = mpulsweb
 beaker.session.secret = somesecret
 beaker.session.timeout = 1800 
 #beaker.session.type = memory 
@@ -68,7 +78,7 @@
 
 # Logging configuration
 [loggers]
-keys = root, waskaweb
+keys = root, mpulsweb
 
 [handlers]
 keys = console
@@ -80,10 +90,10 @@
 level = INFO
 handlers = console
 
-[logger_waskaweb]
+[logger_mpulsweb]
 level = DEBUG
 handlers =
-qualname = waskaweb
+qualname = mpulsweb
 
 [handler_console]
 class = StreamHandler



More information about the Mpuls-commits mailing list