[PHP-DOC] cvs: phpdoc /en/features commandline.xml

2002-05-06 Thread Friedhelm Betz

betzMon May  6 06:43:56 2002 EDT

  Added files: 
/phpdoc/en/features commandline.xml 
  Log:
  moved commandline to chapters/features
  id correction in commandline.xml for chapters/features
  


Index: phpdoc/en/features/commandline.xml
+++ phpdoc/en/features/commandline.xml
?xml version=1.0 encoding=iso-8859-1?
!-- $Revision: 1.1 $ --
!-- 
   TODO:
   
 The command line options not in the
 list, but in the -h output below:
   
   -e, -z

 It would be best to document these, and
 collect more info about -c and -d!
--
chapter id=features.commandline
 titleUsing PHP from the command line/title
 para
  The command line options of the PHP executable are useful
  if you would like to debug or test your PHP setup, but they
  can also be handy, if you would like to use PHP for a
  different purpose than web scripting.
 /para
 para
  Note, that you can always direct the output of the PHP
  executable to an external file with the gt; character,
  so literalphp -q test.php  test.html/literal will
  print out the output of filenametest.php/filename
  without HTTP headers to the filenametest.html/filename
  file in the same directory.
 /para
 para
  You can only use these command line options if you have
  the PHP executable. If you built the server module
  version, and you have no CGI version available on your
  machine, than you have no chance to use these options.
  For Windows users both the PHP executable and the server
  modules are in the binary package, the executable is
  named filenamephp.exe/filename.
 /para
 para
  This list of command line options is consistent with PHP 4.0.6.
  You can get the actual list and some one line descriptions
  with the literal-h/literal option. The output of
  literalphp -h/literal should be something like this:
  screen
![CDATA[
Usage: php [-q] [-h] [-s [-v] [-i] [-f file] |  {file [args...]}
  -q Quiet-mode.  Suppress HTTP Header output.
  -s Display colour syntax highlighted source.
  -f file  Parse file.  Implies `-q'
  -v Version number
  -C Do not chdir to the script's directory
  -c path  Look for php.ini file in this directory
  -d foo[=bar]   Define INI entry foo with value 'bar'
  -e Generate extended information for debugger/profiler
  -z file  Load Zend extension file.
  -l Syntax check only (lint)
  -m Show compiled in modules
  -i PHP information
  -h This help
]]
  /screen
 /para
 para
  Here we list some of the most important command line options
  with detailed explanations.
 /para
 para
  table
   titleCommand line options/title
   tgroup cols=2
thead
 row
  entryOption/entry
  entryDescription/entry
 /row
/thead
tbody
 row
  entry-q/entry
  entry
   Suppress HTTP headers output. Normally PHP prints out
   HTTP headers for the calling program (ie. webserver)
   to hand on to the browser. When writing command line
   applications these headers are useless.
  /entry
 /row
 row
  entry-s/entry
  entry
   Display the color highlighted source of the file
   given with its name. This is the same as if you were
   printing out the source using the
   functionhighlight_file/function function in
   a PHP script.
  /entry
 /row
 row
  entry-f/entry
  entry
   Parse the file given, and search for syntactical and
   fatal errors. This option implies -q. Use for
   debugging purposes.
  /entry
 /row
 row
  entry-v/entry
  entry
   By calling PHP with this option, you can ask
   it to print out its version number, ie: 4.0.6. 
  /entry
 /row
 row
  entry-C/entry
  entry
   Normally PHP changes the working directory to the
   running scripts directory. This makes it possible
   for example, to open files in the same directory,
   with only specifying the name of the file. If you
   would like to disable this directory change, use
   this option.
  /entry
 /row
 row
  entry-c/entry
  entry
   Using this option, you can specify an alternative
   php.ini; path, so PHP will
   search your configurations file in this path
   instead of the default one.
  /entry
 /row
 row
  entry-d/entry
  entry
   With this option, you can set individual 
   php.ini; settings in the
   time of running a script.
  /entry
 /row
 row
  entry-l/entry
  entry
   Check the file given for syntax errors. This
   option implies -q. Use for debugging purposes.
   This option won't find fatal errors (like undefined
   functions). Use -f if you would like to test
   for fatal errors too.
  /entry
 /row
 row
  entry-m/entry
  entry
   Using this option, PHP prints out the built in
   (and loaded) PHP

[PHP-DOC] cvs: phpdoc /en/chapters config.xml install.general.xml intro.xml

2002-05-06 Thread Friedhelm Betz

betzMon May  6 06:46:23 2002 EDT

  Modified files:  
/phpdoc/en/chapters config.xml install.general.xml intro.xml 
  Log:
  link correction for commandline
  
Index: phpdoc/en/chapters/config.xml
diff -u phpdoc/en/chapters/config.xml:1.50 phpdoc/en/chapters/config.xml:1.51
--- phpdoc/en/chapters/config.xml:1.50  Fri Apr 12 21:22:40 2002
+++ phpdoc/en/chapters/config.xml   Mon May  6 06:46:22 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.50 $ --
+!-- $Revision: 1.51 $ --
  chapter id=configuration
   titleConfiguration/title
 
 -628,7 +628,7 
 (that would contain the GET information).
/simpara
simpara
- See also link linkend=commandlinecommand line/link.
+ See also link linkend=features.commandlinecommand line/link.
  Also, this directive became available in PHP 4.0.0 and 
   was always on before that.
 /simpara
Index: phpdoc/en/chapters/install.general.xml
diff -u phpdoc/en/chapters/install.general.xml:1.1 
phpdoc/en/chapters/install.general.xml:1.2
--- phpdoc/en/chapters/install.general.xml:1.1  Mon Jan 14 14:40:01 2002
+++ phpdoc/en/chapters/install.general.xml  Mon May  6 06:46:22 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.1 $ --
+!-- $Revision: 1.2 $ --
   sect1 id=install.general
titleGeneral Installation Considerations/title
para
 -48,7 +48,7 
 for you offline, or processing text files depending
 on some arguments you pass to them), you always need
 the command line executable. For more information, read
-the section about link linkend=commandlinewriting
+the section about link linkend=features.commandlinewriting
 command line PHP applications/link. In this case,
 you need no server and no browser.
/para
Index: phpdoc/en/chapters/intro.xml
diff -u phpdoc/en/chapters/intro.xml:1.33 phpdoc/en/chapters/intro.xml:1.34
--- phpdoc/en/chapters/intro.xml:1.33   Wed Apr 24 18:06:39 2002
+++ phpdoc/en/chapters/intro.xmlMon May  6 06:46:22 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.33 $ --
+!-- $Revision: 1.34 $ --
  chapter id=introduction
   titleIntroduction/title
 
 -100,7 +100,7 
executed using cron (on *nix or Linux) or Task Scheduler (on
Windows). These scripts can also be used for simple text
processing tasks. See the section about 
-   link linkend=commandlineCommand line usage of PHP/link
+   link linkend=features.commandlineCommand line usage of PHP/link
for more information.
   /simpara
  /listitem





[PHP-DOC] cvs: phpdoc /en/faq using.xml

2002-05-06 Thread Friedhelm Betz

betzMon May  6 06:46:41 2002 EDT

  Modified files:  
/phpdoc/en/faq  using.xml 
  Log:
  link correction for commandline
  
Index: phpdoc/en/faq/using.xml
diff -u phpdoc/en/faq/using.xml:1.17 phpdoc/en/faq/using.xml:1.18
--- phpdoc/en/faq/using.xml:1.17Sat May  4 08:16:01 2002
+++ phpdoc/en/faq/using.xml Mon May  6 06:46:41 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.17 $ --
+!-- $Revision: 1.18 $ --
 chapter id=faq.using
   titleUsing PHP/title
   titleabbrevUsing PHP/titleabbrev
 -195,7 +195,7 
  para
   Also, both IE and Lynx ignore any NULs (literal\0/literal) in 
   the HTML stream, Netscape does not.  The best way to check for this is 
-  to compile the link linkend=commandlinecommand line/link version of 
+  to compile the link linkend=features.commandlinecommand line/link version 
+of 
   PHP (also known as the CGI version) and run your script from the
   command line.  In *nix, pipe it through literalod -c/literal and look 
   for any literal\0/literal characters.  If you are on Windows you need 





[PHP-DOC] cvs: phpdoc /en/reference/gettext reference.xml

2002-05-06 Thread Friedhelm Betz

betzMon May  6 06:53:56 2002 EDT

  Modified files:  
/phpdoc/en/reference/gettextreference.xml 
  Log:
  new structure and some links
  
Index: phpdoc/en/reference/gettext/reference.xml
diff -u phpdoc/en/reference/gettext/reference.xml:1.2 
phpdoc/en/reference/gettext/reference.xml:1.3
--- phpdoc/en/reference/gettext/reference.xml:1.2   Mon Apr 15 14:56:39 2002
+++ phpdoc/en/reference/gettext/reference.xml   Mon May  6 06:53:56 2002
 -1,16 +1,53 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.2 $ --
+!-- $Revision: 1.3 $ --
  reference id=ref.gettext
   titleGettext/title
   titleabbrevgettext/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 gettext documentation from your system for a thorough
-explanation of these functions.
-   /simpara
+   section id=gettext.intro
+   reftitle.intro;
+simpara
+ The gettext functions implement a NLS (Native Language Support)
+ API which can be used to internationalize your PHP applications.
+ Please see the gettext documentation from your system for a thorough
+ explanation of these functions or view the docs at
+ ulink url=url.gettext.docs;url.gettext.docs;/ulink.
+/simpara
+   /section
+
+   section id=gettext.requirenments
+reftitle.required;
+para
+ To use this functions you must download and install the GNU gettext
+ package from ulink url=url.gettext;url.gettext;/ulink
+/para
+   /section
+
+   section id=gettext.installation
+reftitle.install;
+para
+ To include GNU gettext support in your PHP build you must add the option
+ option role=configure--with-gettext[=DIR]/option where DIR is the
+ gettext install directory, defaults to /usr/local.
+/para
+   /section
+
+   section id=gettext.configuration
+reftitle.runtime;
+no.config;
+   /section
+
+   section id=gettext.resources
+reftitle.resources;
+no.resource;
+   /section
+
+   section id=gettext.constants
+reftitle.constants;
+no.constants;
+   /section
+
   /partintro
 
 reference.gettext.functions;





[PHP-DOC] cvs: phpdoc / reserved.constants.xml.in

2002-05-06 Thread Friedhelm Betz

betzMon May  6 06:56:56 2002 EDT

  Modified files:  
/phpdoc reserved.constants.xml.in 
  Log:
  removed already integrated parts
  
Index: phpdoc/reserved.constants.xml.in
diff -u phpdoc/reserved.constants.xml.in:1.6 phpdoc/reserved.constants.xml.in:1.7
--- phpdoc/reserved.constants.xml.in:1.6Mon May  6 03:20:51 2002
+++ phpdoc/reserved.constants.xml.inMon May  6 06:56:56 2002
 -3,7 +3,6 
   titleReservedConstants;/title
   appendices.reserved.constants.core;
   appendices.reserved.constants.gd;
-  appendices.reserved.constants.gmp;
   appendices.reserved.constants.hyperwave;
   appendices.reserved.constants.imap;
   appendices.reserved.constants.ingres;





Re: [PHP-DOC] Where to document the (not so new but still new) CLI sapi?

2002-05-06 Thread Friedhelm Betz


 What about Features/Comandline Scripting with the content of
 appendices/commandline.xml plus the cli-doku?

 Agreed.

I just moved the commandline.xml from appendices to
features/commandline (also  correcting id and links).
Docu for cli could go here.


 Friedhelm   




[PHP-DOC] cvs: phpdoc /en/reference/dbx constants.xml

2002-05-05 Thread Friedhelm Betz

betzSun May  5 12:39:15 2002 EDT

  Modified files:  
/phpdoc/en/reference/dbxconstants.xml 
  Log:
  id correction
  
Index: phpdoc/en/reference/dbx/constants.xml
diff -u phpdoc/en/reference/dbx/constants.xml:1.1 
phpdoc/en/reference/dbx/constants.xml:1.2
--- phpdoc/en/reference/dbx/constants.xml:1.1   Mon Apr 29 08:08:53 2002
+++ phpdoc/en/reference/dbx/constants.xml   Sun May  5 12:39:15 2002
 -1,6 +1,6 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.1 $ --
- section id=reserved.constants.dbx
+!-- $Revision: 1.2 $ --
+ section id=constants.dbx
  reftitle.constants;
  extension.constants;
   variablelist





Re: [PHP-DOC] Indentation in mysql examples

2002-05-03 Thread Friedhelm Betz


Hi,

 On Fri, 3 May 2002, Egon Schmid wrote:

 From: Simone Cortesi [EMAIL PROTECTED]
  At 00.24 03/05/02 +0200, =?iso-8859-2?Q?S=B3awomir_Pucia?= wrote:
 
  Probably you didn't get the point.
  
  Since 1.101 many examples look like...
  
  ?php
   /* Connecting, selecting database */
   $link = mysql_connect(mysql_host, mysql_user,
 mysql_password)
   or die(Could not connect);
   print Connected successfully;
  [...]
  
  Until 1.101 they looked like...
  
  ?php
  /* Connecting, selecting database */
  $link = mysql_connect(mysql_host, mysql_user,
 mysql_password)
   or die(Could not connect);
  print Connected successfully;
  [...]
  
  The question is whether or not to use these 4 spaces in each
 line. If yes, I
  will correct the rest of mysql related files, and use it in pl/.
 
  I've read that we should start at column 1 in examples:
 
  Take a look at: /phpdoc/RFC/coding_standards
 
 Oh, it seems that Derick haven´t read the coding_standards :(

 Oh, btw, it sais 3. The contents of examples with programlistings start 
 on column 0 in the XML code. IMO ?php is also code, and just like { or } 
 and thus need indentation, but that is my opinion. ANyway, I think 
 indenting everything with four spaces adds a lot to readbility in code, as 
 your left margin is usually the most left pixel of your screen. 

Hey, it was me who collected some mails from the list and from the
howto. This coding_standard in RFC is only a draft and starting point for
discussions. Once a descision is made (if ever), the things should go into the
howto. So far I understand this RFC directory:-)

From the protocol of the meeting in Stuttgart:
17. Examples
The examples in the manual should be more consistent and useful. A
draft styleguide alredy exists under phpdoc/RFC/coding_standards.

officially identation is not descided.. :-)
If the examples are more useful with identation everything it's ok,
why not?
The only thing to keep in mind is: there are some examples with very
long lines and ident everything (also ?php) could probably break the
layout.

What about starting with ?php at column 2 and ident everything else
with 4 spaces?

 Friedhelm   




Re: [PHP-DOC] php autodetect

2002-05-01 Thread Friedhelm Betz


Hallo Gabor,

Wednesday, May 01, 2002, 12:29:15 PM, you wrote:

 Hi!

 I am not experienced with configure script coding at all,
 but I have tried some methods to make php autodetect work
 on windows, but with no success.

Hm, it worked for me all the time, maybe because the path where php
is installed  is in my path environment variable.
e.g: /cygdrive/c/php:

The output, using cygwin:

$ ./configure
file versions
Makefile.in,v 1.113
configure.in,v 1.145
configure options:

checking for php... /cygdrive/c/php/php
checking php version... 4.1.1 ok
checking for jade... ../phpdoc-tools/jade/jade.exe

It also works specifying manually where the php.exe is located:
e.g.:

$ ./configure --with-php=/cygdrive/c/php/php.exe
file versions
Makefile.in,v 1.113
configure.in,v 1.145
configure options: --with-php=/cygdrive/c/php/php.exe

checking for php... /cygdrive/c/php/php.exe
checking php version... 4.1.1 ok

Maybe you didn't try the somewhat strange cygwin path-natation? :-)


 Friedhelm   




Re: [PHP-DOC] continue what I have started

2002-04-30 Thread Friedhelm Betz


[...]

 Every configure and ini options should be configured in
 a reference section, if there is a reference section
 for that topic. If there is no, then we need to put that
 remainder option (probably core one) to a common place
 (probably to that appendix, where the autogenerated index
 of all the ini and configure options will reside).

I can remember a discussion about ini.xml in every /referenc/ext
with all ini-related settings for that extension (like constants.xml)
Am I right and should this be done?

 Friedhelm   




[PHP-DOC] cvs: phpdoc /en/appendices resources.xml

2002-04-29 Thread Friedhelm Betz

betzMon Apr 29 04:07:45 2002 EDT

  Modified files:  
/phpdoc/en/appendices   resources.xml 
  Log:
  corrected entries for dba_open and dba_popen
  
Index: phpdoc/en/appendices/resources.xml
diff -u phpdoc/en/appendices/resources.xml:1.25 phpdoc/en/appendices/resources.xml:1.26
--- phpdoc/en/appendices/resources.xml:1.25 Mon Apr  8 23:19:36 2002
+++ phpdoc/en/appendices/resources.xml  Mon Apr 29 04:07:43 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.25 $ --
+!-- $Revision: 1.26 $ --
 appendix id=resource
  titleList of Resource Types/title
  para
 -192,7 +192,7 
row
 entrydba/entry
 entry
- functiondba_popen/function
+ functiondba_open/function
 /entry
 entry
  functiondba_delete/function,
 -213,7 +213,7 
row
 entrydba persistent/entry
 entry
- functiondba_open/function
+ functiondba_popen/function
 /entry
 entry
  functiondba_delete/function,





[PHP-DOC] cvs: phpdoc /en/reference/dbm/functions dbmclose.xml dbmdelete.xml dbmexists.xml dbmfetch.xml dbmfirstkey.xml dbminsert.xml dbmnextkey.xml dbmopen.xml dbmreplace.xml

2002-04-29 Thread Friedhelm Betz

betzMon Apr 29 08:06:33 2002 EDT

  Modified files:  
/phpdoc/en/reference/dbm/functions  dbmreplace.xml dbmopen.xml 
dbmnextkey.xml dbminsert.xml 
dbmfirstkey.xml dbmfetch.xml 
dbmexists.xml dbmdelete.xml 
dbmclose.xml 
  Log:
  changed return type for dbmopen to resource; also paramtypes for the functions.
  
  

Index: phpdoc/en/reference/dbm/functions/dbmreplace.xml
diff -u phpdoc/en/reference/dbm/functions/dbmreplace.xml:1.2 
phpdoc/en/reference/dbm/functions/dbmreplace.xml:1.3
--- phpdoc/en/reference/dbm/functions/dbmreplace.xml:1.2Wed Apr 17 02:37:21 
2002
+++ phpdoc/en/reference/dbm/functions/dbmreplace.xmlMon Apr 29 08:06:32 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.2 $ --
+!-- $Revision: 1.3 $ --
 !-- splitted from ./en/functions/dbm.xml, last change in rev 1.2 --
   refentry id=function.dbmreplace
refnamediv
 -12,7 +12,7 
 titleDescription/title
  methodsynopsis
   typeint/typemethodnamedbmreplace/methodname
-  methodparamtypeint/typeparameterdbm_identifier/parameter/methodparam
+  
+methodparamtyperesource/typeparameterdbm_identifier/parameter/methodparam
   methodparamtypestring/typeparameterkey/parameter/methodparam
   methodparamtypestring/typeparametervalue/parameter/methodparam
  /methodsynopsis
Index: phpdoc/en/reference/dbm/functions/dbmopen.xml
diff -u phpdoc/en/reference/dbm/functions/dbmopen.xml:1.2 
phpdoc/en/reference/dbm/functions/dbmopen.xml:1.3
--- phpdoc/en/reference/dbm/functions/dbmopen.xml:1.2   Wed Apr 17 02:37:21 2002
+++ phpdoc/en/reference/dbm/functions/dbmopen.xml   Mon Apr 29 08:06:32 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.2 $ --
+!-- $Revision: 1.3 $ --
 !-- splitted from ./en/functions/dbm.xml, last change in rev 1.2 --
   refentry id=function.dbmopen
refnamediv
 -9,7 +9,7 
refsect1
 titleDescription/title
  methodsynopsis
-  typeint/typemethodnamedbmopen/methodname
+  typeresource/typemethodnamedbmopen/methodname
   methodparamtypestring/typeparameterfilename/parameter/methodparam
   methodparamtypestring/typeparameterflags/parameter/methodparam
  /methodsynopsis
Index: phpdoc/en/reference/dbm/functions/dbmnextkey.xml
diff -u phpdoc/en/reference/dbm/functions/dbmnextkey.xml:1.2 
phpdoc/en/reference/dbm/functions/dbmnextkey.xml:1.3
--- phpdoc/en/reference/dbm/functions/dbmnextkey.xml:1.2Wed Apr 17 02:37:21 
2002
+++ phpdoc/en/reference/dbm/functions/dbmnextkey.xmlMon Apr 29 08:06:32 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.2 $ --
+!-- $Revision: 1.3 $ --
 !-- splitted from ./en/functions/dbm.xml, last change in rev 1.2 --
   refentry id=function.dbmnextkey
refnamediv
 -11,7 +11,7 
 titleDescription/title
  methodsynopsis
   typestring/typemethodnamedbmnextkey/methodname
-  methodparamtypeint/typeparameterdbm_identifier/parameter/methodparam
+  
+methodparamtyperesource/typeparameterdbm_identifier/parameter/methodparam
   methodparamtypestring/typeparameterkey/parameter/methodparam
  /methodsynopsis
 para
Index: phpdoc/en/reference/dbm/functions/dbminsert.xml
diff -u phpdoc/en/reference/dbm/functions/dbminsert.xml:1.2 
phpdoc/en/reference/dbm/functions/dbminsert.xml:1.3
--- phpdoc/en/reference/dbm/functions/dbminsert.xml:1.2 Wed Apr 17 02:37:20 2002
+++ phpdoc/en/reference/dbm/functions/dbminsert.xml Mon Apr 29 08:06:32 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.2 $ --
+!-- $Revision: 1.3 $ --
 !-- splitted from ./en/functions/dbm.xml, last change in rev 1.2 --
   refentry id=function.dbminsert
refnamediv
 -12,7 +12,7 
 titleDescription/title
  methodsynopsis
   typeint/typemethodnamedbminsert/methodname
-  methodparamtypeint/typeparameterdbm_identifier/parameter/methodparam
+  
+methodparamtyperesource/typeparameterdbm_identifier/parameter/methodparam
   methodparamtypestring/typeparameterkey/parameter/methodparam
   methodparamtypestring/typeparametervalue/parameter/methodparam
  /methodsynopsis
Index: phpdoc/en/reference/dbm/functions/dbmfirstkey.xml
diff -u phpdoc/en/reference/dbm/functions/dbmfirstkey.xml:1.2 
phpdoc/en/reference/dbm/functions/dbmfirstkey.xml:1.3
--- phpdoc/en/reference/dbm/functions/dbmfirstkey.xml:1.2   Wed Apr 17 02:37:20 
2002
+++ phpdoc/en/reference/dbm/functions/dbmfirstkey.xml   Mon Apr 29 08:06:32 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.2 $ --
+!-- $Revision: 1.3 $ --
 !-- splitted from ./en/functions/dbm.xml, last change in rev 1.2 --
   refentry id=function.dbmfirstkey
refnamediv
 -12,7 +12,7 
 titleDescription/title
  methodsynopsis
   typestring/typemethodnamedbmfirstkey/methodname

[PHP-DOC] cvs: phpdoc /en/reference/dbm reference.xml

2002-04-29 Thread Friedhelm Betz

betzMon Apr 29 08:07:49 2002 EDT

  Modified files:  
/phpdoc/en/reference/dbmreference.xml 
  Log:
  new structure, some text ito sections added.
  
Index: phpdoc/en/reference/dbm/reference.xml
diff -u phpdoc/en/reference/dbm/reference.xml:1.2 
phpdoc/en/reference/dbm/reference.xml:1.3
--- phpdoc/en/reference/dbm/reference.xml:1.2   Mon Apr 15 14:56:32 2002
+++ phpdoc/en/reference/dbm/reference.xml   Mon Apr 29 08:07:49 2002
 -1,17 +1,68 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.2 $ --
+!-- $Revision: 1.3 $ --
  reference id=ref.dbm
   titleDBM Functions/title
   titleabbrevDBM/titleabbrev
 
   partintro
-   simpara
-These functions allow you to store records stored in a dbm-style
-database. This type of database (supported by the Berkeley DB,
-GDBM, and some system libraries, as well as a built-in flatfile
-library) stores key/value pairs (as opposed to the full-blown
-records supported by relational databases).
-   /simpara
+   section id=dbm.intro
+reftitle.intro;
+para
+ These functions allow you to store records stored in a dbm-style
+ database. This type of database (supported by the Berkeley DB,
+ ulink url=url.gdbm;GDBM/ulink, and some system libraries,
+ as well as a built-in flatfile library) stores key/value pairs
+ (as opposed to the full-blown records supported by relational
+ databases).
+/para
+note
+ para
+  However, dbm support is deprecated and you are encourged to use the
+  link linkend=ref.dbaDatabase (dbm-style) abstraction layer functions/link
+  instead.
+ /para
+/note
+   /section
+   
+   section id=dbm.required
+reftitle.required;
+para
+ To use this functions you have to compile PHP with support for an
+ underlying database. See the 
+ link linkend=dba.requirementslist/link of supported Databases.
+/para
+   /section
+   
+   section id=dbm.installation
+reftitle.install;
+para
+ In order to use these functions, you must compile PHP with dbm support
+ by using the option role=configure--with-db/option option. In
+ addtion you must ensure link linkend=dba.installationsupport/link
+ for an underlying database or you can use some sytem libraries.
+/para
+   /section
+   
+   section id=dbm.runtime
+reftitle.runtime;
+no.config;
+   /section
+
+   section id=dbm.resources
+reftitle.resources;
+para
+ The function functiondbmopen/function returns an database identifier
+ which is used by the other dbm-functions.
+/para
+   /section
+   
+   section id=dbm.constants
+reftitle.constants;
+no.constants;
+   /section
+   
+   section id=dbm.examples
+   reftitle.examples;
para
 example
  titleDBM example/title
 -30,11 +81,35 
  /programlisting
 /example
/para
+  /section
   /partintro
 
 reference.dbm.functions;
 
  /reference
+!-- Keep this comment at the end of the file
+Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:1
+sgml-indent-data:t
+indent-tabs-mode:nil
+sgml-parent-document:nil
+sgml-default-dtd-file:../../../manual.ced
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+vim600: syn=xml fen fdm=syntax fdl=2 si
+vim: et tw=78 syn=sgml
+vi: ts=1 sw=1
+--
+
+
+
 !-- Keep this comment at the end of the file
 Local variables:
 mode: sgml





[PHP-DOC] cvs: phpdoc /en/reference/dbx constants.xml

2002-04-29 Thread Friedhelm Betz

betzMon Apr 29 08:08:53 2002 EDT

  Added files: 
/phpdoc/en/reference/dbxconstants.xml 
  Log:
  constants for dbx added
  

Index: phpdoc/en/reference/dbx/constants.xml
+++ phpdoc/en/reference/dbx/constants.xml
?xml version=1.0 encoding=iso-8859-1?
!-- $Revision: 1.1 $ --
 section id=reserved.constants.dbx
 reftitle.constants;
 extension.constants;
  variablelist
varlistentry
 term
  constantDBX_MYSQL/constant 
  (link linkend=language.types.integerinteger/link)
 /term
 listitem
  simpara
   
  /simpara
 /listitem
/varlistentry
varlistentry
 term
  constantDBX_ODBC/constant 
  (link linkend=language.types.integerinteger/link)
 /term
 listitem
  simpara
   
  /simpara
 /listitem
/varlistentry
varlistentry
 term
  constantDBX_PGSQL/constant 
  (link linkend=language.types.integerinteger/link)
 /term
 listitem
  simpara
   
  /simpara
 /listitem
/varlistentry
varlistentry
 term
  constantDBX_MSSQL/constant 
  (link linkend=language.types.integerinteger/link)
 /term
 listitem
  simpara
   
  /simpara
 /listitem
/varlistentry
varlistentry
 term
  constantDBX_FBSQL/constant 
  (link linkend=language.types.integerinteger/link)
 /term
 listitem
  simpara
   
  /simpara
 /listitem
/varlistentry
varlistentry
 term
  constantDBX_OCI8/constant 
  (link linkend=language.types.integerinteger/link)
 /term
 listitem
  simpara
   
  /simpara
 /listitem
/varlistentry
varlistentry
 term
  constantDBX_SYBASECT/constant 
  (link linkend=language.types.integerinteger/link)
 /term
 listitem
  simpara
   
  /simpara
 /listitem
/varlistentry
varlistentry
 term
  constantDBX_PERSISTENT/constant 
  (link linkend=language.types.integerinteger/link)
 /term
 listitem
  simpara
   
  /simpara
 /listitem
/varlistentry
varlistentry
 term
  constantDBX_RESULT_INFO/constant 
  (link linkend=language.types.integerinteger/link)
 /term
 listitem
  simpara
   
  /simpara
 /listitem
/varlistentry
varlistentry
 term
  constantDBX_RESULT_INDEX/constant 
  (link linkend=language.types.integerinteger/link)
 /term
 listitem
  simpara
   
  /simpara
 /listitem
/varlistentry
varlistentry
 term
  constantDBX_RESULT_ASSOC/constant 
  (link linkend=language.types.integerinteger/link)
 /term
 listitem
  simpara
   
  /simpara
 /listitem
/varlistentry
varlistentry
 term
  constantDBX_CMP_NATIVE/constant 
  (link linkend=language.types.integerinteger/link)
 /term
 listitem
  simpara
   
  /simpara
 /listitem
/varlistentry
varlistentry
 term
  constantDBX_CMP_TEXT/constant 
  (link linkend=language.types.integerinteger/link)
 /term
 listitem
  simpara
   
  /simpara
 /listitem
/varlistentry
varlistentry
 term
  constantDBX_CMP_NUMBER/constant 
  (link linkend=language.types.integerinteger/link)
 /term
 listitem
  simpara
   
  /simpara
 /listitem
/varlistentry
varlistentry
 term
  constantDBX_CMP_ASC/constant 
  (link linkend=language.types.integerinteger/link)
 /term
 listitem
  simpara
   
  /simpara
 /listitem
/varlistentry
varlistentry
 term
  constantDBX_CMP_DESC/constant 
  (link linkend=language.types.integerinteger/link)
 /term
 listitem
  simpara
   
  /simpara
 /listitem
/varlistentry
   /variablelist
  /section

!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:../../../manual.ced
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
--





[PHP-DOC] cvs: phpdoc /en/reference/dbx reference.xml

2002-04-29 Thread Friedhelm Betz

betzMon Apr 29 08:09:16 2002 EDT

  Modified files:  
/phpdoc/en/reference/dbxreference.xml 
  Log:
  new structure added
  
Index: phpdoc/en/reference/dbx/reference.xml
diff -u phpdoc/en/reference/dbx/reference.xml:1.2 
phpdoc/en/reference/dbx/reference.xml:1.3
--- phpdoc/en/reference/dbx/reference.xml:1.2   Mon Apr 15 14:56:32 2002
+++ phpdoc/en/reference/dbx/reference.xml   Mon Apr 29 08:09:16 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.2 $ --
+!-- $Revision: 1.3 $ --
 
 !-- 
 If anyone from the translator group has problems with the 
 -10,35 +10,101 
  reference id=ref.dbx
   titledbx functions/title
   titleabbrevdbx/titleabbrev
+
   partintro
-   simpara
-The dbx module is a database abstraction layer (db 'X', where 'X'
-is a supported database). The dbx functions allow you to access
-all supported databases using a single calling convention.  In
-order to have these functions available, you must compile PHP with
-dbx support by using the link linkend=install.configure.enable-dbx
-option role=configure--enable-dbx/option/link option and all options for
-the databases that will be used, e.g. for MySQL you must also
-specify link linkend=install.configure.with-mysql
-option role=install.configure.with-mysql--with-mysql/option/link. 
-The dbx-functions themselves do not interface directly to the
-databases, but interface to the modules that are used to support
-these databases.  To be able to use a database with the
-dbx-module, the module must be either linked or loaded into PHP,
-and the database module must be supported by the
-dbx-module. Currently, MySQL, PostgreSQL, Microsoft SQL Server,
-FrontBase, Sybase-CT and ODBC are supported, but others will follow 
-(soon, I hope :-).
-   /simpara
-   simpara
-Documentation for adding additional database support to dbx can be
-found at ulink url=url.dbx.docs;url.dbx.docs;/ulink.
-   /simpara
+   section id=dbx.intro
+reftitle.intro;
+para
+ The dbx module is a database abstraction layer (db 'X', where 'X'
+ is a supported database). The dbx functions allow you to access
+ all supported databases using a single calling convention.
+ The dbx-functions themselves do not interface directly to the
+ databases, but interface to the modules that are used to support
+ these databases.
+/para
+   /section
+   
+   section id=dbx.required
+reftitle.required;
+para
+ To be able to use a database with the dbx-module, the module must be either
+ linked or loaded into PHP, and the database module must be supported by the
+ dbx-module. Currently, following databases are supported, but others
+ will follow (soon, I hope :-):
+ itemizedlist
+  listitem
+   simpara
+link linkend=ref.fbsqlFrontBase/link (available from PHP 4.1.0).
+   /simpara
+  /listitem
+  listitem
+   simpara
+link linkend=ref.mssqlMicrosoft SQL Server/link
+   /simpara
+   /listitem
+  listitem
+   simpara
+link linkend=ref.mysqlMySQL/link
+   /simpara
+  /listitem
+  listitem
+   simpara
+link linkend=ref.odbcODBC/link
+   /simpara
+  /listitem
+  listitem
+   simpara
+link linkend=ref.pgsqlPostgreSQL/link
+   /simpara
+  /listitem
+  listitem
+   simpara
+link linkend=ref.sybaseSybase-CT/link (CVS only).
+   /simpara
+  /listitem
+ /itemizedlist
+/para
+para
+ Documentation for adding additional database support to dbx can be
+ found at ulink url=url.dbx.docs;url.dbx.docs;/ulink.
+/para
+   /section
+   
+   section id=dbx.installation
+reftitle.install;
+para
+ In order to have these functions available, you must compile PHP with
+ dbx support by using the option role=configure--enable-dbx/option
+ option and all options for the databases that will be used, e.g. for
+ MySQL you must also specify
+ option role=configure--with-mysql=[DIR]/option.
+ To get other supported databases to work with the dbx-module refer to their
+ specific documentation.
+/para
+   /section
+   
+   section id=dbx.runtime
+reftitle.runtime;
+no.config;
+   /section
+
+   section id=dbx.resources
+reftitle.resources;
+para
+ There are two resource types used in the dbx module. The first one is the
+ link-typeobject/type for a database connection, the second a
+ result-typeobject/type which helds the result of a query.
+/para
+   /section
+   
+   reference.dbx.constants;
+   
   /partintro
 
 reference.dbx.functions;
 
  /reference
+
 !-- Keep this comment at the end of the file
 Local variables:
 mode: sgml





[PHP-DOC] cvs: phpdoc / reserved.constants.xml.in

2002-04-29 Thread Friedhelm Betz

betzMon Apr 29 08:16:43 2002 EDT

  Modified files:  
/phpdoc reserved.constants.xml.in 
  Log:
  remove integrated parts
  
Index: phpdoc/reserved.constants.xml.in
diff -u phpdoc/reserved.constants.xml.in:1.4 phpdoc/reserved.constants.xml.in:1.5
--- phpdoc/reserved.constants.xml.in:1.4Tue Apr 23 07:08:19 2002
+++ phpdoc/reserved.constants.xml.inMon Apr 29 08:16:43 2002
 -2,7 +2,6 
  sect1 id=reserved.constants
   titleReservedConstants;/title
   appendices.reserved.constants.core;
-  appendices.reserved.constants.dbx;
   appendices.reserved.constants.domxml;
   appendices.reserved.constants.fbsql;
   appendices.reserved.constants.fdf;





Re: [PHP-DOC] continue what I have started

2002-04-29 Thread Friedhelm Betz


 I tried to solve one problem of the many. As we discussed earlier,
 we would like to move all extension related stuff to the extensions
 directory, including configure options, ini settings, defined vars,
 constants, classes, faq entries, etc. So I started to apply the new
 section based structure to the reference pages, and move the
 constants info into the directories into a constants.xml file.

 I am ready till cyrus which is the last starting with letter c ;)
 I have no more time today to work on this, so if someone has some
 free time to do it, please continue my work ;)

 Applying the new structure to all extension docs would help us
 to have a man page like look, which we would like to achive
 AFAIK, and it would also help us to integrate the configure
 and ini info to all extensions = and so find a final place
 for install parts ;)

 IMHO applying the new structure is the starting point, and it
 is quite done till cyrus...

I (tried to) continue your work, and it's finished now till dbx.
Maybe someone could find the time to have a quick look over,
to ensure there are no major mistakes in the content I added.
BTW.: we have complete list of configure options in the install
section. should the already integrated parts removed from there?

 Friedhelm   




Re: [PHP-DOC] entities proposal

2002-04-28 Thread Friedhelm Betz

 I myself would like to see some more entities :-)
 In the constanst.xml there are a lot of links to integer-types,
 e.g. /refernce/curl/constansts.xml
 like:
 link linkend=language.types.integerinteger/link
 For this it would be convinient to have an entity, also for other
 links to language.types.
 Opinions?

 There used to be an option, using typeinteger/type which is
 not the right to use in these cases for some reason.

Ah, I forgot this possibility!

Hm, I can't think of any reason, why not to use typeinteger/type.
In /language/types.xml it is used this way and correctly renderd by
the dsl-sheets (html-common.dsl)line 160:
;; Linking types to the correct place
...
One difference:
typeinteger/type: the resulting link is bold, while
link linkend=language.types.integerinteger/link is normal.

Is this the reason not to use the short notation? :-(
BTW.: whats the reason for rendering typeinteger/type bold?

According to tdg type is allowed in entry, term 
http://www.docbook.org/tdg/en/html/type-x.html

 Maybe because
 type tags are also used in prototypes on function pages[?], I don't
 know.

As I understand the dsl-sheets the only difference is, these types are
not linked.

 Friedhelm




[PHP-DOC] cvs: phpdoc /de/reference/openssl/functions openssl-pkcs7-encrypt.xml

2002-04-26 Thread Friedhelm Betz

betzFri Apr 26 06:39:49 2002 EDT

  Modified files:  
/phpdoc/de/reference/openssl/functions  openssl-pkcs7-encrypt.xml 
  Log:
  yet another sync to en
  
Index: phpdoc/de/reference/openssl/functions/openssl-pkcs7-encrypt.xml
diff -u phpdoc/de/reference/openssl/functions/openssl-pkcs7-encrypt.xml:1.3 
phpdoc/de/reference/openssl/functions/openssl-pkcs7-encrypt.xml:1.4
--- phpdoc/de/reference/openssl/functions/openssl-pkcs7-encrypt.xml:1.3 Thu Apr 25 
18:04:32 2002
+++ phpdoc/de/reference/openssl/functions/openssl-pkcs7-encrypt.xml Fri Apr 26 
+06:39:49 2002
@@ -1,7 +1,7 @@
 ?xml version=1.0 encoding=iso-8859-1?
 !-- splitted from ./de/functions/openssl.xml, last change in rev 1.1 --
 !-- last change to 'openssl-pkcs7-encrypt' in en/ tree in rev 1.4 --
-!-- EN-Revision: 1.3 Maintainer: betz Status: ready --
+!-- EN-Revision: 1.4 Maintainer: betz Status: ready --
 !-- OLD-Revision: 1.22/EN.1.4 --
   refentry id=function.openssl-pkcs7-encrypt
refnamediv
@@ -67,8 +67,8 @@
 
 // verschlüsseln
 if (openssl_pkcs7_encrypt(msg.txt, enc.txt, $key,
-array(To = [EMAIL PROTECTED], // keyed syntax
-  From: HQ [EMAIL PROTECTED],  // indexed syntax
+array(To = [EMAIL PROTECTED], // keyed syntax
+  From: HQ [EMAIL PROTECTED],  // indexed syntax
   Subject = Eyes only)))
 {
 // Nachricht verschlüsselt - ab damit!
@@ -78,9 +78,6 @@
   /programlisting
  /example
 /para
-  note
- paraDiese Funktion wurde in 4.0.6 hinzugefügt./para
-/note
 
/refsect1
   /refentry





[PHP-DOC] cvs: phpdoc /en/reference/datetime reference.xml

2002-04-26 Thread Friedhelm Betz

betzFri Apr 26 06:42:30 2002 EDT

  Modified files:  
/phpdoc/en/reference/datetime   reference.xml 
  Log:
  new structure, some text in partintro added.
  
Index: phpdoc/en/reference/datetime/reference.xml
diff -u phpdoc/en/reference/datetime/reference.xml:1.2 
phpdoc/en/reference/datetime/reference.xml:1.3
--- phpdoc/en/reference/datetime/reference.xml:1.2  Mon Apr 15 14:56:31 2002
+++ phpdoc/en/reference/datetime/reference.xml  Fri Apr 26 06:42:30 2002
 -1,8 +1,53 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.2 $ --
+!-- $Revision: 1.3 $ --
  reference id=ref.datetime
   titleDate and Time functions/title
   titleabbrevDate/time/titleabbrev
+  partintro
+   section id=datetime.intro
+reftitle.intro;
+para
+ You can use this functions to handle date and time.
+ This functions allow you to get date and time from the server
+ where PHP is running on. You can use this functions to format the
+ output of date and time in many different ways.
+/para
+note
+ simpara
+  Please keep in mind that this functions are depending on
+  the locale settings of your server. Especially consider
+  daylight saving time settings and leap years.
+ /simpara
+/note
+
+   /section
+   
+   section id=datetime.required
+reftitle.required;
+no.requirement;
+   /section
+   
+   section id=datetime.installation
+reftitle.install;
+no.install;
+   /section
+   
+   section id=datetime.runtime
+reftitle.runtime;
+no.config;
+   /section
+
+   section id=datetime.resources
+reftitle.resources;
+no.resource;
+   /section
+   
+   section id=datetime.constants
+reftitle.constants;
+no.constants;
+   /section
+   
+  /partintro
 
 reference.datetime.functions;
 





[PHP-DOC] cvs: phpdoc /en/reference/dbase reference.xml

2002-04-26 Thread Friedhelm Betz

betzFri Apr 26 06:44:45 2002 EDT

  Modified files:  
/phpdoc/en/reference/dbase  reference.xml 
  Log:
  new structure
  
Index: phpdoc/en/reference/dbase/reference.xml
diff -u phpdoc/en/reference/dbase/reference.xml:1.2 
phpdoc/en/reference/dbase/reference.xml:1.3
--- phpdoc/en/reference/dbase/reference.xml:1.2 Mon Apr 15 14:56:31 2002
+++ phpdoc/en/reference/dbase/reference.xml Fri Apr 26 06:44:44 2002
 -1,34 +1,60 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.2 $ --
+!-- $Revision: 1.3 $ --
  reference id=ref.dbase
   titledBase functions/title
   titleabbrevdBase/titleabbrev
 
   partintro
-   simpara
-These functions allow you to access records stored in dBase-format
-(dbf) databases.  In order to use these functions, you must compile
-PHP with the option role=configure--enable-dbase/option option.
-   /simpara
-   simpara
-There is no support for indexes or memo fields. There is no
-support for locking, too. Two concurrent webserver processes
-modifying the same dBase file will very likely ruin your database.
-   /simpara
-   simpara
-dBase files are simple sequential files of fixed
-length records. Records are appended to the end of
-the file and delete records are kept until you call
-functiondbase_pack/function.
-   /simpara
-   simpara
-We recommend that you do not use dBase files as your production
-database. Choose any real SQL server instead; MySQL or Postgres
-are common choices with PHP. dBase support is here to allow you to
-import and export data to and from your web database, because the
-file format is commonly understood by Windows spreadsheets and
-organizers.
-   /simpara
+   section id=dbase.intro
+reftitle.intro;
+para
+ These functions allow you to access records stored in dBase-format
+ (dbf) databases.
+/para
+para
+ There is no support for indexes or memo fields. There is no
+ support for locking, too. Two concurrent webserver processes
+ modifying the same dBase file will very likely ruin your database.
+/para
+para
+ dBase files are simple sequential files of fixed
+ length records. Records are appended to the end of
+ the file and delete records are kept until you call
+ functiondbase_pack/function.
+/para
+para
+ We recommend that you do not use dBase files as your production
+ database. Choose any real SQL server instead; MySQL or Postgres
+ are common choices with PHP. dBase support is here to allow you to
+ import and export data to and from your web database, because the
+ file format is commonly understood by Windows spreadsheets and
+ organizers.
+/para
+   /section
+   
+   section id=dbase.installation
+reftitle.install;
+para
+ In order to use these functions, you must compile
+ PHP with the option role=configure--enable-dbase/option option.
+/para
+   /section
+   
+   section id=dbase.runtime
+reftitle.runtime;
+no.config;
+   /section
+
+   section id=dbase.resources
+reftitle.resources;
+no.resource;
+   /section
+   
+   section id=dbase.constants
+reftitle.constants;
+no.constants;
+   /section
+   
   /partintro
 
 reference.dbase.functions;





[PHP-DOC] cvs: phpdoc /en/reference/dbx/functions dbx-close.xml dbx-sort.xml

2002-04-26 Thread Friedhelm Betz

betzFri Apr 26 06:47:31 2002 EDT

  Modified files:  
/phpdoc/en/reference/dbx/functions  dbx-close.xml dbx-sort.xml 
  Log:
  added return.success; 
  
Index: phpdoc/en/reference/dbx/functions/dbx-close.xml
diff -u phpdoc/en/reference/dbx/functions/dbx-close.xml:1.2 
phpdoc/en/reference/dbx/functions/dbx-close.xml:1.3
--- phpdoc/en/reference/dbx/functions/dbx-close.xml:1.2 Wed Apr 17 02:37:28 2002
+++ phpdoc/en/reference/dbx/functions/dbx-close.xml Fri Apr 26 06:47:30 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.2 $ --
+!-- $Revision: 1.3 $ --
 !-- splitted from ./en/functions/dbx.xml, last change in rev 1.3 --
   refentry id=function.dbx-close
refnamediv
 -13,8 +13,7 
   
methodparamtypeobject/typeparameterlink_identifier/parameter/methodparam
  /methodsynopsis
 para
- Returns true; on success,
- false; on error.
+ return.success;
 /para
 example
  titlefunctiondbx_close/function example/title
Index: phpdoc/en/reference/dbx/functions/dbx-sort.xml
diff -u phpdoc/en/reference/dbx/functions/dbx-sort.xml:1.2 
phpdoc/en/reference/dbx/functions/dbx-sort.xml:1.3
--- phpdoc/en/reference/dbx/functions/dbx-sort.xml:1.2  Wed Apr 17 02:37:32 2002
+++ phpdoc/en/reference/dbx/functions/dbx-sort.xml  Fri Apr 26 06:47:30 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.2 $ --
+!-- $Revision: 1.3 $ --
 !-- splitted from ./en/functions/dbx.xml, last change in rev 1.3 --
   refentry id=function.dbx-sort
refnamediv
 -16,8 +16,7 
   
methodparamtypestring/typeparameteruser_compare_function/parameter/methodparam
  /methodsynopsis
 para
- Returns true; on success,
- false; on error.
+ return.success;
 /para
 note
  simpara





[PHP-DOC] cvs: phpdoc /en/reference/dba reference.xml

2002-04-25 Thread Friedhelm Betz

betzThu Apr 25 17:37:36 2002 EDT

  Modified files:  
/phpdoc/en/reference/dbareference.xml 
  Log:
  new structure
  

Index: phpdoc/en/reference/dba/reference.xml
diff -u phpdoc/en/reference/dba/reference.xml:1.2 
phpdoc/en/reference/dba/reference.xml:1.3
--- phpdoc/en/reference/dba/reference.xml:1.2   Mon Apr 15 14:56:31 2002
+++ phpdoc/en/reference/dba/reference.xml   Thu Apr 25 17:37:34 2002
 -1,10 +1,12 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.2 $ --
+!-- $Revision: 1.3 $ --
  reference id=ref.dba
   titleDatabase (dbm-style) abstraction layer functions/title
   titleabbrevdba/titleabbrev
 
   partintro
+   section id=dba.intro
+reftitle.intro;
para
 These functions build the foundation for accessing Berkeley DB
 style databases.
 -17,21 +19,16 
 (This is not to be confused with IBM's DB2 software, which is
 supported through the link linkend=ref.odbcODBC functions/link.)
/para
-   para
-The behaviour of various aspects depends on the implementation of the
-underlying database. Functions such as functiondba_optimize/function
-and functiondba_sync/function will do what they promise for one
-database and will do nothing for others.
-   /para
-   para
-When invoking the functiondba_open/function or
-functiondba_popen/function functions, one of the following
-handler names must be supplied as an argument.  The actually
-available list of handlers is displayed by invoking
-functionphpinfo/function.  (To add support for any of the
-following handlers during the production of PHP, add the
-specified literal--with-/literal configure switch to
-your PHP configure line.)
+  /section
+
+   section id=dba.requirements
+reftitle.required;
+para
+ The behaviour of various aspects depends on the implementation of the
+ underlying database. Functions such as functiondba_optimize/function
+ and functiondba_sync/function will do what they promise for one
+ database and will do nothing for others. You have to download and install
+ supported dba-Handlers.
 table
  titleList of DBA handlers/title
  tgroup cols=2
 -43,69 +40,172 
   /thead
   tbody
row
- entryliteraldbm/literal/entry
+entryliteraldbm/literal/entry
 entry
  Dbm is the oldest (original) type of Berkeley DB style
  databases. You should avoid it, if possible. We do not support
  the compatibility functions built into DB2 and gdbm, because
  they are only compatible on the source code level, but cannot
- handle the original dbm format.  (literal--with-dbm/literal)
+ handle the original dbm format.
 /entry
/row
 
row
- entryliteralndbm/literal/entry
+entryliteralndbm/literal/entry
 entry
  Ndbm is a newer type and more flexible than dbm. It still has
  most of the arbitrary limits of dbm (therefore it is
- deprecated).  (literal--with-ndbm/literal)
+ deprecated).
 /entry
/row
 
row
- entryliteralgdbm/literal/entry
+entryliteralgdbm/literal/entry
 entry
  Gdbm is the ulink url=url.gdbm;GNU database
- manager/ulink.  (literal--with-gdbm/literal)
+ manager/ulink.
 /entry
/row
 
row
- entryliteraldb2/literal/entry
+entryliteraldb2/literal/entry
 entry
  DB2 is ulink url=url.sleepycat;Sleepycat Software's
  DB2/ulink. It is described as a programmatic toolkit that
  provides high-performance built-in database support for both
- standalone and client/server applications.  (literal--with-db2/literal)
+ standalone and client/server applications.
 /entry
/row
 
row
- entryliteraldb3/literal/entry
+entryliteraldb3/literal/entry
 entry
  DB3 is ulink url=url.sleepycat;Sleepycat Software's
- DB3/ulink.  (literal--with-db3/literal)
+ DB3/ulink.
 /entry
/row
 
row
- entryliteralcdb/literal/entry
+entryliteralcdb/literal/entry
 entry
  Cdb is a fast, reliable, lightweight package for creating and
  reading constant databases. It is from the author of qmail and
  can be found ulink url=url.cdb;here/ulink. Since it is
- constant, we support only reading operations.  
(literal--with-cdb/literal)
+ constant, we support only reading operations.
 /entry
/row
 
   /tbody
  /tgroup
 /table
-   /para
-   para
-example
- titleDBA example/title
- programlisting role=php
+/para
+para
+ When invoking the functiondba_open/function or
+ functiondba_popen/function functions, one of the
+ handler names must be supplied as an argument. The actually
+ available list of handlers

[PHP-DOC] cvs: phpdoc /en/reference/dba/functions dba-close.xml dba-delete.xml dba-exists.xml dba-fetch.xml dba-firstkey.xml dba-insert.xml dba-nextkey.xml dba-open.xml dba-optimize.xml dba-popen.xml dba-replace.xml dba-sync.xml

2002-04-25 Thread Friedhelm Betz

betzThu Apr 25 17:45:45 2002 EDT

  Modified files:  
/phpdoc/en/reference/dba/functions  dba-sync.xml dba-replace.xml 
dba-popen.xml dba-optimize.xml 
dba-open.xml dba-nextkey.xml 
dba-insert.xml dba-firstkey.xml 
dba-fetch.xml dba-exists.xml 
dba-delete.xml dba-close.xml 
  Log:
  changed return type for dba_open and dba_popen to resource;
  also paramtypes for the functions.
  changed some links according to the new structure of reference.
  

Index: phpdoc/en/reference/dba/functions/dba-sync.xml
diff -u phpdoc/en/reference/dba/functions/dba-sync.xml:1.2 
phpdoc/en/reference/dba/functions/dba-sync.xml:1.3
--- phpdoc/en/reference/dba/functions/dba-sync.xml:1.2  Wed Apr 17 02:37:15 2002
+++ phpdoc/en/reference/dba/functions/dba-sync.xml  Thu Apr 25 17:45:45 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.2 $ --
+!-- $Revision: 1.3 $ --
 !-- splitted from ./en/functions/dba.xml, last change in rev 1.2 --
   refentry id=function.dba-sync
refnamediv
 -10,7 +10,7 
 titleDescription/title
  methodsynopsis
   typebool/typemethodnamedba_sync/methodname
-  methodparamtypeint/typeparameterhandle/parameter/methodparam
+  methodparamtyperesource/typeparameterhandle/parameter/methodparam
  /methodsynopsis
 para
  functiondba_sync/function synchronizes the database specified by
Index: phpdoc/en/reference/dba/functions/dba-replace.xml
diff -u phpdoc/en/reference/dba/functions/dba-replace.xml:1.2 
phpdoc/en/reference/dba/functions/dba-replace.xml:1.3
--- phpdoc/en/reference/dba/functions/dba-replace.xml:1.2   Wed Apr 17 02:37:15 
2002
+++ phpdoc/en/reference/dba/functions/dba-replace.xml   Thu Apr 25 17:45:45 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.2 $ --
+!-- $Revision: 1.3 $ --
 !-- splitted from ./en/functions/dba.xml, last change in rev 1.2 --
   refentry id=function.dba-replace
refnamediv
 -12,7 +12,7 
   typebool/typemethodnamedba_replace/methodname
   methodparamtypestring/typeparameterkey/parameter/methodparam
   methodparamtypestring/typeparametervalue/parameter/methodparam
-  methodparamtypeint/typeparameterhandle/parameter/methodparam
+  methodparamtyperesource/typeparameterhandle/parameter/methodparam
  /methodsynopsis
 para
  functiondba_replace/function replaces or inserts the entry described
Index: phpdoc/en/reference/dba/functions/dba-popen.xml
diff -u phpdoc/en/reference/dba/functions/dba-popen.xml:1.2 
phpdoc/en/reference/dba/functions/dba-popen.xml:1.3
--- phpdoc/en/reference/dba/functions/dba-popen.xml:1.2 Wed Apr 17 02:37:15 2002
+++ phpdoc/en/reference/dba/functions/dba-popen.xml Thu Apr 25 17:45:45 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.2 $ --
+!-- $Revision: 1.3 $ --
 !-- splitted from ./en/functions/dba.xml, last change in rev 1.2 --
   refentry id=function.dba-popen
refnamediv
 -9,7 +9,7 
refsect1
 titleDescription/title
  methodsynopsis
-  typeint/typemethodnamedba_popen/methodname
+  typeresource/typemethodnamedba_popen/methodname
   methodparamtypestring/typeparameterpath/parameter/methodparam
   methodparamtypestring/typeparametermode/parameter/methodparam
   methodparamtypestring/typeparameterhandler/parameter/methodparam
 -31,7 +31,7 
  create, truncate and read/write access.
 /para
 para
- parameterhandler/parameter is the link linkend=ref.dbaname
+ parameterhandler/parameter is the link linkend=dba.requirementsname
  of the handler/link which shall be
  used for accessing parameterpath/parameter. It is passed all optional
  parameters given to functiondba_popen/function and can act on behalf
Index: phpdoc/en/reference/dba/functions/dba-optimize.xml
diff -u phpdoc/en/reference/dba/functions/dba-optimize.xml:1.2 
phpdoc/en/reference/dba/functions/dba-optimize.xml:1.3
--- phpdoc/en/reference/dba/functions/dba-optimize.xml:1.2  Wed Apr 17 02:37:15 
2002
+++ phpdoc/en/reference/dba/functions/dba-optimize.xml  Thu Apr 25 17:45:45 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.2 $ --
+!-- $Revision: 1.3 $ --
 !-- splitted from ./en/functions/dba.xml, last change in rev 1.2 --
   refentry id=function.dba-optimize
refnamediv
 -10,7 +10,7 
 titleDescription/title
  methodsynopsis
   typebool/typemethodnamedba_optimize/methodname
-  methodparamtypeint/typeparameterhandle/parameter/methodparam
+  methodparamtyperesource/typeparameterhandle/parameter/methodparam
  /methodsynopsis
 para
  functiondba_optimize/function optimizes the underlying database
Index: phpdoc/en/reference/dba/functions/dba-open.xml
diff -u phpdoc/en/reference/dba/functions/dba-open.xml:1.2

[PHP-DOC] cvs: phpdoc /de/reference/openssl/functions openssl-pkcs7-encrypt.xml

2002-04-25 Thread Friedhelm Betz

betzThu Apr 25 18:04:33 2002 EDT

  Modified files:  
/phpdoc/de/reference/openssl/functions  openssl-pkcs7-encrypt.xml 
  Log:
  sync to en
  
Index: phpdoc/de/reference/openssl/functions/openssl-pkcs7-encrypt.xml
diff -u phpdoc/de/reference/openssl/functions/openssl-pkcs7-encrypt.xml:1.2 
phpdoc/de/reference/openssl/functions/openssl-pkcs7-encrypt.xml:1.3
--- phpdoc/de/reference/openssl/functions/openssl-pkcs7-encrypt.xml:1.2 Wed Apr 17 
02:53:22 2002
+++ phpdoc/de/reference/openssl/functions/openssl-pkcs7-encrypt.xml Thu Apr 25 
+18:04:32 2002
@@ -1,7 +1,7 @@
 ?xml version=1.0 encoding=iso-8859-1?
 !-- splitted from ./de/functions/openssl.xml, last change in rev 1.1 --
 !-- last change to 'openssl-pkcs7-encrypt' in en/ tree in rev 1.4 --
-!-- EN-Revision: 1.2 Maintainer: betz Status: ready --
+!-- EN-Revision: 1.3 Maintainer: betz Status: ready --
 !-- OLD-Revision: 1.22/EN.1.4 --
   refentry id=function.openssl-pkcs7-encrypt
refnamediv
@@ -56,14 +56,19 @@
 
 HQ
 EOD;
+
+// Schlüssel laden
+$key = implode(, file(my.pem));
+
 // speichern der Nachricht in einer Datei
 $fp = fopen(msg.txt, w);
 fwrite($fp, $data);
 fclose($fp);
+
 // verschlüsseln
-if (openssl_pkcs7_encrypt(msg.txt, enc.txt, nighthawk.pem,
+if (openssl_pkcs7_encrypt(msg.txt, enc.txt, $key,
 array(To = [EMAIL PROTECTED], // keyed syntax
-  From: HQ [EMAIL PROTECTED], // indexed syntax
+  From: HQ [EMAIL PROTECTED],  // indexed syntax
   Subject = Eyes only)))
 {
 // Nachricht verschlüsselt - ab damit!





[PHP-DOC] entities proposal

2002-04-25 Thread Friedhelm Betz

Hi
I myself would like to see some more entities :-)
In the constanst.xml there are a lot of links to integer-types,
e.g. /refernce/curl/constansts.xml
like:
link linkend=language.types.integerinteger/link

For this it would be convinient to have an entity, also for other
links to language.types.
Opinions?


 Friedhelm  




Re: [PHP-DOC] cvs: phpdoc /de/reference/openssl/functions openssl-pkcs7-encrypt.xml

2002-04-25 Thread Friedhelm Betz


Hi Andrew,

 That was a pretty good turnaround time (10 minutes) for translation ;-)

Not very difficult for that heavy bugfix :-)

Friedhelm




Re: [PHP-DOC] cvs: phpdoc /en/reference/dbplus constants.xml

2002-04-24 Thread Friedhelm Betz


 betz Tue Apr 23 07:05:59 2002 EDT
 
   Added files: 
 /phpdoc/en/reference/dbplus constants.xml 
   Log:
   adding constants info here

 Please also integrate the info you have removed
from dbplus/reference.xml...

You're right :-) Sorry, I'll correct and commit.

 Friedhelm   




[PHP-DOC] cvs: phpdoc /en/reference/dbplus constants.xml

2002-04-24 Thread Friedhelm Betz

betzWed Apr 24 18:24:12 2002 EDT

  Modified files:  
/phpdoc/en/reference/dbplus constants.xml 
  Log:
  corrections: include info from refernce.xml, thanks to Goba
  

Index: phpdoc/en/reference/dbplus/constants.xml
diff -u phpdoc/en/reference/dbplus/constants.xml:1.2 
phpdoc/en/reference/dbplus/constants.xml:1.3
--- phpdoc/en/reference/dbplus/constants.xml:1.2Tue Apr 23 10:44:48 2002
+++ phpdoc/en/reference/dbplus/constants.xmlWed Apr 24 18:24:11 2002
 -1,440 +1,349 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.2 $ --
+!-- $Revision: 1.3 $ --
 section id=dbplus.constants
  reftitle.constants;
- extension.constants;
- variablelist
-varlistentry
- term
-  constantDBPLUS_ERR_NOERR/constant 
-  (link linkend=language.types.integerinteger/link)
- /term
- listitem
-  simpara
-   
-  /simpara
- /listitem
-/varlistentry
-varlistentry
- term
-  constantDBPLUS_ERR_DUPLICATE/constant 
-  (link linkend=language.types.integerinteger/link)
- /term
- listitem
-  simpara
-   
-  /simpara
- /listitem
-/varlistentry
-varlistentry
- term
-  constantDBPLUS_ERR_EOSCAN/constant 
-  (link linkend=language.types.integerinteger/link)
- /term
- listitem
-  simpara
-   
-  /simpara
- /listitem
-/varlistentry
-varlistentry
- term
-  constantDBPLUS_ERR_EMPTY/constant 
-  (link linkend=language.types.integerinteger/link)
- /term
- listitem
-  simpara
-   
-  /simpara
- /listitem
-/varlistentry
-varlistentry
- term
-  constantDBPLUS_ERR_CLOSE/constant 
-  (link linkend=language.types.integerinteger/link)
- /term
- listitem
-  simpara
-   
-  /simpara
- /listitem
-/varlistentry
-varlistentry
- term
-  constantDBPLUS_ERR_WLOCKED/constant 
-  (link linkend=language.types.integerinteger/link)
- /term
- listitem
-  simpara
-   
-  /simpara
- /listitem
-/varlistentry
-varlistentry
- term
-  constantDBPLUS_ERR_LOCKED/constant 
-  (link linkend=language.types.integerinteger/link)
- /term
- listitem
-  simpara
-   
-  /simpara
- /listitem
-/varlistentry
-varlistentry
- term
-  constantDBPLUS_ERR_NOLOCK/constant 
-  (link linkend=language.types.integerinteger/link)
- /term
- listitem
-  simpara
-   
-  /simpara
- /listitem
-/varlistentry
-varlistentry
- term
-  constantDBPLUS_ERR_READ/constant 
-  (link linkend=language.types.integerinteger/link)
- /term
- listitem
-  simpara
-   
-  /simpara
- /listitem
-/varlistentry
-varlistentry
- term
-  constantDBPLUS_ERR_WRITE/constant 
-  (link linkend=language.types.integerinteger/link)
- /term
- listitem
-  simpara
-   
-  /simpara
- /listitem
-/varlistentry
-varlistentry
- term
-  constantDBPLUS_ERR_CREATE/constant 
-  (link linkend=language.types.integerinteger/link)
- /term
- listitem
-  simpara
-   
-  /simpara
- /listitem
-/varlistentry
-varlistentry
- term
-  constantDBPLUS_ERR_LSEEK/constant 
-  (link linkend=language.types.integerinteger/link)
- /term
- listitem
-  simpara
-   
-  /simpara
- /listitem
-/varlistentry
-varlistentry
- term
-  constantDBPLUS_ERR_LENGTH/constant 
-  (link linkend=language.types.integerinteger/link)
- /term
- listitem
-  simpara
-   
-  /simpara
- /listitem
-/varlistentry
-varlistentry
- term
-  constantDBPLUS_ERR_OPEN/constant 
-  (link linkend=language.types.integerinteger/link)
- /term
- listitem
-  simpara
-   
-  /simpara
- /listitem
-/varlistentry
-varlistentry
- term
-  constantDBPLUS_ERR_WOPEN/constant 
-  (link linkend=language.types.integerinteger/link)
- /term
- listitem
-  simpara
-   
-  /simpara
- /listitem
-/varlistentry
-varlistentry
- term
-  constantDBPLUS_ERR_MAGIC/constant 
-  (link linkend=language.types.integerinteger/link)
- /term
- listitem
-  simpara
-   
-  /simpara
- /listitem
-/varlistentry
-varlistentry
- term
-  constantDBPLUS_ERR_VERSION/constant 
-  (link linkend=language.types.integerinteger/link)
- /term
- listitem
-  simpara
-   
-  /simpara
- /listitem
-/varlistentry
-varlistentry
- term
-  constantDBPLUS_ERR_PGSIZE/constant 
-  (link linkend=language.types.integerinteger/link)
- /term
- listitem
-  simpara
-   
-  /simpara
- /listitem
-/varlistentry
-varlistentry
- term
-  constantDBPLUS_ERR_CRC/constant 
-  (link linkend=language.types.integerinteger/link)
- /term
- listitem

[PHP-DOC] cvs: phpdoc /en/reference/dbplus reference.xml

2002-04-23 Thread Friedhelm Betz

betzTue Apr 23 07:04:41 2002 EDT

  Modified files:  
/phpdoc/en/reference/dbplus reference.xml 
  Log:
  Applied new structure
  

Index: phpdoc/en/reference/dbplus/reference.xml
diff -u phpdoc/en/reference/dbplus/reference.xml:1.2 
phpdoc/en/reference/dbplus/reference.xml:1.3
--- phpdoc/en/reference/dbplus/reference.xml:1.2Mon Apr 15 14:56:32 2002
+++ phpdoc/en/reference/dbplus/reference.xmlTue Apr 23 07:04:40 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.2 $ --
+!-- $Revision: 1.3 $ --
  reference id=ref.dbplus
   titleDB++ Functions/title
   titleabbrevDB++/titleabbrev
 -7,23 +7,26 
   partintro
warn.experimental;

-   para id=dbplus.intro
-db++, made by the german company ulink
-url=url.dbplus.company;Concept asa/ulink, is a relational
-database system with high performance and low memory and disk
-usage in mind. While providing SQL as an additional language
-interface it is not really a SQL database in the first place but
-provides its own AQL query language which is much more influenced
-by the relational algebra then SQL is.
-   /para
-   para
-Concept asa always had an interest in supporting open source
-languages, db++ has had Perl and Tcl call interfaces for years
-now and uses Tcl as its internal stored procedure language.
-   /para
-   
+   section id=dbplus.intro
+reftitle.intro;
+para
+ db++, made by the german company ulink
+ url=url.dbplus.company;Concept asa/ulink, is a relational
+ database system with high performance and low memory and disk
+ usage in mind. While providing SQL as an additional language
+ interface it is not really a SQL database in the first place but
+ provides its own AQL query language which is much more influenced
+ by the relational algebra then SQL is.
+/para
+para
+ Concept asa always had an interest in supporting open source
+ languages, db++ has had Perl and Tcl call interfaces for years
+ now and uses Tcl as its internal stored procedure language.
+/para
+   /section
+
section id=dbplus.requirenments
-titleRequirements/title
+reftitle.required;
 para
  This extension relies on external client libraries so you have
  to have a db++ client installed on the system you want to use
 -39,7 +42,7 
/section

section id=dbplus.installation
-titleInstallation/title
+reftitle.install;
 para
  In order to build this extension yourself you need the db++
  client libraries and header files to be installed on your system 
 -60,12 +63,12 
/section

section id=dbplus.configuration
-titleRuntime Configuration/title
+reftitle.runtime;
  no.config;
/section

section id=dbplus.resources
-titleResource Types/title
+reftitle.resources;
 section id=dbplus.resources.relation
  titledbplus_relation/title
  para
 -77,233 +80,7 
 /section
/section
 
-   section id=dbplus.constants
-titlePredefined Constants/title
-
-section id=dbplus.errorcodes
- titledb++ error codes/title
- para
-  table
-   titleDB++ Error Codes/title
-   tgroup cols=3
-thead
- row
-  entryPHP Constant/entry
-  entrydb++ constant/entry
-  entrymeaning/entry
- /row
-/thead
-tbody
- row
-  entryconstant 
id='constant.dbplus-err-noerr'DBPLUS_ERR_NOERR/constant/entry
-  entryERR_NOERR/entry
-  entryNull error condition/entry
- /row
- row
-  entryconstant 
id='constant.dbplus-err-duplicate'DBPLUS_ERR_DUPLICATE/constant/entry
-  entryERR_DUPLICATE/entry
-  entryTried to insert a duplicate tuple/entry
- /row
- row
-  entryconstant 
id='constant.dbplus-err-eoscan'DBPLUS_ERR_EOSCAN/constant/entry
-  entryERR_EOSCAN/entry
-  entryEnd of scan from rget()/entry
- /row
- row
-  entryconstant 
id='constant.dbplus-err-empty'DBPLUS_ERR_EMPTY/constant/entry
-  entryERR_EMPTY/entry
-  entryRelation is empty (server)/entry
- /row
- row
-  entryconstant 
id='constant.dbplus-err-close'DBPLUS_ERR_CLOSE/constant/entry
-  entryERR_CLOSE/entry
-  entryThe server can't close/entry
- /row
- row
-  entryconstant 
id='constant.dbplus-err-wlocked'DBPLUS_ERR_WLOCKED/constant/entry
-  entryERR_WLOCKED/entry
-  entryThe record is write locked/entry
- /row
- row
-  entryconstant 
id='constant.dbplus-err-locked'DBPLUS_ERR_LOCKED/constant/entry
-  entryERR_LOCKED/entry
-  entryRelation was already locked/entry
- /row
- row
-  entryconstant 
id='constant.dbplus-err-nolock'DBPLUS_ERR_NOLOCK/constant/entry
-  entryERR_NOLOCK/entry
-  entryRelation cannot be locked

[PHP-DOC] cvs: phpdoc /en/appendices reserved.constants.dbplus.xml

2002-04-23 Thread Friedhelm Betz

betzTue Apr 23 07:09:05 2002 EDT

  Removed files:   
/phpdoc/en/appendices   reserved.constants.dbplus.xml 
  Log:
  Remove already integrated file
  





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

2002-04-23 Thread Friedhelm Betz

betzTue Apr 23 10:26:19 2002 EDT

  Modified files:  
/phpdoc/de/faq  misc.xml 
  Log:
  small typo
  
Index: phpdoc/de/faq/misc.xml
diff -u phpdoc/de/faq/misc.xml:1.4 phpdoc/de/faq/misc.xml:1.5
--- phpdoc/de/faq/misc.xml:1.4  Fri Mar  8 10:38:48 2002
+++ phpdoc/de/faq/misc.xml  Tue Apr 23 10:26:19 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.4 $ --
+!-- $Revision: 1.5 $ --
 !-- EN-Revision: 1.10 Maintainer: mk Status: ready --
  chapter id=faq.misc
   titleVerschiedene Fragen/title
 -57,7 +57,7 
/listitem
listitem
 simpara
- Springen Sie mit cd ind as Verzeichnis, in dem Sie
+ Springen Sie mit cd in das Verzeichnis, in dem Sie
  die heruntergeladene Datei php_manual_lang.x.bz2 gespeichert haben
 /simpara
/listitem





[PHP-DOC] cvs: phpdoc /en/reference/dbplus constants.xml

2002-04-23 Thread Friedhelm Betz

betzTue Apr 23 10:44:48 2002 EDT

  Modified files:  
/phpdoc/en/reference/dbplus constants.xml 
  Log:
  corrected comment at the end of file
  
Index: phpdoc/en/reference/dbplus/constants.xml
diff -u phpdoc/en/reference/dbplus/constants.xml:1.1 
phpdoc/en/reference/dbplus/constants.xml:1.2
--- phpdoc/en/reference/dbplus/constants.xml:1.1Tue Apr 23 07:05:59 2002
+++ phpdoc/en/reference/dbplus/constants.xmlTue Apr 23 10:44:48 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.1 $ --
+!-- $Revision: 1.2 $ --
 section id=dbplus.constants
  reftitle.constants;
  extension.constants;
 -447,9 +447,13 
 sgml-indent-data:t
 indent-tabs-mode:nil
 sgml-parent-document:nil
-sgml-default-dtd-file:manual.ced
+sgml-default-dtd-file:../../../manual.ced
 sgml-exposed-tags:nil
 sgml-local-catalogs:nil
 sgml-local-ecat-files:nil
 End:
+vim600: syn=xml fen fdm=syntax fdl=2 si
+vim: et tw=78 syn=sgml
+vi: ts=1 sw=1
 --
+





[PHP-DOC] cvs: phpdoc /de language-snippets.ent

2002-04-22 Thread Friedhelm Betz

betzMon Apr 22 07:19:36 2002 EDT

  Modified files:  
/phpdoc/de  language-snippets.ent 
  Log:
  sync to en to make the de build happy
  
Index: phpdoc/de/language-snippets.ent
diff -u phpdoc/de/language-snippets.ent:1.15 phpdoc/de/language-snippets.ent:1.16
--- phpdoc/de/language-snippets.ent:1.15Mon Mar 25 15:55:19 2002
+++ phpdoc/de/language-snippets.ent Mon Apr 22 07:19:36 2002
 -1,5 +1,5 
 ?xml version='1.0' encoding='ISO-8859-1' ?
-!-- PHPDoc snippets $Id: language-snippets.ent,v 1.15 2002/03/25 20:55:19 betz Exp $ 
--
+!-- PHPDoc snippets $Id: language-snippets.ent,v 1.16 2002/04/22 11:19:36 betz Exp $ 
+--
 
 !ENTITY warn.experimental 'warningsimparaDiese Erweiterung ist
 emphasisEXPERIMENTELL/emphasis. Das Verhalten dieser Erweiterung,
 -78,3 +78,25 
 !ENTITY no.config 'paraDiese Erweiterung definiert keine 
Konfigurationseinstellungen./para'
 !ENTITY no.resource 'paraDiese Erweiterung definiert keine Resource-Typen./para'
 !ENTITY no.constants 'paraDiese Erweiterung definiert keine Konstanten./para'
+!ENTITY no.requirement 'paraDiese Funktionen stehen immer zur Verfügung. Sie sind 
+Teil
+des Standardmoduls und daher immer verfügbar./para'
+!ENTITY no.install 'paraFür diese Funktionen ist keine Installation erforderlich, 
+diese gehören zum Grundbestand von PHP./para'
+
+!-- Used in reference/$extname/constants.xml --
+!ENTITY extension.constants 'simpara
+These constants are defined by the this extension, and
+will only be available when the extension has either
+been compiled into PHP or dynamically loaded at runtime.
+/simpara'
+
+!-- These are using in reference/$extname/reference.xml and other
+supplemental files to mark section titles --
+!ENTITY reftitle.intro 'titleEinführung/title'
+!ENTITY reftitle.required  'titleAnforderungen/title'
+!ENTITY reftitle.install   'titleInstallation/title'
+!ENTITY reftitle.runtime   'titleLaufzeit Konfiguration/title'
+!ENTITY reftitle.resources 'titleResource Typen/title'
+!ENTITY reftitle.constants 'titleVordefinierte Konstanten/title'
+!ENTITY reftitle.examples  'titleBeispiele/title'
+!ENTITY reftitle.seealso   'titleSiehe auch/title'





[PHP-DOC] cvs: phpdoc /en language-snippets.ent

2002-04-22 Thread Friedhelm Betz

betzMon Apr 22 07:41:06 2002 EDT

  Modified files:  
/phpdoc/en  language-snippets.ent 
  Log:
  small typo
  
Index: phpdoc/en/language-snippets.ent
diff -u phpdoc/en/language-snippets.ent:1.24 phpdoc/en/language-snippets.ent:1.25
--- phpdoc/en/language-snippets.ent:1.24Fri Apr 19 10:31:33 2002
+++ phpdoc/en/language-snippets.ent Mon Apr 22 07:41:06 2002
 -1,4 +1,4 
-!-- $Revision: 1.24 $ --
+!-- $Revision: 1.25 $ --
 
 !ENTITY warn.experimental 'warningsimparaThis extension is
 emphasisEXPERIMENTAL/emphasis. The behaviour of this extension,
 -91,7 +91,7 
 
 !-- Used in reference/$extname/constants.xml --
 !ENTITY extension.constants 'simpara
-These constants are defined by the this extension, and
+These constants are defined by this extension, and
 will only be available when the extension has either
 been compiled into PHP or dynamically loaded at runtime.
 /simpara'





[PHP-DOC] cvs: phpdoc /de language-snippets.ent

2002-04-22 Thread Friedhelm Betz

betzMon Apr 22 07:42:42 2002 EDT

  Modified files:  
/phpdoc/de  language-snippets.ent 
  Log:
  complete sync to en, hopefully :-)
  
Index: phpdoc/de/language-snippets.ent
diff -u phpdoc/de/language-snippets.ent:1.16 phpdoc/de/language-snippets.ent:1.17
--- phpdoc/de/language-snippets.ent:1.16Mon Apr 22 07:19:36 2002
+++ phpdoc/de/language-snippets.ent Mon Apr 22 07:42:42 2002
 -1,5 +1,5 
 ?xml version='1.0' encoding='ISO-8859-1' ?
-!-- PHPDoc snippets $Id: language-snippets.ent,v 1.16 2002/04/22 11:19:36 betz Exp $ 
--
+!-- PHPDoc snippets $Id: language-snippets.ent,v 1.17 2002/04/22 11:42:42 betz Exp $ 
+--
 
 !ENTITY warn.experimental 'warningsimparaDiese Erweiterung ist
 emphasisEXPERIMENTELL/emphasis. Das Verhalten dieser Erweiterung,
 -85,9 +85,9 
 
 !-- Used in reference/$extname/constants.xml --
 !ENTITY extension.constants 'simpara
-These constants are defined by the this extension, and
-will only be available when the extension has either
-been compiled into PHP or dynamically loaded at runtime.
+Folgende Konstanten werden von dieser Erweiterung definiert und
+stehen nur zur Verfügung, wenn die Erweiterung entweder statisch
+in PHP kompiliert oder dynamisch zur Laufzeit geladen wurde.
 /simpara'
 
 !-- These are using in reference/$extname/reference.xml and other





Re: [PHP-DOC] Bug #16660 Updated: Documentation bz2 archive format is not appropriate

2002-04-22 Thread Friedhelm Betz


 [EMAIL PROTECTED] is right! bz2 is just not right for php. Why have a simple
 web scripting (and much more..) language if it is harder to open the 
 manual under Microsoft Windows than actually writing the Hello World! 
 page?

 How about this script:

 ?php
 exec(bzip2 -d php_manual_de.html.bz2);
?

 No, to be serious, I did write some mails on this list here, to
 stay with .tar.gz and I still think, it is the best for _all_ users.

 Gabor is right when he says, that Windows users should learn, but
 there should be an easy way for _all_ users. Since most Windows users
 are not familiar with command line tools, it is better to offer
 some format which can be unpacked via a GUI like Winzip.

 Just my 0,02 DM (damn Euro ;)

All people here are talking about the win-users and bz2. I guess
most win-users will download the .chm-file, because this offers much
more comfort. Downloading the .chm-file doesn't need any
commandline-tools or unpacking.
And the others are on *nix-like systems, and they are
familiar with bz2 or at least commandline-tools.

I personally don't care about the compression-tools to use, and on win
I am _only_ using the .chm-file. And think about the new
chm-edition...I can't imagine any win-user who wants to miss this :-)

Therefore I can't see any reason to switch back to tar.gz :-)

Just my 2 cents :-)

 Friedhelm   




[PHP-DOC] cvs: phpdoc /de/language control-structures.xml

2002-04-22 Thread Friedhelm Betz

betzMon Apr 22 09:31:06 2002 EDT

  Modified files:  
/phpdoc/de/language control-structures.xml 
  Log:
  CDATA's added, small example correction
  

Index: phpdoc/de/language/control-structures.xml
diff -u phpdoc/de/language/control-structures.xml:1.27 
phpdoc/de/language/control-structures.xml:1.28
--- phpdoc/de/language/control-structures.xml:1.27  Sat Apr 13 07:02:54 2002
+++ phpdoc/de/language/control-structures.xml   Mon Apr 22 09:31:04 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.27 $ --
+!-- $Revision: 1.28 $ --
 !-- EN-Revision: 1.22 Maintainer: tzwenny Status: ready --
  chapter id=control-structures
   titleKontroll-Strukturen/title
 -25,8 +25,10 
 C-Programmiersprache ist:
 informalexample
  programlisting
+![CDATA[
 if (ausdr)
 Anweisung
+]]
  /programlisting
 /informalexample
/para
 -43,8 +45,10 
 grösser ist als replaceable$b/replaceable:
 informalexample
  programlisting role=php
+![CDATA[
 if ($a  $b)
 print a ist grösser als b;
+]]
  /programlisting
 /informalexample
/para
 -61,10 +65,12 
 gespeichert:
 informalexample
  programlisting role=php
+![CDATA[
 if ($a  $b) {
 print a ist grösser als b;
 $b = $a;
 }
+]]
  /programlisting
 /informalexample
/para
 -92,11 +98,13 
 computeroutputa ist NICHT grösser als b/computeroutput:
 informalexample
  programlisting role=php
+![CDATA[
 if ($a  $b) {
 print a ist grösser als b;
 } else {
 print a ist NICHT grösser als b;
 }
+]]
  /programlisting
 /informalexample
 Die literalelse/literal-Anweisung wird nur ausgeführt, wenn
 -126,6 +134,7 
 computeroutputa ist kleiner als b/computeroutput ausgeben:
 informalexample
  programlisting role=php
+![CDATA[
 if ($a  $b) {
 print a ist grösser als b;
 } elseif ($a == $b) {
 -133,6 +142,7 
 } else {
 print a ist kleiner als b;
 }
+]]
  /programlisting
 /informalexample
/para
 -168,9 +178,11 
 bzw. literalendswitch;/literal ersetzt werden.
 informalexample
  programlisting role=php
-lt;?php if ($a == 5): ?gt;
+![CDATA[
+?php if ($a == 5): ?
 A ist gleich 5
-lt;?php endif; ?gt;
+?php endif; ?
+]]
  /programlisting
 /informalexample
/para
 -186,6 +198,7 
 und literalelse/literal im alternativen Format:
 informalexample
  programlisting role=php
+![CDATA[
 if ($a == 5):
 print a ist gleich 5;
 print ...;
 -195,6 +208,7 
 else:
 print a ist weder 5 noch 6;
 endif;
+]]
  /programlisting
 /informalexample
/para
 -213,7 +227,9 
 Grundform einer literalwhile/literal-Anweisung lautet:
 informalexample
  programlisting
+![CDATA[
 while (ausdr) Anweisung
+]]
  /programlisting
 /informalexample
/para
 -238,7 +254,9 
 gebraucht:
 informalexample
  programlisting
+![CDATA[
 while (ausdr): Anweisung ... endwhile;
+]]
  /programlisting
 /informalexample
/para
 -247,10 +265,11 
 1 bis 10 aus:
 informalexample
  programlisting
+![CDATA[
 /* Beispiel 1 */
 
 $i = 1;
-while ($i lt;= 10) {
+while ($i = 10) {
 print $i++;  /* es wird erst $i ausgegeben,
 bevor der Wert erhöht wird
 (Post-Inkrement) */
 -259,10 +278,11 
 /* Beispiel 2 */
  
 $i = 1;
-while ($i lt;= 10):
+while ($i = 10):
 print $i;
 $i++;
 endwhile;
+]]
  /programlisting
 /informalexample
/para
 -285,10 +305,12 
 Es gibt nur eine Syntax für literaldo..while/literal-Schleifen:
 informalexample
  programlisting role=php
+![CDATA[
 $i = 0;
 do {
 print $i;
 } while ($i0);
+]]
  /programlisting
 /informalexample
/para
 -305,13 +327,14 
 Anweisung zu benutzen. Der folgende Programm-Ausschnitt zeigt dies:
 informalexample
  programlisting role=php
+![CDATA[
 do {
-if ($i lt; 5) {
+if ($i  5) {
 print i ist nicht gross genug;
 break;
 }
 $i *= $factor;
-if ($i lt; $minimum_limit) {
+if ($i  $minimum_limit) {
 break;
 }
 print i ist ok;
 -319,6 +342,7 
 ...bearbeite i...
 
 } while(0);
+]]
  /programlisting
 /informalexample
/para
 -337,7 +361,9 
 einer literalfor/literal-Schleife sieht so aus:
 informalexample
  programlisting
+![CDATA[
 for (ausdr1; ausdr2; ausdr3) Anweisung
+]]
  /programlisting
 /informalexample
/para
 -370,16 +396,17 
 10 aus:
 informalexample
  programlisting role=php
+![CDATA[
 /* Beispiel 1 */
  
-for ($i = 1; $i lt;= 10; $i++) {
+for ($i = 1; $i = 10; $i++) {
 print $i;
 }
  
 /* Beispiel 2 */
  
 for ($i = 1;;$i++) {
-if ($i gt; 10) {
+if ($i  10) {
 break;
 }
 print $i;
 -389,7 +416,7 
  
 $i = 1;
 for (;;) {
-if ($i gt; 10) {
+if ($i  10) {
 break;
 }
 print $i;
 -398,7 +425,8 
  
 /* Beispiel 4 */
  
-for ($i = 1; $i lt;= 10; print $i, $i

[PHP-DOC] cvs: phpdoc /en/language variables.xml

2002-04-22 Thread Friedhelm Betz

betzMon Apr 22 12:52:22 2002 EDT

  Modified files:  
/phpdoc/en/language variables.xml 
  Log:
  some resorting, killed aliases in links
  
Index: phpdoc/en/language/variables.xml
diff -u phpdoc/en/language/variables.xml:1.43 phpdoc/en/language/variables.xml:1.44
--- phpdoc/en/language/variables.xml:1.43   Tue Apr  2 06:32:26 2002
+++ phpdoc/en/language/variables.xmlMon Apr 22 12:52:22 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.43 $ --
+!-- $Revision: 1.44 $ --
  chapter id=language.variables
   titleVariables/title
   
 -762,10 +762,10 
  (generally) as needed, it is not always obvious what type a given
  variable is at any one time.  PHP includes several functions
  which find out what type a variable is. They are
- functiongettype/function, functionis_long/function,
- functionis_double/function, functionis_string/function,
- functionis_array/function, and
- functionis_object/function.
+ functiongettype/function, functionis_array/function,
+ functionis_float/function, functionis_int/function,
+ functionis_object/function, and
+ functionis_string/function.
 /para
/sect2
 





Re: [PHP-DOC] /en/appendices/reserved.xml

2002-04-22 Thread Friedhelm Betz


 From: Simone Cortesi [EMAIL PROTECTED]

 on top of /phpdoc/en/appendices/reserved.xml I read this note.

 !-- Note: Please do not link or translate this file yet.
 This is only an initial update, quite a few more commits will
 follow for this appendix. --

 Is it still valid? I already have an italian version of that file,
 but it
 is version 1.14 while the current english one is 1.18.

 What should I do? sync the italian translation? wait?

 I think you can ignore this comment or even better, delete it.
 Haven´t found the original author in CVS. The same should we done
 with the install.xml splitting by Mark.

 -Egon

What about en/appendices/predefined.xml? It has the same comment from Torben.
I would like to commit my sync to en version of
de/language/variables.xml but I won't do, because much content has
been moved to en/appendices/predefined.xml. And as long as this file
is not ready for translation it makes no sense to commit
/de/languages/variables.xml 
Any hint or advice?! :-)

Thankd
 Friedhelm   




Re: [PHP-DOC] function reference grouping

2002-04-18 Thread Friedhelm Betz


Hallo Gabor,

Tuesday, April 16, 2002, 10:07:12 PM, you wrote:

 Hi!

 As now we have separate groups of files for every extension, we
 can talk again about grouping of extensions by purpose.

 I made some small investigations. We have reference for an
 extension. This is only allowed in book and part, so we need
 to make every gruop a part to make this work... But parts
 can only be in books, and so this would only work, if we would
 have the reference part as a separate book (this would
 not mean a separation from the PHP Manual, but a separation on
 the XML level).

 The other way is to go a bit deeper, and drop reference,
 as refentry (which we use for individual functions) can
 be under a sectx [where x is 0  int  6] or section.
 A section can contain virtually anything (we already use
 sections under our partintros).

 So we can go the way to have a separate book for the
 reference part, and have the groups as parts, or we can
 drop reference and use section instead of that.

 Which way to go? I don't know right now, what to vote for...
 BUT we need to decide on this, as these are the only
 two methods as I can see to solve our grouping problems.

I vote for drop the refence and replace this with section-parts.
Why? From my point of view we have one book with several parts. One
part of this book is the funcref and therefore it should not be a
sepearate book (on the xml level). Grouping functions to topics like
database and so on, this topics become chapters of the general book
and this should be modelled with XML.


 Friedhelm   





 Friedhelm   




Re: [PHP-DOC] function reference grouping

2002-04-18 Thread Friedhelm Betz


Hi
 haven't really followed this thread (or at least not read up),
 but +1 for section from me as i have already partly working
 conversion and stylesheet code for that ...

 Nice. By using sections, we can also make subgroups, as in
 Gerzson's mail, we can group DB abstraction libraries under
 the DB category, or we can group regular expressions under
 text processing, etc. So we can go deeper with grouping, not
 just only one level.

 BTW I can make a sample manual.xml.in file from Gerzson's
 category proposal, and put it into RFC, so we can talk
 about those groupings... And then we only need a small
 conversion script to convert referece - section,
 and partintro - nothing or section. And of course
 we need some DSSSL and/or XSLT customizations for the
 new schema.

 So may I start working on a sample manual.xml.in?

Yes, please :-) Beside the technical view it is
important to think about grouping from aview of contents and it
would be nice to have an starting point ...

Friedhelm




 Friedhelm   




[PHP-DOC] cvs: phpdoc /en/language control-structures.xml

2002-04-16 Thread Friedhelm Betz

betzTue Apr 16 06:26:21 2002 EDT

  Modified files:  
/phpdoc/en/language control-structures.xml 
  Log:
  example fix
  
Index: phpdoc/en/language/control-structures.xml
diff -u phpdoc/en/language/control-structures.xml:1.55 
phpdoc/en/language/control-structures.xml:1.56
--- phpdoc/en/language/control-structures.xml:1.55  Sun Feb 10 10:49:24 2002
+++ phpdoc/en/language/control-structures.xml   Tue Apr 16 06:26:20 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.55 $ --
+!-- $Revision: 1.56 $ --
  chapter id=control-structures
   titleControl Structures/title
 
 -925,7 +925,6 
  titleProfile a section of PHP code/title
  programlisting role=php
 ![CDATA[
-pre
 ?php
 // A function that records the time when it is called
 function profile ($dump = FALSE)
 -951,14 +950,13 
 // Run a block of code, throw a tick every 2nd statement
 declare (ticks=2) {
 for ($x = 1; $x  50; ++$x) {
-echo similar_text (md5($x), md5($x*$x)), lt;brgt;;
+echo similar_text (md5($x), md5($x*$x)), br /;;
 }
 }
 
 // Display the data stored in the profiler
 print_r (profile (TRUE));
 ?
-/pre
 ]]
  /programlisting
 /example





Re: [PHP-DOC] php.ini -related

2002-04-11 Thread Friedhelm Betz

  For register globals: import_request_variables(), or
  extract() can be used. BTW isn't argv and argc available
  in some $HTTP_anyhing_VARS array?

 You are right in all points, but the current scripts in /scripts doesn't
 use any
 of these possibilities. The build system uses php and rely on some
 settings I personaolly do not and therefore my local php.ini has other
 settings. So what can I do? I don't want to rewrite the scripts :-)
 and I don't want to change my php.ini-settigns only for working with
 the manual. With a php.ini distributed with the build system it would
 be very easy to add  -c path/to/php.ini to the lines calling php.
 But forget it, I seem to be the only one with this problem :-)

 No, I won't forget it. This is important. I just tried to
 show some possibilities how you can solve that problem.
 BTW if you can commit that php.ini you added to scripts to
 run them, it would be nice. Then we can figure out, where
 we need to add a -c option to php invocations...

 Goba

I used this php.ini. If these, or a more optimized one :-) livies in
the script dir the work should be done to change the first lines of
the scrips:
#!/usr/bin/php -q -c ./php.ini

[PHP]
short_open_tag = On
allow_call_time_pass_reference = Off
;safe_mode = Off
max_execution_time = 0
memory_limit = 16M
display_errors = Off
display_startup_errors = Off
track_errors = Off
html_errors = Off
variables_order = GPCS
register_globals = On
register_argc_argv = On
default_mimetype = text/html


 Friedhelm   




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

2002-04-09 Thread Friedhelm Betz


 this should probably be in the entities file as a default example url, imho.

+1
default.url=www.example.com
and also for example mail adresses?

 Friedhelm   




Re: [PHP-DOC] php.ini -related

2002-04-09 Thread Friedhelm Betz


   Maybe there is another way to handle this issue, and if I am talking
   nonsense forget it :-)
 
  Not too bad idea. BTW we can also use ini_get() in scripts,
  and the like to customize the behaviour to the php.ini settings.

 Sure, but not possible with register_globals. Abd the current scripts rely
 on this setting.
 If register globals is off argc and argv ist not available.

 And in the future versions register_globals is off by default :-)
 No big point, just wanna ask :-)

 For register globals: import_request_variables(), or
 extract() can be used. BTW isn't argv and argc available
 in some $HTTP_anyhing_VARS array?

You are right in all points, but the current scripts in /scripts doesn't use any
of these possibilities. The build system uses php and rely on some
settings I personaolly do not and therefore my local php.ini has other
settings. So what can I do? I don't want to rewrite the scripts :-)
and I don't want to change my php.ini-settigns only for working with
the manual. With a php.ini distributed with the build system it would
be very easy to add  -c path/to/php.ini to the lines calling php.
But forget it, I seem to be the only one with this problem :-)


 Friedhelm   




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

2002-04-08 Thread Friedhelm Betz

betzMon Apr  8 09:42:18 2002 EDT

  Modified files:  
/phpdoc/en/functionsgettext.xml 
  Log:
  cleanups in titels
  
Index: phpdoc/en/functions/gettext.xml
diff -u phpdoc/en/functions/gettext.xml:1.20 phpdoc/en/functions/gettext.xml:1.21
--- phpdoc/en/functions/gettext.xml:1.20Wed Feb 13 06:07:25 2002
+++ phpdoc/en/functions/gettext.xml Mon Apr  8 09:42:17 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.20 $ --
+!-- $Revision: 1.21 $ --
  reference id=ref.gettext
   titleGettext/title
   titleabbrevgettext/titleabbrev
 -37,7 +37,7 
 refnamebind_textdomain_codeset/refname
 refpurpose
  Specify the character encoding in which the messages from the
- DOMAIN message catalog will be re turned
+ DOMAIN message catalog will be returned
 /refpurpose
/refnamediv
refsect1
 -68,7 +68,8 
  /methodsynopsis
 para
  This function allows you to override the current domain for a
- single message lookup. It also allows you to specify a category.
+ single message lookup. It also allows you to specify a
+ parametercategory/parameter.
 /para
/refsect1
   /refentry
 -76,7 +77,7 
   refentry id='function.dcngettext'
refnamediv
 refnamedcngettext/refname
-refpurposePlural version of dcgettext() Plural version of dcgettext/refpurpose
+refpurposePlural version of dcgettext/refpurpose
/refnamediv
refsect1
 titleDescription/title
 -116,7 +117,7 
   refentry id='function.dngettext'
refnamediv
 refnamedngettext/refname
-refpurposePlural version of dcgettext() Plural version of dgettext/refpurpose
+refpurposePlural version of dgettext/refpurpose
/refnamediv
refsect1
 titleDescription/title





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

2002-04-08 Thread Friedhelm Betz

betzMon Apr  8 09:44:42 2002 EDT

  Modified files:  
/phpdoc/en/functionsarray.xml bzip2.xml 
  Log:
  more entities: return.success;
  
Index: phpdoc/en/functions/array.xml
diff -u phpdoc/en/functions/array.xml:1.172 phpdoc/en/functions/array.xml:1.173
--- phpdoc/en/functions/array.xml:1.172 Thu Mar 28 17:32:52 2002
+++ phpdoc/en/functions/array.xml   Mon Apr  8 09:44:41 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.172 $ --
+!-- $Revision: 1.173 $ --
  reference id=ref.array
   titleArray Functions/title
   titleabbrevArrays/titleabbrev
 -1207,8 +1207,7 
  SORT_REGULAR after before each new array argument.
 /para
 para
- Returns true; on success, false;
- on failure.
+ return.success;
 /para
 para
  example
Index: phpdoc/en/functions/bzip2.xml
diff -u phpdoc/en/functions/bzip2.xml:1.19 phpdoc/en/functions/bzip2.xml:1.20
--- phpdoc/en/functions/bzip2.xml:1.19  Thu Mar 28 17:32:53 2002
+++ phpdoc/en/functions/bzip2.xml   Mon Apr  8 09:44:42 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.19 $ --
+!-- $Revision: 1.20 $ --
  reference id=ref.bzip2
   titleBzip2 Compression Functions/title
   titleabbrevBzip2/titleabbrev
 -104,7 +104,7 
  Closes the bzip2 file referenced by the pointer parameterbz/parameter.
 /para
 para
- Returns true; on success and false; on failure.
+ return.success;
 /para
 para
  The file pointer must be valid, and must point to a file





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

2002-04-08 Thread Friedhelm Betz

betzMon Apr  8 09:56:59 2002 EDT

  Modified files:  
/phpdoc/de/functionsdatetime.xml 
  Log:
  sync to en
  
Index: phpdoc/de/functions/datetime.xml
diff -u phpdoc/de/functions/datetime.xml:1.25 phpdoc/de/functions/datetime.xml:1.26
--- phpdoc/de/functions/datetime.xml:1.25   Mon Mar 25 08:26:28 2002
+++ phpdoc/de/functions/datetime.xmlMon Apr  8 09:56:58 2002
 -1,10 +1,8 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- EN-Revision: 1.69 Maintainer: betz Status: ready --
+!-- EN-Revision: 1.70 Maintainer: betz Status: ready --
  reference id=ref.datetime
   titleDatums- und Zeit-Funktionen/title
   titleabbrevDatum/Zeit/titleabbrev
-!-- Anmerkung des Übersetzers:
- entspricht en/functions/datetime.xml 1.23 --
 
   refentry id=function.checkdate
refnamediv
 -738,7 +736,9 
  parameteris_dst/parameter kann bei Sommerzeit auf 1 gesetzt
  werden. 0 bedeutet Winter-/Normalzeit, -1 (Vorgabewert)
  heisst, dass nicht bekannt ist, ob Sommer- oder Winterzeit
- herrscht.
+ herrscht. Falls nicht bekannt ist (-1) ob Sommer- oder Winterzeit
+ herrscht, versucht PHP selbst dies herauszufinden. Das kann zu
+ unerwarteten (aber richtigen) Ergebnissen fügren.
 /para
 note
  para





[PHP-DOC] cvs: phpdoc /de Translators

2002-04-08 Thread Friedhelm Betz

betzMon Apr  8 09:57:28 2002 EDT

  Modified files:  
/phpdoc/de  Translators 
  Log:
  datetime.xml update
  
Index: phpdoc/de/Translators
diff -u phpdoc/de/Translators:1.292 phpdoc/de/Translators:1.293
--- phpdoc/de/Translators:1.292 Thu Apr  4 02:32:42 2002
+++ phpdoc/de/Translators   Mon Apr  8 09:57:27 2002
 -101,7 +101,7 
 cybercash.xml   Martin Jansen   fertig
 cybermut.xmlMark Kronsbein  fertig (bis 1.16)
 cyrus.xml
-datetime.xmlFriedhelm Betz  fertig (bis 1.69)
+datetime.xmlFriedhelm Betz  fertig (bis 1.70)
 dba.xml Martin Jansen   fertig
 dbase.xml   Thomas Schuermann   fertig
 dbm.xml Holger Schranz  fertig





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

2002-04-08 Thread Friedhelm Betz

betzMon Apr  8 09:59:34 2002 EDT

  Modified files:  
/phpdoc/en/functionsfilesystem.xml 
  Log:
  more entities: return.success;
  
Index: phpdoc/en/functions/filesystem.xml
diff -u phpdoc/en/functions/filesystem.xml:1.138 
phpdoc/en/functions/filesystem.xml:1.139
--- phpdoc/en/functions/filesystem.xml:1.138Sun Apr  7 08:48:01 2002
+++ phpdoc/en/functions/filesystem.xml  Mon Apr  8 09:59:33 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.138 $ --
+!-- $Revision: 1.139 $ --
  reference id=ref.filesystem
   titleFilesystem functions/title
   titleabbrevFilesystem/titleabbrev
 -77,7 +77,7 
  change the group of a file to any group of which that user is a member.
 /para
 para
- Returns true; on success; otherwise returns false;.
+ return.success;
 /para
 para
  See also functionchown/function and
 -120,7 +120,7 
  /informalexample
 /para
 para
- Returns true; on success and false; otherwise.
+ return.success;
 /para
 para
  See also functionchown/function and
 -148,7 +148,7 
  the superuser may change the owner of a file.
 /para
 para
- Returns true; on success; otherwise returns false;.
+ return.success;
 /para
 para
  See also functionchown/function and
 -420,8 +420,7 
  The file pointed to by parameterfp/parameter is closed.
 /para
 para
- Returns true; on success and false;
- on failure.
+ return.success;
 /para
 para
  The file pointer must be valid, and must point to a file
 -2134,7 +2133,7 
  /informalexample
 /para
 para
- Returns true; on success and false; on failure.
+ return.success;
 /para
 para
  See also functionrmdir/function.
 -2556,7 +2555,7 
  parameternewname/parameter.
 /para 
 para 
- Returns true; on success and false; on failure.
+ return.success;
 /para
/refsect1
   /refentry
 -2908,7 +2907,7 
  If the file does not exist, it is created.
 /para
 para
- Returns true; on success and false; otherwise.
+ return.success;
  example
   titlefunctiontouch/function example/title
   programlisting role=php





Re: [PHP-DOC] Bug #16499 Updated: strftime(%T) no output

2002-04-08 Thread Friedhelm Betz


Hi

 Sounds like a good idea, reopening as a doc problem.

 Derick


 Previous Comments:
 

 [2002-04-08 16:43:05] [EMAIL PROTECTED]

 Hi,

 blame me, I searched the database, but this one didn't come to my
 eyes:-), sorry!
 According to that note:
 Note: Not all conversion specifiers may be supported by your C library,
 in which case they will not be supported by PHP's strftime(). 

 it may be worth to mention it in the docs explicitly, that
 strftime(%T) and strftime(%D) doesn't work on windows?

 greets
 Friedhelm


If nobody is voting against, I'll update the docs.

Friedhelm




Re: [PHP-DOC] cvs update quite strange

2002-04-04 Thread Friedhelm Betz


Hi Gabor,

Thursday, April 04, 2002, 7:55:14 PM, you wrote:

'phpweb', even if i'm on '/phpdoc/it/functions', it sends about
 2megabytes
of data before starting to do something useful.
   
But I'm using cygwin.
  
  Why? Is this because the time changes? It is April 3 now, not April
  1 :((( I was not enough patient to wait more after two megabytes...
 
  I resolved deleting my '.cvspass' file and re-logging in with
 
  cvs -z3 -d:pserver:[EMAIL PROTECTED]:/repository login
 
 Logging out and back does not seem to solve my problem ;((

 So I finally decided to wait till the update ends. The update
 took 13 megabytes of data sent to the CVS server. I don't know
 what was in that 13 megabytes, but the received data was only
 about 1 megabytes...

 The new updates seem to be good, but I don't know what will
 come tomorrow. We'll see...

Strange. I am on Win too and use cygwin and its working fine.
My setup is untouched
  Friedhelm




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

2002-04-03 Thread Friedhelm Betz

betzThu Apr  4 02:30:45 2002 EDT

  Modified files:  
/phpdoc/de/functionsldap.xml 
  Log:
  sync to en
  
Index: phpdoc/de/functions/ldap.xml
diff -u phpdoc/de/functions/ldap.xml:1.19 phpdoc/de/functions/ldap.xml:1.20
--- phpdoc/de/functions/ldap.xml:1.19   Mon Mar 25 16:53:55 2002
+++ phpdoc/de/functions/ldap.xmlThu Apr  4 02:30:45 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- EN-Revision: 1.43 Maintainer: betz Status: ready --
+!-- EN-Revision: 1.44 Maintainer: betz Status: ready --
 reference id=ref.ldap
  titleLDAP Funktionen/title
   titleabbrevLDAP/titleabbrev
 -631,7 +631,7 
  konvertiert werden.
 /para
 para
- Solange Sie die Stufe der Fehlerwarnungen in Ihrer php.ini nicht
+ Solange Sie die Stufe der Fehlerwarnungen in Ihrer php.ini; nicht
  herabsetzen oder vor Ihre LDAP Komanndos ein  (at) setzen
  um die Ausgabe von Fehlermeldungen zu unterdrücken, werden die
  aufgetretenen Fehler auch in Ihrer HTML Ausgabe zu sehen sein.
 -694,7 +694,7 
 /para
 para
  Solange Sie die Stufe der Fehlerwarnungen in Ihrer 
- filenamephp.ini/filename nicht herabsetzen oder vor Ihre 
+ php.ini; nicht herabsetzen oder vor Ihre 
  LDAP Komanndos ein literal/literal (at) setzen,
  um die Ausgabe von Fehlermeldungen zu unterdrücken, werden die
  aufgetretenen Fehler auch in Ihrer HTML Ausgabe zu sehen sein.





[PHP-DOC] cvs: phpdoc /de Translators

2002-04-03 Thread Friedhelm Betz

betzThu Apr  4 02:32:42 2002 EDT

  Modified files:  
/phpdoc/de  Translators 
  Log:
  ldap.xml uptodate
  
Index: phpdoc/de/Translators
diff -u phpdoc/de/Translators:1.291 phpdoc/de/Translators:1.292
--- phpdoc/de/Translators:1.291 Thu Mar 28 18:04:06 2002
+++ phpdoc/de/Translators   Thu Apr  4 02:32:42 2002
 -136,7 +136,7 
 ingres_ii.xml   Cornelia Boenigkfertig (bis V. 1.10)
 ircg.xmlGeorg Richter   fertig (bis V. 1.21)
 java.xmlSebastian Bergmann  fertig
-ldap.xmlFriedhelm Betz  fertig (bis 1.43)
+ldap.xmlFriedhelm Betz  fertig (bis 1.44)
 mail.xmlUwe Steinmann   fertig
 mailparse.xml
 math.xmlHartmut Holzgraefe  fertig





[PHP-DOC] reserved.xml, predefined.xml

2002-04-02 Thread Friedhelm Betz

Hi,
just finished the review of de/language/varibales.xml. Many of the
contents has been moved to appendix/reserved.xml and predefined.xml.
The note on the top of these files:
!-- Note:  Please do not link or translate this file yet.
This is only an initial update, quite a few more commits will
follow for this appendix. --
Is this still true? (In the en-version this files are linkend from
variables.xml)
Therefore it would not make sense to me to update
de/variables.xml as there would be a loss of info.
Is there an agreement, when reseverd and predifined are ready for
translation?
Thanks.

 Friedhelm  




[PHP-DOC] cvs: phpdoc /en/language variables.xml

2002-04-02 Thread Friedhelm Betz

betzTue Apr  2 06:32:28 2002 EDT

  Modified files:  
/phpdoc/en/language variables.xml 
  Log:
  typo fix
  
Index: phpdoc/en/language/variables.xml
diff -u phpdoc/en/language/variables.xml:1.42 phpdoc/en/language/variables.xml:1.43
--- phpdoc/en/language/variables.xml:1.42   Thu Mar 28 12:16:45 2002
+++ phpdoc/en/language/variables.xmlTue Apr  2 06:32:26 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.42 $ --
+!-- $Revision: 1.43 $ --
  chapter id=language.variables
   titleVariables/title
   
 -608,7 +608,7 
 select multiple name=beer[]
 option value=warthogWarthog
 option value=guinnessGuinness
-option value=stuttgarterStuttgarter Schwabenbrauml;u
+option value=stuttgarterStuttgarter Schwabenbräu
 /select
 input type=submit
 /form





Re: [PHP-DOC] cvs: phpdoc /en/language variables.xml

2002-04-02 Thread Friedhelm Betz


Hallo Egon,

Tuesday, April 02, 2002, 2:07:50 PM, you wrote:

 From: Friedhelm Betz [EMAIL PROTECTED]
   Modified files:
 /phpdoc/en/language variables.xml
   Log:
   typo fix

 Index: phpdoc/en/language/variables.xml
 diff -u phpdoc/en/language/variables.xml:1.42
 phpdoc/en/language/variables.xml:1.43
 --- phpdoc/en/language/variables.xml:1.42 Thu Mar 28 12:16:45 2002
 +++ phpdoc/en/language/variables.xml Tue Apr  2 06:32:26 2002
 @@ -1,5 +1,5 @@
  ?xml version=1.0 encoding=iso-8859-1?
 -!-- $Revision: 1.42 $ --
 +!-- $Revision: 1.43 $ --
   chapter id=language.variables
titleVariables/title

 @@ -608,7 +608,7 @@
  select multiple name=beer[]
  option value=warthogWarthog
  option value=guinnessGuinness
 -option value=stuttgarterStuttgarter Schwabenbrauml;u
 +option value=stuttgarterStuttgarter Schwabenbräu
  /select
  input type=submit
  /form

 Please revert this patch. Our native English speakers doesnt see a
 ä. In the German PHP manual it is okay, but not in the English
 manual.

Sorry, forgot to mention the above is enclosed by CDATA-Tags and there
should be no html-entities :-) and schwabenbräu is very important and
should also rendered correctly for the en-people:-). For now it does
not look like the real Schwabenbräu:
http://www.php.net/manual/en/language.variables.external.php

 Friedhelm   




Re: [PHP-DOC] cvs: phpdoc /en/chapters config.xml

2002-04-01 Thread Friedhelm Betz


Hi Mark,



 If someone wants to take a look, my proposal for layout:
 http://mysql.holliwell.de/ref.mysql.html, including the infos from
 config.xml. I don't just want to commit, maybe one of the more experienced

 Looks great. This is what I have in mind, too. Perhaps you should add
 a short installation instruction for MySQL, so all information you need
 to 
 use MySQL with PHP will be on one page.

 Mark

back from the family meeting for the easter days :-)
What Installation instructions do you have in mind (Complete list of configure options
?)
The part under Installation seems to be enough for me? Is
there/should there be more stuff?
Will the section  Complete list of configure options stay at the place
its now? Or should this be deleted too? The contents are under the
Installation part of the intro to mysql.xml.
Let me know. Thanks !

 Friedhelm




Re: [PHP-DOC] cvs: phpdoc /en/chapters config.xml

2002-04-01 Thread Friedhelm Betz


Hallo Mark,

Monday, April 01, 2002, 9:40:19 PM, you wrote:

 a) All info related to one extension at one place
 b) No duplicated documentation, link when duplications needed

+1

 Thats what I meant. If the installation of a lib is only
 configure, make, make install,
 its okay, to write it in the
 PHP manual. If its more, link to an installation faq or something.

also +1, this could also include the chance to give the win-users the
proper info, e.g. which dll to enable for that extension and also if
this extension _is_ available on win


 Friedhelm   




Re: [PHP-DOC] cvs: phpdoc /en/chapters config.xml

2002-04-01 Thread Friedhelm Betz


 What Installation instructions do you have in mind (Complete list of configure 
options
 ?)

 I have in mind that someone whos reading the manual finds everything 
 he needs to install and use i.e. MySQL on one place.

 - MySQL quick install

Really?? For most extensions this is not as easy :-). In this case
your other proposal (linking to external infos) seems to be more handy
to me.

 - Configuring PHP for MySQL
 - Normal manual pages for functions etc.

 Will the section  Complete list of configure options stay at the place
 its now? Or should this be deleted too? The contents are under the
 Installation part of the intro to mysql.xml.

 Hartmut is planning something with the options ;)

So for now, I'll leave that section untouched :-) Untill Hartmut has
worked out, there are two sections with nearly the same contents, but
in this case it seems to be ok for me.

  Friedhelm




[PHP-DOC] cvs: phpdoc /en/chapters config.xml

2002-04-01 Thread Friedhelm Betz

betzMon Apr  1 16:06:12 2002 EDT

  Modified files:  
/phpdoc/en/chapters config.xml 
  Log:
  moving ini-settings for ODBC  to  function-ref.
  
Index: phpdoc/en/chapters/config.xml
diff -u phpdoc/en/chapters/config.xml:1.45 phpdoc/en/chapters/config.xml:1.46
--- phpdoc/en/chapters/config.xml:1.45  Mon Apr  1 12:06:02 2002
+++ phpdoc/en/chapters/config.xml   Mon Apr  1 16:06:11 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.45 $ --
+!-- $Revision: 1.46 $ --
  chapter id=configuration
   titleConfiguration/title
 
 -1437,129 +1437,6 
para
 Name of browser capabilities file. See also
 functionget_browser/function.
-   /para
-  /listitem
- /varlistentry
- 
-/variablelist
-   /sect2
-
-   sect2 id=ini.sect.uodbc
-titleUnified ODBC Configuration Directives/title
-variablelist
- 
- varlistentry id=ini.uodbc.default-db
-  term
-   parameterodbc.default_db/parameter
-   typestring/type
-  /term
-  listitem
-   para
-ODBC data source to use if none is specified in
-functionodbc_connect/function or
-functionodbc_pconnect/function.
-   /para
-  /listitem
- /varlistentry
- 
- varlistentry id=ini.uodbc.default-user
-  term
-   parameterodbc.default_user/parameter
-   typestring/type
-  /term
-  listitem
-   para
-User name to use if none is specified in
-functionodbc_connect/function or
-functionodbc_pconnect/function.
-   /para
-  /listitem
- /varlistentry
- 
- varlistentry id=ini.uodbc.default-pw
-  term
-   parameterodbc.default_pw/parameter
-   typestring/type
-  /term
-  listitem
-   para
-Password to use if none is specified in
-functionodbc_connect/function or
-functionodbc_pconnect/function.
-   /para
-  /listitem
- /varlistentry
- 
- varlistentry id=ini.uodbc.allow-persistent
-  term
-   parameterodbc.allow_persistent/parameter
-   typeboolean/type
-  /term
-  listitem
-   para
-Whether to allow persistent ODBC connections.
-   /para
-  /listitem
- /varlistentry
- 
- varlistentry id=ini.uodbc.check-persistent
-  term
-   parameterodbc.check_persistent/parameter
-   typeboolean/type
-  /term
-  listitem
-   para
-Check that a connection is still valid before reuse.
-   /para
-  /listitem
- /varlistentry
- 
- varlistentry id=ini.uodbc.max-persistent
-  term
-   parameterodbc.max_persistent/parameter
-   typeinteger/type
-  /term
-  listitem
-   para
-The maximum number of persistent ODBC connections per process.
-   /para
-  /listitem
- /varlistentry
- 
- varlistentry id=ini.uodbc.max-links
-  term
-   parameterodbc.max_links/parameter
-   typeinteger/type
-  /term
-  listitem
-   para
-The maximum number of ODBC connections per process, including
-persistent connections.
-   /para
-  /listitem
- /varlistentry
-
- varlistentry id=ini.uodbc.defaultlrl
-  term
-   parameterodbc.defaultlrl/parameter
-   typeinteger/type
-  /term
-  listitem
-   para
-Handling of LONG fields. Specifies the number of bytes returned to 
-variables.
-   /para
-  /listitem
- /varlistentry
- 
- varlistentry id=ini.uodbc.defaultbinmode
-  term
-   parameterodbc.defaultbinmode/parameter
-   typeinteger/type
-  /term
-  listitem
-   para
-Handling of binary data.
/para
   /listitem
  /varlistentry





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

2002-04-01 Thread Friedhelm Betz

betzMon Apr  1 16:09:19 2002 EDT

  Modified files:  
/phpdoc/en/functionsuodbc.xml 
  Log:
  added ini-settings from config.xml to Runtime Config
  
Index: phpdoc/en/functions/uodbc.xml
diff -u phpdoc/en/functions/uodbc.xml:1.38 phpdoc/en/functions/uodbc.xml:1.39
--- phpdoc/en/functions/uodbc.xml:1.38  Fri Mar 29 10:25:47 2002
+++ phpdoc/en/functions/uodbc.xml   Mon Apr  1 16:09:19 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.38 $ --
+!-- $Revision: 1.39 $ --
  reference id=ref.odbc
   titleUnified ODBC functions/title
   titleabbrevODBC/titleabbrev
 -52,9 +52,9 
 titleRuntime Configuration/title
 para
  The behaviour of the ODBC functions is affected by settings in the
- global link linkend=configurationconfiguration/link file.
+ global link linkend=configuration.fileconfiguration file/link php.ini;.
  table
-  titlelink linkend=ini.sect.uodbcUnified ODBC Configuration/link 
Options/title
+  titleUnified ODBC Configuration Options/title
   tgroup cols=3
thead
 row
 -119,6 +119,128 
  /note
  For further details and definition of the PHP_INI_* constants see
  functionini_set/function.
+/para
+para
+ Here is a short explanation of the configuration directives.
+variablelist
+
+ varlistentry id=ini.uodbc.default-db
+  term
+   parameterodbc.default_db/parameter
+   typestring/type
+  /term
+  listitem
+   para
+ODBC data source to use if none is specified in
+functionodbc_connect/function or
+functionodbc_pconnect/function.
+   /para
+  /listitem
+ /varlistentry
+ 
+ varlistentry id=ini.uodbc.default-user
+  term
+   parameterodbc.default_user/parameter
+   typestring/type
+  /term
+  listitem
+   para
+User name to use if none is specified in
+functionodbc_connect/function or
+functionodbc_pconnect/function.
+   /para
+  /listitem
+ /varlistentry
+ 
+ varlistentry id=ini.uodbc.default-pw
+  term
+   parameterodbc.default_pw/parameter
+   typestring/type
+  /term
+  listitem
+   para
+Password to use if none is specified in
+functionodbc_connect/function or
+functionodbc_pconnect/function.
+   /para
+  /listitem
+ /varlistentry
+ 
+ varlistentry id=ini.uodbc.allow-persistent
+  term
+   parameterodbc.allow_persistent/parameter
+   typeboolean/type
+  /term
+  listitem
+   para
+Whether to allow persistent ODBC connections.
+   /para
+  /listitem
+ /varlistentry
+ 
+ varlistentry id=ini.uodbc.check-persistent
+  term
+   parameterodbc.check_persistent/parameter
+   typeboolean/type
+  /term
+  listitem
+   para
+Check that a connection is still valid before reuse.
+   /para
+  /listitem
+ /varlistentry
+ 
+ varlistentry id=ini.uodbc.max-persistent
+  term
+   parameterodbc.max_persistent/parameter
+   typeinteger/type
+  /term
+  listitem
+   para
+The maximum number of persistent ODBC connections per process.
+   /para
+  /listitem
+ /varlistentry
+ 
+ varlistentry id=ini.uodbc.max-links
+  term
+   parameterodbc.max_links/parameter
+   typeinteger/type
+  /term
+  listitem
+   para
+The maximum number of ODBC connections per process, including
+persistent connections.
+   /para
+  /listitem
+ /varlistentry
+
+ varlistentry id=ini.uodbc.defaultlrl
+  term
+   parameterodbc.defaultlrl/parameter
+   typeinteger/type
+  /term
+  listitem
+   para
+Handling of LONG fields. Specifies the number of bytes returned to
+variables.
+   /para
+  /listitem
+ /varlistentry
+ 
+ varlistentry id=ini.uodbc.defaultbinmode
+  term
+   parameterodbc.defaultbinmode/parameter
+   typeinteger/type
+  /term
+  listitem
+   para
+Handling of binary data.
+   /para
+  /listitem
+ /varlistentry
+ 
+/variablelist
 /para
/section
 





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

2002-03-29 Thread Friedhelm Betz

betzFri Mar 29 10:25:47 2002 EDT

  Modified files:  
/phpdoc/en/functionsuodbc.xml 
  Log:
  Runtime Config tor uodbc added
  
Index: phpdoc/en/functions/uodbc.xml
diff -u phpdoc/en/functions/uodbc.xml:1.37 phpdoc/en/functions/uodbc.xml:1.38
--- phpdoc/en/functions/uodbc.xml:1.37  Thu Mar 28 17:32:54 2002
+++ phpdoc/en/functions/uodbc.xml   Fri Mar 29 10:25:47 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.37 $ --
+!-- $Revision: 1.38 $ --
  reference id=ref.odbc
   titleUnified ODBC functions/title
   titleabbrevODBC/titleabbrev
 -50,7 +50,76 
 
section id=odbc.configuration
 titleRuntime Configuration/title
- no.config;
+para
+ The behaviour of the ODBC functions is affected by settings in the
+ global link linkend=configurationconfiguration/link file.
+ table
+  titlelink linkend=ini.sect.uodbcUnified ODBC Configuration/link 
+Options/title
+  tgroup cols=3
+   thead
+row
+ entryName/entry
+ entryDefault/entry
+ entryChangeable/entry
+/row
+   /thead
+   tbody
+row
+ entryodbc.default_db */entry
+ entryNULL/entry
+ entryPHP_INI_ALL/entry
+/row
+row
+ entryodbc.default_user */entry
+ entryNULL/entry
+ entryPHP_INI_ALL/entry
+/row
+row
+ entryodbc.default_pw */entry
+ entryNULL/entry
+ entryPHP_INI_ALL/entry
+/row
+row
+ entryodbc.allow_persistent/entry
+ entry1/entry
+ entryPHP_INI_SYSTEM/entry
+/row
+row
+ entryodbc.check_persistent/entry
+ entry1/entry
+ entryPHP_INI_SYSTEM/entry
+/row
+row
+ entryodbc.max_persistent/entry
+ entry-1/entry
+ entryPHP_INI_SYSTEM/entry
+/row
+row
+ entryodbc.max_links/entry
+ entry-1/entry
+ entryPHP_INI_SYSTEM/entry
+/row
+row
+ entryodbc.defaultlrl/entry
+ entry4096/entry
+ entryPHP_INI_ALL/entry
+/row
+row
+ entryodbc.defaultbinmode/entry
+ entry1/entry
+ entryPHP_INI_ALL/entry
+/row
+   /tbody
+  /tgroup
+ /table
+ note
+  simpara
+   Entries marked with * are not implemented yet.
+  /simpara
+ /note
+ For further details and definition of the PHP_INI_* constants see
+ functionini_set/function.
+/para
/section
 
section id=odbc.resources





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

2002-03-29 Thread Friedhelm Betz

betzFri Mar 29 10:26:33 2002 EDT

  Modified files:  
/phpdoc/en/functionsmysql.xml 
  Log:
  one missing runtime config added
  
Index: phpdoc/en/functions/mysql.xml
diff -u phpdoc/en/functions/mysql.xml:1.102 phpdoc/en/functions/mysql.xml:1.103
--- phpdoc/en/functions/mysql.xml:1.102 Fri Mar 29 07:47:31 2002
+++ phpdoc/en/functions/mysql.xml   Fri Mar 29 10:26:33 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.102 $ --
+!-- $Revision: 1.103 $ --
  reference id=ref.mysql
   titleMySQL Functions/title
   titleabbrevMySQL/titleabbrev
 -91,6 +91,12 
  entryNULL/entry
  entryPHP_INI_ALL/entry
 /row
+row
+ entrymysql.default_password/entry
+ entryNULL/entry
+ entryPHP_INI_ALL/entry
+/row
+
/tbody
   /tgroup
  /table





[PHP-DOC] cvs: phpdoc /en/chapters config.xml

2002-03-29 Thread Friedhelm Betz

betzFri Mar 29 10:31:37 2002 EDT

  Modified files:  
/phpdoc/en/chapters config.xml 
  Log:
  correcting uodbc directives. changed uodbc.* to odbc.* 
  minor changes to MySQL directives
  
Index: phpdoc/en/chapters/config.xml
diff -u phpdoc/en/chapters/config.xml:1.41 phpdoc/en/chapters/config.xml:1.42
--- phpdoc/en/chapters/config.xml:1.41  Thu Mar 28 12:16:34 2002
+++ phpdoc/en/chapters/config.xml   Fri Mar 29 10:31:37 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.41 $ --
+!-- $Revision: 1.42 $ --
  chapter id=configuration
   titleConfiguration/title
 
 -905,18 +905,6 
 titleMySQL Configuration Directives/title
 variablelist
  
- varlistentry id=ini.mysql.allow-persistent
-  term
-   parametermysql.allow_persistent/parameter
-   typeboolean/type
-  /term
-  listitem
-   para
-Whether to allow persistent MySQL connections.
-   /para
-  /listitem
- /varlistentry
- 
  varlistentry id=ini.mysql.default-host
   term
parametermysql.default_host/parameter
 -925,7 +913,8 
   listitem
para
 The default server host to use when connecting to the database
-server if no other host is specified.
+server if no other host is specified. Doesn't apply in
+link linkend=ini.safe-modesafe mode/link.
/para
   /listitem
  /varlistentry
 -938,7 +927,8 
   listitem
para
 The default user name to use when connecting to the database
-server if no other name is specified.
+server if no other name is specified. Doesn't apply in
+link linkend=ini.safe-modesafe mode/link.
/para
   /listitem
  /varlistentry
 -951,7 +941,8 
   listitem
para
 The default password to use when connecting to the database
-server if no other password is specified.
+server if no other password is specified. Doesn't apply in
+link linkend=ini.safe-modesafe mode/link.
/para
   /listitem
  /varlistentry
 -987,6 +978,20 
/para
   /listitem
  /varlistentry
+
+ varlistentry id=ini.mysql.allow-persistent
+  term
+   parametermysql.allow_persistent/parameter
+   typeboolean/type
+  /term
+  listitem
+   para
+Wether to allow
+link linkend=features.persistent-connectionspersistent connections/link
+to MySQL.
+   /para
+  /listitem
+ /varlistentry
  
  varlistentry id=ini.mysql.max-persistent
   term
 -1555,7 +1560,7 
  
  varlistentry id=ini.uodbc.default-db
   term
-   parameteruodbc.default_db/parameter
+   parameterodbc.default_db/parameter
typestring/type
   /term
   listitem
 -1569,7 +1574,7 
  
  varlistentry id=ini.uodbc.default-user
   term
-   parameteruodbc.default_user/parameter
+   parameterodbc.default_user/parameter
typestring/type
   /term
   listitem
 -1581,9 +1586,9 
   /listitem
  /varlistentry
  
- varlistentry id=ini.uodbc.default-pw
+ varlistentry id=ini.odbc.default-pw
   term
-   parameteruodbc.default_pw/parameter
+   parameterodbc.default_pw/parameter
typestring/type
   /term
   listitem
 -1597,7 +1602,7 
  
  varlistentry id=ini.uodbc.allow-persistent
   term
-   parameteruodbc.allow_persistent/parameter
+   parameterodbc.allow_persistent/parameter
typeboolean/type
   /term
   listitem
 -1607,9 +1612,21 
   /listitem
  /varlistentry
  
+ varlistentry id=ini.uodbc.check-persistent
+  term
+   parameterodbc.check_persistent/parameter
+   typeboolean/type
+  /term
+  listitem
+   para
+Check that a connection is still valid before reuse.
+   /para
+  /listitem
+ /varlistentry
+ 
  varlistentry id=ini.uodbc.max-persistent
   term
-   parameteruodbc.max_persistent/parameter
+   parameterodbc.max_persistent/parameter
typeinteger/type
   /term
   listitem
 -1621,13 +1638,37 
  
  varlistentry id=ini.uodbc.max-links
   term
-   parameteruodbc.max_links/parameter
+   parameterodbc.max_links/parameter
typeinteger/type
   /term
   listitem
para
 The maximum number of ODBC connections per process, including
 persistent connections.
+   /para
+  /listitem
+ /varlistentry
+
+ varlistentry id=ini.uodbc.defaultlrl
+  term
+   parameterodbc.defaultlrl/parameter
+   typeinteger/type
+  /term
+  listitem
+   para
+Handling of LONG fields. Specifies the number of bytes returned to variables.
+   /para
+  /listitem
+ /varlistentry
+ 
+ varlistentry id=ini.uodbc.defaultbinmode
+  term
+   parameterodbc.defaultbinmode/parameter
+   typeinteger/type
+  /term

[PHP-DOC] cvs: phpdoc /en/chapters config.xml

2002-03-29 Thread Friedhelm Betz

betzFri Mar 29 10:35:31 2002 EDT

  Modified files:  
/phpdoc/en/chapters config.xml 
  Log:
  thinko on id
  
Index: phpdoc/en/chapters/config.xml
diff -u phpdoc/en/chapters/config.xml:1.42 phpdoc/en/chapters/config.xml:1.43
--- phpdoc/en/chapters/config.xml:1.42  Fri Mar 29 10:31:37 2002
+++ phpdoc/en/chapters/config.xml   Fri Mar 29 10:35:31 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.42 $ --
+!-- $Revision: 1.43 $ --
  chapter id=configuration
   titleConfiguration/title
 
 -1586,7 +1586,7 
   /listitem
  /varlistentry
  
- varlistentry id=ini.odbc.default-pw
+ varlistentry id=ini.uodbc.default-pw
   term
parameterodbc.default_pw/parameter
typestring/type





[PHP-DOC] cvs: phpdoc /en/features safe-mode.xml

2002-03-29 Thread Friedhelm Betz

betzFri Mar 29 11:13:54 2002 EDT

  Modified files:  
/phpdoc/en/features safe-mode.xml 
  Log:
  completing safe_mode ini-settings
  
Index: phpdoc/en/features/safe-mode.xml
diff -u phpdoc/en/features/safe-mode.xml:1.20 phpdoc/en/features/safe-mode.xml:1.21
--- phpdoc/en/features/safe-mode.xml:1.20   Thu Mar  7 18:57:45 2002
+++ phpdoc/en/features/safe-mode.xmlFri Mar 29 11:13:54 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.20 $ --
+!-- $Revision: 1.21 $ --
  chapter id=features.safe-mode
   titleSafe Mode/title
 
 -15,8 +15,10 
programlisting role=ini
 ![CDATA[
 safe_mode = Off 
-open_basedir = 
+safe_mode_gid = 0
+safe_mode_include_dir =
 safe_mode_exec_dir = 
+open_basedir = 
 safe_mode_allowed_env_vars = PHP_ 
 safe_mode_protected_env_vars = LD_LIBRARY_PATH 
 disable_functions = 





Re: [PHP-DOC] cvs: phpdoc /en/chapters config.xml

2002-03-29 Thread Friedhelm Betz


Hallo Gabor,

Friday, March 29, 2002, 6:16:43 PM, you wrote:

 betz Fri Mar 29 10:31:37 2002 EDT
 
   Modified files:  
 /phpdoc/en/chapters config.xml 
   Log:
   correcting uodbc directives. changed uodbc.* to odbc.* 
   minor changes to MySQL directives

 IMHO if you add directives to the functions directory to
 the appropriate file, it would be the best to *remove* them
from here.

OK, couldn't remember, sorry! I guess therefore is the runtime
configuration section in the func references :-)
Which layout to choose? The same  as in config.xml?
Asking this stupid question because of the runtime configs in
mysql.xml and uodbc.xml (The later I just added today, mysql few weeks
ago). Is there an example?

 Having options listed in two places would only make
 confusion, more time to update, etc.

right :-)

 We already discussed moving the configure and ini options
 to the function reference part.

Is this definitley decided? :-)

 Friedhelm   




Re: [PHP-DOC] section titles to entities :)

2002-03-29 Thread Friedhelm Betz


 I would like to propose to put all section titles now used
 in function reference files to entities, like
 titleRuntime Configuration/title  to 
 sectitle.runtime; because of the ease [**and consistency**]
 of translations.

+1 please!!

 Friedhelm   




Re: [PHP-DOC] section titles to entities :)

2002-03-29 Thread Friedhelm Betz


 You're all just a bunch of lazy basterds :)

For sure, speaking for myself only :-)

 On Fri, 29 Mar 2002, Sander Roobol wrote:

 +1 (of course ;)

 Friedhelm   




Re: [PHP-DOC] cvs: phpdoc /en/chapters config.xml

2002-03-29 Thread Friedhelm Betz


Hi,


 Jep, but I did this with the often asked question in mind, which and
 how php.ini-seetings could be altered (with no access to php.ini).
 And not to forget: just deleting the entries from config.xml would be a
 loss on information. I'll think about and provide an improved example
 in mysql.xml.

 As discussed, we will move the ini and configure options to the
 extensions information in the future. It makes all info concentrated
 in one place. I have not compared the information contained in
 the configure part and in mysql.xml though, so that may be a
 stupid thing now just to blindly remove the info from the 
 configure part.

If someone wants to take a look, my proposal for layout:
http://mysql.holliwell.de/ref.mysql.html, including the infos from
config.xml. I don't just want to commit, maybe one of the more experienced
on docbook finds a better solution. And maybe the moving will be done
automagically?

 Friedhelm   




[PHP-DOC] cvs: phpdoc /en/chapters config.xml

2002-03-29 Thread Friedhelm Betz

betzFri Mar 29 18:25:47 2002 EDT

  Modified files:  
/phpdoc/en/chapters config.xml 
  Log:
  moving ini-settings for MySQL to  function-ref.
  
Index: phpdoc/en/chapters/config.xml
diff -u phpdoc/en/chapters/config.xml:1.43 phpdoc/en/chapters/config.xml:1.44
--- phpdoc/en/chapters/config.xml:1.43  Fri Mar 29 10:35:31 2002
+++ phpdoc/en/chapters/config.xml   Fri Mar 29 18:25:46 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.43 $ --
+!-- $Revision: 1.44 $ --
  chapter id=configuration
   titleConfiguration/title
 
 -895,127 +895,6 
para
 Which dynamically loadable extensions to load when PHP starts
 up./para
-  /listitem
- /varlistentry
- 
-/variablelist
-   /sect2
-
-   sect2 id=ini.sect.mysql
-titleMySQL Configuration Directives/title
-variablelist
- 
- varlistentry id=ini.mysql.default-host
-  term
-   parametermysql.default_host/parameter
-   typestring/type
-  /term
-  listitem
-   para
-The default server host to use when connecting to the database
-server if no other host is specified. Doesn't apply in
-link linkend=ini.safe-modesafe mode/link.
-   /para
-  /listitem
- /varlistentry
- 
- varlistentry id=ini.mysql.default-user
-  term
-   parametermysql.default_user/parameter
-   typestring/type
-  /term
-  listitem
-   para
-The default user name to use when connecting to the database
-server if no other name is specified. Doesn't apply in
-link linkend=ini.safe-modesafe mode/link.
-   /para
-  /listitem
- /varlistentry
- 
- varlistentry id=ini.mysql.default-password
-  term
-   parametermysql.default_password/parameter
-   typestring/type
-  /term
-  listitem
-   para
-The default password to use when connecting to the database
-server if no other password is specified. Doesn't apply in
-link linkend=ini.safe-modesafe mode/link.
-   /para
-  /listitem
- /varlistentry
- 
- varlistentry id=ini.mysql.default-port
-  term
-   parametermysql.default_port/parameter
-   typestring/type
-  /term
-  listitem
-   para
-The default TCP port number to use when connecting to
-the database server if no other port is specified. If
-no default is specified, the port will be obtained
-from the literalMYSQL_TCP_PORT/literal environment
-variable, the literalmysql-tcp/literal entry in
-filename/etc/services/filename or the compile-time
-literalMYSQL_PORT/literal constant, in that order. Win32
-will only use the literalMYSQL_PORT/literal constant.
-   /para
-  /listitem
- /varlistentry
- 
- varlistentry id=ini.mysql.default-socket
-  term
-   parametermysql.default_socket/parameter
-   typestring/type
-  /term
-  listitem
-   para
-The default socket name to use when connecting to a local
-database server if no other socket name is specified.
-   /para
-  /listitem
- /varlistentry
-
- varlistentry id=ini.mysql.allow-persistent
-  term
-   parametermysql.allow_persistent/parameter
-   typeboolean/type
-  /term
-  listitem
-   para
-Wether to allow
-link linkend=features.persistent-connectionspersistent connections/link
-to MySQL.
-   /para
-  /listitem
- /varlistentry
- 
- varlistentry id=ini.mysql.max-persistent
-  term
-   parametermysql.max_persistent/parameter
-   typeinteger/type
-  /term
-  listitem
-   para
-The maximum number of persistent MySQL connections per
-process.
-   /para
-  /listitem
- /varlistentry
- 
- varlistentry id=ini.mysql.max-links
-  term
-   parametermysql.max_links/parameter
-   typeinteger/type
-  /term
-  listitem
-   para
-The maximum number of MySQL connections per process, including
-persistent connections.
-   /para
   /listitem
  /varlistentry
  





[PHP-DOC] cvs: phpdoc /en/functions array.xml bc.xml bzip2.xml crack.xml ctype.xml dbplus.xml mcrypt.xml pcre.xml readline.xml uodbc.xml

2002-03-28 Thread Friedhelm Betz

betzThu Mar 28 17:32:54 2002 EDT

  Modified files:  
/phpdoc/en/functionsarray.xml bc.xml bzip2.xml crack.xml ctype.xml 
dbplus.xml mcrypt.xml pcre.xml readline.xml 
uodbc.xml 
  Log:
  more entities :-)
  replaced para This extension does not .../para with proper entities from 
language-snippets.ent
  

Index: phpdoc/en/functions/array.xml
diff -u phpdoc/en/functions/array.xml:1.171 phpdoc/en/functions/array.xml:1.172
--- phpdoc/en/functions/array.xml:1.171 Wed Mar 27 20:23:18 2002
+++ phpdoc/en/functions/array.xml   Thu Mar 28 17:32:52 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.171 $ --
+!-- $Revision: 1.172 $ --
  reference id=ref.array
   titleArray Functions/title
   titleabbrevArrays/titleabbrev
 -40,16 +40,12 
 
section id=array.configuration
 titleRuntime Configuration/title
-para
- This extension does not define any configuration directives.
-/para
+ no.config;
/section
 
section id=array.resources
 titleResource types/title
-para
- This extension does not define any resource types.
-/para
+ no.resource;
/section
 
section id=array.constants
Index: phpdoc/en/functions/bc.xml
diff -u phpdoc/en/functions/bc.xml:1.23 phpdoc/en/functions/bc.xml:1.24
--- phpdoc/en/functions/bc.xml:1.23 Mon Mar 11 02:30:19 2002
+++ phpdoc/en/functions/bc.xml  Thu Mar 28 17:32:53 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.23 $ --
+!-- $Revision: 1.24 $ --
  reference id=ref.bc
   titleBCMath Arbitrary Precision Mathematics Functions/title
   titleabbrevBC math/titleabbrev
 -34,23 +34,17 
 
section id=bc.configuration
 titleRuntime Configuration/title
-para
- This extension does not define any configuration directives.
-/para
+ no.config;
/section
 
section id=bc.resources
 titleResource types/title
-para
- This extension does not define any resource types.
-/para
+ no.resource;
/section
 
section id=bc.constants
 titlePredefined constants/title
-para
- This extension does not define any constants.
-/para
+ no.constants;
/section
   /partintro
 
Index: phpdoc/en/functions/bzip2.xml
diff -u phpdoc/en/functions/bzip2.xml:1.18 phpdoc/en/functions/bzip2.xml:1.19
--- phpdoc/en/functions/bzip2.xml:1.18  Mon Mar 25 08:52:58 2002
+++ phpdoc/en/functions/bzip2.xml   Thu Mar 28 17:32:53 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.18 $ --
+!-- $Revision: 1.19 $ --
  reference id=ref.bzip2
   titleBzip2 Compression Functions/title
   titleabbrevBzip2/titleabbrev
 -30,9 +30,7 
 
section id=bzip2.configuration
 titleRuntime Configuration/title
-para
- This extension does not define any configuration directives.
-/para
+ no.config;
/section
 
section id=bzip2.resources
 -45,9 +43,7 
 
section id=bzip2.constants
 titlePredefined constants/title
-para
- This extension does not define any constants.
-/para
+ no.constants;
/section
 
section id=bzip2.examples
Index: phpdoc/en/functions/crack.xml
diff -u phpdoc/en/functions/crack.xml:1.9 phpdoc/en/functions/crack.xml:1.10
--- phpdoc/en/functions/crack.xml:1.9   Mon Mar 11 19:45:09 2002
+++ phpdoc/en/functions/crack.xml   Thu Mar 28 17:32:53 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.9 $ --
+!-- $Revision: 1.10 $ --
  reference id=ref.crack
   titleCrack functions/title
   titleabbrevCrack functions/titleabbrev
 -31,23 +31,17 
 
section id=crack.configuration
 titleRuntime Configuration/title
-para
- This extension does not define any configuration directives.
-/para
+ no.config;
/section
 
section id=crack.resources
 titleResource types/title
-para
- This extension does not define any resource types.
-/para
+ no.resource;
/section
 
section id=crack.constants
 titlePredefined constants/title
-para
- This extension does not define any constants.
-/para
+ no.constants;
/section
 
section id=crack.examples
Index: phpdoc/en/functions/ctype.xml
diff -u phpdoc/en/functions/ctype.xml:1.23 phpdoc/en/functions/ctype.xml:1.24
--- phpdoc/en/functions/ctype.xml:1.23  Mon Mar 11 16:40:55 2002
+++ phpdoc/en/functions/ctype.xml   Thu Mar 28 17:32:53 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.23 $ --
+!-- $Revision: 1.24 $ --
  reference id=ref.ctype
   titleCharacter type functions/title
   titleabbrevctype/titleabbrev
 -44,23 +44,17 
 
section id=ctype.configuration
 titleRuntime Configuration/title
-para
- This extension does not define any configuration directives.
-/para
+ no.config;
/section
 
section id=ctype.resources
 titleResource types/title
-para
- This extension does not define any

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

2002-03-28 Thread Friedhelm Betz

betzThu Mar 28 18:01:03 2002 EDT

  Modified files:  
/phpdoc/de/functionsreadline.xml 
  Log:
  sync to en
  
Index: phpdoc/de/functions/readline.xml
diff -u phpdoc/de/functions/readline.xml:1.9 phpdoc/de/functions/readline.xml:1.10
--- phpdoc/de/functions/readline.xml:1.9Sun Mar 24 17:27:23 2002
+++ phpdoc/de/functions/readline.xmlThu Mar 28 18:01:01 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- EN-Revision: 1.16 Maintainer: betz Status: ready --
+!-- EN-Revision: 1.19 Maintainer: betz Status: ready --
  reference id=ref.readline
   titleGNU Readline/title
   titleabbrevReadline/titleabbrev
 -17,11 +17,42 
 Sie Skripte schreiben, die dafür gedacht sind in einer Shell
 abzulaufen.
/simpara
-   simpara
-Die Homepage des GNU Readline Projekts finden Sie unter
-ulink url=url.readline;url.readline;/ulink. Das Projekt
-wird von Chet Ramey betreut, der außerdem der Autor der Bash ist.
-   /simpara
+
+   section id=readline.requirements
+titleAnforderungen/title
+para
+ Möchten Sie die readline Funktionen nutzen, müssen Sie die Bibliothek
+ libreadline installieren und PHP mit Readline Unterstützung übersetzen.
+/para
+   /section
+
+   section id=readline.installation
+titleInstallation/title
+para
+ Um PHP mit Readline Unterstützung zu übersetzten, müssen Sie nach der
+ Installation von libreadline PHP mit
+ option role=configure--with-readline/option konfigurieren.
+ Die Bibliothek libreadline finden Sie auf der Homepage des GNU Readline
+ Projekts unter ulink url=url.readline;url.readline;/ulink.
+ Dieses Projekt wird von Chet Ramey betreut, der auch der Author der Bash
+ ist.
+/para
+   /section
+
+   section id=readline.configuration
+titleLaufzeit Konfiguration/title
+ no.config;
+   /section
+   
+   section id=readline.resources
+titleResource Typen/title
+ no.resource;
+   /section
+
+   section id=readline.constants
+titleVordefinierte Konstanten/title
+ no.constants;
+   /section
   /partintro
 
   refentry id=function.readline
 -108,7 +139,7 
 titleBeschreibung/title
  methodsynopsis
   typebool/typemethodnamereadline_completion_function/methodname
-  methodparamtypestring/typeparameterzeile/parameter/methodparam
+  methodparamtypestring/typeparameterZeile/parameter/methodparam
  /methodsynopsis
 para
  Diese Funktion registriert eine Vervollständigungsfunktion. Sie
 -131,8 +162,8 
 titleBeschreibung/title
  methodsynopsis
   typemixed/typemethodnamereadline_info/methodname
-  methodparam 
choice=opttypestring/typeparametervarname/parameter/methodparam
-  methodparam 
choice=opttypestring/typeparameterneuerwert/parameter/methodparam
+  methodparam 
+choice=opttypestring/typeparameterVarname/parameter/methodparam
+  methodparam 
+choice=opttypestring/typeparameterNeuerwert/parameter/methodparam
  /methodsynopsis
 para
  Wenn diese Funktion ohne Parameter aufgerufen wird, gibt sie
 -164,7 +195,7 
  /methodsynopsis
 para
  Diese Funktion gibt ein Array der gesamten Kommandozeilen-History
- zurück. Die Elemente sind numerisch(integer) indiziert, beginnend bei
+ zurück. Die Elemente sind numerisch indiziert, beginnend bei
  Null.
 /para
/refsect1
 -179,7 +210,7 
 titleBeschreibung/title
  methodsynopsis
   typebool/typemethodnamereadline_read_history/methodname
-  methodparamtypestring/typeparameterdateiname/parameter/methodparam
+  methodparamtypestring/typeparameterDateiname/parameter/methodparam
  /methodsynopsis
 para
  Diese Funktion liest eine Kommando-History aus einer Datei.
 -197,7 +228,7 
 titleBeschreibung/title
  methodsynopsis
   typebool/typemethodnamereadline_write_history/methodname
-  methodparamtypestring/typeparameterdateiname/parameter/methodparam
+  methodparamtypestring/typeparameterDateiname/parameter/methodparam
  /methodsynopsis
 para
  Diese Funktion schreibt die Kommando-History in eine Datei.





[PHP-DOC] cvs: phpdoc /de Translators

2002-03-28 Thread Friedhelm Betz

betzThu Mar 28 18:04:06 2002 EDT

  Modified files:  
/phpdoc/de  Translators 
  Log:
  review of readline.xml finished
  
Index: phpdoc/de/Translators
diff -u phpdoc/de/Translators:1.290 phpdoc/de/Translators:1.291
--- phpdoc/de/Translators:1.290 Wed Mar 27 14:20:34 2002
+++ phpdoc/de/Translators   Thu Mar 28 18:04:06 2002
 -171,7 +171,7 
 printer.xml
 pspell.xml  Martin Samesch  in Arbeit
 qtdom.xml
-readline.xmlFriedhelm Betz  fertig (bis V. 1.16)
+readline.xmlFriedhelm Betz  fertig (bis V. 1.19)
 recode.xml  Stefan Saasen   fertig (Rev. 1.18)
 regex.xml   Martin Samesch  fertig (Rev. 1.39)
 satellite.xml   Stefan Saasen   fertig (Rev 1.21)





[PHP-DOC] [en] uodbc-functions, odbc.xml

2002-03-28 Thread Friedhelm Betz

Hi,
short question: Runtime Configuration of uodbc
As I understand the source there are runtime configs.
Am I correct? Should I update this file?

So long
 Friedhelm  




Re: [PHP-DOC] cvs: phpdoc /de/language operators.xml

2002-03-27 Thread Friedhelm Betz


Hi,

Wednesday, March 27, 2002, 9:19:11 AM, you wrote:

 row
  entry$a == $b/entry
  entryGleich/entry
 -entryGibt wahr zurück, wenn von $a gleich $b ist./entry
 +entryGibt wahr zurück, wenn $a gleich $b ist./entry

Maybe it would be better to use the original and php-stylish boolean
TRUE instead of the german wahr? just a thought 


 Friedhelm   




Re: [PHP-DOC] Fwd: [PHP-NOTES] note 20259 added to function.session-set-cookie-params

2002-03-27 Thread Friedhelm Betz


Hi

 Is this correct?

Yes, from source:
/* {{{ proto void session_set_cookie_params(int lifetime [, string path [, string 
domain [, bool secure]]])
   Set session cookie parameters */
PHP_FUNCTION(session_set_cookie_params)

also the statement for php.ini

see also http://zugeschaut-und-mitgebaut.de/php/function.session_set_cookie_params.html

Friedhelm

 --  Forwarded Message  --

 Subject: [PHP-NOTES] note 20259 added to function.session-set-cookie-params
 Date: 27 Mar 2002 22:28:56 -
 From: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]

 FYI -- The function prototype in the source code of php-4.1.2 is:

 void session_set_cookie_params(int lifetime [, string path [, string domain
  [, bool secure]]]);

 (The secure flag is missing from the on-line manual as well as the php.ini
  example files shipped in the 4.1.2 release.) --
 http://www.php.net/manual/en/function.session-set-cookie-params.php
 http://master.php.net/manage/user-notes.php?action=edit+20259
 http://master.php.net/manage/user-notes.php?action=delete+20259
 http://master.php.net/manage/user-notes.php?action=reject+20259


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

 ---


/* {{{ proto void session_set_cookie_params(int lifetime [, string path [, string 
domain [, bool secure]]])
   Set session cookie parameters */
PHP_FUNCTION(session_set_cookie_params)


 Friedhelm   




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

2002-03-26 Thread Friedhelm Betz

betzTue Mar 26 14:02:57 2002 EDT

  Modified files:  
/phpdoc/en/functionsopenssl.xml 
  Log:
  example fix, some entities.
  
Index: phpdoc/en/functions/openssl.xml
diff -u phpdoc/en/functions/openssl.xml:1.21 phpdoc/en/functions/openssl.xml:1.22
--- phpdoc/en/functions/openssl.xml:1.21Sat Feb  2 10:36:06 2002
+++ phpdoc/en/functions/openssl.xml Tue Mar 26 14:02:57 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.21 $ --
+!-- $Revision: 1.22 $ --
  reference id=ref.openssl
   titleOpenSSL functions/title
   titleabbrevOpenSSL/titleabbrev
 -206,7 +206,7 
   programlisting role=php
 ![CDATA[
 // lets assume you just called an openssl function that failed
-while($msg = openssl_error_string)
+while($msg = openssl_error_string())
 echo $msg . br /\n;
 ]]
   /programlisting
 -305,7 +305,7 
  /methodsynopsis
warn.experimental.func;
 para
- Returns true; on success, or false; on error. If successful the opened
+ return.success; If successful the opened
  data is returned in parameteropen_data/parameter.
 /para
 para
 -433,7 +433,7 
  /methodsynopsis
warn.experimental.func;
 para
- Returns true; on success, or false; on failure.
+ return.success;
  If successful the signature is returned in
  parametersignature/parameter. 
 /para





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

2002-03-26 Thread Friedhelm Betz

betzTue Mar 26 14:11:19 2002 EDT

  Modified files:  
/phpdoc/de  translation.xml Translators 
  Log:
  finished openssl.xml, starting review of types.xml
  
Index: phpdoc/de/translation.xml
diff -u phpdoc/de/translation.xml:1.24 phpdoc/de/translation.xml:1.25
--- phpdoc/de/translation.xml:1.24  Mon Mar 25 16:58:51 2002
+++ phpdoc/de/translation.xml   Tue Mar 26 14:11:18 2002
 -66,7 +66,7 
   file name=functions/xslt.xml person=urstype=translation 
date=13.01.2001 /
   file name=functions/zlib.xml person=hholzgra   type=translation 
date=16.04.2000 /
   file name=language/constants.xml person=tzwennytype=review  
date=20.03.2000 /
-  file name=functions/openssl.xml  person=betz   type=review  
date=25.03.2002 /
+  file name=language/types.xml person=betz   type=review  
+date=26.03.2002 /
  /work-in-progress
 
 /translation
Index: phpdoc/de/Translators
diff -u phpdoc/de/Translators:1.287 phpdoc/de/Translators:1.288
--- phpdoc/de/Translators:1.287 Mon Mar 25 16:58:52 2002
+++ phpdoc/de/Translators   Tue Mar 26 14:11:18 2002
 -157,7 +157,7 
 nis.xml Sebastian Nohn  fertig (bis V. 1.17)
 notes.xml
 oci8.xmlThomas Frommin Arbeit
-openssl.xml Friedhelm Betz  Änderungen
+openssl.xml Friedhelm Betz  fertig (bis 1.22)
 oracle.xml  Martin Samesch  fertig (Rev. 1.30)
 outcontrol.xml  Egon Schmid fertig
 overload.xml
 -206,7 +206,7 
 oop.xml Johann-Peter Hartmann   fertig
 operators.xml   Sven Lauer  fertig
 references.xml  Sebastian Bergmann  fertig
-types.xml   Friedhelm Betz  fertig (bis 1.70)
+types.xml   Friedhelm Betz  Änderungen
 variables.xml   Friedhelm Betz  fertig (bis 1.32)
 -
 preface.xml Egon Schmid fertig





[PHP-DOC] cvs: phpdoc /dsssl html-common.dsl

2002-03-26 Thread Friedhelm Betz

betzTue Mar 26 14:15:58 2002 EDT

  Modified files:  
/phpdoc/dsssl   html-common.dsl 
  Log:
  changed title and question in comment
  
Index: phpdoc/dsssl/html-common.dsl
diff -u phpdoc/dsssl/html-common.dsl:1.5 phpdoc/dsssl/html-common.dsl:1.6
--- phpdoc/dsssl/html-common.dsl:1.5Thu Mar 21 19:08:11 2002
+++ phpdoc/dsssl/html-common.dslTue Mar 26 14:15:58 2002
 -1,6 +1,6 
 ;; -*- Scheme -*-
 ;;
-;; $Id: html-common.dsl,v 1.5 2002/03/22 00:08:11 hholzgra Exp $
+;; $Id: html-common.dsl,v 1.6 2002/03/26 19:15:58 betz Exp $
 ;;
 
 ;; Returns the depth of the auto-generated TOC (table of
 -12,7 +12,7 
   ))
 
 ;; re-defining element-id as we need to get the id of the parent
-;; element not only for title but also for question in the faq
+;; element not only for title but also for question in the faq
 (define (element-id #!optional (nd (current-node)))
   (let ((elem (if (equal? (gi nd) (normalize title)) (parent nd)  
(if (equal? (gi nd) (normalize question)) (parent nd) 





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

2002-03-26 Thread Friedhelm Betz

betzTue Mar 26 17:06:37 2002 EDT

  Modified files:  
/phpdoc/de  translation.xml Translators 
  Log:
  finished review of types.xml; starting review of variables.xml
  
Index: phpdoc/de/translation.xml
diff -u phpdoc/de/translation.xml:1.25 phpdoc/de/translation.xml:1.26
--- phpdoc/de/translation.xml:1.25  Tue Mar 26 14:11:18 2002
+++ phpdoc/de/translation.xml   Tue Mar 26 17:06:36 2002
 -66,7 +66,7 
   file name=functions/xslt.xml person=urstype=translation 
date=13.01.2001 /
   file name=functions/zlib.xml person=hholzgra   type=translation 
date=16.04.2000 /
   file name=language/constants.xml person=tzwennytype=review  
date=20.03.2000 /
-  file name=language/types.xml person=betz   type=review  
date=26.03.2002 /
+  file name=language/variables.xml person=betz   type=review  
+date=26.03.2002 /
  /work-in-progress
 
 /translation
Index: phpdoc/de/Translators
diff -u phpdoc/de/Translators:1.288 phpdoc/de/Translators:1.289
--- phpdoc/de/Translators:1.288 Tue Mar 26 14:11:18 2002
+++ phpdoc/de/Translators   Tue Mar 26 17:06:36 2002
 -206,8 +206,8 
 oop.xml Johann-Peter Hartmann   fertig
 operators.xml   Sven Lauer  fertig
 references.xml  Sebastian Bergmann  fertig
-types.xml   Friedhelm Betz  Änderungen
-variables.xml   Friedhelm Betz  fertig (bis 1.32)
+types.xml   Friedhelm Betz  fertig (bis 1.73)
+variables.xml   Friedhelm Betz  Änderungen
 -
 preface.xml Egon Schmid fertig
 Mark Kronsbein  fertig  (bis 1.25)





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

2002-03-25 Thread Friedhelm Betz

betzMon Mar 25 08:26:28 2002 EDT

  Modified files:  
/phpdoc/de/functionsdatetime.xml 
  Log:
  sync to en 1.69
  

Index: phpdoc/de/functions/datetime.xml
diff -u phpdoc/de/functions/datetime.xml:1.24 phpdoc/de/functions/datetime.xml:1.25
--- phpdoc/de/functions/datetime.xml:1.24   Sat Feb  2 10:33:59 2002
+++ phpdoc/de/functions/datetime.xmlMon Mar 25 08:26:28 2002
 -1,4 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
+!-- EN-Revision: 1.69 Maintainer: betz Status: ready --
  reference id=ref.datetime
   titleDatums- und Zeit-Funktionen/title
   titleabbrevDatum/Zeit/titleabbrev
 -15,15 +16,15 
refsect1
 titleBeschreibung:/title
  methodsynopsis
-  typeint/typemethodnamecheckdate/methodname
+  typebool/typemethodnamecheckdate/methodname
   methodparamtypeint/typeparameterMonat/parameter/methodparam
   methodparamtypeint/typeparameterTag/parameter/methodparam
   methodparamtypeint/typeparameterJahr/parameter/methodparam
  /methodsynopsis
 para
- Gibt true; / wahr zurück, wenn das angegebene Datum gültig ist,
- sonst wird false; / falsch zurück gegeben. Prüft die Gültigkeit der
- angebenen Datumswerte. Ein Datum wird als gültig angesehen, wenn
+ Ist das angegebene Datum gültig wird true; zurückgegeben, ansonsten
+ false;. Prüft die Gültigkeit der angebenen Datumswerte. Ein Datum wird 
+ als gültig angesehen, wenn
  itemizedlist
   listitem
simpara
 -37,12 +38,16 
   /listitem
   listitem
simpara
-der Tag innerhalb der erlaubten Werte des angegebenen Monats
-ist. Schaltjahre werden berücksichtigt.
+der parameterTag/parameter innerhalb der erlaubten Werte des angegebenen
+parameterMonat/parameters ist. SchaltparameterJahre/parameter
+werden berücksichtigt.
/simpara
   /listitem
  /itemizedlist
 /para
+para
+ Siehe auch functionmktime/function und functionstrtotime/function.
+/para
/refsect1
   /refentry
 
 -55,190 +60,219 
 titleBeschreibung:/title
  methodsynopsis
   typestring/typemethodnamedate/methodname
-  methodparamtypestring/typeparameterformat/parameter/methodparam
-  methodparam 
choice=opttypeint/typeparametertimestamp/parameter/methodparam
+  methodparamtypestring/typeparameterFormat/parameter/methodparam
+  methodparam 
+choice=opttypeint/typeparameterTimestamp/parameter/methodparam
  /methodsynopsis
 para
  Gibt einen formatierten String anhand eines vorzugebenden Musters
  zurück. Dabei wird entweder der angegebene
- parametertimestamp/parameter oder die gegenwärtige lokale
- Zeit berücksichtigt, wenn kein timestamp gegeben ist.
+ parameterTimestamp/parameter oder die gegenwärtige lokale
+ Zeit berücksichtigt, wenn kein Timestamp angegegeben wird.
 /para
+note
+ para
+  Der gültige Bereich eines Timestamp liegt typischerweise zwischen
+  Fri, 13 Dec 1901 20:45:54 GMT und Tue, 19 Jan 2038 03:14:07 GMT.
+  (Das entspricht den minimalen und maximalen Werten für einen 
+  vorzeichenbehafteten 32-Bit Integer.)
+  /para
+  para
+   Um einen Timestamp aus aus einem Datums-String zu erzeugen, können Sie
+   die Funktion functionstrtotime/function benutzen. Zusätzlich bieten
+   einige Datenbanken Funktionen, um Ihre Datumsfromate in Timestamps
+   umzuwandeln (siehe die MySQL-Funktion UNIX_TIMESTAMP).
+  /para
+ /note
 para
  Die folgenden Platzhalter werden zur Formatierung benutzt:
  itemizedlist
   listitem
simpara
-   a - am oder pm
+a - am oder pm
/simpara
   /listitem
   listitem
simpara
-   A - AM oder PM
+A - AM oder PM
/simpara
   /listitem
   listitem
simpara
-   B - Swatch-Internet-Zeit
+B - Swatch-Internet-Zeit
/simpara
   /listitem
   listitem
simpara
-   d - Tag des Monats, 2-stellig mit führender null;: 01 bis 
-  31
+d - Tag des Monats, 2-stellig mit führender Null: 01 bis 31
/simpara
   /listitem
   listitem
simpara
-   D - Tag der Woche als 3 Buchstaben, z.B. Fri
+D - Tag der Woche als 3 Buchstaben, z.B. Fri
/simpara
   /listitem
   listitem
simpara
-   F - Monat als ganzes Wort, z.B January
+F - Monat als ganzes Wort, z.B January
/simpara
   /listitem
   listitem
simpara
-   g - Stunde im 12-Stunden-Format ohne führende null;: 1 bis
-   12
+g - Stunde im 12-Stunden-Format, ohne führende Null: 1 bis 12
/simpara
   /listitem
   listitem
simpara
-   G - Stunde im 24-Stunden-Format ohne führende null;: 0 bis
-   23
+G - Stunde im 24-Stunden-Format, ohne führende Null: 0 bis 23
/simpara
   /listitem
   listitem
simpara
-   h - Stunde im 12

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

2002-03-25 Thread Friedhelm Betz

betzMon Mar 25 08:28:01 2002 EDT

  Modified files:  
/phpdoc/de  translation.xml Translators 
  Log:
  update for finished review of datetime.xml
  
Index: phpdoc/de/translation.xml
diff -u phpdoc/de/translation.xml:1.20 phpdoc/de/translation.xml:1.21
--- phpdoc/de/translation.xml:1.20  Sun Mar 24 17:10:46 2002
+++ phpdoc/de/translation.xml   Mon Mar 25 08:28:01 2002
 -66,7 +66,6 
   file name=functions/xslt.xml person=urstype=translation 
date=13.01.2001 /
   file name=functions/zlib.xml person=hholzgra   type=translation 
date=16.04.2000 /
   file name=language/constants.xml person=tzwennytype=review  
date=20.03.2000 /
-  file name=functions/datetime.xml person=betz   type=review  
date=16.02.2002 /
  /work-in-progress
 
 /translation
Index: phpdoc/de/Translators
diff -u phpdoc/de/Translators:1.283 phpdoc/de/Translators:1.284
--- phpdoc/de/Translators:1.283 Sun Mar 24 20:12:05 2002
+++ phpdoc/de/Translators   Mon Mar 25 08:28:01 2002
 -101,7 +101,7 
 cybercash.xml   Martin Jansen   fertig
 cybermut.xmlMark Kronsbein  fertig (bis 1.16)
 cyrus.xml
-datetime.xmlFriedhelm Betz  Änderungen
+datetime.xmlFriedhelm Betz  fertig (bis 1.69)
 dba.xml Martin Jansen   fertig
 dbase.xml   Thomas Schuermann   fertig
 dbm.xml Holger Schranz  fertig





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

2002-03-25 Thread Friedhelm Betz

betzMon Mar 25 08:52:58 2002 EDT

  Modified files:  
/phpdoc/en/functionsbzip2.xml 
  Log:
  small addition to resource type usage of this extension.
  changed the return type of bzopen to resource and the related function protos using 
this resource.
  
Index: phpdoc/en/functions/bzip2.xml
diff -u phpdoc/en/functions/bzip2.xml:1.17 phpdoc/en/functions/bzip2.xml:1.18
--- phpdoc/en/functions/bzip2.xml:1.17  Mon Mar 11 02:30:20 2002
+++ phpdoc/en/functions/bzip2.xml   Mon Mar 25 08:52:58 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.17 $ --
+!-- $Revision: 1.18 $ --
  reference id=ref.bzip2
   titleBzip2 Compression Functions/title
   titleabbrevBzip2/titleabbrev
 -38,7 +38,8 
section id=bzip2.resources
 titleResource types/title
 para
- This extension does not define any resource types.
+ This extension defines one resource type: a file pointer identifying
+ the bz2-file to work on.
 /para
/section
 
 -101,7 +102,7 
 titleDescription/title
  methodsynopsis
   typeint/typemethodnamebzclose/methodname
-  methodparamtypeint/typeparameterbz/parameter/methodparam
+  methodparamtyperesource/typeparameterbz/parameter/methodparam
  /methodsynopsis
 para
  Closes the bzip2 file referenced by the pointer parameterbz/parameter.
 -234,7 +235,7 
 titleDescription/title
  methodsynopsis
   typeint/typemethodnamebzerrno/methodname
-  methodparamtypeint/typeparameterbz/parameter/methodparam
+  methodparamtyperesource/typeparameterbz/parameter/methodparam
  /methodsynopsis
 para
  Returns the error number of any bzip2 error returned by the file
 -256,7 +257,7 
 titleDescription/title
  methodsynopsis
   typearray/typemethodnamebzerror/methodname
-  methodparamtypeint/typeparameterbz/parameter/methodparam
+  methodparamtyperesource/typeparameterbz/parameter/methodparam
  /methodsynopsis
 para
  Returns the error number and error string, in an associative array,
 -294,7 +295,7 
 titleDescription/title
  methodsynopsis
   typestring/typemethodnamebzerrstr/methodname
-  methodparamtypeint/typeparameterbz/parameter/methodparam
+  methodparamtyperesource/typeparameterbz/parameter/methodparam
  /methodsynopsis
 para
  Returns the error string of any bzip2 error returned by the file
 -316,7 +317,7 
 titleDescription/title
  methodsynopsis
   typeint/typemethodnamebzflush/methodname
-  methodparamtypeint/typeparameterbz/parameter/methodparam
+  methodparamtyperesource/typeparameterbz/parameter/methodparam
  /methodsynopsis
 para
  Forces a write of all buffered bzip2 data for the file pointer
 -340,7 +341,7 
refsect1
 titleDescription/title
  methodsynopsis
-  typeint/typemethodnamebzopen/methodname
+  typeresource/typemethodnamebzopen/methodname
   methodparamtypestring/typeparameterfilename/parameter/methodparam
   methodparamtypestring/typeparametermode/parameter/methodparam
  /methodsynopsis
 -388,7 +389,7 
 titleDescription/title
  methodsynopsis
   typestring/typemethodnamebzread/methodname
-  methodparamtypeint/typeparameterbz/parameter/methodparam
+  methodparamtyperesource/typeparameterbz/parameter/methodparam
   methodparam 
choice=opttypeint/typeparameterlength/parameter/methodparam
  /methodsynopsis
 para
 -431,7 +432,7 
 titleDescription/title
  methodsynopsis
   typeint/typemethodnamebzwrite/methodname
-  methodparamtypeint/typeparameterbz/parameter/methodparam
+  methodparamtyperesource/typeparameterbz/parameter/methodparam
   methodparamtypestring/typeparameterdata/parameter/methodparam
   methodparam 
choice=opttypeint/typeparameterlength/parameter/methodparam
  /methodsynopsis





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

2002-03-25 Thread Friedhelm Betz

betzMon Mar 25 10:53:19 2002 EDT

  Modified files:  
/phpdoc/de  translation.xml Translators 
  Log:
  review of bc.xml
  
Index: phpdoc/de/translation.xml
diff -u phpdoc/de/translation.xml:1.21 phpdoc/de/translation.xml:1.22
--- phpdoc/de/translation.xml:1.21  Mon Mar 25 08:28:01 2002
+++ phpdoc/de/translation.xml   Mon Mar 25 10:53:17 2002
 -66,6 +66,7 
   file name=functions/xslt.xml person=urstype=translation 
date=13.01.2001 /
   file name=functions/zlib.xml person=hholzgra   type=translation 
date=16.04.2000 /
   file name=language/constants.xml person=tzwennytype=review  
date=20.03.2000 /
+  file name=functions/bc.xml   person=betz   type=review  
+date=25.03.2002 /
  /work-in-progress
 
 /translation
Index: phpdoc/de/Translators
diff -u phpdoc/de/Translators:1.284 phpdoc/de/Translators:1.285
--- phpdoc/de/Translators:1.284 Mon Mar 25 08:28:01 2002
+++ phpdoc/de/Translators   Mon Mar 25 10:53:18 2002
 -88,7 +88,7 
 apache.xml  Friedhelm Betz  fertig (bis V 1.23)
 array.xml   Thomas Schöfbeckfertig (bis V 1.165)
 aspell.xml  Friedhelm Betz  fertig (bis V 1.19)
-bc.xml  Friedhelm Betz  fertig (bis V 1.18)
+bc.xml  Friedhelm Betz  Änderungen
 bzip2.xml   Sebastian Nohn  fertig (bis V 1.11)
 calendar.xmlHartmut Holzgraefe  fertig
 ccvs.xmlPeter Petermann fertig





[PHP-DOC] entitie proposal/request

2002-03-25 Thread Friedhelm Betz

Hi,
in the partintro/sections introduced by Torben (?), if I remember
correctly, there are those sections about constants, requirements and
so on.
It seems desirable for me to have some entities for thoese extensions
that doesn't provide constants, resource types 
For example:

!ENTITY runtime.config 'paraThis extension does not define any configuration 
directives.
/para

This would speed up translation and for sur, yes I am lazy, and its
much faster to write just runtime.config; :-)

Any comments?
If none, I'll update language-snippets.ent this way.

 Friedhelm




[PHP-DOC] cvs: phpdoc /en language-snippets.ent

2002-03-25 Thread Friedhelm Betz

betzMon Mar 25 15:52:46 2002 EDT

  Modified files:  
/phpdoc/en  language-snippets.ent 
  Log:
  more entities for partintro-sections
  
Index: phpdoc/en/language-snippets.ent
diff -u phpdoc/en/language-snippets.ent:1.20 phpdoc/en/language-snippets.ent:1.21
--- phpdoc/en/language-snippets.ent:1.20Mon Feb 18 17:26:09 2002
+++ phpdoc/en/language-snippets.ent Mon Mar 25 15:52:45 2002
 -1,4 +1,4 
-!-- $Revision: 1.20 $ --
+!-- $Revision: 1.21 $ --
 
 !ENTITY warn.experimental 'warningsimparaThis extension is
 emphasisEXPERIMENTAL/emphasis. The behaviour of this extension,
 -78,3 +78,9 
 
 !ENTITY sm.disabled 'This function is disabled in link 
 linkend=features.safe-modesafe mode/link.'
+
+!-- Common pieces in partintro-sections --
+!ENTITY no.config 'paraThis extension does not define any
+configuration directives./para'
+!ENTITY no.resource 'paraThis extension does not define any resource 
+types./para'
+!ENTITY no.constants 'para This extension does not define any constants./para'
\ No newline at end of file





[PHP-DOC] cvs: phpdoc /de language-snippets.ent

2002-03-25 Thread Friedhelm Betz

betzMon Mar 25 15:55:19 2002 EDT

  Modified files:  
/phpdoc/de  language-snippets.ent 
  Log:
  sync to en 1.21
  
Index: phpdoc/de/language-snippets.ent
diff -u phpdoc/de/language-snippets.ent:1.14 phpdoc/de/language-snippets.ent:1.15
--- phpdoc/de/language-snippets.ent:1.14Tue Jan 22 17:46:07 2002
+++ phpdoc/de/language-snippets.ent Mon Mar 25 15:55:19 2002
 -1,5 +1,5 
 ?xml version='1.0' encoding='ISO-8859-1' ?
-!-- PHPDoc snippets $Id: language-snippets.ent,v 1.14 2002/01/22 22:46:07 hholzgra 
Exp $ --
+!-- PHPDoc snippets $Id: language-snippets.ent,v 1.15 2002/03/25 20:55:19 betz Exp $ 
+--
 
 !ENTITY warn.experimental 'warningsimparaDiese Erweiterung ist
 emphasisEXPERIMENTELL/emphasis. Das Verhalten dieser Erweiterung,
 -25,16 +25,18 
 typestring/type speichern./simpara/tip'
 
 !ENTITY tip.fopen-wrapper 'tipsimparaMit dieser Funktion können Sie eine URL als
-Dateinamen verwenden. falls Sie fopen wrappers ermöglicht haben.
+Dateinamen verwenden, falls Sie fopen wrappers ermöglicht haben.
 Für mehr Details siehe functionfopen/function./simpara/tip'
 
 !ENTITY return.success 'Gibt bei Erfolg true; zurück, im Fehlerfall false;.'
 
-!ENTITY return.falseproblem 'warningsimparaDiese Function kann
-false; zurückliefern, kann aber auch einen Wert zurückgeben, der von einem einfachen
-if-Statement als false; ausgewertet wird. Benutzen Sie deshalb bitte
-link linkend=language.operators.comparisonden === Operator/link um den 
Rückgabewert
-dieser Funktion zu überprüfen./simpara/warning'
+!ENTITY return.falseproblem 'warningsimparaDiese Function kann das Boolsche
+false; zurückliefern, kann aber auch einen nicht-Boolschen Wert zurückgeben, der
+von einem einfachen if-Statement als false; ausgewertet wird, wie zum Beispiel
+literal0/literal oder quot;quot;. Weitere Informationen entnehmen Sie bitte dem
+Abschnitt über link linkend=language.types.booleanBoolsche Typen/link.
+Benutzen Sie deshalb bitte link linkend=language.operators.comparisonden === 
+Operator/link
+um den Rückgabewert dieser Funktion zu überprüfen./simpara/warning'
 
 !-- Various notes --
 !ENTITY note.not-bin-safe 'warningsimparaDiese Funktion ist (bis jetzt) nicht 
binary safe!/simpara/warning'
 -43,7 +45,7 
 
 !ENTITY note.no-windows 'notesimparaDiese Funktion ist auf Windows-Plattformen 
nicht implementiert./simpara/note'
 
-!ENTITY note.func-callback 'notesimparaAnstelle eines Funktionsnamens kann aber 
auch
+!ENTITY note.func-callback 'notesimparaAnstelle eines Funktionsnamens kann auch
 ein Array mit einer Objekt-Referenz und dem Namen einer Methode angegeben 
werden./simpara/note'
 
 
 -71,3 +73,8 
 
 !ENTITY sm.disabled 'Diese Funktion ist bei Verwendung von link 
 linkend=features.safe-modeSafe Mode/link deaktiviert.'
+
+!-- Common pieces in partintro-sections --
+!ENTITY no.config 'paraDiese Erweiterung definiert keine 
+Konfigurationseinstellungen./para'
+!ENTITY no.resource 'paraDiese Erweiterung definiert keine Resource-Typen./para'
+!ENTITY no.constants 'paraDiese Erweiterung definiert keine Konstanten./para'





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

2002-03-25 Thread Friedhelm Betz

betzMon Mar 25 16:01:27 2002 EDT

  Modified files:  
/phpdoc/de  translation.xml Translators 
  Log:
  review of bc.xml ready. starting review of ldap.xml
  
Index: phpdoc/de/translation.xml
diff -u phpdoc/de/translation.xml:1.22 phpdoc/de/translation.xml:1.23
--- phpdoc/de/translation.xml:1.22  Mon Mar 25 10:53:17 2002
+++ phpdoc/de/translation.xml   Mon Mar 25 16:01:27 2002
 -66,7 +66,7 
   file name=functions/xslt.xml person=urstype=translation 
date=13.01.2001 /
   file name=functions/zlib.xml person=hholzgra   type=translation 
date=16.04.2000 /
   file name=language/constants.xml person=tzwennytype=review  
date=20.03.2000 /
-  file name=functions/bc.xml   person=betz   type=review  
date=25.03.2002 /
+  file name=functions/ldap.xml person=betz   type=review  
+date=25.03.2002 /
  /work-in-progress
 
 /translation
Index: phpdoc/de/Translators
diff -u phpdoc/de/Translators:1.285 phpdoc/de/Translators:1.286
--- phpdoc/de/Translators:1.285 Mon Mar 25 10:53:18 2002
+++ phpdoc/de/Translators   Mon Mar 25 16:01:27 2002
 -88,7 +88,7 
 apache.xml  Friedhelm Betz  fertig (bis V 1.23)
 array.xml   Thomas Schöfbeckfertig (bis V 1.165)
 aspell.xml  Friedhelm Betz  fertig (bis V 1.19)
-bc.xml  Friedhelm Betz  Änderungen
+bc.xml  Friedhelm Betz  fertig (bis 1.23)
 bzip2.xml   Sebastian Nohn  fertig (bis V 1.11)
 calendar.xmlHartmut Holzgraefe  fertig
 ccvs.xmlPeter Petermann fertig
 -136,7 +136,7 
 ingres_ii.xml   Cornelia Boenigkfertig (bis V. 1.10)
 ircg.xmlGeorg Richter   fertig (bis V. 1.21)
 java.xmlSebastian Bergmann  fertig
-ldap.xmlFriedhelm Betz  fertig (bis V 1.40)
+ldap.xmlFriedhelm Betz  Änderungen
 mail.xmlUwe Steinmann   fertig
 mailparse.xml
 math.xmlHartmut Holzgraefe  fertig





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

2002-03-25 Thread Friedhelm Betz

betzMon Mar 25 16:53:02 2002 EDT

  Modified files:  
/phpdoc/en/functionsldap.xml 
  Log:
  replaced boolean with bool in return values
  
Index: phpdoc/en/functions/ldap.xml
diff -u phpdoc/en/functions/ldap.xml:1.42 phpdoc/en/functions/ldap.xml:1.43
--- phpdoc/en/functions/ldap.xml:1.42   Sun Feb 10 21:48:58 2002
+++ phpdoc/en/functions/ldap.xmlMon Mar 25 16:52:50 2002
 -1,5 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.42 $ --
+!-- $Revision: 1.43 $ --
  reference id=ref.ldap
   titleLDAP functions/title
   titleabbrevLDAP/titleabbrev
 -1718,7 +1718,7 
refsect1
 titleDescription/title
  methodsynopsis
-  typeboolean/typemethodnameldap_parse_reference/methodname
+  typebool/typemethodnameldap_parse_reference/methodname
   methodparamtyperesource/typeparameterlink/parameter/methodparam
   methodparamtyperesource/typeparameterentry/parameter/methodparam
   methodparamtypearray/typeparameterreferrals/parameter/methodparam
 -1741,7 +1741,7 
refsect1
 titleDescription/title
  methodsynopsis
-  typeboolean/typemethodnameldap_parse_result/methodname
+  typebool/typemethodnameldap_parse_result/methodname
   methodparamtyperesource/typeparameterlink/parameter/methodparam
   methodparamtyperesource/typeparameterresult/parameter/methodparam
   methodparamtypeint/typeparametererrcode/parameter/methodparam





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

2002-03-25 Thread Friedhelm Betz

betzMon Mar 25 16:58:56 2002 EDT

  Modified files:  
/phpdoc/de  translation.xml Translators 
  Log:
  review of ldap.xml ready. starting review of openssl.xml
  
Index: phpdoc/de/translation.xml
diff -u phpdoc/de/translation.xml:1.23 phpdoc/de/translation.xml:1.24
--- phpdoc/de/translation.xml:1.23  Mon Mar 25 16:01:27 2002
+++ phpdoc/de/translation.xml   Mon Mar 25 16:58:51 2002
 -66,7 +66,7 
   file name=functions/xslt.xml person=urstype=translation 
date=13.01.2001 /
   file name=functions/zlib.xml person=hholzgra   type=translation 
date=16.04.2000 /
   file name=language/constants.xml person=tzwennytype=review  
date=20.03.2000 /
-  file name=functions/ldap.xml person=betz   type=review  
date=25.03.2002 /
+  file name=functions/openssl.xml  person=betz   type=review  
+date=25.03.2002 /
  /work-in-progress
 
 /translation
Index: phpdoc/de/Translators
diff -u phpdoc/de/Translators:1.286 phpdoc/de/Translators:1.287
--- phpdoc/de/Translators:1.286 Mon Mar 25 16:01:27 2002
+++ phpdoc/de/Translators   Mon Mar 25 16:58:52 2002
 -136,7 +136,7 
 ingres_ii.xml   Cornelia Boenigkfertig (bis V. 1.10)
 ircg.xmlGeorg Richter   fertig (bis V. 1.21)
 java.xmlSebastian Bergmann  fertig
-ldap.xmlFriedhelm Betz  Änderungen
+ldap.xmlFriedhelm Betz  fertig (bis 1.43)
 mail.xmlUwe Steinmann   fertig
 mailparse.xml
 math.xmlHartmut Holzgraefe  fertig
 -157,7 +157,7 
 nis.xml Sebastian Nohn  fertig (bis V. 1.17)
 notes.xml
 oci8.xmlThomas Frommin Arbeit
-openssl.xml Friedhelm Betz  fertig (bis V 1.16)
+openssl.xml Friedhelm Betz  Änderungen
 oracle.xml  Martin Samesch  fertig (Rev. 1.30)
 outcontrol.xml  Egon Schmid fertig
 overload.xml





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

2002-03-24 Thread Friedhelm Betz

betzSun Mar 24 17:10:46 2002 EDT

  Modified files:  
/phpdoc/de  translation.xml Translators 
  Log:
  corrections; datetime.xml is found under functions/
  
Index: phpdoc/de/translation.xml
diff -u phpdoc/de/translation.xml:1.19 phpdoc/de/translation.xml:1.20
--- phpdoc/de/translation.xml:1.19  Sun Mar 24 05:44:24 2002
+++ phpdoc/de/translation.xml   Sun Mar 24 17:10:46 2002
 -66,7 +66,7 
   file name=functions/xslt.xml person=urstype=translation 
date=13.01.2001 /
   file name=functions/zlib.xml person=hholzgra   type=translation 
date=16.04.2000 /
   file name=language/constants.xml person=tzwennytype=review  
date=20.03.2000 /
-  file name=language/datetime.xml  person=betz   type=review  
date=16.02.2002 /
+  file name=functions/datetime.xml person=betz   type=review  
+date=16.02.2002 /
  /work-in-progress
 
 /translation
Index: phpdoc/de/Translators
diff -u phpdoc/de/Translators:1.280 phpdoc/de/Translators:1.281
--- phpdoc/de/Translators:1.280 Sun Mar 24 05:20:22 2002
+++ phpdoc/de/Translators   Sun Mar 24 17:10:46 2002
 -84,7 +84,7 
 remote-files.xmlMark Kronsbein  in Arbeit
 safe-mode.xml   Stefan Saasen   fertig (Rev. 1.20)
 --- functions ---
-apache.xml  Friedhelm Betz  fertig (bis V 1.22)
+apache.xml  Friedhelm Betz  fertig (bis V 1.23)
 array.xml   Thomas Schöfbeckfertig (bis V 1.165)
 aspell.xml  Friedhelm Betz  fertig (bis V 1.19)
 bc.xml  Friedhelm Betz  fertig (bis V 1.18)
 -98,7 +98,7 
 ctype.xml
 curl.xmlChristian Bombera   in Arbeit
 cybercash.xml   Martin Jansen   fertig
-cybermut.xml   Mark Kronsbein  fertig (bis 1.16)
+cybermut.xmlMark Kronsbein  fertig (bis 1.16)
 cyrus.xml
 datetime.xmlFriedhelm Betz  Änderungen
 dba.xml Martin Jansen   fertig





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

2002-03-24 Thread Friedhelm Betz

betzSun Mar 24 17:12:05 2002 EDT

  Modified files:  
/phpdoc/de/functionsapache.xml 
  Log:
  added rev-tag, some rewording, example fix
  
Index: phpdoc/de/functions/apache.xml
diff -u phpdoc/de/functions/apache.xml:1.18 phpdoc/de/functions/apache.xml:1.19
--- phpdoc/de/functions/apache.xml:1.18 Sat Feb  2 10:33:57 2002
+++ phpdoc/de/functions/apache.xml  Sun Mar 24 17:12:05 2002
 -1,4 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
+!-- EN-Revision: 1.23 Maintainer: betz Status: ready --
  reference id=ref.apache
   titleApache-spezifische Funktionen/title
   titleabbrevApache/titleabbrev
 -8,7 +9,7 
 refnameapache_lookup_uri/refname
 refpurpose
  Führt eine Teilanfrage für eine URI durch und liefert alle
- Informationen darüber zurück
+ Informationen darüber zurück.
 /refpurpose
/refnamediv
refsect1
 -168,12 +169,12 
 ![CDATA[
 $headers= getallheaders();
 while (list ($header, $value) = each ($headers)) {
-echo $header: $valuelt;brgt;\n;
+echo $header: $value br\n;
 }
 ]]
   /programlisting
  /example
- Dieses Beispiel gibt alle HTTP-Header der aktuellen Anfrage aus. 
+ Dieses Beispiel gibt alle HTTP-Header der aktuellen Anfrage aus.
  note
   simpara
functiongetallheaders/function wird zur Zeit nur durch 
 -197,10 +198,10 
 para
  functionvirtual/function ist eine Apache-spezifische 
  Funktion, die lt;!--#include virtual... --gt; aus mod_include
- entspricht. Sie führt eine Unteranfrage durch, die für das Einbinden
- von CGI-Skripten, .shtml-Dateien oder anderes, das vom Apache
- verarbeitet werden soll, nützlich ist. Beachten Sie bitte, dass
- ein CGI-Skript gültige CGI-Header generieren muss,
+ entspricht. Diese Funktion führt eine Unteranfrage durch. Das ist
+ nützlich für das Einbinden von CGI-Skripten, .shtml-Dateien oder allen
+ anderen Inhalten, die von Apache verarbeitet werden sollen. Beachten Sie
+ bitte, dass ein CGI-Skript gültige CGI-Header generieren muss,
  mindestens einen Content-type-Header. Für PHP-Dateien müssen 
  Sie functioninclude/function oder functionrequire/function
  benutzen, functionvirtual/function kann selbst keine 





[PHP-DOC] cvs: phpdoc /de/functions aspell.xml bc.xml ldap.xml mysql.xml openssl.xml readline.xml

2002-03-24 Thread Friedhelm Betz

betzSun Mar 24 17:27:23 2002 EDT

  Modified files:  
/phpdoc/de/functionsaspell.xml bc.xml ldap.xml mysql.xml 
openssl.xml readline.xml 
  Log:
  added rev-tag
  
Index: phpdoc/de/functions/aspell.xml
diff -u phpdoc/de/functions/aspell.xml:1.14 phpdoc/de/functions/aspell.xml:1.15
--- phpdoc/de/functions/aspell.xml:1.14 Sat Feb  2 10:33:58 2002
+++ phpdoc/de/functions/aspell.xml  Sun Mar 24 17:27:22 2002
 -1,4 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
+!-- EN-Revision: 1.19 Maintainer: betz Status: ready --
  reference id=ref.aspell
   titleAspell Funktionen [veraltet]/title
   titleabbrevAspell/titleabbrev
Index: phpdoc/de/functions/bc.xml
diff -u phpdoc/de/functions/bc.xml:1.15 phpdoc/de/functions/bc.xml:1.16
--- phpdoc/de/functions/bc.xml:1.15 Sat Feb  2 10:33:58 2002
+++ phpdoc/de/functions/bc.xml  Sun Mar 24 17:27:22 2002
 -1,4 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
+!-- EN-Revision: 1.18 Maintainer: betz Status: ready --
  reference id=ref.bc
   titleMathematische Funktionen mit beliebiger Genauigkeit/title
   titleabbrevBC math/titleabbrev
Index: phpdoc/de/functions/ldap.xml
diff -u phpdoc/de/functions/ldap.xml:1.17 phpdoc/de/functions/ldap.xml:1.18
--- phpdoc/de/functions/ldap.xml:1.17   Sat Feb  2 10:34:04 2002
+++ phpdoc/de/functions/ldap.xmlSun Mar 24 17:27:22 2002
 -1,4 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
+!-- EN-Revision: 1.40 Maintainer: betz Status: ready --
 reference id=ref.ldap
  titleLDAP Funktionen/title
   titleabbrevLDAP/titleabbrev
Index: phpdoc/de/functions/mysql.xml
diff -u phpdoc/de/functions/mysql.xml:1.41 phpdoc/de/functions/mysql.xml:1.42
--- phpdoc/de/functions/mysql.xml:1.41  Sun Mar 24 06:15:02 2002
+++ phpdoc/de/functions/mysql.xml   Sun Mar 24 17:27:23 2002
 -1,4 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
+!-- EN-Revision: 1.82 Maintainer: betz Status: ready --
  reference id=ref.mysql
   titleMySQL Funktionen/title
   titleabbrevMySQL/titleabbrev
Index: phpdoc/de/functions/openssl.xml
diff -u phpdoc/de/functions/openssl.xml:1.4 phpdoc/de/functions/openssl.xml:1.5
--- phpdoc/de/functions/openssl.xml:1.4 Sat Feb  2 10:34:06 2002
+++ phpdoc/de/functions/openssl.xml Sun Mar 24 17:27:23 2002
 -1,4 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
+!-- EN-Revision: 1.16 Maintainer: betz Status: ready --
  reference id=ref.openssl
   titleOpenSSL Funktionen/title
   titleabbrevOpenSSL/titleabbrev
Index: phpdoc/de/functions/readline.xml
diff -u phpdoc/de/functions/readline.xml:1.8 phpdoc/de/functions/readline.xml:1.9
--- phpdoc/de/functions/readline.xml:1.8Sat Feb  2 10:34:08 2002
+++ phpdoc/de/functions/readline.xmlSun Mar 24 17:27:23 2002
 -1,4 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
+!-- EN-Revision: 1.16 Maintainer: betz Status: ready --
  reference id=ref.readline
   titleGNU Readline/title
   titleabbrevReadline/titleabbrev





[PHP-DOC] cvs: phpdoc /de/language types.xml variables.xml

2002-03-24 Thread Friedhelm Betz

betzSun Mar 24 17:27:41 2002 EDT

  Modified files:  
/phpdoc/de/language types.xml variables.xml 
  Log:
  added rev-tag
  
Index: phpdoc/de/language/types.xml
diff -u phpdoc/de/language/types.xml:1.29 phpdoc/de/language/types.xml:1.30
--- phpdoc/de/language/types.xml:1.29   Sun Mar 10 16:58:03 2002
+++ phpdoc/de/language/types.xmlSun Mar 24 17:27:41 2002
 -1,4 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
+!-- EN-Revision: 1.70 Maintainer: betz Status: ready --
  chapter id=language.types
   titleTypen/title
 
Index: phpdoc/de/language/variables.xml
diff -u phpdoc/de/language/variables.xml:1.16 phpdoc/de/language/variables.xml:1.17
--- phpdoc/de/language/variables.xml:1.16   Sat Jan 19 18:11:26 2002
+++ phpdoc/de/language/variables.xmlSun Mar 24 17:27:41 2002
 -1,4 +1,5 
 ?xml version=1.0 encoding=iso-8859-1?
+!-- EN-Revision: 1.32 Maintainer: betz Status: ready --
  chapter id=language.variables
   titleVariablen/title
 





Re: [PHP-DOC] cvs: phpdoc /de/chapters intro.xml

2002-03-07 Thread Friedhelm Betz


Hi Thomas,

 Hi Friehelm, Egon,

 I don't agree to rely on historical structures, especially in
 this case, where the old translation doesn't seem to be equal
 to the current one (the old info.xml where the history was only
 a part of had 6kB, appendices/history.xml curr. has 13 kB, so
 IMHO it's better to leave the English - and complete - Version
 for the moment).

no prob for me I am not the one to decide:-). My suggestion was only
intended to make Egon happy:-) But maybe Egon has no problem, too.

So long
 Friedhelm   




Re: [PHP-DOC] cvs: phpdoc /de/chapters intro.xml

2002-03-06 Thread Friedhelm Betz


Hi Egon and Thomas,

 I've just synced to the en-tree, where this section is also
 deleted
 (also don't know why :)

 Aha, it was Goba who deleted the short history in the en tree.


As far as I know:  the contents has moved to the appendix About this manual.

  Friedhelm




Re: [PHP-DOC] cvs: phpdoc /de/chapters intro.xml

2002-03-06 Thread Friedhelm Betz


Hi Egon,

 As far as I know:  the contents has moved to the appendix About
 this manual.

 The German manual doesn´t have a history.xml in appendices and will
 replaced by the English file. This means the translation of that
 part is lost.

 -Egon

As long as the history.xml is not translated, the part you mentioned
could stay at the original place?

 Friedhelm




<    6   7   8   9   10   11   12   >