Skip to content

Commit

Permalink
add type=author to restStsmt to get author, support catRef
Browse files Browse the repository at this point in the history
  • Loading branch information
Mau Zsofia Abraham committed Dec 29, 2024
1 parent 03a247c commit 5f37ac5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion vicav.xqm
Original file line number Diff line number Diff line change
Expand Up @@ -2083,7 +2083,7 @@ declare function vicav:_get_all_data_markers() {
<loc>{$loc}</loc>
<loc type="decimal">{$item//tei:geo[@decls="decimal"]/text()}</loc>
<locName>{$locName}</locName>
<taxonomy>{$item/tei:teiHeader/tei:profileDesc/tei:taxonomy/tei:category/tei:catDesc/text()}</taxonomy>
<taxonomy>{$item/tei:teiHeader/tei:profileDesc/tei:textClass/tei:catRef/@target}</taxonomy>
<alt>{$alt}</alt>
<freq>1</freq>
</r>
Expand Down
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: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>
<p xml:space="preserve">By <i><xsl:value-of select="string-join(//tei:titleStmt/(tei:author, tei:respStmt[@type = 'author']/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:titleStmt/(tei:author, tei:respStmt/tei:persName), ',')"/></i></td>
<td class="tdProfileTableRight"><i><xsl:value-of select="string-join(//tei:titleStmt/(tei:author, tei:respStmt[@type = 'author']/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:titleStmt/(tei:author,tei:respStmt/tei:persName), ',')"/>
By <i><xsl:value-of select="string-join(//tei:titleStmt/(tei:author,tei:respStmt[@type = 'author']/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 5f37ac5

Please sign in to comment.