You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by jo...@apache.org on 2009/06/05 01:01:07 UTC

svn commit: r781867 [2/2] - in /poi/trunk/src: documentation/content/xdocs/ documentation/content/xdocs/hpsf/ documentation/content/xdocs/news/ documentation/content/xdocs/trans/ documentation/content/xdocs/trans/de/ documentation/content/xdocs/trans/e...

Modified: poi/trunk/src/documentation/skins/poi-site/xslt/html/document2html.xsl
URL: http://svn.apache.org/viewvc/poi/trunk/src/documentation/skins/poi-site/xslt/html/document2html.xsl?rev=781867&r1=781866&r2=781867&view=diff
==============================================================================
--- poi/trunk/src/documentation/skins/poi-site/xslt/html/document2html.xsl (original)
+++ poi/trunk/src/documentation/skins/poi-site/xslt/html/document2html.xsl Thu Jun  4 23:01:06 2009
@@ -28,7 +28,6 @@
 ..which site2xhtml.xsl then combines with HTML from the index (book2menu.xsl)
 and tabs (tab2menu.xsl) to generate the final HTML.
 
-$Id$
 -->
 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 
@@ -53,7 +52,7 @@
       <body>
         <xsl:apply-templates/>
         <xsl:if test="header/authors">
-            <div align="right" id="authors">       
+            <div align="right" id="authors">
                <xsl:for-each select="header/authors/person">
                      <xsl:choose>
                         <xsl:when test="position()=1">by&#160;</xsl:when>
@@ -65,14 +64,14 @@
                      <!-- </a> -->
                   </xsl:for-each>
               </div>
-         </xsl:if>         
+         </xsl:if>
         <!--xsl:call-template name="pdflink"/-->
       </body>
       </document>
    </xsl:if>
 
-  
-    
+
+
    <xsl:if test="book">
     <xsl:apply-templates/>
    </xsl:if>
@@ -81,8 +80,8 @@
    <xsl:template match="body">
     <xsl:apply-templates/>
   </xsl:template>
-  
- 
+
+
 <!-- ====================================================================== -->
 <!-- header section -->
 <!-- ====================================================================== -->
@@ -96,9 +95,9 @@
 <!-- ====================================================================== -->
 
    <xsl:template match="section">
-	
+
 	 <xsl:variable name = "level" select = "count(ancestor::section)+1" />
-	 
+
 	 <xsl:choose>
 	 	<xsl:when test="$level=1">
 	 	  <div class="h3"><h3><xsl:value-of select="title"/></h3></div>
@@ -114,15 +113,15 @@
 	 	</xsl:when>
 	 	<xsl:otherwise>
 	 	  <div class="h5"><h5><xsl:value-of select="title"/></h5></div>
-	      <xsl:apply-templates/>	 	 
+	      <xsl:apply-templates/>
 	 	</xsl:otherwise>
 	 </xsl:choose>
 
-	</xsl:template>  
+	</xsl:template>
 
  <xsl:template match="title">
  </xsl:template>
- 	       
+
 <!-- ====================================================================== -->
 <!-- footer section -->
 <!-- ====================================================================== -->
@@ -146,11 +145,11 @@
   <xsl:template match="source">
     <xsl:apply-imports/>
   </xsl:template>
-  
+
   <xsl:template match="//source/font">
     <font color="{@color}"><xsl:apply-templates/></font>
   </xsl:template>
-    
+
   <xsl:template match="fixme">
     <xsl:apply-imports/>
   </xsl:template>
@@ -162,7 +161,7 @@
  <xsl:template match="ul|ol|dl">
     <xsl:apply-imports/>
  </xsl:template>
- 
+
  <xsl:template match="li">
     <xsl:apply-imports/>
  </xsl:template>
@@ -194,7 +193,7 @@
              <xsl:attribute name="class">b</xsl:attribute>
           </xsl:otherwise>
        </xsl:choose>
-     
+
        <xsl:apply-templates/>
     </tr>
   </xsl:template>
@@ -210,7 +209,7 @@
   <xsl:template match="tn">
     <xsl:apply-imports/>
   </xsl:template>
-  
+
   <xsl:template match="caption">
     <!-- ignore since already used -->
   </xsl:template>
@@ -230,7 +229,7 @@
  <xsl:template match="code">
     <xsl:apply-imports/>
  </xsl:template>
- 
+
 <!-- ====================================================================== -->
 <!-- images section -->
 <!-- ====================================================================== -->
@@ -238,7 +237,7 @@
  <xsl:template match="figure">
     <xsl:apply-imports/>
  </xsl:template>
- 
+
  <xsl:template match="img">
     <xsl:apply-imports/>
  </xsl:template>
@@ -269,7 +268,7 @@
 
  <xsl:template match="anchor">
     <xsl:apply-imports/>
- </xsl:template>  
+ </xsl:template>
 
 <!-- ====================================================================== -->
 <!-- specials section -->
@@ -281,7 +280,7 @@
 
   <!-- Generates the PDF link -->
   <xsl:template name="pdflink">
-    <xsl:if test="not($config/disable-pdf-link) or $disable-pdf-link = 'false'"> 
+    <xsl:if test="not($config/disable-pdf-link) or $disable-pdf-link = 'false'">
       <div align="right" id="pdf"><a href="{$filename-noext}.pdf">
           <img class="skin" src="{$skin-img-dir}/pdfdoc.gif" alt="PDF"/><br/>
           PDF</a>

Modified: poi/trunk/src/documentation/skins/poi-site/xslt/html/site2xhtml.xsl
URL: http://svn.apache.org/viewvc/poi/trunk/src/documentation/skins/poi-site/xslt/html/site2xhtml.xsl?rev=781867&r1=781866&r2=781867&view=diff
==============================================================================
--- poi/trunk/src/documentation/skins/poi-site/xslt/html/site2xhtml.xsl (original)
+++ poi/trunk/src/documentation/skins/poi-site/xslt/html/site2xhtml.xsl Thu Jun  4 23:01:06 2009
@@ -34,7 +34,6 @@
   </div>
 </site>
 
-$Id$
 -->
 
 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
@@ -54,13 +53,13 @@
               <xsl:value-of select="/site/document/title" />
             </title>
          </head>
-    
+
   <body class="composite" bgcolor="white">
-    
+
     <xsl:comment>================= start Banner ==================</xsl:comment>
       <div id="banner">
         <table border="0" summary="banner" cellspacing="0" cellpadding="8" width="100%">
-         <tbody>        
+         <tbody>
           <tr>
             <xsl:comment>================= start Group Logo ==================</xsl:comment>
             <xsl:if test="$config/group-name">
@@ -89,24 +88,24 @@
             </td>
             <xsl:comment>================= end Project Logo ==================</xsl:comment>
           </tr>
-         </tbody>          
+         </tbody>
         </table>
       </div>
     <xsl:comment>================= end Banner ==================</xsl:comment>
 
     <xsl:comment>================= start Main ==================</xsl:comment>
     <table id="breadcrumbs" summary="nav" border="0" cellspacing="0" cellpadding="0" width="100%">
-     <tbody>    
+     <tbody>
       <xsl:comment>================= start Status ==================</xsl:comment>
       <tr class="status">
         <td>
           <xsl:comment>================= start BreadCrumb ==================</xsl:comment>
-            <a href="{$config/trail/link1/@href}"><xsl:value-of select="$config/trail/link1/@name" /></a> 
-            <xsl:if test = "($config/trail/link2/@name)and(normalize-space($config/trail/link2/@name)!='')"><xsl:text> | </xsl:text></xsl:if>                                 
+            <a href="{$config/trail/link1/@href}"><xsl:value-of select="$config/trail/link1/@name" /></a>
+            <xsl:if test = "($config/trail/link2/@name)and(normalize-space($config/trail/link2/@name)!='')"><xsl:text> | </xsl:text></xsl:if>
             <a href="{$config/trail/link2/@href}"><xsl:value-of select="$config/trail/link2/@name" /></a>
-            <xsl:if test = "($config/trail/link3/@name)and(normalize-space($config/trail/link3/@name)!='')"><xsl:text> | </xsl:text></xsl:if>                                 
+            <xsl:if test = "($config/trail/link3/@name)and(normalize-space($config/trail/link3/@name)!='')"><xsl:text> | </xsl:text></xsl:if>
             <a href="{$config/trail/link3/@href}"><xsl:value-of select="$config/trail/link3/@name" /></a>
-          <!-- useful when we have <link> elements instead of link(n:=1..3)  
+          <!-- useful when we have <link> elements instead of link(n:=1..3)
           <xsl:for-each select="$config/trail/link">
             <xsl:if test="position()!=1">|</xsl:if>
             <a href="{@href}"><xsl:value-of select="@name"/></a>
@@ -120,8 +119,8 @@
           <xsl:comment>================= end Tabs ==================</xsl:comment>
         </td>
       </tr>
-     </tbody>      
-    </table>      
+     </tbody>
+    </table>
       <xsl:comment>================= end Status ==================</xsl:comment>
 
 
@@ -188,7 +187,7 @@
         </td>
         <xsl:comment>================= end Content ==================</xsl:comment>
       </tr>
-     </tbody>      
+     </tbody>
     </table>
     <xsl:comment>================= end Main ==================</xsl:comment>
 

Modified: poi/trunk/src/records/styles/record_document.xsl
URL: http://svn.apache.org/viewvc/poi/trunk/src/records/styles/record_document.xsl?rev=781867&r1=781866&r2=781867&view=diff
==============================================================================
--- poi/trunk/src/records/styles/record_document.xsl (original)
+++ poi/trunk/src/records/styles/record_document.xsl Thu Jun  4 23:01:06 2009
@@ -50,7 +50,6 @@
     <footer>
         <legal>
           Copyright (c) @year@ The Poi Project All rights reserved.
-          $Revision$ $Date$
         </legal>
     </footer>
 

Modified: poi/trunk/src/types/styles/hdftype_document.xsl
URL: http://svn.apache.org/viewvc/poi/trunk/src/types/styles/hdftype_document.xsl?rev=781867&r1=781866&r2=781867&view=diff
==============================================================================
--- poi/trunk/src/types/styles/hdftype_document.xsl (original)
+++ poi/trunk/src/types/styles/hdftype_document.xsl Thu Jun  4 23:01:06 2009
@@ -50,7 +50,6 @@
     <footer>
         <legal>
           Copyright (c) @year@ The Poi Project All rights reserved.
-          $Revision$ $Date$
         </legal>
     </footer>
 



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org