Changes between Version 2 and Version 3 of CSVExport
- Timestamp:
- 03/02/10 01:36:15 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CSVExport
v2 v3 16 16 17 17 18 Default formatting will be column header + all tags. 19 Sort order is schema based due to formatting which 20 could be different according to schema. 18 Default formatting will be column header + all tags. 19 Sort order is schema based due to formatting which could be different according to schema. 21 20 22 21 23 22 [[Image(csv.png)]] 24 23 25 In order to override default formatting, create a template 26 with mode="csv" in the metadata-schema.xsl matching the root 27 element in order to create a one level tree structure : 24 In order to override default formatting, create a template with mode="csv" in the metadata-schema.xsl matching the root element in order to create a one level tree structure : 28 25 29 26 Example to export only title from ISO19139 records. 30 27 {{{ 31 28 <xsl:template match="gmd:MD_Metadata" mode="csv"> … … 42 39 }}} 43 40 44 The internal separator is used to join multiple objects in one 45 columns (eg. keywords will be keyword1###keyword2... and could be explode 46 if needed in a spreadsheet). 41 42 The internal separator is used to join multiple objects in one columns (eg. keywords will be keyword1###keyword2... and could be explode if needed in a spreadsheet). 47 43 48 44 === Proposal Type ===