Skip to content

Commit

Permalink
Use the old or the new notation for author when rendering HTML
Browse files Browse the repository at this point in the history
  • Loading branch information
simar0at committed Dec 9, 2024
1 parent c2bc376 commit 06c5d0a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion xslt/features_01.xslt
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
</table>
</xsl:otherwise>
</xsl:choose>
<p xml:space="preserve">By <i><xsl:value-of select="string-join(./tei:teiHeader/tei:fileDesc/tei:titleStmt/tei:respStmt/tei:persName, ',')"/><xsl:if test="./tei:teiHeader/tei:revisionDesc/tei:change"> (revision: <xsl:value-of select="replace(subsequence(./tei:teiHeader/tei:revisionDesc/tei:change/@when, 1, 1)[1], 'T.*', '')" />)</xsl:if></i></p>
<p xml:space="preserve">By <i><xsl:value-of select="string-join(//tei:titleStmt/(tei:author, tei:respStmt/tei:persName), ',')"/><xsl:if test="./tei:teiHeader/tei:revisionDesc/tei:change"> (revision: <xsl:value-of select="replace(subsequence(./tei:teiHeader/tei:revisionDesc/tei:change/@when, 1, 1)[1], 'T.*', '')" />)</xsl:if></i></p>

<ul id="informants"><xsl:for-each select="./tei:teiHeader/tei:profileDesc/tei:particDesc/tei:listPerson/tei:person"><li xml:space="preserve">Informant ID: <i><xsl:value-of
select="."/></i><xsl:if
Expand Down
2 changes: 1 addition & 1 deletion xslt/profile_01.xslt
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
</tr>
<tr>
<td class="tdHead">Contributed by</td>
<td class="tdProfileTableRight"><i><xsl:value-of select="string-join(./tei:teiHeader/tei:fileDesc/tei:titleStmt/tei:respStmt/tei:persName, ',')"/></i></td>
<td class="tdProfileTableRight"><i><xsl:value-of select="string-join(//tei:titleStmt/(tei:author, tei:respStmt/tei:persName), ',')"/></i></td>
</tr>
</table>
</div>
Expand Down
2 changes: 1 addition & 1 deletion xslt/sampletext_01.xslt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</table>

<p xml:space="preserve">
By <i><xsl:value-of select="string-join(./tei:teiHeader/tei:fileDesc/tei:titleStmt/tei:respStmt/tei:persName, ',')"/>
By <i><xsl:value-of select="string-join(//tei:titleStmt/(tei:author,tei:respStmt/tei:persName), ',')"/>
<xsl:if test="./tei:teiHeader/tei:revisionDesc/tei:change">
(revision: <xsl:value-of
select="(./tei:teiHeader/tei:revisionDesc[1]/tei:change[1]/@n, replace(subsequence(./tei:teiHeader/tei:revisionDesc/tei:change/@when, 1, 1)[1], 'T.*', ''))[1]" />)
Expand Down

0 comments on commit 06c5d0a

Please sign in to comment.