goba            Sat Aug  3 18:48:42 2002 EDT

  Modified files:              
    /phpdoc/xsl htmlhelp.xsl.in 
  Log:
  Implement some support for skinning just to test things...
  
  
Index: phpdoc/xsl/htmlhelp.xsl.in
diff -u phpdoc/xsl/htmlhelp.xsl.in:1.28 phpdoc/xsl/htmlhelp.xsl.in:1.29
--- phpdoc/xsl/htmlhelp.xsl.in:1.28     Mon May 20 10:40:21 2002
+++ phpdoc/xsl/htmlhelp.xsl.in  Sat Aug  3 18:48:42 2002
@@ -3,7 +3,7 @@
 
   HTML Help specific stylesheet
 
-  $Id: htmlhelp.xsl.in,v 1.28 2002/05/20 14:40:21 goba Exp $
+  $Id: htmlhelp.xsl.in,v 1.29 2002/08/03 22:48:42 goba Exp $
 
 -->
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
@@ -75,6 +75,7 @@
     <tr align="left" valign="middle"> 
       <td>
         <xsl:if test="count($prev)>0">
+          <span id="navPrev">
           <a accesskey="p">
             <xsl:attribute name="href">
               <xsl:call-template name="href.target">
@@ -84,15 +85,19 @@
             <xsl:text>&lt;&lt; </xsl:text>
             <xsl:apply-templates select="$prev" mode="phpdoc.object.title"/>
           </a>
+          </span>
         </xsl:if>
       </td>
       <td align="center">
+        <span id="navPath">
         <xsl:apply-templates select="." mode="path.to.this.page">
           <xsl:with-param name="actpage" select="true()"/>
         </xsl:apply-templates>
+        </span>
       </td>
       <td align="right">
         <xsl:if test="count($next)>0">
+          <span id="navNext">
           <a accesskey="n">
             <xsl:attribute name="href">
               <xsl:call-template name="href.target">
@@ -102,16 +107,17 @@
             <xsl:apply-templates select="$next" mode="phpdoc.object.title"/>
             <xsl:text> &gt;&gt;</xsl:text>
           </a>
+          </span>
         </xsl:if>
       </td>
     </tr>
     <tr align="center" valign="middle"> 
       <td colspan="3">
-        <div id="#onlinelinks">
+        <span id="navOnline">
           <a href="javascript:thisPageOnline();">This page online</a>
           <xsl:text disable-output-escaping="yes"> &amp;nbsp; </xsl:text>
           <a href="javascript:bugOnPage();">Report a bug</a>
-        </div>
+        </span>
       </td>
     </tr>
   </table>



-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to