[PHP-DOC] Bug #15609 Updated: missing directive in documentation

2002-02-19 Thread imajes

 ID:   15609
 Updated by:   [EMAIL PROTECTED]
 Reported By:  [EMAIL PROTECTED]
 Status:   Open
 Bug Type: Documentation problem
 Operating System: windows
 PHP Version:  4.1.1
-Assigned To:  
+Assigned To:  imajes
 New Comment:

you don't need to include the original c source file, that's kinda
madness.

i'll check the install.txt again to see.


Previous Comments:


[2002-02-18 20:31:37] [EMAIL PROTECTED]

In the installation guide file (install.txt) under the install for
apache section, the lines listed are 

   LoadModule php4_module c:/php/sapi/php4apache.dll
and
   AddType application/x-httpd-php .php

but for PHP to work like this, another line must be added to
httpd.conf:

AddModule mod_php4.c

this is the line I used, although I am not sure it must be mod_php4.c;
anyway, I only figured this out by guesswork. 
Just needs to be added to the documentation.




-- 
Edit this bug report at http://bugs.php.net/?id=15609edit=1




Re: [PHP-DOC] indentation or not?

2002-02-19 Thread Gabor Hojtsy

 what about
 
 titleBeschreibung/title
  methodsynopsis
   []
  /methodsynopsis
 
 shouldn't it look like this:
 
 titleBeschreibung/title
 methodsynopsis
  []
 /methodsynopsis
 
 ?

As methodsyn is not a child of title, it shuold
not be indented, so your second version is better
in the sense of XML.

Goba





[PHP-DOC] Bug #15603 Updated: PHP output sometimes doesn't follow HTML 4.01 standards.

2002-02-19 Thread goba

 ID:   15603
 Updated by:   [EMAIL PROTECTED]
-Summary:  PHP output sometimes doesn't follow HTML 4.01
   standards.
 Reported By:  [EMAIL PROTECTED]
 Status:   Analyzed
 Bug Type: Documentation problem
 Operating System: Linux
 PHP Version:  4.0.5
 New Comment:

use ini_set() then


Previous Comments:


[2002-02-18 16:11:12] [EMAIL PROTECTED]

I know, but I'm not in a position to chose. I'm a customer at a hosting
company.



[2002-02-18 16:04:46] [EMAIL PROTECTED]

You can change this with arg_separator.output ini directive.

From php.ini-dist:

; The separator used in PHP generated URLs to separate arguments.
; Default is . 
;arg_separator.output = amp;

(you should also update to PHP 4.1.1)

Reclassified as docu prob since this is not mentioned
on the session docs. (or in the configuration part either)



--Jani




[2002-02-18 15:47:12] [EMAIL PROTECTED]

When use-cookies is set to Off or when the possibility to use them
doesn't exist, PHP adds the session variable to links on the outputted
HTML-page.

The link may look like this: A
HREF=?DO=addCodePHPSESSID=60d92bce38ab509722c1337ee1de0d72

There's a problem with the above link - it doesn't follow the
standards. This is easy to fix, just change  to amp; 

I don't consider this some huge disadvantage but it could be fixed.




-- 
Edit this bug report at http://bugs.php.net/?id=15603edit=1




[PHP-DOC] Bug #15609 Updated: missing directive in documentation

2002-02-19 Thread goba

 ID:   15609
 Updated by:   [EMAIL PROTECTED]
 Reported By:  [EMAIL PROTECTED]
 Status:   Open
 Bug Type: Documentation problem
 Operating System: windows
 PHP Version:  4.1.1
 Assigned To:  imajes
 New Comment:

This is included at

http://www.php.net/manual/en/install.apache.php

I don't have php4 module Karma to commit
the note there to... This does not mean you
need the C source of course, but ClearModuleList
clears up the list, and it only works with the
mod_php4.c line included...


Previous Comments:


[2002-02-19 03:34:16] [EMAIL PROTECTED]

you don't need to include the original c source file, that's kinda
madness.

i'll check the install.txt again to see.



[2002-02-18 20:31:37] [EMAIL PROTECTED]

In the installation guide file (install.txt) under the install for
apache section, the lines listed are 

   LoadModule php4_module c:/php/sapi/php4apache.dll
and
   AddType application/x-httpd-php .php

but for PHP to work like this, another line must be added to
httpd.conf:

AddModule mod_php4.c

this is the line I used, although I am not sure it must be mod_php4.c;
anyway, I only figured this out by guesswork. 
Just needs to be added to the documentation.




-- 
Edit this bug report at http://bugs.php.net/?id=15609edit=1




[PHP-DOC] cvs: phpdoc / configure.in

2002-02-19 Thread Gabor Hojtsy

gobaTue Feb 19 04:28:13 2002 EDT

  Modified files:  
/phpdoc configure.in 
  Log:
  Adding support for the Romanian language
  
  
Index: phpdoc/configure.in
diff -u phpdoc/configure.in:1.140 phpdoc/configure.in:1.141
--- phpdoc/configure.in:1.140   Sat Feb 16 10:11:09 2002
+++ phpdoc/configure.in Tue Feb 19 04:28:13 2002
@@ -1,4 +1,4 @@
-dnl $Id: configure.in,v 1.140 2002/02/16 15:11:09 imajes Exp $
+dnl $Id: configure.in,v 1.141 2002/02/19 09:28:13 goba Exp $
 
 dnl autoconf initialisation
 AC_INIT()
@@ -516,7 +516,7 @@
 dnl localize paper size by language
 dnl (instead of using system-dependant default)
 case $LANG in
-  ar|cs|de|hu|it|ja|ko|pl|tr|zh_hk)
+  ar|cs|de|hu|it|ja|ko|pl|ro|tr|zh_hk)
 PAPER_TYPE=A4
 PDF_PAPER_TYPE=a4
 ;;
@@ -586,7 +586,7 @@
 case $LANG in
   ja|tw|ko) ENCODING=UTF-8;;
   zh_hk) ENCODING=big5;;
-  cs|hu|pl) ENCODING=ISO-8859-2;;
+  cs|hu|pl|ro) ENCODING=ISO-8859-2;;
   ar) ENCODING=ISO-8859-6;;
   tr) ENCODING=ISO-8859-9;;
   he) ENCODING=iso-8859-8;;
@@ -604,6 +604,7 @@
   nl) PALMDOCTITLE='PHP Handleiding';;
   pl) PALMDOCTITLE='Podrêcznik PHP';;
   pt_BR) PALMDOCTITLE='Manual do PHP';;
+  ro) PALMDOCTITLE='Manual PHP';;
 # tr) PALMDOCTITLE=;;
   zh_hk) PALMDOCTITLE=PHP ¤â¥U;;
   *) PALMDOCTITLE='PHP Manual';;





[PHP-DOC] cvs: phpdoc / configure.in

2002-02-19 Thread Gabor Hojtsy

gobaTue Feb 19 04:39:01 2002 EDT

  Modified files:  
/phpdoc configure.in 
  Log:
  So blame me for the last to days missing new manuals in all languages ;)
  The source files are in $srcdir, and the generated files (like the ones
  generated by configure from *.in files) are *not* in srcdir, but in
  current dir.
  
  
Index: phpdoc/configure.in
diff -u phpdoc/configure.in:1.141 phpdoc/configure.in:1.142
--- phpdoc/configure.in:1.141   Tue Feb 19 04:28:13 2002
+++ phpdoc/configure.in Tue Feb 19 04:39:01 2002
@@ -1,4 +1,4 @@
-dnl $Id: configure.in,v 1.141 2002/02/19 09:28:13 goba Exp $
+dnl $Id: configure.in,v 1.142 2002/02/19 09:39:01 goba Exp $
 
 dnl autoconf initialisation
 AC_INIT()
@@ -751,7 +751,7 @@
 fi
 if test $CHMENABLED = yes; then
   echo !-- chmonly pages inclusion enabled --  entities/chapters.ent
-  echo !ENTITY chmonly SYSTEM '$srcdir/chmonly.xml'  entities/chapters.ent
+  echo !ENTITY chmonly SYSTEM 'chmonly.xml'  entities/chapters.ent
   echo   entities/chapters.ent
   echo  CHM inclusion enabled
 else
@@ -764,7 +764,7 @@
   echo  Using install.xml in language dir
 else
   echo !-- old install.xml not found in language dir --  entities/chapters.ent
-  echo !ENTITY chapters.install SYSTEM '$srcdir/installpart.xml'  
entities/chapters.ent
+  echo !ENTITY chapters.install SYSTEM 'installpart.xml'  entities/chapters.ent
   echo   entities/chapters.ent
   echo  Using the install part from installpart.xml
 fi





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

2002-02-19 Thread Gabor Hojtsy

 +  simpara
 +structfieldquery/structfield  - after the question mark
literal?/literal
 +  /simpara
 + /listitem
 + listitem
 +  simpara
 +   structfieldfragment/structfield -  after the hashmark
literal#/literal
 +  /simpara

Shouldn't ? and # be in parenthesis (?) and (#)?

Goba





Re: [PHP-DOC] indentation or not?

2002-02-19 Thread Hartmut Holzgraefe

Martin Samesch wrote:
 Hi,
 
 what about
 
 titleBeschreibung/title
  methodsynopsis
   []
  /methodsynopsis
 
 shouldn't it look like this:
 
 titleBeschreibung/title
 methodsynopsis
  []
 /methodsynopsis
 
 ?
 
 Martin
 
 

yes, indeed
the docbook 4 conversion script was not to clever about indentation :(

-- 
Hartmut Holzgraefe  [EMAIL PROTECTED]  http://www.six.de  +49-711-99091-77

Wir stellen für Sie aus auf der CeBIT 2002 und freuen uns
in Halle 6 auf Ihren Besuch am Stand H 18




[PHP-DOC] Bug #15617: assert description doesn't fit it's designation

2002-02-19 Thread rehsack

From: [EMAIL PROTECTED]
Operating system: All
PHP version:  4.1.1
PHP Bug Type: Documentation problem
Bug description:  assert description doesn't fit it's designation

I stumble 'bout the section LXXVI (PHP Options and Information), function
assert.
It documented not in it's original manner: assert takes care, the given
expression (which it checks) is TRUE - nothing else.
It takes appropriate action if its result is FALSE, that's also true, but
it's
meaning is: take care, that x is TRUE.
-- 
Edit bug report at http://bugs.php.net/?id=15617edit=1
-- 
Fixed in CVS:http://bugs.php.net/fix.php?id=15617r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=15617r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=15617r=needtrace
Try newer version:   http://bugs.php.net/fix.php?id=15617r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=15617r=support
Expected behavior:   http://bugs.php.net/fix.php?id=15617r=notwrong
Not enough info: http://bugs.php.net/fix.php?id=15617r=notenoughinfo
Submitted twice: http://bugs.php.net/fix.php?id=15617r=submittedtwice




[PHP-DOC] Bug #15618: German translation has essential omissions

2002-02-19 Thread past

From: [EMAIL PROTECTED]
Operating system: -
PHP version:  4.1.1
PHP Bug Type: Documentation problem
Bug description:  German translation has essential omissions

The description of the dir class in filesystem reference.
This makes the whole entry for dir useless in German translation, as I
have to switch English docs to get complete info about members and methods
of the dir class.
Moreover, the German docs do not mention any feedback mechanism for docs.
Again, had to switch English docs.

These facts reduce the usablility for the docs drastically.

Patrick
-- 
Edit bug report at http://bugs.php.net/?id=15618edit=1
-- 
Fixed in CVS:http://bugs.php.net/fix.php?id=15618r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=15618r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=15618r=needtrace
Try newer version:   http://bugs.php.net/fix.php?id=15618r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=15618r=support
Expected behavior:   http://bugs.php.net/fix.php?id=15618r=notwrong
Not enough info: http://bugs.php.net/fix.php?id=15618r=notenoughinfo
Submitted twice: http://bugs.php.net/fix.php?id=15618r=submittedtwice




[PHP-DOC] Bug #15618 Updated: German translation has essential omissions

2002-02-19 Thread past

 ID:   15618
 Updated by:   [EMAIL PROTECTED]
 Reported By:  [EMAIL PROTECTED]
 Status:   Open
 Bug Type: Documentation problem
 Operating System: -
 PHP Version:  4.1.1


Previous Comments:


[2002-02-19 06:03:22] [EMAIL PROTECTED]

The description of the dir class in filesystem reference.
This makes the whole entry for dir useless in German translation, as I
have to switch English docs to get complete info about members and
methods of the dir class.
Moreover, the German docs do not mention any feedback mechanism for
docs. Again, had to switch English docs.

These facts reduce the usablility for the docs drastically.

Patrick




-- 
Edit this bug report at http://bugs.php.net/?id=15618edit=1




[PHP-DOC] Bug #15618 Updated: German translation has essential omissions

2002-02-19 Thread past

 ID:   15618
 Updated by:   [EMAIL PROTECTED]
 Reported By:  [EMAIL PROTECTED]
 Status:   Open
 Bug Type: Documentation problem
 Operating System: -
 PHP Version:  4.1.1


Previous Comments:


[2002-02-19 06:03:22] [EMAIL PROTECTED]

The description of the dir class in filesystem reference.
This makes the whole entry for dir useless in German translation, as I
have to switch English docs to get complete info about members and
methods of the dir class.
Moreover, the German docs do not mention any feedback mechanism for
docs. Again, had to switch English docs.

These facts reduce the usablility for the docs drastically.

Patrick




-- 
Edit this bug report at http://bugs.php.net/?id=15618edit=1




[PHP-DOC] Bug #15618 Updated: German translation has essential omissions

2002-02-19 Thread past

 ID:   15618
 Updated by:   [EMAIL PROTECTED]
 Reported By:  [EMAIL PROTECTED]
 Status:   Open
 Bug Type: Documentation problem
 Operating System: -
 PHP Version:  4.1.1
 New Comment:

The description of the dir class in filesystem reference is
incomplete/does not match English version.
This makes the whole entry for dir useless in German translation, as I
have to switch English docs to get complete info about members and
methods of the dir class.
Moreover, the German docs do not mention any feedback mechanism for
docs. Again, had to switch English docs. These facts reduce the
usablility for the docs drastically. Patrick


Previous Comments:


[2002-02-19 06:03:22] [EMAIL PROTECTED]

The description of the dir class in filesystem reference.
This makes the whole entry for dir useless in German translation, as I
have to switch English docs to get complete info about members and
methods of the dir class.
Moreover, the German docs do not mention any feedback mechanism for
docs. Again, had to switch English docs.

These facts reduce the usablility for the docs drastically.

Patrick




-- 
Edit this bug report at http://bugs.php.net/?id=15618edit=1




[PHP-DOC] Bug #15603 Updated: PHP output sometimes doesn't follow HTML 4.01 standards.

2002-02-19 Thread hholzgra

 ID:   15603
 Updated by:   [EMAIL PROTECTED]
-Summary:  PHP output sometimes doesn't follow HTML 4.01
   standards.
 Reported By:  [EMAIL PROTECTED]
-Status:   Analyzed
+Status:   Feedback
 Bug Type: Documentation problem
 Operating System: Linux
 PHP Version:  4.0.5
 New Comment:

you should be able to change this setting at runtime
using set_ini() ?


Previous Comments:


[2002-02-19 04:16:03] [EMAIL PROTECTED]

use ini_set() then



[2002-02-18 16:11:12] [EMAIL PROTECTED]

I know, but I'm not in a position to chose. I'm a customer at a hosting
company.



[2002-02-18 16:04:46] [EMAIL PROTECTED]

You can change this with arg_separator.output ini directive.

From php.ini-dist:

; The separator used in PHP generated URLs to separate arguments.
; Default is . 
;arg_separator.output = amp;

(you should also update to PHP 4.1.1)

Reclassified as docu prob since this is not mentioned
on the session docs. (or in the configuration part either)



--Jani




[2002-02-18 15:47:12] [EMAIL PROTECTED]

When use-cookies is set to Off or when the possibility to use them
doesn't exist, PHP adds the session variable to links on the outputted
HTML-page.

The link may look like this: A
HREF=?DO=addCodePHPSESSID=60d92bce38ab509722c1337ee1de0d72

There's a problem with the above link - it doesn't follow the
standards. This is easy to fix, just change  to amp; 

I don't consider this some huge disadvantage but it could be fixed.




-- 
Edit this bug report at http://bugs.php.net/?id=15603edit=1




Re: [PHP-DOC] Request for input: PHP Reserved words

2002-02-19 Thread Georg Richter

On Monday, 18. February 2002 23:59, Lars Torben Wilson wrote:

Appendix x: List of reserved words
  - Language keywords
  - Predefined variables
  - Predefined constants
  - Predefined classes

an Appendix would be nice, but the constants should be listed in the function 
reference too. 

Georg



[PHP-DOC] Linebreaks

2002-02-19 Thread Hartmut Holzgraefe


Does anybody know a portable way of creating a line break in dsssl
and/or xsl? (i don't have my books at hand :( )

-- 
Hartmut Holzgraefe  [EMAIL PROTECTED]  http://www.six.de  +49-711-99091-77

Wir stellen für Sie aus auf der CeBIT 2002 und freuen uns
in Halle 6 auf Ihren Besuch am Stand H 18




Re: [PHP-DOC] Request for input: PHP Reserved words

2002-02-19 Thread Jan Lehnardt

Hi,
On Tue, 19 Feb 2002 12:40:18 +0100
Georg Richter [EMAIL PROTECTED] wrote:
 an Appendix would be nice, but the constants should be listed in the
function 
 reference too. 

why, is a pointer not enough?

Jan
-- 
Q: Thank Jan? A: http://geschenke.an.dasmoped.net/



Re: [PHP-DOC] Linebreaks

2002-02-19 Thread Gabor Hojtsy

 Does anybody know a portable way of creating a line break in dsssl
 and/or xsl? (i don't have my books at hand :( )

As XML uses \n for all line breaks, just put a char reference, to
\n (#xA; AFAIK), and it will generate a new line in both DSSSL and
XSLT I guess (not tried, just a quick idea).

Goba





[PHP-DOC] Bug #15618 Updated: German translation has essential omissions

2002-02-19 Thread georg

 ID:   15618
 Updated by:   [EMAIL PROTECTED]
 Reported By:  [EMAIL PROTECTED]
 Status:   Open
 Bug Type: Documentation problem
 Operating System: -
 PHP Version:  4.1.1
-Assigned To:  
+Assigned To:  Georg
 New Comment:

Thank you for your report.

Thats right, we have to explain/list the class members 
first.

Georg



Previous Comments:


[2002-02-19 06:07:11] [EMAIL PROTECTED]

The description of the dir class in filesystem reference is
incomplete/does not match English version.
This makes the whole entry for dir useless in German translation, as I
have to switch English docs to get complete info about members and
methods of the dir class.
Moreover, the German docs do not mention any feedback mechanism for
docs. Again, had to switch English docs. These facts reduce the
usablility for the docs drastically. Patrick



[2002-02-19 06:03:22] [EMAIL PROTECTED]

The description of the dir class in filesystem reference.
This makes the whole entry for dir useless in German translation, as I
have to switch English docs to get complete info about members and
methods of the dir class.
Moreover, the German docs do not mention any feedback mechanism for
docs. Again, had to switch English docs.

These facts reduce the usablility for the docs drastically.

Patrick




-- 
Edit this bug report at http://bugs.php.net/?id=15618edit=1




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

2002-02-19 Thread Georg Richter

georg   Tue Feb 19 08:15:30 2002 EDT

  Modified files:  
/phpdoc/de/functionsdir.xml 
  Log:
  
  fixed Bug #15618: inserted class desciption for dir
  
  
Index: phpdoc/de/functions/dir.xml
diff -u phpdoc/de/functions/dir.xml:1.12 phpdoc/de/functions/dir.xml:1.13
--- phpdoc/de/functions/dir.xml:1.12Sat Feb  2 10:33:59 2002
+++ phpdoc/de/functions/dir.xml Tue Feb 19 08:15:29 2002
@@ -30,6 +30,19 @@
/refnamediv
refsect1
 titleBeschreibung:/title
+classsynopsis
+ ooclassclassnamedir/classname/ooclass
+ constructorsynopsis
+  methodnamedir/methodname
+  methodparamtypestring/typeparameterdirectory/parameter/methodparam
+ /constructorsynopsis
+ fieldsynopsis
+  typestring/typevarnamepath/varname
+ /fieldsynopsis
+ 
+methodsynopsistypestring/typemethodnameread/methodnamevoid//methodsynopsis
+ 
+methodsynopsistypevoid/typemethodnamerewind/methodnamevoid//methodsynopsis
+ 
+methodsynopsistypevoid/typemethodnameclose/methodnamevoid//methodsynopsis
+/classsynopsis
  methodsynopsis
   typenew/typemethodnamedir/methodname
   methodparamtypestring/typeparameterdirectory/parameter/methodparam





[PHP-DOC] Bug #15608 Updated: Missing instruction when installing for apache

2002-02-19 Thread sander

 ID:   15608
 Updated by:   [EMAIL PROTECTED]
 Reported By:  [EMAIL PROTECTED]
-Status:   Open
+Status:   Analyzed
 Bug Type: Documentation problem
 Operating System: Win2k
 PHP Version:  4.1.1
 New Comment:

AFAIK, only true for 1.3.21 and later on Windows... the
httpd.conf-dist-win has a ClearModule directive included by default...

Don't know if this is documented...


Previous Comments:


[2002-02-18 19:16:31] [EMAIL PROTECTED]

When installing as a module for apache, everything works fine, with the
exception that there is one instruction left out: You need to add the
line AddModule mod_php4.c in the section underneath LoadModule.  If
you don't do this, *.php files get displayed as plaintext. 
I drove myself crazy trying to get this to work, until I saw the line
in httpd.conf saying # [WHENEVER YOU CHANGE THE LOADMODULE SECTION
ABOVE, UPDATE THIS TOO!].
You might want to change install.txt to reflect this.




-- 
Edit this bug report at http://bugs.php.net/?id=15608edit=1




[PHP-DOC] Bug #15608 Updated: Missing instruction when installing for apache

2002-02-19 Thread sander

 ID:   15608
 Updated by:   [EMAIL PROTECTED]
 Reported By:  [EMAIL PROTECTED]
-Status:   Analyzed
+Status:   Duplicate
 Bug Type: Documentation problem
 Operating System: Win2k
 PHP Version:  4.1.1
 New Comment:

Dupe of 15609.


Previous Comments:


[2002-02-19 11:55:30] [EMAIL PROTECTED]

AFAIK, only true for 1.3.21 and later on Windows... the
httpd.conf-dist-win has a ClearModule directive included by default...

Don't know if this is documented...



[2002-02-18 19:16:31] [EMAIL PROTECTED]

When installing as a module for apache, everything works fine, with the
exception that there is one instruction left out: You need to add the
line AddModule mod_php4.c in the section underneath LoadModule.  If
you don't do this, *.php files get displayed as plaintext. 
I drove myself crazy trying to get this to work, until I saw the line
in httpd.conf saying # [WHENEVER YOU CHANGE THE LOADMODULE SECTION
ABOVE, UPDATE THIS TOO!].
You might want to change install.txt to reflect this.




-- 
Edit this bug report at http://bugs.php.net/?id=15608edit=1




Re: [PHP-DOC] Request for input: PHP Reserved words

2002-02-19 Thread Lars Torben Wilson

On Tue, 2002-02-19 at 03:40, Georg Richter wrote:
 On Monday, 18. February 2002 23:59, Lars Torben Wilson wrote:
 
 Appendix x: List of reserved words
   - Language keywords
   - Predefined variables
   - Predefined constants
   - Predefined classes
 
 an Appendix would be nice, but the constants should be listed in the function 
 reference too. 
 
 Georg

I agree. Or rather, what I would like to do later is split this
monstrous file into reserved.constants.ext.xml files. But until
then, I don't intend to remove any existing constant lists from the 
function reference, just from the Language|Constants section.


-- 
 Torben Wilson [EMAIL PROTECTED]
 http://www.thebuttlesschaps.com
 http://www.hybrid17.com
 http://www.inflatableeye.com
 +1.604.709.0506




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

2002-02-19 Thread Derick Rethans

derick  Tue Feb 19 14:09:45 2002 EDT

  Modified files:  
/phpdoc/en/functionsifx.xml 
  Log:
  - Fix for bug #15627
  
  
Index: phpdoc/en/functions/ifx.xml
diff -u phpdoc/en/functions/ifx.xml:1.26 phpdoc/en/functions/ifx.xml:1.27
--- phpdoc/en/functions/ifx.xml:1.26Sat Feb  2 10:35:59 2002
+++ phpdoc/en/functions/ifx.xml Tue Feb 19 14:09:44 2002
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.26 $ --
+!-- $Revision: 1.27 $ --
  reference id=ref.ifx
   titleInformix functions/title
   titleabbrevInformix/titleabbrev
@@ -41,8 +41,8 @@
  Make sure that the Informix environment variables INFORMIXDIR and
  INFORMIXSERVER are available to the PHP ifx driver, and that the
  INFORMIX bin directory is in the PATH. Check this by running a
- script that contains a call to functionphpinfo()/function
- before you start testing. The functionphpinfo()/function
+ script that contains a call to functionphpinfo/function
+ before you start testing. The functionphpinfo/function
  output should list these environment variables. This is true; for
  both CGI php and Apache mod_php. You may have to set these
  environment variables in your Apache startup script.





[PHP-DOC] Bug #15627: ref.ifx refers to phpinfo()() instead of phpinfo()

2002-02-19 Thread sander

From: [EMAIL PROTECTED]
Operating system: n/a
PHP version:  4.1.1
PHP Bug Type: Documentation problem
Bug description:  ref.ifx refers to phpinfo()() instead of phpinfo()

The manual page ref.ifx refers to phpinfo()() instead of phpinfo().
See http://www.php.net/manual/en/ref.ifx.php

I don't have sufficient karma to fix this, so I opened this report.
-- 
Edit bug report at http://bugs.php.net/?id=15627edit=1
-- 
Fixed in CVS:http://bugs.php.net/fix.php?id=15627r=fixedcvs
Fixed in release:http://bugs.php.net/fix.php?id=15627r=alreadyfixed
Need backtrace:  http://bugs.php.net/fix.php?id=15627r=needtrace
Try newer version:   http://bugs.php.net/fix.php?id=15627r=oldversion
Not developer issue: http://bugs.php.net/fix.php?id=15627r=support
Expected behavior:   http://bugs.php.net/fix.php?id=15627r=notwrong
Not enough info: http://bugs.php.net/fix.php?id=15627r=notenoughinfo
Submitted twice: http://bugs.php.net/fix.php?id=15627r=submittedtwice




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

2002-02-19 Thread Martin Samesch

samesch Tue Feb 19 15:55:39 2002 EDT

  Modified files:  
/phpdoc/de  translation.xml Translators 
  Log:
  finished syncing cpdf.xml
  
Index: phpdoc/de/translation.xml
diff -u phpdoc/de/translation.xml:1.10 phpdoc/de/translation.xml:1.11
--- phpdoc/de/translation.xml:1.10  Mon Feb 18 19:47:24 2002
+++ phpdoc/de/translation.xml   Tue Feb 19 15:55:38 2002
@@ -50,7 +50,6 @@
   file name=faq/languages.xml  person=mk type=translation /
   file name=features/file-upload.xml   person=paulsentype=review /
   file name=features/remote-files.xml  person=paulsentype=translation /
-  file name=functions/cpdf.xml person=sameschtype=review /
   file name=functions/dbx.xml  person=tomtype=translation /
   file name=functions/errorfunc.xmlperson=stefan_saasen  type=translation 
/
   file name=functions/ifx.xml  person=conni  type=translation /
Index: phpdoc/de/Translators
diff -u phpdoc/de/Translators:1.267 phpdoc/de/Translators:1.268
--- phpdoc/de/Translators:1.267 Mon Feb 18 19:47:24 2002
+++ phpdoc/de/Translators   Tue Feb 19 15:55:38 2002
@@ -89,7 +89,7 @@
 ccvs.xmlPeter Petermann fertig
 classobj.xmlHartmut Holzgraefe  fertig
 com.xml Thomas Schöfbeckfertig (bis V. 1.15)
-cpdf.xmlMartin Samesch  Änderungen
+cpdf.xmlMartin Samesch  fertig (Rev. 1.39)
 crack.xml
 ctype.xml
 curl.xmlChristian Bombera   in Arbeit