Ran update_copyright.py.
[hooke.git] / hooke / plugin / __init__.py
index 7f58b82e4cae6076f11799e2e3972db9b64b7a97..da7b929eca67de3fe6105173c5c78f685679a079 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2010 W. Trevor King <wking@drexel.edu>
+# Copyright (C) 2010-2012 W. Trevor King <wking@drexel.edu>
 #
 # This file is part of Hooke.
 #
@@ -34,7 +34,6 @@ PLUGIN_MODULES = [
     ('convfilt', True),
     ('cut', True),
 #    ('fclamp', True),
-#    ('flatfilts-rolf', True),
     ('flatfilt', True),
 #    ('jumpstat', True),
 #    ('massanalysis', True),
@@ -42,8 +41,6 @@ PLUGIN_MODULES = [
 #    ('multifit', True),
 #    ('pcluster', True),
     ('polymer_fit', True),
-#    ('procplots', True),
-#    ('review', True),
 #    ('showconvoluted', True),
 #    ('superimpose', True),
 #    ('tccd', True),
@@ -55,9 +52,11 @@ default.  TODO: autodiscovery
 """
 
 BUILTIN_MODULES = [
+    'command_stack',
     'config',
     'curve',
     'debug',
+    'engine',
     'license',
     'note',
     'playlist',
@@ -169,7 +168,6 @@ def default_settings():
 def load_graph(graph, config, include_section):
     enabled = {}
     items = []
-    conditions = config.items('conditions')
     for node in graph:
         item = node.data
         try:
@@ -186,12 +184,5 @@ def load_graph(graph, config, include_section):
                      % (item.name, dependency.data.name))
                     enabled[item.name] = False
                     continue
-            try:
-                item.config = dict(config.items(item.setting_section))
-            except configparser.NoSectionError:
-                item.config = {}
-            for key,value in conditions:
-                if key not in item.config:
-                    item.config[key] = value
             items.append(item)
     return items