Actions
Bug #1539
closed<keywordSet> is transformed incorrectly from EML2b6 to EML2
Start date:
04/28/2004
Due date:
% Done:
0%
Estimated time:
Bugzilla-Id:
1539
Description
The tansformation stylesheets from EML2b6 to EML2 incorrectly handle keywords.
An example:
In EML2b6 we have:
<keywordSet>
<keyword>giant kelp</keyword>
<keyword>biomass</keyword>
</keywordSet>
<keywordSet>
<keyword>Historical_kelp</keyword>
<keywordThesaurus>SBCLTERCategories</keywordThesaurus>
</keywordSet>
transformed to EML2 we get:
<keywordSet>
<keyword keywordType="theme">giant kelp</keyword>
<keyword keywordType="theme">biomass</keyword>
<keyword keywordType="theme">Historical_kelp</keyword>
<keywordThesaurus>SBCLTERCategories</keywordThesaurus>
</keywordSet>
The keywordSet's are combined, which incorrectly associates freetext keywords
with a thesaurus.
Updated by Dan Higgins over 20 years ago
revised the style sheet to loop over keyWordSets so that eaxh keywordSet is
independently transformed.
Actions