Hi all,
I'm having a ProDataset with a hand full of temp-tables. The temp-table fields have the xml-node-type set to attribute.
When I execute write-xml using the formatted option, the xml element nodes for the records are all starting in their own line.
For better readability, I'd like to insert a line-break after every n th attribute. So instead of
<record field1="value" field2="value" field3="value" field4="value" field5="value">
I'd like the output formatted like this
<record field1="value" field2="value"
field3="value" field4="value" field5="value">
or even
<record
field1="value"
field2="value"
field3="value"
field4="value"
field5="value">
How can I insert text-nodes with the LF between the attribute nodes?
|
Mike,
This so bad it is not even wrong.
Source code control systems are designed to handle programs as /multi-line source text/. This has been going on successfully for decades.
If you are running into problems with XML files (which are /text/) then you need a different source code management system or you are doing something wrong.
Mike, you should find an Eclipse plugin that can compare the xml files as 'models'... if not already available somewhere I just might know someone that can help :)