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

2001-03-20 Thread Ron Chmara
ronabop Tue Mar 20 21:59:44 2001 EDT Modified files: /phpdoc/en/functionsstrings.xml Log: Adding more echo examples per errata. Index: phpdoc/en/functions/strings.xml diff -u phpdoc/en/functions/strings.xml:1.78 phpdoc/en/functions/strings.xml:1.79 ---

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

2001-03-20 Thread Ron Chmara
ronabop Tue Mar 20 21:17:28 2001 EDT Modified files: /phpdoc/en/functionsnis.xml Log: Updating yp_first example to proper use of array return. Index: phpdoc/en/functions/nis.xml diff -u phpdoc/en/functions/nis.xml:1.8 phpdoc/en/functions/nis.xml:1.9 ---

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

2001-03-20 Thread Ron Chmara
ronabop Tue Mar 20 19:27:23 2001 EDT Modified files: /phpdoc/en/chapters install.xml Log: Adding apache restart hints from eratta. Index: phpdoc/en/chapters/install.xml diff -u phpdoc/en/chapters/install.xml:1.46 phpdoc/en/chapters/install.xml:1.47 --- phpdoc/e

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

2001-03-20 Thread Damien Seguy
damsTue Mar 20 08:31:57 2001 EDT Modified files: /phpdoc/fr/functionsstrings.xml Log: Updated strstr() Index: phpdoc/fr/functions/strings.xml diff -u phpdoc/fr/functions/strings.xml:1.33 phpdoc/fr/functions/strings.xml:1.34 --- phpdoc/fr/functions/

[PHP-DOC] Fwd: BEST Network Marketer Leads

2001-03-20 Thread jennivaughn_02
ATTENTION! I Found this company on the internet. They came very highly recommended by several of my friends and associates. They have the most qualified leads I have ever worked. Forget those generic phone leads... sign up 5 out of 15 or more every time!! They Are having a 33% off sale thi

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

2001-03-20 Thread Egon Schmid (@work)
Wolfgang Drews wrote: > > drews Tue Mar 20 02:09:05 2001 EDT > > Modified files: > /phpdoc/de/functionsxslt.xml > Log: > Urs Gehrig did his first filetranslation. > Egon, please have a look at it, if it's really valid > (my docbook is still not installed ;-)) XML

Re: [PHP-DOC] About resources.xml

2001-03-20 Thread Damien Seguy
Hi Jesus, > I crufted together a simple script to pull possible > resources, which may help you: This is interesting : it didn't find out the same resources. Here is the one I used : (Note : displays are in French, but code should be simple enough). Just add script in the php source root, and an

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

2001-03-20 Thread Wolfgang Drews
drews Tue Mar 20 02:09:05 2001 EDT Modified files: /phpdoc/de/functionsxslt.xml Log: Urs Gehrig did his first filetranslation. Egon, please have a look at it, if it's really valid (my docbook is still not installed ;-)) Index: phpdoc/de/functions

Re: [PHP-DOC] About resources.xml

2001-03-20 Thread Jesus M. Castagnetto
Damien, I crufted together a simple script to pull possible resources, which may help you: #! /bin/sh grep -r FETCH_RESOURCE * | awk '{ split($0,a,":"); #b = a[2]; #gsub("^[ \t]+","",b); split(a[2],b,","); print a[1], b[5];}' | sort | uniq --- Damien