=============================== | |
Changes made in version 4.00 | |
programmer D.Deneer | |
date: 02 jul 2014 | |
Type | Description |
---- | ----------------- |
![]() |
Created a new plugIn that covers all functions related to CSV and Excel. |
![]() |
To be more compatible with the other actions, CSV to XML will now output <table> as root element in stead of <csvToXml> |
![]() |
CSV to XOG is renamed to "CSV to XML using a template" and this function is moved from the Clarity menu to the Conversion menu. |
![]() |
Added new import function Excel to XML to import an Excel file in the XML editor. This function is quite similar to Csv to XML. |
![]() |
Added new conversion function "Excel to XML using a template". This function is quite similar to "CSV to XML using a template" (formerly çalled CSV to XOG). |
=============================== | |
Changes made in version 3.00 | |
programmer D.Deneer | |
date: 09 jul 2013 | |
Type | Description |
---- | ----------------- |
![]() |
CSV to XML using a template: Transformation with a xslt stylesheet will be done against
a xml row element that contains the columns and values of the csv record.
Calling the stylesheet with the values as parameters is still supported but not obvious, because now you can select the values by selecting them from the input xml which will have the stucture:<table> <row> <col1>value</col1> <col2>value</col2> </row> </table> So to get the value of col1 you can use : <xsl:value-of select="/table/row/col1"> |
![]() |
CSV to XML using a template: Grouping of csv records is possible when using a xslt stylesheet. The stylesheet can use a construction like <xsl:for-each select="table/row"> to get the values in each row. |
![]() |
CSV to XML using a template: Escape values in the csv records are processed conform standards |