[Mpuls-commits] r1266 - wasko/branches/2.0/mpulsweb/lib

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Fri Feb 5 10:16:47 CET 2010


Author: torsten
Date: 2010-02-05 10:16:47 +0100 (Fri, 05 Feb 2010)
New Revision: 1266

Modified:
   wasko/branches/2.0/mpulsweb/lib/config.py
Log:
* mpulsweb/lib/config.py (MpulsConfig.build_defaults): Remove phase
definition


Modified: wasko/branches/2.0/mpulsweb/lib/config.py
===================================================================
--- wasko/branches/2.0/mpulsweb/lib/config.py	2010-02-05 09:08:48 UTC (rev 1265)
+++ wasko/branches/2.0/mpulsweb/lib/config.py	2010-02-05 09:16:47 UTC (rev 1266)
@@ -100,32 +100,18 @@
         # PHASES
         # --------
         # Available Phases:
-        set('phases', 'phases', ["0","1","2"])
+        set('phases', 'phases', [])
 
         # Description of phases
-        description = [{
-            "0": u"Eingangsdokumentation",
-            "1": u"Case Management",
-            "2": u"Nachbetreuung",
-            }]
+        description = []
         set('phases', 'description', description)
 
         # Phasepairs
-        pairs =[{
-            "0": ["0","1"],
-            "1": ["2","3"],
-            "2": ["4","5"],
-            }]
+        pairs =[]
         set('phases', 'pairs', pairs)
-        symbols = []
-        set('phases', 'symbols', symbols)
 
         # Succenssors and Predesessors
-        successors = [{
-            "0": ["1"],
-            "1": ["2"],
-            "2": [],
-            }]
+        successors = []
         set('phases', 'successors', successors)
 
         #  EVALUATIONS



More information about the Mpuls-commits mailing list