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

2001-07-02 Thread Jani Taskinen

sniper  Mon Jul  2 05:35:58 2001 EDT

  Modified files:  
/phpdoc/en/functionssession.xml 
  Log:
  Added missing php.ini directives for sessioning: session.use_trans_sid
  and url_rewriter.tags
  
  
Index: phpdoc/en/functions/session.xml
diff -u phpdoc/en/functions/session.xml:1.40 phpdoc/en/functions/session.xml:1.41
--- phpdoc/en/functions/session.xml:1.40Wed Jun 27 00:33:05 2001
+++ phpdoc/en/functions/session.xml Mon Jul  2 05:35:57 2001
@@ -306,6 +306,20 @@
 nocache limiter. Defaults to literal180/literal.
   /simpara
  /listitem
+ listitem
+  simpara
+   literalsession.use_trans_sid/literal whether transient sid support
+   is enabled or not if enabled by compiling with --enable-trans-sid.
+   Defaults to literal1/literal (enabled).
+  /simpara
+ /listitem
+ listitem
+  simpara
+   literalurl_rewriter.tags/literal spefifies which html tags are
+   rewritten to include session id if transient sid support is enabled. 
+   Defaults to 
+literala=href,area=href,frame=src,input=src,form=fakeentry/literal
+  /simpara
+ /listitem
 /itemizedlist
 note
  para





[PHP-DOC] cvs: phpdoc /fr/functions strings.xml

2001-07-02 Thread Damien Seguy

damsMon Jul  2 06:23:20 2001 EDT

  Modified files:  
/phpdoc/fr/functionsstrings.xml 
  Log:
  Made some invisible characters visible.
  
  

Index: phpdoc/fr/functions/strings.xml
diff -u phpdoc/fr/functions/strings.xml:1.43 phpdoc/fr/functions/strings.xml:1.44
--- phpdoc/fr/functions/strings.xml:1.43Sat Jun 23 16:35:10 2001
+++ phpdoc/fr/functions/strings.xml Mon Jul  2 06:23:18 2001
@@ -36,19 +36,19 @@
 functionaddcslashes/function retourne une chaicirc;ne avec des
 antislash devant les caractegrave;res
 qui sont dans la liste parametercharlist/parameter. Les caractegrave;res
-literal\n/literal, literal\r/literal etc... sont eacute;chappeacute;s.
+literal#92;n/literal, literal#92;r/literal etc... sont 
+eacute;chappeacute;s.
 En langage C, les caractegrave;res avec un code ASCII infeacute;rieur
 agrave; 32 ou supeacute;rieur agrave; 126 sont convertis en
 repreacute;sentation octale. Faites bien attention lorsque vous
 eacute;chappez des caractegrave;res alpha-numeacute;riques.
 Vous pouvez speacute;cifier un intervalle dans parametercharlist/parameter
-comme \0..\37, qui eacute;chappera les caractegrave;res compris
+comme #92;0..#92;37, qui eacute;chappera les caractegrave;res compris
 dans cet intervalle.
 example
  titleExemple avec functionaddcslashes/function/title
  programlisting role=php
 lt;?php
-$escaped = addcslashes($no_echappe, quot;\0..\37!@\177..\377quot;);
+$escaped = addcslashes($no_echappe, quot;#92;0..#92;37!@#92;177..#92;377quot;);
 ?gt;
  /programlisting
 /example
@@ -89,7 +89,7 @@
 caractegrave;re qui a en a besoin pour ecirc;tre inseacute;reacute;
 dans une requecirc;te de base de donneacute;es. Ces caractegrave;res sont
 guillemets simples (literal'/literal), guillemets doubles
-(literal/literal), antislash (literal\/literal) et NULL
+(literal/literal), antislash (literal#92;/literal) et NULL
 (la valeur nulle).
/para
para
@@ -145,7 +145,7 @@
  titleExemple avec functionchop/function/title
  programlisting role=php
 lt;?php
-$trimmed = chop($line);
+  $trimmed = chop($line);
 ?gt;
  /programlisting
 /example
@@ -226,7 +226,7 @@
 link linkend=function.base64-encodebase64_encode/link pour se
 conformer agrave; la RFC 2045.  functionchunk_split/function
 insegrave;re une fin de chaicirc;ne parameterend/parameter
-(par deacute;faut \r\n), tous les parameterchunklen/parameter
+(par deacute;faut #92;r#92;n), tous les parameterchunklen/parameter
 (par deacute;faut 76) caractegrave;res. La chaicirc;ne
 retourneacute;e est une nouvelle chaicirc;ne, et
 l'original n'est pas modifieacute;.
@@ -514,8 +514,8 @@
 echo Cet echo() se
 reacute;partit sur plusieurs lignes. Les nouvelles lignes
 seront aussi afficheacute;es;
-echo Cet echo() se\nreacute;partit sur plusieurs lignes. Les nouvelles 
lignes\nseront aussi afficheacute;es.;
-echo L'eacute;chappement de caractegrave;res est fait : \comme ceci\.;
+echo Cet echo() se#92;nreacute;partit sur plusieurs lignes. Les nouvelles 
+lignes#92;nseront aussi afficheacute;es.;
+echo L'eacute;chappement de caractegrave;res est fait : #92;comme ceci#92;.;
 //Vous pouvez utiliser des variables avec echo
 $foo = foobar;
 $bar = barbaz;
@@ -777,7 +777,7 @@
para
 functionhebrevc/function est similaire agrave;
 functionhebrev/function, au deacute;tail pregrave;s
-qu'elle convertit les nouvelles lignes (\n) en lt;brgt;\n.
+qu'elle convertit les nouvelles lignes (literal#92;n/literal) en 
+lt;brgt;#92;n.
 Le paramegrave;tre optionnel parametermax_chars_per_line/parameter
 indique le nombre maximum de caractegrave;res par ligne
 qui seront geacute;neacute;reacute;s. La fonction essaie
@@ -1276,25 +1276,25 @@
 lt;?php
 setlocale(LC_ALL, en_US);
 $locale_info = localeconv();
-echo lt;PREgt;\n;
-echo \n;
-echo   Informations moneacute;taires pour le serveur local: \n;
-echo \n\n;
-echo int_curr_symbol:   {$locale_info[int_curr_symbol]}\n;
-echo currency_symbol:   {$locale_info[currency_symbol]}\n;
-echo mon_decimal_point: {$locale_info[mon_decimal_point]}\n;
-echo mon_thousands_sep: {$locale_info[mon_thousands_sep]}\n;
-echo positive_sign: {$locale_info[positive_sign]}\n;
-echo negative_sign: {$locale_info[negative_sign]}\n;
-echo int_frac_digits:   {$locale_info[int_frac_digits]}\n;
-echo frac_digits:   {$locale_info[frac_digits]}\n;
-echo p_cs_precedes: {$locale_info[p_cs_precedes]}\n;
-echo p_sep_by_space:{$locale_info[p_sep_by_space]}\n;
-echo n_cs_precedes: {$locale_info[n_cs_precedes]}\n;
-echo n_sep_by_space:{$locale_info[n_sep_by_space]}\n;
-echo p_sign_posn:   {$locale_info[p_sign_posn]}\n;
-echo n_sign_posn:   {$locale_info[n_sign_posn]}\n;
-echo lt;/PREgt;\n;
+echo lt;PREgt;#92;n;
+echo 

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

2001-07-02 Thread Damien Seguy

damsMon Jul  2 06:24:28 2001 EDT

  Modified files:  
/phpdoc/fr/functionsfilesystem.xml 
  Log:
  Updating the move_uploaded_file() cross reference (was itself!).
  
  

Index: phpdoc/fr/functions/filesystem.xml
diff -u phpdoc/fr/functions/filesystem.xml:1.22 phpdoc/fr/functions/filesystem.xml:1.23
--- phpdoc/fr/functions/filesystem.xml:1.22 Mon May  7 09:08:58 2001
+++ phpdoc/fr/functions/filesystem.xml  Mon Jul  2 06:24:25 2001
@@ -22,7 +22,7 @@
/para
para
 Sous Windows, les caractegrave;res (literal//literal) et antislash
-(literal\/literal) sont utiliseacute;s comme seacute;parateur de
+(literal\/literal) sont utiliseacute;s comme seacute;parateurs de
 dossier. Sous les autres OS, seul le caractegrave;re slash
 (literal//literal) est utiliseacute;.
/para
@@ -38,7 +38,8 @@
 /example
/para
para
-Voir aussi: functiondirname/function.
+Voir aussi
+functiondirname/function.
/para
   /refsect1
  /refentry
@@ -58,8 +59,9 @@
/funcsynopsis
para
 functionchgrp/function essaie de changer le groupe proprieacute;taire
-du fichier. Seul le superuser (root) peut changer le groupe proprieacute;taire
-d'un fichier arbitrairement. Les utilisateurs classiques ne peuvent changer
+du fichier. Seul le super-utilisateur (root) peut changer le groupe
+proprieacute;taire d'un fichier arbitrairement. Les utilisateurs
+classiques ne peuvent changer
 le groupe proprieacute;taire d'un fichier que si l'utilisateur
 proprieacute;taire du fichier est membre du groupe.
/para
@@ -68,7 +70,9 @@
 cas de succegrave;s, sinon renvoie literalFALSE/literal.
/para
para
-Voir aussi functionchown/function et functionchmod/function.
+Voir aussi
+functionchown/function et
+functionchmod/function.
/para
note
 simpara
@@ -116,7 +120,9 @@
 en cas de succegrave;s, literalFALSE/literal sinon.
/para
para
-Voir aussi functionchown/function et functionchgrp/function.
+Voir aussi
+functionchown/function et
+functionchgrp/function.
/para
note
 simpara
@@ -141,14 +147,15 @@
/funcsynopsis
para
 functionchown/function change le groupe proprieacute;taire du fichier.
-Seul le superutilisateur (root) peut changer le proprieacute;taire d'un fichier.
+Seul le super-utilisateur (root) peut changer le proprieacute;taire
+arbitrairement d'un fichier.
/para
para
 functionchown/function renvoie literalTRUE/literal
 en cas de succegrave;s, literalFALSE/literal sinon.
 note
  simpara
-  Sous Windows, functionchown/function ne fait rien et 
+  Sous Windows, functionchown/function ne fait rien et
   retourne literalTRUE/literal.
  /simpara
 /note
@@ -173,8 +180,10 @@
   refsect1
titleDescription/title
funcsynopsis
-funcdefvoid functionclearstatcache/function/funcdef
-paramdefvoid/paramdef
+funcprototype
+ funcdefvoid functionclearstatcache/function/funcdef
+ paramdefvoid/paramdef
+/funcprototype
/funcsynopsis
para
 L'appel agrave; la fonction systemitemstat/systemitem ou
@@ -182,7 +191,7 @@
 temps d'exeacute;cution. Pour cela, le reacute;sultat du dernier
 appel agrave; l'une des fonctions de statut, (voir la liste ci-dessous), est
 sauvegardeacute; pour reacute;-utilisation ulteacute;rieure. Si vous voulez
-forcer la veacute;rification du statut d'un fichier, dans le cas 
oouacute;ugrave; le
+forcer la veacute;rification du statut d'un fichier, dans le cas ougrave; le
 fichier aurait pu ecirc;tre modifieacute; ou aurait disparu, vous
 devez utiliser la fonction functionclearstatcache/function
 afin d'effacer de la meacute;moire les reacute;sultats du dernier
@@ -234,13 +243,14 @@
  titleExemple avec functioncopy/function/title
  programlisting role=php
 if ( !copy($file, $file.'.bak') ) {
-print(La copie du fichier $file n'a pas reacute;ussi...lt;br\n);
+print(La copie du fichier $file n'a pas reacute;ussi...lt;brgt;\n);
 }
  /programlisting
 /example
/para
para
-Voir aussi: functionrename/function.
+Voir aussi
+functionrename/function.
/para
   /refsect1
  /refentry
@@ -262,7 +272,8 @@
 en fait la fonction functionunlink/function ou functionunset/function.
/para
para
-Voir aussi: functionunlink/function pour effacer des fichiers,
+Voir aussi
+functionunlink/function pour effacer des fichiers et
 functionunset/function pour effacer des variables.
/para
   /refsect1
@@ -302,7 +313,8 @@
 /example
/para
para
-Voir aussi: functionbasename/function.
+Voir aussi
+functionbasename/function.
/para
   /refsect1
  /refentry
@@ -322,7 +334,7 @@
 /funcprototype
/funcsynopsis
para
-functiondiskfreespace/function retournera le nombre d'octets disponible sur
+functiondiskfreespace/function 

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

2001-07-02 Thread Damien Seguy

damsMon Jul  2 06:37:20 2001 EDT

  Modified files:  
/phpdoc/en/chapters install.xml 
  Log:
  Updated links in macosx and added some literal tags.
  
  
Index: phpdoc/en/chapters/install.xml
diff -u phpdoc/en/chapters/install.xml:1.66 phpdoc/en/chapters/install.xml:1.67
--- phpdoc/en/chapters/install.xml:1.66 Sat Jun 30 23:38:17 2001
+++ phpdoc/en/chapters/install.xml  Mon Jul  2 06:37:19 2001
@@ -481,9 +481,7 @@
  sect2 id=install.macosx.client
   titleCompiling for MacOS X client/title
   simpara
-   Those tips are graciously provided by Marc Liyanage : 
-   ulink url=url.macosx2;April 2001's site/ulink and 
-   ulink url=url.macosx;future site/ulink.
+   Those tips are graciously provided by ulink url=url.macosx;Marc 
+Liyanage/ulink.
   /simpara
   simpara
The PHP module for the Apache web server included in Mac OS X.
@@ -502,18 +500,18 @@
 /listitem
 listitem
  simpara
-  2.   type wget http://www.access.ch/ml/software/macosx/libphp4.so.gz;,
+  2.   Type wget 
+http://www.diax.ch/users/liyanage/software/macosx/libphp4.so.gz;,
   wait for download to finish 
  /simpara
 /listitem
 listitem
  simpara
-  3.   type gunzip libphp4.so.gz 
+  3.   Type gunzip libphp4.so.gz 
  /simpara
 /listitem
 listitem
  simpara
-  4.   type sudo apxs -i -a -n php4 libphp4.so 
+  4.   Type sudo apxs -i -a -n php4 libphp4.so 
  /simpara
 /listitem
/itemizedlist
@@ -524,7 +522,7 @@
*   #AddType application/x-httpd-php .php 
*   #AddType application/x-httpd-php-source .phps
/programlisting
-   Remove the two hash marks (#), then save the file and quit TextEdit.
+   Remove the two hash marks (literal#/literal), then save the file and quit 
+TextEdit.
   /para
   para
Finally, type literalsudo apachectl graceful/literal to restart the web 
server.
@@ -532,10 +530,10 @@
   para
PHP should now be up and running. You can test it by dropping a file into 
your Sites folder which is called test.php. Into that file, write this
-   line: ?php phpinfo() ?.
+   line: literallt;?php phpinfo() ?gt;/literal.
   /para
   para
-   Now open up 127.0.0.1/~your_username/test.php in your web browser.
+   Now open up literal127.0.0.1/~your_username/test.php/literal in your web 
+browser.
You should see a status table with information about the PHP module.
   /para
  /sect2





Re: [PHP-DOC] macos links are completely bad

2001-07-02 Thread Damien Seguy

on 1/07/01 10:35, Hojtsy Gabor at [EMAIL PROTECTED] wrote:

 Hi!
 
 MacOS PHP binary links in the installation section
 are not wotking. It would be good to provide accurate
 links to MacOS binaries!
Yep, this is now corrected. URL are obsolete, but replaced.

Should be OK next generation.
Damien Seguy




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

2001-07-02 Thread Damien Seguy

damsMon Jul  2 06:45:55 2001 EDT

  Modified files:  
/phpdoc/en/functionsmcal.xml 
  Log:
  Fixed the augugt constant.Made the constants a list.
  
  
Index: phpdoc/en/functions/mcal.xml
diff -u phpdoc/en/functions/mcal.xml:1.18 phpdoc/en/functions/mcal.xml:1.19
--- phpdoc/en/functions/mcal.xml:1.18   Wed May 23 10:59:04 2001
+++ phpdoc/en/functions/mcal.xmlMon Jul  2 06:45:54 2001
@@ -34,36 +34,89 @@
 it.
/para
para
-The following constants are defined when using the MCAL module:
-
-MCAL_SUNDAY,
-MCAL_MONDAY,
-MCAL_TUESDAY,
-MCAL_WEDNESDAY,
-MCAL_THURSDAY,
-MCAL_FRIDAY,
-MCAL_SATURDAY,
-
-MCAL_RECUR_NONE,
-MCAL_RECUR_DAILY,
-MCAL_RECUR_WEEKLY,
-MCAL_RECUR_MONTHLY_MDAY,
-MCAL_RECUR_MONTHLY_WDAY,
-MCAL_RECUR_YEARLY,
-
-MCAL_JANUARY,
-MCAL_FEBRUARY,
-MCAL_MARCH,
-MCAL_APRIL,
-MCAL_MAY,
-MCAL_JUNE,
-MCAL_JULY,
-MCAL_AUGUGT,
-MCAL_SEPTEMBER,
-MCAL_OCTOBER,
-MCAL_NOVEMBER, and
-MCAL_DECEMBER.
-
+The following constants are defined when using the MCAL module.
+For weekdays : 
+ itemizedlist
+  listitemsimpara
+MCAL_SUNDAY
+  /simpara/listitem
+  listitemsimpara
+   MCAL_MONDAY
+  /simpara/listitem
+  listitemsimpara
+   MCAL_TUESDAY
+  /simpara/listitem
+  listitemsimpara
+   MCAL_WEDNESDAY
+  /simpara/listitem
+  listitemsimpara
+   MCAL_THURSDAY
+  /simpara/listitem
+  listitemsimpara
+   MCAL_FRIDAY
+  /simpara/listitem
+  listitemsimpara
+   MCAL_SATURDAY
+  /simpara/listitem
+ /itemizedlist
+ itemizedlist
+  listitemsimpara
+   MCAL_RECUR_NONE
+  /simpara/listitem
+  listitemsimpara
+   MCAL_RECUR_DAILY
+  /simpara/listitem
+  listitemsimpara
+   MCAL_RECUR_WEEKLY
+  /simpara/listitem
+  listitemsimpara
+   MCAL_RECUR_MONTHLY_MDAY
+  /simpara/listitem
+  listitemsimpara
+   MCAL_RECUR_MONTHLY_WDAY
+  /simpara/listitem
+  listitemsimpara
+   MCAL_RECUR_YEARLY
+  /simpara/listitem
+ /itemizedlist
+ itemizedlist
+  listitemsimpara
+   MCAL_JANUARY
+  /simpara/listitem
+  listitemsimpara
+   MCAL_FEBRUARY
+  /simpara/listitem
+  listitemsimpara
+   MCAL_MARCH
+  /simpara/listitem
+  listitemsimpara
+   MCAL_APRIL
+  /simpara/listitem
+  listitemsimpara
+   MCAL_MAY
+  /simpara/listitem
+  listitemsimpara
+   MCAL_JUNE
+  /simpara/listitem
+  listitemsimpara
+   MCAL_JULY
+  /simpara/listitem
+  listitemsimpara
+   MCAL_AUGUST
+  /simpara/listitem
+  listitemsimpara
+   MCAL_SEPTEMBER
+  /simpara/listitem
+  listitemsimpara
+   MCAL_OCTOBER
+  /simpara/listitem
+  listitemsimpara
+   MCAL_NOVEMBER
+  /simpara/listitem
+  listitemsimpara
+   MCAL_DECEMBER
+  /simpara/listitem
+ /itemizedlist
 Most of the functions use an internal event structure that is
 unique for each stream.  This alleviates the need to pass around
 large objects between functions. There are convenience functions
@@ -973,7 +1026,7 @@
 para  
  functionmcal_event_set_recur_none/function sets the streams
  global event structure to not recur (event-recur_type is set to
- MCAL_RECUR_NONE).
+ constantMCAL_RECUR_NONE/constant).
 /para
/refsect1
   /refentry





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

2001-07-02 Thread Damien Seguy

damsMon Jul  2 06:46:41 2001 EDT

  Modified files:  
/phpdoc/en/functionsmcal.xml 
  Log:
  Added more titles
  
  
Index: phpdoc/en/functions/mcal.xml
diff -u phpdoc/en/functions/mcal.xml:1.19 phpdoc/en/functions/mcal.xml:1.20
--- phpdoc/en/functions/mcal.xml:1.19   Mon Jul  2 06:45:54 2001
+++ phpdoc/en/functions/mcal.xmlMon Jul  2 06:46:40 2001
@@ -59,6 +59,7 @@
MCAL_SATURDAY
   /simpara/listitem
  /itemizedlist
+For recurences :
  itemizedlist
   listitemsimpara
MCAL_RECUR_NONE
@@ -79,6 +80,7 @@
MCAL_RECUR_YEARLY
   /simpara/listitem
  /itemizedlist
+For monthes : 
  itemizedlist
   listitemsimpara
MCAL_JANUARY





RE: [PHP-DOC] macos links are completely bad

2001-07-02 Thread Hojtsy Gabor
Title: RE: [PHP-DOC] macos links are completely bad





 Hi!
 
 MacOS PHP binary links in the installation section
 are not wotking. It would be good to provide accurate
 links to MacOS binaries!
 Yep, this is now corrected. URL are obsolete, but replaced.
 Should be OK next generation.


OK, i'll post those links on the downloads page also :)


Goba





[PHP-DOC] Bug #11833 Updated: Unsufficient docs

2001-07-02 Thread goba

ID: 11833
Updated by: goba
Reported By: [EMAIL PROTECTED]
Status: Open
Bug Type: Documentation problem
Operating system: 
PHP Version: 4.0.6
Assigned To: 
Comments:

$PHP_SELF is not an environment variable, nor a server variable, it is a special PHP 
variable, so it wont be registered in any arrays you listed

Previous Comments:
---

[2001-07-02 06:53:24] [EMAIL PROTECTED]

There isn't enough information, from which assosiative array we can acces to 
predefined variables, when register globals is not set. Espesially $PHP_SELF isn't in 
$HTTP_ENV_VARS but $HTTP_SERVER_VARS, which mean not intuos (in my opinion) 
localization.

Regards

---



ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=11833edit=2




[PHP-DOC] Bug #11833 Updated: Unsufficient docs

2001-07-02 Thread M . Izydorski

ID: 11833
User Update by: [EMAIL PROTECTED]
Status: Open
Bug Type: Documentation problem
Operating system: any
PHP Version: 4.0.6
Description: Unsufficient docs

I don't agree.

I just disable register_global by setting it Off.

Now I can't acces simply $PHP_SELF - returned string is empty.
When I get $HTTP_SERVER_VARS[PHP_SELF], the return string is such as the $PHP_SELF 
with register_global On.

Maybe it isn't docs bug, but devel bug?

Previous Comments:
---

[2001-07-02 07:06:16] [EMAIL PROTECTED]

$PHP_SELF is not an environment variable, nor a server variable, it is a special PHP 
variable, so it wont be registered in any arrays you listed

---

[2001-07-02 06:53:24] [EMAIL PROTECTED]

There isn't enough information, from which assosiative array we can acces to 
predefined variables, when register globals is not set. Espesially $PHP_SELF isn't in 
$HTTP_ENV_VARS but $HTTP_SERVER_VARS, which mean not intuos (in my opinion) 
localization.

Regards

---


Full Bug description available at: http://bugs.php.net/?id=11833




[PHP-DOC] Bug #11833 Updated: Unsufficient docs

2001-07-02 Thread danbeck

ID: 11833
Updated by: danbeck
Reported By: [EMAIL PROTECTED]
Old-Status: Open
Status: Feedback
Bug Type: Documentation problem
Operating system: 
PHP Version: 4.0.6
Assigned To: 
Comments:

It's very hard to understand what you are saying... please forgive us if we don't 
quite get your point.

Are you saying that the documentation is not clear as to which variables you can 
access using the $HTTP_ENV_VARS and $HTTP_SERVER_VARS.  If this is what you are 
asking, then please read the 3rd paragraph and the note that follows at:

http://php.net/manual/en/language.variables.predefined.php

The manual can not be an exhaustive resource for all predefined variables.  The best 
way to see exactly what is available to you is the check the output of the phpinfo() 
function.  It describes everthing you would need to know about the PHP environment and 
it's predefined variables in gratuitous detail.

Also, you specifically mention $PHP_SELF.  You say that it's not intuitive to be in 
HTTP_SERVER_VARS?  But it is.. it has noting to do with the system environment 
($HTTP_ENV_VARS), but everything to do with the server environment.  It's the filename 
part of the URI, not the actual filename on the server.

Previous Comments:
---

[2001-07-02 07:13:33] [EMAIL PROTECTED]

I don't agree.

I just disable register_global by setting it Off.

Now I can't acces simply $PHP_SELF - returned string is empty.
When I get $HTTP_SERVER_VARS[PHP_SELF], the return string is such as the $PHP_SELF 
with register_global On.

Maybe it isn't docs bug, but devel bug?

---

[2001-07-02 07:06:16] [EMAIL PROTECTED]

$PHP_SELF is not an environment variable, nor a server variable, it is a special PHP 
variable, so it wont be registered in any arrays you listed

---

[2001-07-02 06:53:24] [EMAIL PROTECTED]

There isn't enough information, from which assosiative array we can acces to 
predefined variables, when register globals is not set. Espesially $PHP_SELF isn't in 
$HTTP_ENV_VARS but $HTTP_SERVER_VARS, which mean not intuos (in my opinion) 
localization.

Regards

---



ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=11833edit=2




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

2001-07-02 Thread Luca Perugini

peruginiMon Jul  2 10:55:37 2001 EDT

  Modified files:  
/phpdoc/it  language-snippets.ent 
  Log:
  Updated.
  
  
Index: phpdoc/it/language-snippets.ent
diff -u phpdoc/it/language-snippets.ent:1.1 phpdoc/it/language-snippets.ent:1.2
--- phpdoc/it/language-snippets.ent:1.1 Sun Jun 24 09:35:43 2001
+++ phpdoc/it/language-snippets.ent Mon Jul  2 10:55:36 2001
@@ -1,3 +1,4 @@
+!ENTITY warn.experimental 'warningsimparaThis module is 
+emphasisEXPERIMENTAL/emphasis. That means, that the behaviour of these functions, 
+these function names, in concreto ANYTHING documented here can change in a future 
+release of PHP WITHOUT NOTICE. Be warned, and use this module at your own 
+risk./simpara/warning'
 
 !ENTITY tip.ob-capture 'tipsimparaAs with anything that outputs its result 
directly to the browser, you can use the link linkend=ref.outcontroloutput-control 
functions/link to capture the output of this function, and save it - for example - 
in a typestring/type./simpara/tip'
 





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

2001-07-02 Thread Daniel Beckham

danbeck Mon Jul  2 12:52:11 2001 EDT

  Modified files:  
/phpdoc/en/functionsarray.xml 
  Log:
  fixing usort example (oops)
  
  
Index: phpdoc/en/functions/array.xml
diff -u phpdoc/en/functions/array.xml:1.72 phpdoc/en/functions/array.xml:1.73
--- phpdoc/en/functions/array.xml:1.72  Sat Jun 23 16:10:51 2001
+++ phpdoc/en/functions/array.xml   Mon Jul  2 12:52:10 2001
@@ -3062,7 +3062,7 @@
   programlisting role=php
 function cmp ($a, $b) {   
 if ($a == $b) return 0;
-return ($a  $b) ? -1 : 1;
+return ($a  $b) ? -1 : 1;
 }
 
 $a = array (3, 2, 5, 6, 1);





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

2001-07-02 Thread Damien Seguy

damsMon Jul  2 13:55:35 2001 EDT

  Modified files:  
/phpdoc/en/functionsiconv.xml 
  Log:
  TRUE/FALSE - literaladded some and  in See also lists.
  
  
Index: phpdoc/en/functions/iconv.xml
diff -u phpdoc/en/functions/iconv.xml:1.1 phpdoc/en/functions/iconv.xml:1.2
--- phpdoc/en/functions/iconv.xml:1.1   Sat Jun 30 23:38:18 2001
+++ phpdoc/en/functions/iconv.xml   Mon Jul  2 13:55:34 2001
@@ -41,7 +41,7 @@
  It converts the string parameterstring/parameter encoded in
  parameterin_charset/parameter to the string encoded in
  parameterout_charset/parameter. It returns the converted
- string or FALSE, if it fails.
+ string or literalFALSE/literal, if it fails.
 /para
 para
  example
@@ -73,11 +73,12 @@
 /funcsynopsis
 para
  It returns the current settings of 
- functionob_iconv_handler/function as array or FALSE in failure.
+ functionob_iconv_handler/function as array or 
+ literalFALSE/literal in failure.
 /para
 para
  See also: 
- functioniconv_set_encoding/function,
+ functioniconv_set_encoding/function and
  functionob_iconv_handler/function.
 /para
/refsect1
@@ -101,8 +102,8 @@
 /funcsynopsis
 para
  It changes the value of parametertype/parameter to
- parametercharset/parameter and returns TRUE in success or 
- FALSE in failure.
+ parametercharset/parameter and returns literalTRUE/literal in success or 
+  literalFALSE/literal in failure.
 /para
 para
  example
@@ -115,7 +116,7 @@
 /para
 para
  See also: 
- functioniconv_get_encoding/function,
+ functioniconv_get_encoding/function and
  functionob_iconv_handler/function.
 /para
/refsect1
@@ -162,7 +163,7 @@
 /para
 para
  See also: 
- functioniconv_get_encoding/function,
+ functioniconv_get_encoding/function and
  functioniconv_set_encoding/function.
 /para
/refsect1





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

2001-07-02 Thread Egon Schmid

eschmid Mon Jul  2 15:44:45 2001 EDT

  Modified files:  
/phpdoc/en/functionsarray.xml 
  Log:
  Never use a  character in examples or ordinary text.
  
  
Index: phpdoc/en/functions/array.xml
diff -u phpdoc/en/functions/array.xml:1.73 phpdoc/en/functions/array.xml:1.74
--- phpdoc/en/functions/array.xml:1.73  Mon Jul  2 12:52:10 2001
+++ phpdoc/en/functions/array.xml   Mon Jul  2 15:44:44 2001
@@ -3062,7 +3062,7 @@
   programlisting role=php
 function cmp ($a, $b) {   
 if ($a == $b) return 0;
-return ($a  $b) ? -1 : 1;
+return ($a lt; $b) ? -1 : 1;
 }
 
 $a = array (3, 2, 5, 6, 1);





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

2001-07-02 Thread Daniel Beckham

Doh!  Sorry about that.  It was a quick change and I didn't even do a 'make
test'.  I already knew that.. just left my brain at home today.

Daniel

- Original Message -
From: Egon Schmid [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, July 02, 2001 2:44 PM
Subject: [PHP-DOC] cvs: phpdoc /en/functions array.xml


 eschmid Mon Jul  2 15:44:45 2001 EDT

   Modified files:
 /phpdoc/en/functions array.xml
   Log:
   Never use a  character in examples or ordinary text.


 Index: phpdoc/en/functions/array.xml
 diff -u phpdoc/en/functions/array.xml:1.73
phpdoc/en/functions/array.xml:1.74
 --- phpdoc/en/functions/array.xml:1.73 Mon Jul  2 12:52:10 2001
 +++ phpdoc/en/functions/array.xml Mon Jul  2 15:44:44 2001
 @@ -3062,7 +3062,7 @@
programlisting role=php
  function cmp ($a, $b) {
  if ($a == $b) return 0;
 -return ($a  $b) ? -1 : 1;
 +return ($a lt; $b) ? -1 : 1;
  }

  $a = array (3, 2, 5, 6, 1);







[PHP-DOC] italian manual creation problem

2001-07-02 Thread Simone Cortesi

hi,

i was looking at the http://php.net/manual/it/build-it.log file and saw that 
the creation of the files gets interrupted with errors. Could somebody please 
send me to resources that will help me understanding what is going wrong in 
that creation process?

thanks.

-- 
Message sent using Linux 2.4.3, Uptime 3 days 6 hours 8 minutes



Re: [PHP-DOC] italian manual creation problem

2001-07-02 Thread eschmid+sic

On Tue, Jul 03, 2001 at 02:18:35AM -0400, Simone Cortesi wrote:

 i was looking at the http://php.net/manual/it/build-it.log file and saw that 
 the creation of the files gets interrupted with errors. Could somebody please 
 send me to resources that will help me understanding what is going wrong in 
 that creation process?

I can do it in the middle off this night, But I cannot promise you to find
any errors. Will try it now.

-Egon

-- 
LinuxTag, Stuttgart, Germany: July 5-8 2001: http://www.linuxtag.de/
All known books about PHP and related books: http://php.net/books.php 
Concert Band of the University of Hohenheim: http://www.concert-band.de/
First and second bestselling book in German: http://www.php-buch.de/