Skip to content

Commit

Permalink
UBO-382 Simplified predicate
Browse files Browse the repository at this point in the history
  • Loading branch information
Possommi committed Dec 11, 2024
1 parent e8fe745 commit 70f112a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ubo-common/src/main/resources/xsl/rss-import-e-mail.xsl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml version="1.0" encoding="UTF-8"?>

<!-- ============================================== -->
<!-- $Revision: 34514 $ $Date: 2016-02-04 19:27:24 +0100 (Do, 04 Feb 2016) $ -->
Expand Down Expand Up @@ -35,15 +35,15 @@
<xsl:variable name="br"><xsl:text>
</xsl:text></xsl:variable>

<xsl:template match="/*[local-name() = 'imported' or local-name() = $UBO.Scopus.Importer.Status]">
<xsl:template match="/*[contains(concat('imported ', $UBO.Scopus.Importer.Status), local-name())]">
<email>
<from><xsl:value-of select="$UBO.Mail.From" /></from>
<xsl:if test="string-length($MCR.Mail.Address)&gt;0">
<xsl:for-each select="str:tokenize($MCR.Mail.Address,',')" >
<to> <xsl:value-of select="." /> </to>
</xsl:for-each>
</xsl:if>
<subject>Universitätsbibliographie: <xsl:value-of select="@source" /> RSS Feed Import</subject>
<subject>Universitätsbibliographie: <xsl:value-of select="@source" /> RSS Feed Import</subject>
<body>
<xsl:text>
Liebe Kollegin, lieber Kollege,
Expand All @@ -67,9 +67,9 @@ die folgenden </xsl:text>
</xsl:for-each>
<xsl:text>

Mit freundlichen Grüßen
Mit freundlichen Grüßen

Ihre Universitätsbibliographie
Ihre Universitätsbibliographie
</xsl:text>
</body>
</email>
Expand Down

0 comments on commit 70f112a

Please sign in to comment.