irchtml         Fri Mar 11 11:14:11 2005 EDT

  Modified files:              
    /phpdoc/en/reference/array/functions        array-splice.xml 
    /phpdoc/en/reference/dom/functions  dom-domdocument-validate.xml 
                                        dom-domnodelist-item.xml 
    /phpdoc/en/reference/soap/functions soap-soapclient-construct.xml 
                                        soap-soapserver-construct.xml 
  Log:
  WS Fix (no tabs)
  
http://cvs.php.net/diff.php/phpdoc/en/reference/array/functions/array-splice.xml?r1=1.14&r2=1.15&ty=u
Index: phpdoc/en/reference/array/functions/array-splice.xml
diff -u phpdoc/en/reference/array/functions/array-splice.xml:1.14 
phpdoc/en/reference/array/functions/array-splice.xml:1.15
--- phpdoc/en/reference/array/functions/array-splice.xml:1.14   Fri Mar  4 
06:19:04 2005
+++ phpdoc/en/reference/array/functions/array-splice.xml        Fri Mar 11 
11:14:10 2005
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.14 $ -->
+<!-- $Revision: 1.15 $ -->
 <!-- splitted from ./en/functions/array.xml, last change in rev 1.14 -->
   <refentry id="function.array-splice">
    <refnamediv>
@@ -63,7 +63,7 @@
     </para>
     <para>
      The following statements change the values of <varname>$input</varname>
-        the same way:
+     the same way:
    <table>
     <title><function>array_splice</function> equivalents</title>
     <tgroup cols="2">
http://cvs.php.net/diff.php/phpdoc/en/reference/dom/functions/dom-domdocument-validate.xml?r1=1.8&r2=1.9&ty=u
Index: phpdoc/en/reference/dom/functions/dom-domdocument-validate.xml
diff -u phpdoc/en/reference/dom/functions/dom-domdocument-validate.xml:1.8 
phpdoc/en/reference/dom/functions/dom-domdocument-validate.xml:1.9
--- phpdoc/en/reference/dom/functions/dom-domdocument-validate.xml:1.8  Mon Jan 
17 03:41:33 2005
+++ phpdoc/en/reference/dom/functions/dom-domdocument-validate.xml      Fri Mar 
11 11:14:10 2005
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.8 $ -->
+<!-- $Revision: 1.9 $ -->
 <refentry id="function.dom-domdocument-validate">
  <refnamediv>
   <refname>DOMDocument->validate()</refname>
@@ -42,7 +42,7 @@
 $dom = new DOMDocument;
 $dom->Load('book.xml');
 if ($dom->validate()) {
-    echo "This document is valid!\n";  
+    echo "This document is valid!\n";
 }
 ?>
 ]]>
http://cvs.php.net/diff.php/phpdoc/en/reference/dom/functions/dom-domnodelist-item.xml?r1=1.8&r2=1.9&ty=u
Index: phpdoc/en/reference/dom/functions/dom-domnodelist-item.xml
diff -u phpdoc/en/reference/dom/functions/dom-domnodelist-item.xml:1.8 
phpdoc/en/reference/dom/functions/dom-domnodelist-item.xml:1.9
--- phpdoc/en/reference/dom/functions/dom-domnodelist-item.xml:1.8      Mon Jan 
17 03:41:34 2005
+++ phpdoc/en/reference/dom/functions/dom-domnodelist-item.xml  Fri Mar 11 
11:14:10 2005
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.8 $ -->
+<!-- $Revision: 1.9 $ -->
 <refentry id='function.dom-domnodelist-item'>
  <refnamediv>
   <refname>DOMNodelist->item()</refname>
@@ -66,7 +66,7 @@
 $items = $doc->getElementsByTagName('entry');
 
 for ($i = 0; $i < $items->length; $i++) {
-    echo $items->item($i)->nodeValue . "\n";   
+    echo $items->item($i)->nodeValue . "\n";
 }
 
 ?>
@@ -80,7 +80,7 @@
 <?php
 
 foreach ($items as $item) {
-    echo $item->nodeValue . "\n";      
+    echo $item->nodeValue . "\n";
 }
 
 ?>
http://cvs.php.net/diff.php/phpdoc/en/reference/soap/functions/soap-soapclient-construct.xml?r1=1.4&r2=1.5&ty=u
Index: phpdoc/en/reference/soap/functions/soap-soapclient-construct.xml
diff -u phpdoc/en/reference/soap/functions/soap-soapclient-construct.xml:1.4 
phpdoc/en/reference/soap/functions/soap-soapclient-construct.xml:1.5
--- phpdoc/en/reference/soap/functions/soap-soapclient-construct.xml:1.4        
Sun Feb  6 16:24:41 2005
+++ phpdoc/en/reference/soap/functions/soap-soapclient-construct.xml    Fri Mar 
11 11:14:11 2005
@@ -1,5 +1,5 @@
 <?xml version='1.0' encoding='iso-8859-1'?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
 <refentry id="function.soap-soapclient-construct">
  <refnamediv>
   <refname>SoapClient->__construct()</refname>
@@ -125,8 +125,8 @@
 $server = new SoapClient("some.wsdl", array('encoding'=>'ISO-8859-1'));
 
 class MyBook {
-       public $title;
-       public $author;         
+    public $title;
+    public $author;
 }
 
 $server = new SoapClient("books.wsdl", array('classmap' => array('book' => 
"MyBook")));
http://cvs.php.net/diff.php/phpdoc/en/reference/soap/functions/soap-soapserver-construct.xml?r1=1.2&r2=1.3&ty=u
Index: phpdoc/en/reference/soap/functions/soap-soapserver-construct.xml
diff -u phpdoc/en/reference/soap/functions/soap-soapserver-construct.xml:1.2 
phpdoc/en/reference/soap/functions/soap-soapserver-construct.xml:1.3
--- phpdoc/en/reference/soap/functions/soap-soapserver-construct.xml:1.2        
Fri Jan 28 09:02:11 2005
+++ phpdoc/en/reference/soap/functions/soap-soapserver-construct.xml    Fri Mar 
11 11:14:11 2005
@@ -1,5 +1,5 @@
 <?xml version='1.0' encoding='iso-8859-1'?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
 <refentry id="function.soap-soapserver-construct">
  <refnamediv>
   <refname>SoapServer->__construct()</refname>
@@ -72,8 +72,8 @@
 $server = new SoapServer(null, array('uri' => "http://test-uri/";));
 
 class MyBook {
-       public $title;
-       public $author;         
+    public $title;
+    public $author;
 }
 
 $server = new SoapServer("books.wsdl", array('classmap' => array('book' => 
"MyBook")));

Reply via email to