Changes between Version 1 and Version 2 of proposals/vocabTransformation
- Timestamp:
- 10/22/12 09:23:47 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
proposals/vocabTransformation
v1 v2 11 11 == Overview == 12 12 13 Configure transformation in order to use thesaurus to add different types of elements (eg. use a concept to add a keyword or an extent). 13 This proposal aims to improve keyword selection and extend the use of concept to define other element than keyword (eg. use a concept to add a keyword or an extent). For this, it provides ways to configure: 14 * which thesaurus is available for which fields 15 * which transformation is available (eg. add keywords using gco:CharacterString or XLink). 16 17 18 A new customized widget will be created in order to provide multiple ways of adding concepts: 19 20 14 21 15 22 === Proposal Type === … … 34 41 35 42 {{{ 36 43 <xsl:include href="blanks/metadata-schema01/convert/thesaurus-transformation.xsl"/> 37 44 }}} 45 38 46 This transformation file define as many template as required: 39 47 {{{ 40 48 <xsl:template name="to-iso19139-keyword"> 41 42 49 <xsl:param name="withAnchor" select="false()"/> 50 <xsl:param name="withXlink" select="false()"/> 43 51 44 52 <gmd:MD_Keywords> 45 53 ... 46 54 }}} … … 49 57 50 58 51 The raw format is the following and remain unchanged with previous !GeoNetwork release:59 The raw format is the following and remains unchanged with previous !GeoNetwork release: 52 60 {{{ 53 61 <keyword> … … 81 89 * ISO19139 with Anchor: 82 90 http://localhost:8080/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.inspire-theme&id=http://rdfdata.eionet.europa.eu/inspirethemes/themes/22,http://rdfdata.eionet.europa.eu/inspirethemes/themes/30&multiple=true&transformation=to-iso19139-keyword-with-anchor 83 * ISO19139 with Anchor: TODO84 http://localhost:8080/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.inspire-theme&id=http://rdfdata.eionet.europa.eu/inspirethemes/themes/22,http://rdfdata.eionet.europa.eu/inspirethemes/themes/30&multiple=true&transformation=to-iso19139-keyword- with-anchor91 * ISO19139 with XLink: 92 http://localhost:8080/geonetwork/srv/eng/xml.keyword.get?thesaurus=external.theme.inspire-theme&id=http://rdfdata.eionet.europa.eu/inspirethemes/themes/22,http://rdfdata.eionet.europa.eu/inspirethemes/themes/30&multiple=true&transformation=to-iso19139-keyword-as-xlink 85 93 86 94 * ISO19139 extent element : … … 88 96 89 97 90 === Define which transformation to use according to the element type === 98 === Define which transformations to use according to the element type === 99 100 Transformations are available according to element type: 91 101 92 102 {{{ … … 104 114 <registerTransformation element="gmd:descriptiveKeywords" xslTpl='to-iso19139-keywords'/> 105 115 <registerTransformation element="gmd:descriptiveKeywords" xslTpl='to-iso19139-keywords-with-anchor'/> 106 <registerTransformation element="gmd:descriptiveKeywords" xslTpl='to-iso19139-keywords- with-xlink'/>116 <registerTransformation element="gmd:descriptiveKeywords" xslTpl='to-iso19139-keywords-as-xlink'/> 107 117 }}} 108 118 … … 131 141 === Backwards Compatibility Issues === 132 142 143 More improvements required: 144 * multilingual metadata 145 146 147 === Backwards Compatibility Issues === 148 133 149 134 150 === New libraries added ===