1
0
mirror of https://github.com/moparisthebest/xeps synced 2024-11-22 01:02:17 -05:00

Revert "Merge pull request #360 from SamWhited/unique_ref_notes"

This reverts commit ee2544758c, reversing
changes made to 2c4b42dbd1.
This commit is contained in:
Sam Whited 2017-01-11 09:09:47 -06:00
parent ee2544758c
commit 92d9bbc899

15
xep.xsl
View File

@ -36,7 +36,6 @@ OR OTHER DEALINGS IN THE SOFTWARE.
<xsl:output doctype-public='-//W3C//DTD XHTML 1.0 Transitional//EN' doctype-system='http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd' method='xml'/> <xsl:output doctype-public='-//W3C//DTD XHTML 1.0 Transitional//EN' doctype-system='http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd' method='xml'/>
<xsl:key name="unique-notes" match="note" use="text()" />
<xsl:template match='/'> <xsl:template match='/'>
<html> <html>
<head> <head>
@ -398,7 +397,7 @@ OR OTHER DEALINGS IN THE SOFTWARE.
<a name="appendix-notes"></a> <a name="appendix-notes"></a>
<h3>Appendix G: Notes</h3> <h3>Appendix G: Notes</h3>
<div class='indent'> <div class='indent'>
<xsl:apply-templates select="//note[generate-id(.) = generate-id(key('unique-notes', text())[1])]" mode='endlist'/> <xsl:apply-templates select='//note' mode='endlist'/>
</div> </div>
<!-- REVISION HISTORY --> <!-- REVISION HISTORY -->
<hr /> <hr />
@ -980,16 +979,22 @@ OR OTHER DEALINGS IN THE SOFTWARE.
<xsl:template match='note'> <xsl:template match='note'>
<xsl:variable name='notenum'> <xsl:variable name='notenum'>
<xsl:number level='any' count="note[generate-id(.) = generate-id(key('unique-notes', text())[1])]"/> <xsl:number level='any' count='note'/>
</xsl:variable> </xsl:variable>
<xsl:text> [</xsl:text><a href='#nt-{$notenum}'> <xsl:variable name='oid'>
<xsl:call-template name='object.id'/>
</xsl:variable>
<xsl:text> [</xsl:text><a href='#nt-{$oid}'>
<xsl:value-of select='$notenum'/></a> <xsl:value-of select='$notenum'/></a>
<xsl:text>]</xsl:text> <xsl:text>]</xsl:text>
</xsl:template> </xsl:template>
<xsl:template match='note' mode='endlist'> <xsl:template match='note' mode='endlist'>
<p> <p>
<a name='nt-{position()}'><xsl:value-of select='position()'/></a> <xsl:variable name='oid'>
<xsl:call-template name='object.id'/>
</xsl:variable>
<a name='nt-{$oid}'><xsl:value-of select='position()'/></a>
<xsl:text>. </xsl:text> <xsl:text>. </xsl:text>
<xsl:apply-templates/> <xsl:apply-templates/>
</p> </p>