KrzyHonk / bpmn-python

Project for creating a Python library that allows to import/export BPMN diagram (as an XML file) and provides a simple visualization capabilities
GNU General Public License v3.0
65 stars 44 forks source link

Add basic export from inner diagram representation to XML BPMN 2.0 file #5

Closed KrzyHonk closed 8 years ago

KrzyHonk commented 8 years ago

At this point we can export simple process diagrams and keep compability with available editors. Transformation from XML to inner rep and from inner rep to XML do not preserve some type-specific attributes (for example direction for gateways, incoming/outgoing for flow elements) and do not handle special types of events (Message, Conditional). This will be implemented later

KrzyHonk commented 8 years ago

Could use a bit of code cleanup, remove repeated code. I'll take care of this later.

KrzyHonk commented 8 years ago

Basic implementation done. Further improvements will be reported as separated issues.