goba            Mon Jul 21 13:10:37 2003 EDT

  Modified files:              
    /phpdoc/xsl param_html.xsl.in phpweb.xsl 
  Log:
  Support for the new function calls
  
Index: phpdoc/xsl/param_html.xsl.in
diff -u phpdoc/xsl/param_html.xsl.in:1.3 phpdoc/xsl/param_html.xsl.in:1.4
--- phpdoc/xsl/param_html.xsl.in:1.3    Mon Apr 21 15:33:48 2003
+++ phpdoc/xsl/param_html.xsl.in        Mon Jul 21 13:10:37 2003
@@ -3,7 +3,7 @@
 
   param_html.xsl: Parameters generated by the configure-script
 
-  $Id: param_html.xsl.in,v 1.3 2003/04/21 19:33:48 goba Exp $
+  $Id: param_html.xsl.in,v 1.4 2003/07/21 17:10:37 goba Exp $
 
 -->
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
@@ -18,8 +18,9 @@
 
 <!-- Configure parameterized header of the PHP
      output of the phpweb stylesheet -->
-<xsl:template name="phpweb.header">
- <xsl:text>sendManualHeaders('@ENCODING@','@LANG@');</xsl:text>
+<xsl:template name="phpweb.encoding">
+ <xsl:text disable-output-escaping="yes">,
+    'head' =&gt; array('@ENCODING@','@LANG@')</xsl:text>
 </xsl:template>
 
 </xsl:stylesheet>
Index: phpdoc/xsl/phpweb.xsl
diff -u phpdoc/xsl/phpweb.xsl:1.8 phpdoc/xsl/phpweb.xsl:1.9
--- phpdoc/xsl/phpweb.xsl:1.8   Fri Apr 25 16:05:01 2003
+++ phpdoc/xsl/phpweb.xsl       Mon Jul 21 13:10:37 2003
@@ -3,7 +3,7 @@
 
   PHP.net web site specific stylesheet
 
-  $Id: phpweb.xsl,v 1.8 2003/04/25 20:05:01 goba Exp $
+  $Id: phpweb.xsl,v 1.9 2003/07/21 17:10:37 goba Exp $
 
 -->
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
@@ -28,17 +28,17 @@
 
  <xsl:processing-instruction name="php">
   <xsl:text>
-  require('shared-manual.inc');
-  </xsl:text>
-  <xsl:call-template name="phpweb.header"/>
+include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';</xsl:text>
   <xsl:text disable-output-escaping="yes">
-  setupNavigation(array(
+manual_setup(array(
     'home' =&gt; </xsl:text>
  
   <xsl:call-template name="phpdoc.nav.array">
    <xsl:with-param name="node" select="$home"/>
   </xsl:call-template>
   
+  <xsl:call-template name="phpweb.encoding"/>
+  
  <xsl:text disable-output-escaping="yes">,
     'this' =&gt; </xsl:text>
 
@@ -85,8 +85,8 @@
 
  <xsl:text>
     )
-  ));
-  manualHeader();
+));
+manual_header();
 ?</xsl:text>
  </xsl:processing-instruction>
  <xsl:text>
@@ -98,7 +98,7 @@
  <xsl:text>
 </xsl:text>
  <xsl:processing-instruction name="php">
-  <xsl:text>manualFooter(); ?</xsl:text>
+  <xsl:text>manual_footer(); ?</xsl:text>
   </xsl:processing-instruction>
 </xsl:template>
 



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

Reply via email to