Commit ef357f54 authored by Kim Mortimer's avatar Kim Mortimer
Browse files

Remove misapplied attributes, correct typo

1 merge request!12Add non-standard elements to index.xsl
Showing with 14 additions and 14 deletions
+14 -14
......@@ -582,35 +582,35 @@
<xsl:for-each select="./dwc:Occurrence">
<xsl:variable name="occID" select="./dwc:occurrenceID"/>
<occurrenceRecordedBy>
<xsl:value-of select="$occID"/>|<xsl:value-of select="./dwc:recordedBy" as="xs:string?"/>
<xsl:value-of select="$occID"/>|<xsl:value-of select="./dwc:recordedBy"/>
</occurrenceRecordedBy>
<occurrenceBasis>
<xsl:value-of select="$occID"/>|<xsl:value-of select="./dwc:basisOfRecord" as="xs:string?"/>
<xsl:value-of select="$occID"/>|<xsl:value-of select="./dwc:basisOfRecord"/>
</occurrenceBasis>
<occurrenceCount>
<xsl:value-of select="$occID"/>|<xsl:value-of select="./dwc:organismQuantity" as="xs:string?"/><xsl:text> </xsl:text><xsl:value-of select="./dwc:organismQuantityType" as="xs:string?"/>
<xsl:value-of select="$occID"/>|<xsl:value-of select="./dwc:organismQuantity"/><xsl:text> </xsl:text><xsl:value-of select="./dwc:organismQuantityType"/>
</occurrenceCount>
<occurrenceRemarks>
<xsl:value-of select="$occID"/>|<xsl:value-of select="./dwc:occurrenceRemarks" as="xs:string?"/>
<xsl:value-of select="$occID"/>|<xsl:value-of select="./dwc:occurrenceRemarks"/>
</occurrenceRemarks>
</xsl:for-each>
<xsl:for-each select="./dwc:Event">
<xsl:variable name="occID" select="./dwc:occurrenceID"/>
<occurrenceSamplingProtocol>
<xsl:value-of select="$occID"/>|<xsl:value-of select="./dwc:samplingProtocol" as="xs:string?"/>
<xsl:value-of select="$occID"/>|<xsl:value-of select="./dwc:samplingProtocol"/>
</occurrenceSamplingProtocol>
<occurrenceSamplingEffort>
<xsl:value-of select="$occID"/>|<xsl:value-of select="./dwc:samplingEffort" as="xs:string?"/>
<xsl:value-of select="$occID"/>|<xsl:value-of select="./dwc:samplingEffort"/>
</occurrenceSamplingEffort>
</xsl:for-each>
<xsl:for-each select="./dwc:Organism">
<xsl:variable name="orgID" select="./dwc:organismID"/>
<xsl:variable name="taxonID" select="./dwc:taxonID"/>
<organismBelongsToTaxon>
<xsl:value-of select="$organismID"/>|<xsl:value-of select="$taxonID"/>
<xsl:value-of select="$orgID"/>|<xsl:value-of select="$taxonID"/>
</organismBelongsToTaxon>
<organismRemarks>
<xsl:value-of select="$organismID"/>|<xsl:value-of select="./dwc:organismRemarks" as="xs:string?"/>
<xsl:value-of select="$orgID"/>|<xsl:value-of select="./dwc:organismRemarks"/>
</organismRemarks>
</xsl:for-each>
<xsl:for-each select="./dwc:Identification">
......@@ -620,13 +620,13 @@
<xsl:value-of select="$identID"/>|<xsl:value-of select="$occID"/>
</identificationBelongsToOccurrence>
<identificationBy>
<xsl:value-of select="$identID"/>|<xsl:value-of select="./dwc:identifiedBy" as="xs:string?"/>
<xsl:value-of select="$identID"/>|<xsl:value-of select="./dwc:identifiedBy"/>
</identificationBy>
<identificationRemarks>
<xsl:value-of select="$identID"/>|<xsl:value-of select="./dwc:identificationRemarks" as="xs:string?"/>
<xsl:value-of select="$identID"/>|<xsl:value-of select="./dwc:identificationRemarks"/>
</identificationRemarks>
<identificationReferences>
<xsl:value-of select="$identID"/>|<xsl:value-of select="./dwc:identificationReferences" as="xs:string?"/>
<xsl:value-of select="$identID"/>|<xsl:value-of select="./dwc:identificationReferences"/>
</identificationReferences>
</xsl:for-each>
<xsl:for-each select="./dwc:Taxon">
......@@ -636,13 +636,13 @@
<xsl:value-of select="$taxonID"/>|<xsl:value-of select="$identID"/>
</taxonBelongsToIdentification>
<taxonVernacularName>
<xsl:value-of select="$taxonID"/>|<xsl:value-of select="./dwc:vernacularName" as="xs:string?"/>
<xsl:value-of select="$taxonID"/>|<xsl:value-of select="./dwc:vernacularName"/>
</taxonVernacularName>
<taxonScientificName>
<xsl:value-of select="$taxonID"/>|<xsl:value-of select="./dwc:scientificName" as="xs:string?"/>
<xsl:value-of select="$taxonID"/>|<xsl:value-of select="./dwc:scientificName"/>
</taxonScientificName>
<taxonRemarks>
<xsl:value-of select="$taxonID"/>|<xsl:value-of select="./dwc:taxonRemarks" as="xs:string?"/>
<xsl:value-of select="$taxonID"/>|<xsl:value-of select="./dwc:taxonRemarks"/>
</taxonRemarks>
</xsl:for-each>
</xsl:for-each>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment