features.py
changeset 728 e0424e96e3fd
parent 721 ecf4d203c4d4
child 729 25054c592dc4
equal deleted inserted replaced
727:3edd2f19bce2 728:e0424e96e3fd
     1 from os import listdir, path
     1 libraries = ['py_ext.PythonLibrary',
       
     2              'svgui.SVGUILibrary']
     2 
     3 
     3 catalog = [
     4 catalog = [
     4     ('canfestival', _('CANopen support'), _('Map located variables over CANopen'), 'canfestival.canfestival.RootClass'),
     5     ('canfestival', _('CANopen support'), _('Map located variables over CANopen'), 'canfestival.canfestival.RootClass'),
     5     ('c_ext', _('C extention'), _('Extend project with C code accessing located variables'), 'c_ext.c_ext.RootClass'),
     6     ('c_ext', _('C extention'), _('Add C code accessing located variables synchronously'), 'c_ext.c_ext.RootClass'),
     6     ('py_ext', _('Python extention'), _('Extend project with Pyhon code executed asynchronously'), 'py_ext.py_ext.RootClass')]
     7     ('py_ext', _('Python file'), _('Add Python code executed asynchronously'), 'py_ext.PythonFile'),
       
     8     ('wxglade_hmi', _('WxGlade GUI'), _('Add a simple WxGlade based GUI.'), 'wxglade_hmi.WxGladeHMI'),
       
     9     ('svgui', _('SVGUI'), _('Experimental web based HMI'), 'svgui.SVGUI')]
     7 
    10