[PHP-DOC] cvs: phpdoc / version.dsl /en/functions gettext.xml oci8.xml From: Rasmus Lerdorf (rasmus <email protected>)
Date: 08/08/00

rasmus Tue Aug 8 16:57:55 2000 EDT

  Modified files:
    /phpdoc version.dsl
    /phpdoc/en/functions gettext.xml oci8.xml
  Log:
  Commit some minor stuff I did on the plane
  
  
Index: phpdoc/version.dsl
diff -u phpdoc/version.dsl:1.8 phpdoc/version.dsl:1.9
--- phpdoc/version.dsl:1.8 Fri Jul 21 15:05:12 2000
+++ phpdoc/version.dsl Tue Aug 8 16:57:54 2000
@@ -689,6 +689,7 @@
    ((equal? (data nl) "levenshtein") (literal "PHP3 CVS only, PHP4 >= 4.0.1"))
    ((equal? (data nl) "link") (literal "PHP3 , PHP4 "))
    ((equal? (data nl) "linkinfo") (literal "PHP3 , PHP4 "))
+ ((equal? (data nl) "list") (literal "PHP3 , PHP4 "))
    ((equal? (data nl) "log") (literal "PHP3 , PHP4 "))
    ((equal? (data nl) "log10") (literal "PHP3 , PHP4 "))
    ((equal? (data nl) "logas") (literal "PHP3 , PHP4 <= 4.0.0"))
Index: phpdoc/en/functions/gettext.xml
diff -u phpdoc/en/functions/gettext.xml:1.3 phpdoc/en/functions/gettext.xml:1.4
--- phpdoc/en/functions/gettext.xml:1.3 Sat Jun 24 00:38:43 2000
+++ phpdoc/en/functions/gettext.xml Tue Aug 8 16:57:55 2000
@@ -2,6 +2,14 @@
   <title>GNU Gettext</title>
   <titleabbrev>gettext</titleabbrev>
 
+ <partintro>
+ <simpara>
+ The gettext functions implement a NLS (Native Language Support)
+ API which can be used to internationalize your PHP applications.
+ Please see the GNU gettext documentation for a thorough explanation
+ of these functions.
+ </simpara>
+ </partintro>
   <refentry id="function.bindtextdomain">
    <refnamediv>
     <refname>bindtextdomain</refname>
Index: phpdoc/en/functions/oci8.xml
diff -u phpdoc/en/functions/oci8.xml:1.8 phpdoc/en/functions/oci8.xml:1.9
--- phpdoc/en/functions/oci8.xml:1.8 Tue Aug 1 16:17:37 2000
+++ phpdoc/en/functions/oci8.xml Tue Aug 8 16:57:55 2000
@@ -249,8 +249,7 @@
 $c2 = ocilogon("scott","tiger",$db);
 
 function create_table($conn)
-{ $stmt = ociparse($conn,"create table scott.hallo (test
-varchar2(64))");
+{ $stmt = ociparse($conn,"create table scott.hallo (test varchar2(64))");
   ociexecute($stmt);
   echo $conn." created table\n\n";
 }
@@ -262,7 +261,8 @@
 }
 
 function insert_data($conn)
-{ $stmt = ociparse($conn,"insert into scott.hallo values('$conn' || ' ' || to_char(sysdate,'DD-MON-YY HH24:MI:SS'))");
+{ $stmt = ociparse($conn,"insert into scott.hallo
+ values('$conn' || ' ' || to_char(sysdate,'DD-MON-YY HH24:MI:SS'))");
   ociexecute($stmt,OCI_DEFAULT);
   echo $conn." inserted hallo\n\n";
 }
@@ -417,7 +417,8 @@
 }
 
 function insert_data($conn)
-{ $stmt = ociparse($conn,"insert into scott.hallo values('$conn' || ' ' || to_char(sysdate,'DD-MON-YY HH24:MI:SS'))");
+{ $stmt = ociparse($conn,"insert into scott.hallo
+ values('$conn' || ' ' || to_char(sysdate,'DD-MON-YY HH24:MI:SS'))");
   ociexecute($stmt,OCI_DEFAULT);
   echo $conn." inserted hallo\n\n";
 }
@@ -635,7 +636,8 @@
      // $lob_upload contains the temporary filename of the uploaded file
      $conn = OCILogon($user, $password);
      $lob = OCINewDescriptor($conn, OCI_D_LOB);
- $stmt = OCIParse($conn,"insert into $table (id, the_blob) values(my_seq.NEXTVAL, EMPTY_BLOB()) returning the_blob into :the_blob");
+ $stmt = OCIParse($conn,"insert into $table (id, the_blob)
+ values(my_seq.NEXTVAL, EMPTY_BLOB()) returning the_blob into :the_blob");
      OCIBindByName($stmt, ':the_blob', &amp;$lob, -1, OCI_B_BLOB);
      OCIExecute($stmt);
      if($lob->savefile($lob_upload)){