jeroen          Wed Jul 11 14:16:07 2001 EDT

  Modified files:              
    /phpdoc     TODO global.ent 
    /phpdoc/cs  language-snippets.ent 
    /phpdoc/de  language-snippets.ent 
    /phpdoc/en  language-snippets.ent 
    /phpdoc/es  language-snippets.ent 
    /phpdoc/fr  language-snippets.ent 
    /phpdoc/hk  language-snippets.ent 
    /phpdoc/hu  language-snippets.ent 
    /phpdoc/it  language-snippets.ent 
    /phpdoc/ja  language-snippets.ent 
    /phpdoc/kr  language-snippets.ent 
    /phpdoc/nl  language-snippets.ent 
  Log:
  Move the true/false/null entities to global.ent, where they belong
  
  TODO is also on the 'modified files' list, so I guess it's updated too...
  
  
Index: phpdoc/TODO
diff -u phpdoc/TODO:1.5 phpdoc/TODO:1.6
--- phpdoc/TODO:1.5     Tue Jul 10 15:37:15 2001
+++ phpdoc/TODO Wed Jul 11 14:16:04 2001
@@ -16,6 +16,8 @@
 
 
 GENERAL:
+  - Document that "return" returns from any file, not only
+    included files.
   - Document php://stdout etc feature for file functions.
   - Update setcookie
   - Document the diffs between strip[c]slashes(). Maybe just document
Index: phpdoc/global.ent
diff -u phpdoc/global.ent:1.97 phpdoc/global.ent:1.98
--- phpdoc/global.ent:1.97      Wed Jul 11 10:58:41 2001
+++ phpdoc/global.ent   Wed Jul 11 14:16:04 2001
@@ -1,6 +1,6 @@
 <!-- -*- SGML -*-
 
- $Id: global.ent,v 1.97 2001/07/11 14:58:41 dams Exp $
+ $Id: global.ent,v 1.98 2001/07/11 18:16:04 jeroen Exp $
 
  Contains global "macros" for all the XML documents.
 
@@ -182,3 +182,7 @@
 <!ENTITY spec.strftime 
'http://www.opengroup.org/onlinepubs/7908799/xsh/strftime.html'>
 <!ENTITY spec.hyperwave 'http://www.hyperwave.com/7.17-hg-prot'>
 <!ENTITY spec.pdf.fdf 'http://partners.adobe.com/asn/developer/acrosdk/forms.html'>
+
+<!ENTITY true '<constant>TRUE</constant>'>
+<!ENTITY false '<constant>FALSE</constant>'>
+<!ENTITY null '<constant>NULL</constant>'>
Index: phpdoc/cs/language-snippets.ent
diff -u phpdoc/cs/language-snippets.ent:1.3 phpdoc/cs/language-snippets.ent:1.4
--- phpdoc/cs/language-snippets.ent:1.3 Sun Jul  8 09:00:58 2001
+++ phpdoc/cs/language-snippets.ent     Wed Jul 11 14:16:04 2001
@@ -1,8 +1,5 @@
-<!-- PHPDoc snippets $Id: language-snippets.ent,v 1.3 2001/07/08 13:00:58 jeroen Exp 
$ -->
+<!-- PHPDoc snippets $Id: language-snippets.ent,v 1.4 2001/07/11 18:16:04 jeroen Exp 
+$ -->
 
-<!ENTITY true '<constant>TRUE</constant>'>
-<!ENTITY false '<constant>FALSE</constant>'>
-<!ENTITY null '<constant>NULL</constant>'>
 
 
 <!ENTITY warn.experimental '<warning><simpara>This module is 
<emphasis>EXPERIMENTAL</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>'>
Index: phpdoc/de/language-snippets.ent
diff -u phpdoc/de/language-snippets.ent:1.4 phpdoc/de/language-snippets.ent:1.5
--- phpdoc/de/language-snippets.ent:1.4 Sun Jul  8 09:01:00 2001
+++ phpdoc/de/language-snippets.ent     Wed Jul 11 14:16:05 2001
@@ -1,8 +1,5 @@
-<!-- PHPDoc snippets $Id: language-snippets.ent,v 1.4 2001/07/08 13:01:00 jeroen Exp 
$ -->
+<!-- PHPDoc snippets $Id: language-snippets.ent,v 1.5 2001/07/11 18:16:05 jeroen Exp 
+$ -->
 
-<!ENTITY true '<constant>TRUE</constant>'>
-<!ENTITY false '<constant>FALSE</constant>'>
-<!ENTITY null '<constant>NULL</constant>'>
 
 
 <!ENTITY warn.experimental '<warning><simpara>This module is 
<emphasis>EXPERIMENTAL</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>'>
Index: phpdoc/en/language-snippets.ent
diff -u phpdoc/en/language-snippets.ent:1.4 phpdoc/en/language-snippets.ent:1.5
--- phpdoc/en/language-snippets.ent:1.4 Sun Jul  8 09:01:02 2001
+++ phpdoc/en/language-snippets.ent     Wed Jul 11 14:16:05 2001
@@ -1,8 +1,5 @@
-<!-- PHPDoc snippets $Id: language-snippets.ent,v 1.4 2001/07/08 13:01:02 jeroen Exp 
$ -->
+<!-- $Id: language-snippets.ent,v 1.5 2001/07/11 18:16:05 jeroen Exp $ -->
 
-<!ENTITY true '<constant>TRUE</constant>'>
-<!ENTITY false '<constant>FALSE</constant>'>
-<!ENTITY null '<constant>NULL</constant>'>
 
 
 <!ENTITY warn.experimental '<warning><simpara>This module is 
<emphasis>EXPERIMENTAL</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>'>
@@ -10,7 +7,7 @@
 
 <!ENTITY tip.ob-capture '<tip><simpara>As with anything that outputs its result 
directly to the browser, you can use the <link linkend="ref.outcontrol">output-control 
functions</link> to capture the output of this function, and save it - for example - 
in a <type>string</type>.</simpara></tip>'>
 
-<!ENTITY return.success 'Returns <constant>TRUE</constant> on succes, 
<constant>FALSE</constant> on failure.'>
+<!ENTITY return.success 'Returns &true; on succes, &false; on failure.'>
 
 <!ENTITY note.not-bin-safe '<warning><simpara>This function is not (yet) binary 
safe!</simpara></warning>'>
 
@@ -19,3 +16,4 @@
 <!ENTITY note.no-windows '<note><simpara>This function is not implemented on 
Windows-platforms</simpara></note>'>
 
 <!ENTITY note.no-safemode '<note><simpara>This function is disabled when safe-mode is 
enabled.</simpara></note>'>
+<!ENTITY note.limited-safemode '<note><simpara>The behaviour of this function is 
+limited when safe-mode is enabled.</simpara></note>'>
Index: phpdoc/es/language-snippets.ent
diff -u phpdoc/es/language-snippets.ent:1.3 phpdoc/es/language-snippets.ent:1.4
--- phpdoc/es/language-snippets.ent:1.3 Sun Jul  8 09:01:04 2001
+++ phpdoc/es/language-snippets.ent     Wed Jul 11 14:16:05 2001
@@ -1,8 +1,5 @@
-<!-- PHPDoc snippets $Id: language-snippets.ent,v 1.3 2001/07/08 13:01:04 jeroen Exp 
$ -->
+<!-- PHPDoc snippets $Id: language-snippets.ent,v 1.4 2001/07/11 18:16:05 jeroen Exp 
+$ -->
 
-<!ENTITY true '<constant>TRUE</constant>'>
-<!ENTITY false '<constant>FALSE</constant>'>
-<!ENTITY null '<constant>NULL</constant>'>
 
 
 <!ENTITY warn.experimental '<warning><simpara>This module is 
<emphasis>EXPERIMENTAL</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>'>
Index: phpdoc/fr/language-snippets.ent
diff -u phpdoc/fr/language-snippets.ent:1.8 phpdoc/fr/language-snippets.ent:1.9
--- phpdoc/fr/language-snippets.ent:1.8 Wed Jul 11 13:40:30 2001
+++ phpdoc/fr/language-snippets.ent     Wed Jul 11 14:16:05 2001
@@ -1,8 +1,5 @@
-<!-- PHPDoc snippets $Id: language-snippets.ent,v 1.8 2001/07/11 17:40:30 dams Exp $ 
-->
+<!-- PHPDoc snippets $Id: language-snippets.ent,v 1.9 2001/07/11 18:16:05 jeroen Exp 
+$ -->
 
-<!ENTITY true                   '<literal>TRUE</literal>'>
-<!ENTITY false                  '<literal>FALSE</literal>'>
-<!ENTITY null                   '<literal>NULL</literal>'>
 <!ENTITY warn.experimental      '<warning><simpara>Ce module est 
<emphasis>EXPERIMENTAL</emphasis>. Cela signifie que le comportement de ces fonctions, 
leurs noms et concr&egrave;tement, TOUT ce qui est document&eacute; ici peut changer 
dans un futur proche, SANS PREAVIS! Soyez-en conscient, et utiliser ce module &agrave; 
vos risques et p&eacute;rils.</simpara></warning>'>
 <!ENTITY warn.experimental.func '<warning><simpara>Cette fonction est 
<emphasis>EXPERIMENTALE</emphasis>. Cela signifie que le comportement de ces 
fonctions, leurs noms et concr&egrave;tement, TOUT ce qui est document&eacute; ici 
peut changer dans un futur proche, SANS PREAVIS! Soyez-en conscient, et utiliser ce 
module &agrave; vos risques et p&eacute;rils.</simpara></warning>'>
 <!ENTITY tip.ob-capture         '<tip><simpara>Comme toutes les fonctions affichent 
directement des r&eacute;sultats au navigateur, vous pouvez utiliser <link 
linkend="ref.outcontrol">les fonctions de gestion des sorties</link> pour capturer le 
contenu de cette fonction et le sauver, par exemple, dans une 
cha&icirc;ne.</simpara></tip>'>
Index: phpdoc/hk/language-snippets.ent
diff -u phpdoc/hk/language-snippets.ent:1.3 phpdoc/hk/language-snippets.ent:1.4
--- phpdoc/hk/language-snippets.ent:1.3 Sun Jul  8 09:01:08 2001
+++ phpdoc/hk/language-snippets.ent     Wed Jul 11 14:16:06 2001
@@ -1,8 +1,5 @@
-<!-- PHPDoc snippets $Id: language-snippets.ent,v 1.3 2001/07/08 13:01:08 jeroen Exp 
$ -->
+<!-- PHPDoc snippets $Id: language-snippets.ent,v 1.4 2001/07/11 18:16:06 jeroen Exp 
+$ -->
 
-<!ENTITY true '<constant>TRUE</constant>'>
-<!ENTITY false '<constant>FALSE</constant>'>
-<!ENTITY null '<constant>NULL</constant>'>
 
 
 <!ENTITY warn.experimental '<warning><simpara>This module is 
<emphasis>EXPERIMENTAL</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>'>
Index: phpdoc/hu/language-snippets.ent
diff -u phpdoc/hu/language-snippets.ent:1.6 phpdoc/hu/language-snippets.ent:1.7
--- phpdoc/hu/language-snippets.ent:1.6 Sun Jul  8 09:41:54 2001
+++ phpdoc/hu/language-snippets.ent     Wed Jul 11 14:16:06 2001
@@ -1,8 +1,5 @@
-<!-- PHPDoc snippets $Id: language-snippets.ent,v 1.6 2001/07/08 13:41:54 goba Exp $ 
-->
+<!-- PHPDoc snippets $Id: language-snippets.ent,v 1.7 2001/07/11 18:16:06 jeroen Exp 
+$ -->
 
-<!ENTITY true '<constant>TRUE</constant>'>
-<!ENTITY false '<constant>FALSE</constant>'>
-<!ENTITY null '<constant>NULL</constant>'>
 
 <!ENTITY warn.experimental '<warning><simpara>Ez a modul <emphasis>K�S�RLETI 
JELLEGGEL M�K�DIK</emphasis>. Ez azt jelenti, hogy az itt le�rt f�ggv�nyek m�k�d�se, 
maguk a f�ggv�nynevek, azaz B�RMI, ami itt le van �rva, megv�ltozhat egy k�s�bbi PHP 
kiad�sban MINDEN FIGYELMEZTET�S N�LK�L. Ezt a modult csak a saj�t felel�ss�gedre 
haszn�ld!</simpara></warning>'>
 
Index: phpdoc/it/language-snippets.ent
diff -u phpdoc/it/language-snippets.ent:1.8 phpdoc/it/language-snippets.ent:1.9
--- phpdoc/it/language-snippets.ent:1.8 Mon Jul  9 19:45:14 2001
+++ phpdoc/it/language-snippets.ent     Wed Jul 11 14:16:06 2001
@@ -1,8 +1,5 @@
-<!-- PHPDoc snippets $Id: language-snippets.ent,v 1.8 2001/07/09 23:45:14 cortesi Exp 
$ -->
+<!-- PHPDoc snippets $Id: language-snippets.ent,v 1.9 2001/07/11 18:16:06 jeroen Exp 
+$ -->
 
-<!ENTITY true '<constant>TRUE</constant>'>
-<!ENTITY false '<constant>FALSE</constant>'>
-<!ENTITY null '<constant>NULL</constant>'>
 
 
 <!ENTITY warn.experimental '<warning><simpara>Questo modulo � 
<emphasis>SPERIMENTALE</emphasis>. Ovvero, il comportamento di queste funzioni, i nomi 
di queste funzioni, in definitiva TUTTO ci� che � documentato qui pu� cambiare nei 
futuri rilasci del PHP SENZA PREAVVISO. Siete avvisati, l&apos;uso di questo modulo � 
a vostro rischio.</simpara></warning>'> 
Index: phpdoc/ja/language-snippets.ent
diff -u phpdoc/ja/language-snippets.ent:1.4 phpdoc/ja/language-snippets.ent:1.5
--- phpdoc/ja/language-snippets.ent:1.4 Sun Jul  8 09:01:12 2001
+++ phpdoc/ja/language-snippets.ent     Wed Jul 11 14:16:06 2001
@@ -1,8 +1,5 @@
-<!-- PHPDoc snippets $Id: language-snippets.ent,v 1.4 2001/07/08 13:01:12 jeroen Exp 
$ -->
+<!-- PHPDoc snippets $Id: language-snippets.ent,v 1.5 2001/07/11 18:16:06 jeroen Exp 
+$ -->
 
-<!ENTITY true '<constant>TRUE</constant>'>
-<!ENTITY false '<constant>FALSE</constant>'>
-<!ENTITY null '<constant>NULL</constant>'>
 
 <!ENTITY warn.experimental 
'<warning><simpara>このモジュールは、<emphasis>実験的</emphasis>なものです。これは、これらの関数の動作、関数名は、このドキュメントに書かれて事項と同様に告知なく将来的なPHPのリリースで変更される可能性があります。注意を喚起するとともに、このモジュールは使用者のリスクで使用して下さい。</simpara></warning>'>
 
Index: phpdoc/kr/language-snippets.ent
diff -u phpdoc/kr/language-snippets.ent:1.3 phpdoc/kr/language-snippets.ent:1.4
--- phpdoc/kr/language-snippets.ent:1.3 Sun Jul  8 09:01:13 2001
+++ phpdoc/kr/language-snippets.ent     Wed Jul 11 14:16:06 2001
@@ -1,8 +1,5 @@
-<!-- PHPDoc snippets $Id: language-snippets.ent,v 1.3 2001/07/08 13:01:13 jeroen Exp 
$ -->
+<!-- PHPDoc snippets $Id: language-snippets.ent,v 1.4 2001/07/11 18:16:06 jeroen Exp 
+$ -->
 
-<!ENTITY true '<constant>TRUE</constant>'>
-<!ENTITY false '<constant>FALSE</constant>'>
-<!ENTITY null '<constant>NULL</constant>'>
 
 
 <!ENTITY warn.experimental '<warning><simpara>This module is 
<emphasis>EXPERIMENTAL</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>'>
Index: phpdoc/nl/language-snippets.ent
diff -u phpdoc/nl/language-snippets.ent:1.3 phpdoc/nl/language-snippets.ent:1.4
--- phpdoc/nl/language-snippets.ent:1.3 Sun Jul  8 09:01:15 2001
+++ phpdoc/nl/language-snippets.ent     Wed Jul 11 14:16:07 2001
@@ -1,8 +1,5 @@
-<!-- PHPDoc snippets $Id: language-snippets.ent,v 1.3 2001/07/08 13:01:15 jeroen Exp 
$ -->
+<!-- PHPDoc snippets $Id: language-snippets.ent,v 1.4 2001/07/11 18:16:07 jeroen Exp 
+$ -->
 
-<!ENTITY true '<constant>TRUE</constant>'>
-<!ENTITY false '<constant>FALSE</constant>'>
-<!ENTITY null '<constant>NULL</constant>'>
 
 
 <!ENTITY warn.experimental '<warning><simpara>This module is 
<emphasis>EXPERIMENTAL</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>'>

Reply via email to