|
200 | 200 | <!-- Overrides xrefgen.xsl -->
|
201 | 201 |
|
202 | 202 | <!-- Custom xrefs to numbered sections -->
|
203 |
| - <xsl:template match="h:section[@data-type='sect1' or @data-type='sect2']" mode="xref-to"> |
| 203 | + <xsl:template match="h:section[@data-type='sect1']" mode="xref-to"> |
204 | 204 | <xsl:param name="referrer"/>
|
205 | 205 | <xsl:param name="xrefstyle"/>
|
206 | 206 | <xsl:param name="verbose" select="1"/>
|
207 | 207 | <xsl:choose>
|
208 |
| - <xsl:when test="(h:section[@data-type='sect1']/h:h1 or h:section[data-type='sect2']/h:h2)"> |
| 208 | + <xsl:when test="h:h1"> |
| 209 | + <xsl:apply-templates select="." mode="object.xref.markup"> |
| 210 | + <xsl:with-param name="purpose" select="'xref'"/> |
| 211 | + <!-- BEGIN OVERRIDE --> |
| 212 | + <xsl:with-param name="xrefstyle" select="'template: %n %t'"/> |
| 213 | + <!-- END OVERRIDE --> |
| 214 | + <xsl:with-param name="referrer" select="$referrer"/> |
| 215 | + <xsl:with-param name="verbose" select="$verbose"/> |
| 216 | + </xsl:apply-templates> |
| 217 | + </xsl:when> |
| 218 | + <xsl:otherwise> |
| 219 | + <!-- Otherwise, throw warning, and print out ??? --> |
| 220 | + <xsl:call-template name="log-message"> |
| 221 | + <xsl:with-param name="type" select="'WARNING'"/> |
| 222 | + <xsl:with-param name="message"> |
| 223 | + <xsl:text>Cannot output gentext for XREF to section (id:</xsl:text> |
| 224 | + <xsl:value-of select="@id"/> |
| 225 | + <xsl:text>)</xsl:text> |
| 226 | + </xsl:with-param> |
| 227 | + </xsl:call-template> |
| 228 | + <xsl:text>???</xsl:text> |
| 229 | + </xsl:otherwise> |
| 230 | + </xsl:choose> |
| 231 | + </xsl:template> |
| 232 | + |
| 233 | + <xsl:template match="h:section[@data-type='sect2']" mode="xref-to"> |
| 234 | + <xsl:param name="referrer"/> |
| 235 | + <xsl:param name="xrefstyle"/> |
| 236 | + <xsl:param name="verbose" select="1"/> |
| 237 | + <xsl:choose> |
| 238 | + <xsl:when test="h:h2"> |
209 | 239 | <xsl:apply-templates select="." mode="object.xref.markup">
|
210 | 240 | <xsl:with-param name="purpose" select="'xref'"/>
|
211 | 241 | <!-- BEGIN OVERRIDE -->
|
|
0 commit comments