Show
Ignore:
Timestamp:
10/25/05 11:56:37 (3 years ago)
Author:
slmm
Message:

Updated export plugin to handle tagged values. I tested a class and an
attribute tagged with some values against ArchGenXML. I must say I am delighted
to see this work :-) Next stop world domination! ;-)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/gaphor/data/plugins/kidexport/exportmodel.py

    r573 r603  
    1111        template = kid.Template(file=self.template) 
    1212        isinstance(template, kid.XMLSerializer) 
    13         print template.serialize() 
     13        f = open(filename, 'w') 
     14        f.write(template.serialize()) 
     15        f.close()