]> git.kaiwu.me - nginx.git/commitdiff
Regen after makefile changes.
authorRuslan Ermilov <ru@nginx.com>
Tue, 9 Aug 2011 15:15:36 +0000 (15:15 +0000)
committerRuslan Ermilov <ru@nginx.com>
Tue, 9 Aug 2011 15:15:36 +0000 (15:15 +0000)
docs/xslt/content.xslt
docs/xslt/directive.xslt
docs/xslt/module.xslt

index d772ecfdb9a441ad0fe03f1a4517cb308da5427b..e691ad3d3ff26a551d2e5341ae1e394a056a7920 100644 (file)
@@ -1,43 +1,43 @@
 <?xml version="1.0" encoding="utf-8"?>
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
 
-   
    <xsl:template match="section[@name and @title]">
-    
+
       <a name="{@name}"/> 
       <center>
          <h4>
-            <xsl:value-of select="@title"/> 
+            <xsl:value-of select="@title"/>
          </h4>
       </center>
+
       <xsl:apply-templates/>
    </xsl:template>
-   
+
    <xsl:template match="section[not(@name) and @title]">
-    
+
       <center>
          <h4>
-            <xsl:value-of select="@title"/> 
+            <xsl:value-of select="@title"/>
          </h4>
       </center>
+
       <xsl:apply-templates/>
    </xsl:template>
-   
+
    <xsl:template match="section[not(@name) and not(@title)]">
       <xsl:apply-templates/>
    </xsl:template>
 
-   
    <xsl:template match="para"> 
       <p>
-         <xsl:apply-templates/> 
+         <xsl:apply-templates/>
       </p>
    </xsl:template>
 
-   
    <xsl:template match="value"> 
       <i>
-         <xsl:apply-templates/> 
+         <xsl:apply-templates/>
       </i>
    </xsl:template>
-</xsl:stylesheet>
\ No newline at end of file
+
+</xsl:stylesheet>
index bfadfd29ba98a81c8f7d16c0f32bf75ea415d532..786beb90af191b547dfd01150620f3d603a4984e 100644 (file)
@@ -1,36 +1,40 @@
 <?xml version="1.0" encoding="utf-8"?>
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
 
-   
    <xsl:template match="directive">
-    
+
       <a name="{@name}"/> 
       <center>
          <h4>
-            <xsl:value-of select="@name"/> 
+            <xsl:value-of select="@name"/>
          </h4>
       </center>
+
       <xsl:apply-templates select="syntax"/>
+
       <xsl:apply-templates select="default"/>
+
       <xsl:apply-templates select="context"/>
+
       <xsl:apply-templates select="para"/>
    </xsl:template>
-   
+
    <xsl:template match="syntax">
       <xsl:text>syntax: </xsl:text>
-      <xsl:apply-templates/> 
+      <xsl:apply-templates/>
       <br/>
    </xsl:template>
-   
+
    <xsl:template match="default">
       <xsl:text>default: </xsl:text>
-      <xsl:apply-templates/> 
+      <xsl:apply-templates/>
       <br/>
    </xsl:template>
-   
+
    <xsl:template match="context">
       <xsl:text>context: </xsl:text>
-      <xsl:apply-templates/> 
+      <xsl:apply-templates/>
       <br/>
    </xsl:template>
-</xsl:stylesheet>
\ No newline at end of file
+
+</xsl:stylesheet>
index c98ca697d831bda8baa5c04d3cb8b44439924831..b9e041ce9b2f11404c02f73ac06716e02211d1f6 100644 (file)
    <xsl:variable select="/module/@link" name="LINK"/>
 
    <xsl:include href="directive.xslt"/>
+
    <xsl:include href="content.xslt"/>
-   
+
    <xsl:template match="/module">
-    
+
       <html>
          <head>
-    
+
             <title>
-               <xsl:value-of select="@title"/> 
+               <xsl:value-of select="@title"/>
             </title>
-    
+
          </head>
-    
+
          <body>
 
             <xsl:apply-templates/>
-    
+
          </body>
-    
+
       </html>
    </xsl:template>
-</xsl:stylesheet>
\ No newline at end of file
+
+</xsl:stylesheet>