etherlab/extension.py
author Laurent Bessard
Wed, 02 Oct 2013 10:46:18 +0200
changeset 2162 43ab74687f45
parent 2111 f2cffda17d00
permissions -rw-r--r--
Fixed xslt stylesheet for extracting entries defined in module, rewiting xslt stylesheet to yslt
import features

def GetEtherLabLibClass():
    from EthercatMaster import EtherlabLibrary
    return EtherlabLibrary

features.libraries.append(
    ('Etherlab', GetEtherLabLibClass))

def GetEtherLabClass():
    from etherlab import RootClass
    return RootClass

features.catalog.append(
    ('etherlab', _('EtherCat Master'), _('Map located variables over EtherCat'), GetEtherLabClass))