[PHP-DOC] cvs: phpdoc /de Translators

2001-04-28 Thread Sebastian Bergmann

sbergmann   Sat Apr 28 23:23:25 2001 EDT

  Modified files:  
/phpdoc/de  Translators 
  Log:
  s/phpopentracker/sebastian-bergmann
  
Index: phpdoc/de/Translators
diff -u phpdoc/de/Translators:1.155 phpdoc/de/Translators:1.156
--- phpdoc/de/Translators:1.155 Wed Apr 25 06:43:38 2001
+++ phpdoc/de/Translators   Sat Apr 28 23:23:25 2001
@@ -15,7 +15,7 @@
 samesch Martin Samesch [EMAIL PROTECTED]
 jan Jan Lehnardt   [EMAIL PROTECTED]
 chrullrich  Christian Ullrich  [EMAIL PROTECTED]
-sbergmann   Sebastian Bergmann [EMAIL PROTECTED]
+sbergmann   Sebastian Bergmann [EMAIL PROTECTED]
 Christian Bombera  [EMAIL PROTECTED]
 Holger Schranz [EMAIL PROTECTED]
 martin  Martin Kraemer [EMAIL PROTECTED]





[PHP-DOC] cvs: phpdoc /de/functions mysql.xml

2001-04-28 Thread Derick Rethans

derick  Sat Apr 28 12:08:17 2001 EDT

  Modified files:  
/phpdoc/de/functionsmysql.xml 
  Log:
  - Fix for bug #10474
  
  
Index: phpdoc/de/functions/mysql.xml
diff -u phpdoc/de/functions/mysql.xml:1.22 phpdoc/de/functions/mysql.xml:1.23
--- phpdoc/de/functions/mysql.xml:1.22  Sat Nov 25 02:31:32 2000
+++ phpdoc/de/functions/mysql.xml   Sat Apr 28 12:08:16 2001
@@ -720,18 +720,18 @@
 echo "No information available
\n"; } echo "
-blob: $meta -> blob
-max_length:   $meta -> max_length
-multiple_key: $meta -> multiple_key
-name: $meta -> name
-not_null: $meta -> not_null
-numeric:  $meta -> numeric
-primary_key:  $meta -> primary_key
-table:$meta -> table
-type: $meta -> type
-unique_key:   $meta -> unique_key
-unsigned: $meta -> unsigned
-zerofill: $meta -> zerofill
+blob: $meta->blob
+max_length:   $meta->max_length
+multiple_key: $meta->multiple_key
+name: $meta->name
+not_null: $meta->not_null
+numeric:  $meta->numeric
+primary_key:  $meta->primary_key
+table:$meta->table
+type: $meta->type
+unique_key:   $meta->unique_key
+unsigned: $meta->unsigned
+zerofill: $meta->zerofill
 
"; $i++; }

[PHP-DOC] cvs: phpdoc /de bookinfo.xml

2001-04-28 Thread Egon Schmid

eschmid Sat Apr 28 08:45:24 2001 EDT

  Modified files:  
/phpdoc/de  bookinfo.xml 
  Log:
  Some credits for Conni.
  
Index: phpdoc/de/bookinfo.xml
diff -u phpdoc/de/bookinfo.xml:1.17 phpdoc/de/bookinfo.xml:1.18
--- phpdoc/de/bookinfo.xml:1.17 Sun Feb 25 14:08:14 2001
+++ phpdoc/de/bookinfo.xml  Sat Apr 28 08:45:19 2001
@@ -113,6 +113,9 @@

 Christian Ullrich

+   
+Cornelia Boenigk
+   
   
 
   





[PHP-DOC] cvs: phpdoc /en/functions domxml.xml

2001-04-28 Thread David Croft

david   Sat Apr 28 00:38:46 2001 EDT

  Modified files:  
/phpdoc/en/functionsdomxml.xml 
  Log:
  fix some spelling and grammar
  
  
Index: phpdoc/en/functions/domxml.xml
diff -u phpdoc/en/functions/domxml.xml:1.11 phpdoc/en/functions/domxml.xml:1.12
--- phpdoc/en/functions/domxml.xml:1.11 Wed Feb  7 02:53:47 2001
+++ phpdoc/en/functions/domxml.xml  Sat Apr 28 00:38:45 2001
@@ -4,7 +4,7 @@
 
   

-This documentation ist not finished yet. Don't start to translate it
+This documentation is not finished yet. Don't start to translate it
 or use it as a programming reference ([EMAIL PROTECTED]).


@@ -15,14 +15,14 @@
 These functions have been added in PHP 4.


-The extension allows to operate on an XML document with the DOM api.
+The extension allows you to operate on an XML document with the DOM API.
 It also provides a function xmltree to turn the
-complete XML document into a tree of php objects. Currently this
-tree is read only, which doesn't mean you cannot modify it, but it
+complete XML document into a tree of PHP objects. Currently this
+tree should be considered read-only - you can modify it but this
 would not make any sense since dumpmem cannot be
 applied to it. Therefore, if you want to read an XML file and write
 a modified version use the add_node,
-set_attribute, etc. and finaly
+set_attribute, etc. and finally
 dumpmem functions.


@@ -113,13 +113,12 @@
 


-Each function in this extension can be used in two ways. In a none object
+Each function in this extension can be used in two ways. In a non-object
 oriented way by passing the object to apply the function to as a first
-argument or in an object oriented way by calling the function as a method
-of an object. This documentation describes the none object oriented
+argument, or in an object oriented way by calling the function as a method
+of an object. This documentation describes the non-object oriented
 functions, though you get the object methods by skipping the prefix
-"domxml_". The following table will list all classes, its attributes and
-methods.
+"domxml_".


 This module defines a number of classes, which are listed —
@@ -455,7 +454,7 @@
  The function parses the XML document in the file named
  filename and returns an object of class
  "Dom document", having the properties as listed above.
- The file is accessed read only.
+ The file is accessed read-only.
 
 
  See also xmldoc
@@ -467,7 +466,7 @@

 xmltree
 
- Creates a tree of php objects from XML document
+ Creates a tree of PHP objects from XML document
 


@@ -482,10 +481,10 @@
  The function parses the XML document in
  str and returns a tree PHP objects as the
  parsed document. This function is isolated from the other functions,
- which means, you cannot access the tree wiht any of the other functions.
+ which means you cannot access the tree with any of the other functions.
  Modifying it, for example by adding nodes, makes no sense since there
  is currently no way to dump it as an XML file.
- Though this function may be valueable if you want to read a file and
+ However this function may be valuable if you want to read a file and
  investigate the content.
 

@@ -508,7 +507,7 @@
 
 
  Returns element node located at the root of a an DOM document.
- There are actually other possible nodes like comments which currently
+ There are actually other possible nodes like comments which are currently
  disregarded.