Re: [PHP-DOC] new chm up there

2001-11-10 Thread Markus Fischer
On Sat, Nov 10, 2001 at 07:03:49PM +0100, Hojtsy Gabor wrote : > - revised design > - corrected manual notes link > - color coding for PHP examples (thanks >for the idea to Tomas V. V. Cox). Colored sample source really rocks :) I couldn't find anything not-already-discussed-design-relat

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

2001-11-10 Thread Damien Seguy
damsSat Nov 10 20:44:16 2001 EDT Modified files: /phpdoc/fr language-snippets.ent Log: Added to make entity xml well formed. Index: phpdoc/fr/language-snippets.ent diff -u phpdoc/fr/language-snippets.ent:1.12 phpdoc/fr/language-snippets.ent:1.13 --- phpdo

[PHP-DOC] cvs: phpdoc /pl Translators

2001-11-10 Thread Leszek Krupinski
leszek Sat Nov 10 19:02:39 2001 EDT Modified files: /phpdoc/pl Translators Log: Added overload.xml. Incrased version numbers for basic-syntax.xml, constants.xml, expressions.xml Took filesystem.xml Synced with 1.14 Index: phpdoc/pl/Translators diff -u p

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

2001-11-10 Thread jim winstead
jimwSat Nov 10 18:46:32 2001 EDT Modified files: /phpdoc/en/functionsming.xml Log: fix typo Index: phpdoc/en/functions/ming.xml diff -u phpdoc/en/functions/ming.xml:1.25 phpdoc/en/functions/ming.xml:1.26 --- phpdoc/en/functions/ming.xml:1.25 Sat N

[PHP-DOC] note for functions that return false and ""

2001-11-10 Thread jim winstead
it would be nice if we had a note we could drop into functions that return false in failure conditions, but can also return non-failure values that evaluate to false. perhaps something that included a reference to a section explaining the situation and how to use the === operator to handle it. ji

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

2001-11-10 Thread Damien Seguy
damsSat Nov 10 18:15:43 2001 EDT Modified files: /phpdoc/fr bookinfo.xml Log: Adding xml tag. Index: phpdoc/fr/bookinfo.xml diff -u phpdoc/fr/bookinfo.xml:1.12 phpdoc/fr/bookinfo.xml:1.13 --- phpdoc/fr/bookinfo.xml:1.12 Mon Sep 24 09:23:10 2001 +++ phpdoc/

Re: [PHP-DOC] cvs: phpdoc /cs bookinfo.xml preface.xml /cs/features connection-handling.xml cookies.xml http-auth.xml images.xml persistent-connections.xml remote-files.xml /cs/functions apache.xml array.xml aspell.xml bc.xml calendar.xml ccvs.xml classo

2001-11-10 Thread Egon Schmid
What are the reasons to make such a huge patch. There seems, that we have some different meaning of versions. I have said, that we don´t need such version and encoding attributes in EVERY file. Make your tests with jade, openjade, or nsgmls. Are the variables in LANG, JADE, and NSGMLS not enough?

Re: [PHP-DOC] docs request

2001-11-10 Thread Gabor Hojtsy
I have already added it as such: array_chunk example $input_array = array('a', 'b', 'c', 'd', 'e'); print_r(array_chunk($input_array, 2)); print_r(array_chunk($input_array, 2, TRUE)); The printout of the above program will be: Array (

Re: [PHP-DOC] docs request

2001-11-10 Thread Andrei Zmievski
Yeah, looks good. You might want to give an example of using preserve_keys option. At 10:04 PM 11/10/01 +0100, Gabor Hojtsy wrote: > > No. array_chunk() will split the input array into several sub-arrays > > depending on the chunk length you specify. Try using >array_chunk(array('a', > > 'b', 'c

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

2001-11-10 Thread Gabor Hojtsy
gobaSat Nov 10 17:11:40 2001 EDT Modified files: /phpdoc/en/functionsarray.xml Log: Expanding example of array_chunk Index: phpdoc/en/functions/array.xml diff -u phpdoc/en/functions/array.xml:1.111 phpdoc/en/functions/array.xml:1.112 --- phpdoc/e

Re: [PHP-DOC] Re: How often is manual generated?

2001-11-10 Thread Jim Winstead
On Sat, Nov 10, 2001 at 08:47:49PM +0100, [EMAIL PROTECTED] wrote: > On 10 Nov 2001, jim winstead wrote: > > > the chms are generated through a different process, because they require > > windows to build. > > Since the servers changed, it seems that uploading them to php.chek.com, > and running

[PHP-DOC] cvs: phpdoc /pl/chapters config.xml /pl/functions ftp.xml

2001-11-10 Thread Egon Schmid
eschmid Sat Nov 10 16:29:23 2001 EDT Modified files: /phpdoc/pl/chapters config.xml /phpdoc/pl/functionsftp.xml Log: Removed problems with end tags. Index: phpdoc/pl/chapters/config.xml diff -u phpdoc/pl/chapters/config.xml:1.2 phpdoc/pl/chapters/c

[PHP-DOC] cvs: phpdoc / Makefile.in /scripts revcheck.php

2001-11-10 Thread jim winstead
jimwSat Nov 10 16:18:52 2001 EDT Modified files: /phpdoc Makefile.in /phpdoc/scripts revcheck.php Log: make revcheck.html target, update revcheck.php to make it less location-dependent. Index: phpdoc/Makefile.in diff -u phpdoc/Makefile.in:1.75

Re: [PHP-DOC] docs request

2001-11-10 Thread Gabor Hojtsy
> No. array_chunk() will split the input array into several sub-arrays > depending on the chunk length you specify. Try using array_chunk(array('a', > 'b', 'c', 'd', 'e'), 2). OK, I have added the docs, as: array_chunk Split an array into chunks Description

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

2001-11-10 Thread Hojtsy Gabor
gobaSat Nov 10 16:00:55 2001 EDT Modified files: /phpdoc/en/functionsarray.xml Log: Adding array_chunk as requested Index: phpdoc/en/functions/array.xml diff -u phpdoc/en/functions/array.xml:1.109 phpdoc/en/functions/array.xml:1.110 --- phpdoc/en

Re: [PHP-DOC] docs request

2001-11-10 Thread Gabor Hojtsy
> >Isn't > > > > array_chunk($array, 2, TRUE); > > > >the same as > > > > array_slice($array, 0, 2); > > > >OK, it is not completely the same, as you > >cannot choose "do not preserve keys" while > >using array_slice(). Wouldn't it be better to > >extend array_slice() with another paramete

Re: [PHP-DOC] docs request

2001-11-10 Thread Andrei Zmievski
At 07:02 PM 11/10/01 +0100, Hojtsy Gabor wrote: >Isn't > > array_chunk($array, 2, TRUE); > >the same as > > array_slice($array, 0, 2); > >OK, it is not completely the same, as you >cannot choose "do not preserve keys" while >using array_slice(). Wouldn't it be better to >extend array_slice

Re: [PHP-DOC] Bug #14009 Updated: ICAP link broken

2001-11-10 Thread Sander Roobol
Seems to be pretty dead... http://www.wirs.aber.ac.uk/spk/Diary/icap-draft.htm http://cs-www.bu.edu/courses/cs511/F96/ICAP796.html That's all I could found... :( Sander - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Saturday, November

Re: [PHP-DOC] migrating from 2 to 3

2001-11-10 Thread Lars Torben Wilson
Hojtsy Gabor writes: > > > > Do anybody use the migration from PHP 2 -> PHP 3??? > > > > Noone uses PHP 2 nowadays I think. The user base was > > > > probably not that much, and every PHP 2 user has either > > > > dropped PHP, or upgraded. I even don't think so, that > > > > a PHP 2 -> PHP 4 secti

Re: [PHP-DOC] Re: How often is manual generated?

2001-11-10 Thread derick
On 10 Nov 2001, jim winstead wrote: > the chms are generated through a different process, because they require > windows to build. Since the servers changed, it seems that uploading them to php.chek.com, and running my copy script does not distribute them anymore. Would you be so kind to tell me

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

2001-11-10 Thread Sebastian Nohn
nohnSat Nov 10 14:46:21 2001 EDT Modified files: /phpdoc/en/functionsmnogosearch.xml Log: fixed a typo Index: phpdoc/en/functions/mnogosearch.xml diff -u phpdoc/en/functions/mnogosearch.xml:1.23 phpdoc/en/functions/mnogosearch.xml:1.24 --- phpdoc/e

[PHP-DOC] Re: How often is manual generated?

2001-11-10 Thread jim winstead
Slawomir Pucia <[EMAIL PROTECTED]> wrote: > Could someone tell me please, how often is manual (including translated) > generated? HTML, PDF, CHM? all versions (except chm) of the manual are generated each day if there have been changes to files in their sub-tree within the previous 24 hours of wh

[PHP-DOC] How often is manual generated?

2001-11-10 Thread Slawomir Pucia
Could someone tell me please, how often is manual (including translated) generated? HTML, PDF, CHM? slawek-

[PHP-DOC] Bug #14009 Updated: ICAP link broken

2001-11-10 Thread goba
ID: 14009 Updated by: goba Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Documentation problem Operating System: n/a PHP Version: 4.0.6 New Comment: OK, I have seen that http://www.icap.org/ is also not correct. Than what we should write there. Anybody know the correct address? Pre

[PHP-DOC] Bug #14009: ICAP link broken

2001-11-10 Thread slawek
From: [EMAIL PROTECTED] Operating system: n/a PHP version: 4.0.6 PHP Bug Type: Documentation problem Bug description: ICAP link broken url.icap "http://icap.chek.com/"; does not work. Noone responded to my post at phpdoc list, so I put it here :-)) -- Edit bug report

[PHP-DOC] Bug #13067 Updated: bool dbmreplace (int dbm_identifier, string key, string value)

2001-11-10 Thread mj
ID: 13067 Updated by: mj Reported By: [EMAIL PROTECTED] Old Status: Open Status: Closed Bug Type: Documentation problem Operating System: na PHP Version: 4.0.6 New Comment: Fixed in CVS. Thanks for your report. Previous Comments: --

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

2001-11-10 Thread Martin Jansen
mj Sat Nov 10 13:27:17 2001 EDT Modified files: /phpdoc/en/functionsdbm.xml Log: * Fix for bug #13067 Index: phpdoc/en/functions/dbm.xml diff -u phpdoc/en/functions/dbm.xml:1.11 phpdoc/en/functions/dbm.xml:1.12 --- phpdoc/en/functions/dbm.xml:1.

[PHP-DOC] new chm up there

2001-11-10 Thread Hojtsy Gabor
Hi! I just updated the new CHM file. The third sample features: - revised design - corrected manual notes link - color coding for PHP examples (thanks for the idea to Tomas V. V. Cox). Goba

Re: [PHP-DOC] docs request

2001-11-10 Thread Hojtsy Gabor
> Also, am I right, thinking that the array_chunk > function is no more than returning a begining > part of an array, with the number of elements > provided? Am I right? Or it is something more? > I can only see this simple functionality in the > source... Isn't array_chunk($array, 2, TRUE);

Re: [PHP-DOC] docs request

2001-11-10 Thread Hojtsy Gabor
> > > It'd be nice if someone could document the new array_chunk() function I > > > added and maybe overload extension as well. I currently don't have spare > > > cycles to do it, but they are useful. > > > > I am on the overload extension. > > Hope noone started it till this time ;) > > I have ad

Re: [PHP-DOC] docs request

2001-11-10 Thread Hojtsy Gabor
> > It'd be nice if someone could document the new array_chunk() function I > > added and maybe overload extension as well. I currently don't have spare > > cycles to do it, but they are useful. > > I am on the overload extension. > Hope noone started it till this time ;) I have added overload.xm

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

2001-11-10 Thread Hojtsy Gabor
gobaSat Nov 10 12:43:04 2001 EDT Added files: /phpdoc/en/functionsoverload.xml Log: Adding documentation for the new experimental overload extension Index: phpdoc/en/functions/overload.xml +++ phpdoc/en/functions/overload.xml Object pro

Re: [PHP-DOC] docs request

2001-11-10 Thread Hojtsy Gabor
> It'd be nice if someone could document the new array_chunk() function I > added and maybe overload extension as well. I currently don't have spare > cycles to do it, but they are useful. I am on the overload extension. Hope noone started it till this time ;) Goba

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

2001-11-10 Thread Hojtsy Gabor
gobaSat Nov 10 11:34:32 2001 EDT Modified files: /phpdoc/en/appendices debugger.xml Log: More PHP -> PHP 3 Index: phpdoc/en/appendices/debugger.xml diff -u phpdoc/en/appendices/debugger.xml:1.12 phpdoc/en/appendices/debugger.xml:1.13 --- phpdoc/en/

Re: [PHP-DOC] xml-headers in included xml files

2001-11-10 Thread Hartmut Holzgraefe
Jirka Kosek wrote: > Unfortunatelly not. XSLT operates on a tree constructed by XML parser - > all text entities are lost at this stage of processing. so the T in XSLT does not stand for transforming from one DTD to another without modifying contents at all? :(

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

2001-11-10 Thread Hojtsy Gabor
gobaSat Nov 10 11:33:04 2001 EDT Modified files: /phpdoc/en/appendices debugger.xml Log: Clarify, that this is not general PHP, but always PHP 3 only. Index: phpdoc/en/appendices/debugger.xml diff -u phpdoc/en/appendices/debugger.xml:1.11 phpdoc/en

Re: [PHP-DOC] migrating from 2 to 3

2001-11-10 Thread Hojtsy Gabor
> > Why should we delete it? I don't see any use in deleting that file. Let's > > just leave it there for archeological purposes... > > Why to distribute arhaical documents, sparing space, bandwith Erm, I mean archeological, arhaical is quite a different thing :) > a

Re: [PHP-DOC] migrating from 2 to 3

2001-11-10 Thread Hojtsy Gabor
> > > Do anybody use the migration from PHP 2 -> PHP 3??? > > > Noone uses PHP 2 nowadays I think. The user base was > > > probably not that much, and every PHP 2 user has either > > > dropped PHP, or upgraded. I even don't think so, that > > > a PHP 2 -> PHP 4 section is needed. > > > > > > IMHO

[PHP-DOC] the "other" book on DocBook

2001-11-10 Thread Hartmut Holzgraefe
just got a copy of "Publishing DocBook - A Better Way to Create Professional Documents" by Joe Brockmeier and Kara Pritchard, published by PrimaTech (ISBN 0-7615-3331-1) and i like it :) (especially as it is already based on DocBook 4) using this as a step-by-step guide and the O'Reilly Book

Re: [PHP-DOC] migrating from 2 to 3

2001-11-10 Thread Sander Roobol
> > Do anybody use the migration from PHP 2 -> PHP 3??? > > Noone uses PHP 2 nowadays I think. The user base was > > probably not that much, and every PHP 2 user has either > > dropped PHP, or upgraded. I even don't think so, that > > a PHP 2 -> PHP 4 section is needed. > > > > IMHO we now can com

Re: [PHP-DOC] migrating from 2 to 3

2001-11-10 Thread Hartmut Holzgraefe
Hojtsy Gabor wrote: > Do anybody use the migration from PHP 2 -> PHP 3??? > Noone uses PHP 2 nowadays I think. The user base was > probably not that much, and every PHP 2 user has either > dropped PHP, or upgraded. I even don't think so, that > a PHP 2 -> PHP 4 section is needed. > > IMHO we now

Re: [PHP-DOC] xml-headers in included xml files

2001-11-10 Thread Jirka Kosek
Hartmut Holzgraefe wrote: > btw: is there a way to tell an xslt processor to copy entities > verbatim? right now i do a "sed -e's/&/&'" before > applying my conversion stylesheet :( Unfortunatelly not. XSLT operates on a tree constructed by XML parser - all text entities are lost at

Re: [PHP-DOC] xml-headers in included xml files

2001-11-10 Thread Hojtsy Gabor
> > Do you use XSLT style sheets to convert > > them to DocBook 4? IMHO that would work for many cases. > > have it ready for sablotron, but tested only with apache.xml yet > > btw: is there a way to tell an xslt processor to copy entities > verbatim? right now i do a "sed -e's/&/&'" befor

[PHP-DOC] migrating from 2 to 3

2001-11-10 Thread Hojtsy Gabor
Hi! Do anybody use the migration from PHP 2 -> PHP 3??? Noone uses PHP 2 nowadays I think. The user base was probably not that much, and every PHP 2 user has either dropped PHP, or upgraded. I even don't think so, that a PHP 2 -> PHP 4 section is needed. IMHO we now can completely delete migrati

Re: [PHP-DOC] xml-headers in included xml files

2001-11-10 Thread Hartmut Holzgraefe
Hojtsy Gabor wrote: > Do you use XSLT style sheets to convert > them to DocBook 4? IMHO that would work for many cases. have it ready for sablotron, but tested only with apache.xml yet btw: is there a way to tell an xslt processor to copy entities verbatim? right now i do a "sed -e's/&/&

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

2001-11-10 Thread Hojtsy Gabor
gobaSat Nov 10 10:53:20 2001 EDT Modified files: /phpdoc/en/chapters install.xml Log: Too many for Index: phpdoc/en/chapters/install.xml diff -u phpdoc/en/chapters/install.xml:1.88 phpdoc/en/chapters/install.xml:1.89 --- phpdoc/en/chapters/install.xml:1.

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

2001-11-10 Thread Hojtsy Gabor
gobaSat Nov 10 10:51:19 2001 EDT Modified files: /phpdoc/en/chapters install.xml Log: Moving download to general section Index: phpdoc/en/chapters/install.xml diff -u phpdoc/en/chapters/install.xml:1.87 phpdoc/en/chapters/install.xml:1.88 --- phpdoc/en/c

Re: [PHP-DOC] xml-headers in included xml files

2001-11-10 Thread Jirka Kosek
Hartmut Holzgraefe wrote: > > Hojtsy Gabor wrote: > > > Encoding is needed, version is optional :) > > so it wouldn't harm if i added version all over the place? No, it wouldn't. -- - Jirka Kosek e-m

Re: [PHP-DOC] xml-headers in included xml files

2001-11-10 Thread Jirka Kosek
Egon Schmid wrote: > > From: "Hojtsy Gabor" <[EMAIL PROTECTED]> > > > > is there any reason that we have only > > > instead of > > > as first line in files included by manual.xml? > > > > Yes. Encoding is needed, version is optional :) > > http://www.w3.org/TR/2000/REC-xml-20001006#sec-TextDec

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

2001-11-10 Thread Jirka Kosek
Hojtsy Gabor wrote: > > It looks like I am starting to understand what is going on :)) > At least I hope... Hope, and learn more. ;) > > Index: phpdoc/html-common.dsl ... > +;; Print out parameters in italic > (element (paramdef parameter) >(make sequence > font-posture: 'italic

Re: [PHP-DOC] xml-headers in included xml files

2001-11-10 Thread Hojtsy Gabor
> this is true for jade / OpenJade > but some XSLT processors might be more picky about standard conformance Jade has even not complained for entities written as &entityname without any ; at the end... > i want to convert the function reference files to docbook 4 > > i want to use XSLT to do so

Re: [PHP-DOC] xml-headers in included xml files

2001-11-10 Thread Hartmut Holzgraefe
Egon Schmid wrote: > From: "Hojtsy Gabor" <[EMAIL PROTECTED]> > >>>is there any reason that we have only >>>instead of >>>as first line in files included by manual.xml? >>> >>Yes. Encoding is needed, version is optional :) >>http://www.w3.org/TR/2000/REC-xml-20001006#sec-TextDecl >> > > We do

[PHP-DOC] cvs: phpdoc / global.ent

2001-11-10 Thread Martin Jansen
mj Sat Nov 10 09:50:34 2001 EDT Modified files: /phpdoc global.ent Log: * Fix for bug #12632 Index: phpdoc/global.ent diff -u phpdoc/global.ent:1.123 phpdoc/global.ent:1.124 --- phpdoc/global.ent:1.123 Sat Nov 10 08:42:18 2001 +++ phpdoc/global.

[PHP-DOC] Bug #12632 Updated: Dead Link for Natural Order String Comparison

2001-11-10 Thread mj
ID: 12632 Updated by: mj Reported By: [EMAIL PROTECTED] Old Status: Analyzed Status: Closed Bug Type: Documentation problem Operating System: W2K PHP Version: 4.0.4 New Comment: Fixed in CVS. Thanks for your report. Previous Comments: -

Re: [PHP-DOC] xml-headers in included xml files

2001-11-10 Thread Egon Schmid
From: "Hojtsy Gabor" <[EMAIL PROTECTED]> > > is there any reason that we have only > > instead of > > as first line in files included by manual.xml? > > Yes. Encoding is needed, version is optional :) > http://www.w3.org/TR/2000/REC-xml-20001006#sec-TextDecl We don´t need encodings in every fi

Re: [PHP-DOC] xml-headers in included xml files

2001-11-10 Thread Hartmut Holzgraefe
Hojtsy Gabor wrote: > Encoding is needed, version is optional :) so it wouldn't harm if i added version all over the place?

Re: [PHP-DOC] xml-headers in included xml files

2001-11-10 Thread Hojtsy Gabor
> is there any reason that we have only > instead of > as first line in files included by manual.xml? Yes. Encoding is needed, version is optional :) http://www.w3.org/TR/2000/REC-xml-20001006#sec-TextDecl Goba

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

2001-11-10 Thread Jan Lehnardt
jan Sat Nov 10 08:52:31 2001 EDT Modified files: /phpdoc/en/chapters intro.xml Log: fix typo Index: phpdoc/en/chapters/intro.xml diff -u phpdoc/en/chapters/intro.xml:1.22 phpdoc/en/chapters/intro.xml:1.23 --- phpdoc/en/chapters/intro.xml:1.22 Sat Nov 1

[PHP-DOC] xml-headers in included xml files

2001-11-10 Thread Hartmut Holzgraefe
is there any reason that we have only instead of as first line in files included by manual.xml?

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

2001-11-10 Thread Hojtsy Gabor
gobaSat Nov 10 08:42:19 2001 EDT Modified files: /phpdoc global.ent /phpdoc/en/chapters install.xml Log: . Adding general installation instructions, talking about servers, the module and CGI option, command line a GTK setup. . Correcting

Re: [PHP-DOC] html transformations

2001-11-10 Thread Tomas V.V.Cox
Hojtsy Gabor wrote: > > > > OK, I had the time, to test the DSSSL fragment sent to the list > > > by Jirka Kosek. It seems it works. I'll commit it. It adds > > > the role="" attributes content as a class="" parameter in HTML, > > > so it looks like: > > > > > > and not for > > > > > > PHP fil

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

2001-11-10 Thread Jan Lehnardt
jan Sat Nov 10 08:36:43 2001 EDT Modified files: /phpdoc/en/chapters intro.xml Log: some minor fixes and improvements Index: phpdoc/en/chapters/intro.xml diff -u phpdoc/en/chapters/intro.xml:1.21 phpdoc/en/chapters/intro.xml:1.22 --- phpdoc/en/chapters/i

Re: [PHP-DOC] html transformations

2001-11-10 Thread Hojtsy Gabor
> > OK, I had the time, to test the DSSSL fragment sent to the list > > by Jirka Kosek. It seems it works. I'll commit it. It adds > > the role="" attributes content as a class="" parameter in HTML, > > so it looks like: > > > > and not for > > > > PHP files :) > > Cool! > > > Nice for you

Re: [PHP-DOC] html transformations

2001-11-10 Thread Tomas V.V.Cox
Hojtsy Gabor wrote: > > OK, I had the time, to test the DSSSL fragment sent to the list > by Jirka Kosek. It seems it works. I'll commit it. It adds > the role="" attributes content as a class="" parameter in HTML, > so it looks like: > > and not for > > PHP files :) Cool! > Nice for you

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

2001-11-10 Thread Hojtsy Gabor
gobaSat Nov 10 06:57:07 2001 EDT Modified files: /phpdoc/en preface.xml /phpdoc/en/chapters intro.xml Log: So, PHP can do much more, not just some databases and protocols :) Expanding the What can do? section with information on using fields, operati

[PHP-DOC] cvs: phpdoc / global.ent

2001-11-10 Thread Martin Jansen
mj Sat Nov 10 05:39:37 2001 EDT Modified files: /phpdoc global.ent Log: * Fix bug #14007 Index: phpdoc/global.ent diff -u phpdoc/global.ent:1.121 phpdoc/global.ent:1.122 --- phpdoc/global.ent:1.121 Sat Nov 3 16:06:53 2001 +++ phpdoc/global.ent

[PHP-DOC] cvs: phpdoc /ja/faq build.xml databases.xml general.xml installation.xml languages.xml mailinglist.xml migration.xml migration4.xml misc.xml obtaining.xml

2001-11-10 Thread Rui Hirokawa
hirokawaSat Nov 10 05:29:23 2001 EDT Added files: /phpdoc/ja/faq build.xml databases.xml general.xml installation.xml languages.xml mailinglist.xml migration.xml migration4.xml misc.xml obtaining.xml

Re: [PHP-DOC] User notes

2001-11-10 Thread Hojtsy Gabor
> How can I add a user note to annotated manual at > http://www.php.net/manual/en/ ? I tried clocking "+" sign on that > page but nothing happened. + works for me. Goba