diff -r 3edd2f19bce2 -r e0424e96e3fd features.py --- a/features.py Wed May 09 00:39:54 2012 +0200 +++ b/features.py Sat May 12 11:21:10 2012 +0200 @@ -1,7 +1,10 @@ -from os import listdir, path +libraries = ['py_ext.PythonLibrary', + 'svgui.SVGUILibrary'] catalog = [ ('canfestival', _('CANopen support'), _('Map located variables over CANopen'), 'canfestival.canfestival.RootClass'), - ('c_ext', _('C extention'), _('Extend project with C code accessing located variables'), 'c_ext.c_ext.RootClass'), - ('py_ext', _('Python extention'), _('Extend project with Pyhon code executed asynchronously'), 'py_ext.py_ext.RootClass')] + ('c_ext', _('C extention'), _('Add C code accessing located variables synchronously'), 'c_ext.c_ext.RootClass'), + ('py_ext', _('Python file'), _('Add Python code executed asynchronously'), 'py_ext.PythonFile'), + ('wxglade_hmi', _('WxGlade GUI'), _('Add a simple WxGlade based GUI.'), 'wxglade_hmi.WxGladeHMI'), + ('svgui', _('SVGUI'), _('Experimental web based HMI'), 'svgui.SVGUI')]