Walter Lewis writes:
> 1) For the TEI/DC gurus: are the mappings the appropriate ones?
>
> 2) For the XSLT gurus: how does one render multiple keyword/list/item's
> into the DC.Subject with an appropriate dividing value. As it is
> currently expressed the items appear without even spaces separating
> them.
<xsl:element name="META">
<xsl:attribute name="NAME">DC.Subject</xsl:attribute>
<xsl:attribute name="CONTENT">
<xsl:for-each
select="TEI.2/teiHeader/profileDesc/textClass/keywords/list/item">
<xsl:value-of select="."/>
<xsl:text> </xsl:text>
</xsl:for-each>
</xsl:attribute>
</xsl:element>
but doing keywords as items in a list is not the only way. you may
meet <term>s as well
no obvious quarrel with the mappings
sebastian
|