ConfigTreeNode.py
changeset 1732 94ffe74e6895
parent 1730 64d8f52bc8c8
child 1733 dea107dce0c4
equal deleted inserted replaced
1731:6ebd9c40b2be 1732:94ffe74e6895
    29 - Project tree organization match filesystem organization of project directory.
    29 - Project tree organization match filesystem organization of project directory.
    30 - Each node of the tree have its own xml configuration, whose grammar is defined for each node type, as XSD
    30 - Each node of the tree have its own xml configuration, whose grammar is defined for each node type, as XSD
    31 - ... TODO : document
    31 - ... TODO : document
    32 """
    32 """
    33 
    33 
    34 import os,traceback,types
    34 import os
       
    35 import traceback
       
    36 import types
    35 import shutil
    37 import shutil
    36 from lxml import etree
    38 from lxml import etree
    37 
    39 
    38 from xmlclass import GenerateParserFromXSDstring
    40 from xmlclass import GenerateParserFromXSDstring
    39 from util.misc import GetClassImporter
    41 from util.misc import GetClassImporter