Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove last vestiges of using altIdent element for FPI #714

Merged
merged 1 commit into from
Nov 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions odds/odd2dtd.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ of this software, even if advised of the possibility of such damage.
&lt;!ENTITY % file.</xsl:text>
<xsl:value-of select="@ident"/>
<xsl:text>-decl PUBLIC '-//TEI P5//ENTITIES </xsl:text>
<xsl:sequence select="( tei:idno[@type eq 'FPI'], tei:altIdent[@type eq 'FPI'] )[1]"/>
<xsl:sequence select="tei:idno[@type eq 'FPI']"/>
<xsl:text>//EN' '</xsl:text>
<xsl:value-of select="@ident"/>
<xsl:text>-decl.dtd' &gt;
Expand Down Expand Up @@ -1308,7 +1308,7 @@ of this software, even if advised of the possibility of such damage.
<xsl:text> </xsl:text>
<xsl:text>PUBLIC</xsl:text>
<xsl:text> '-//TEI P5//</xsl:text>
<xsl:sequence select="( key('FILES',@key)/tei:idno[@type eq 'FPI'], key('FILES',@key)/tei:altIdent[@type eq 'FPI'] )[1]"/>
<xsl:sequence select="key('FILES',@key)/tei:idno[@type eq 'FPI']"/>
<xsl:text>//EN' '</xsl:text>
<xsl:value-of select="@key"/>
<xsl:text>.dtd'</xsl:text>
Expand Down