Various minor bugs in some packages needed by APLAWS spin. Both aplaws bundles now compile, deploy and run. Further testing needed. Resolve some svn problems.

git-svn-id: https://svn.libreccm.org/ccm/trunk@2784 8810af33-2d31-482b-a856-94f89814c4df
master
pb 2014-08-03 09:41:43 +00:00
parent ea7facb2e0
commit 8d5a2afd82
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:cms="http://www.arsdigita.com/cms/1.0"
version="1.0">
<xsl:template name="DublinMetaDataHeader">
<xsl:for-each select="dublinCore/*">
<xsl:if test="starts-with(name(),'dc')">
<meta>
<xsl:attribute name="name"><xsl:text>DC.</xsl:text><xsl:value-of select="substring(name(),3)" /></xsl:attribute>
<xsl:attribute name="content"><xsl:value-of select="." /></xsl:attribute>
</meta>
</xsl:if>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>