~ubuntu-branches/ubuntu/trusty/yelp-xsl/trusty

« back to all changes in this revision

Viewing changes to xslt/docbook/html/db2html-callout.xsl

  • Committer: Package Import Robot
  • Author(s): Simon McVittie, Iain Lane, Simon McVittie
  • Date: 2012-10-22 22:14:09 UTC
  • mfrom: (1.1.18) (17 sid)
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: package-import@ubuntu.com-20121022221409-uk23sno8v819r2en
Tags: 3.6.1-1
* Team upload

[ Iain Lane ]
* debian/patches/fix_jquery_syntax_licensing, debian/copyright: Update to
  reflect that jQuery.Syntax is licensed as "MIT", not AGPL (Closes:
  #678981, LP: #1016751) 

[ Simon McVittie ]
* New upstream release (Closes: #690954)
  - revert the part of that patch that was applied upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
-->
35
35
 
36
36
 
37
 
<xsl:key name="db2html.callout.key" match="co | db:co" use="@id | @xml:id"/>
38
 
 
39
 
 
40
37
<!--**==========================================================================
41
38
db2html.callout.label
42
39
Create a callout label for a #{co} element.
78
75
      <xsl:for-each select="str:split(@arearefs)">
79
76
        <xsl:variable name="arearef" select="string(.)"/>
80
77
        <xsl:for-each select="$node">
81
 
          <xsl:variable name="co" select="key('db2html.callout.key', $arearef)"/>
82
 
          <xsl:if test="$co">
 
78
          <xsl:variable name="co" select="key('db.id.key', $arearef)"/>
 
79
          <xsl:if test="$co/self::co or $co/self::db:co">
83
80
            <xsl:call-template name="db2html.callout.label">
84
81
              <xsl:with-param name="node" select="$co"/>
85
82
            </xsl:call-template>