Commit 74a686d1 authored by Daniel Gruno's avatar Daniel Gruno
Browse files

Committing style changes to 2.2 as well

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1329881 13f79535-47bb-0310-9956-ffa450edef68
parent 51848b88
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -44,8 +44,8 @@
<!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">
<!ENTITY % blocktags "p | example | note | table | ul | ol | dl | pre | 
highlight | blockquote">

<!ENTITY % Block "(%blocktags;)*">
<!ENTITY % Inline "(#PCDATA | %inlinetags;)*">
@@ -164,6 +164,10 @@ program | img | cite | q | dfn | var | transnote | glossary | phonetic">
<!ELEMENT dd %BlockOrInline;>

<!ELEMENT pre %Inline;>
<!ATTLIST pre class CDATA #IMPLIED>

<!ELEMENT highlight %Inline;>
<!ATTLIST highlight language CDATA #IMPLIED>

<!ELEMENT img EMPTY>
<!ATTLIST img
+19 −2
Original line number Diff line number Diff line
@@ -161,13 +161,15 @@
        <link title="No Sidebar - Default font size" type="text/css" media="all"
               rel="alternate stylesheet"
               href="{$path}/style/css/manual-loose-100pc.css"/>
        
    </xsl:otherwise>
    </xsl:choose>&lf;

    <link type="text/css" media="print"
           rel="stylesheet"
           href="{$path}/style/css/manual-print.css"/>

    <link href="{$path}/style/css/prettify.css" type="text/css" rel="stylesheet" />&lf;
    <script type="text/javascript" src="{$path}/style/scripts/prettify.js">&lf; </script> &lf;
    <!-- chm files do not need a favicon -->
    <xsl:if test="not($is-chm or $is-zip)">&lf;
        <link rel="shortcut icon" href="{$path}/images/favicon.ico" />
@@ -307,10 +309,14 @@

        <xsl:text>.</xsl:text>
    </p>&lf;

    <xsl:call-template name="super-menu"/>

</div> <!-- /footer -->
<script type="text/javascript">
    if (prettyPrint) {
        prettyPrint();
    }
</script>
</xsl:template>
<!-- /bottom -->

@@ -468,6 +474,17 @@
<!-- /section/section/section/section -->


<!-- ==================================================================== -->
<!-- Process source code highlighting                                     -->
<!-- ==================================================================== -->
<xsl:template match="highlight">
<pre class="prettyprint lang-{@language}">
    <!-- highlight body -->
    <xsl:apply-templates />
</pre>&lf; <!-- /.highlight -->
</xsl:template>
<!-- /higlight -->

<!-- ==================================================================== -->
<!-- (sub)section titles                                                  -->
<!-- ==================================================================== -->