Commit b4d6f4b7 authored by Andre Malo's avatar Andre Malo
Browse files

add <program> element


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@106775 13f79535-47bb-0310-9956-ffa450edef68
parent b8b4a437
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -35,8 +35,8 @@

<!-- Generic tag entities -->

<!ENTITY % inlinetags "em | strong | code | a | br | directive | module | img
| cite | q | dfn | var | transnote | glossary | phonetic">
<!ENTITY % inlinetags "em | strong | code | a | br | directive | module |
program | img | cite | q | dfn | var | transnote | glossary | phonetic">

<!ENTITY % blocktags "p | example | note | table | ul | ol | dl | pre
| blockquote">
+14 −0
Original line number Diff line number Diff line
@@ -692,6 +692,20 @@
<!-- /module -->


<!-- ==================================================================== -->
<!-- <program>                                                            -->
<!-- Inserts a link to referred program                                   -->
<!-- ==================================================================== -->
<xsl:template match="program">
<code class="program">
    <a href="{$path}/programs/{normalize-space(.)}.html">
        <xsl:value-of select="normalize-space(.)" />
    </a>
</code>
</xsl:template>
<!-- /program -->


<!-- ==================================================================== -->
<!-- <related>                                                            -->
<!-- ==================================================================== -->