Re: [PHP-DOC] Doxygen -> DocBook

2004-05-08 Thread Jesus M. Castagnetto
I have not used this myself, but there is a project of C++ libs called Boost that has some stylesheets/tools to convert from Doxygen to Docbook: http://www.boost.org/doc/html/boostbook.getting.started.html HTH --- Wez Furlong <[EMAIL PROTECTED]> wrote: > Marcus has used doxygen to automatically

Re: [PHP-DOC] dom docs first attempt

2004-05-08 Thread Rob Richards
I like the idea of using function.ext-name.func-name. It seems straight forward and sounds like a faster solution. It figures it had to be this extenion to cause all the problems. For now should I just leave the IDs and s as they currently are? Rob From: Wez Furlong > I'm not sure that hitting

[PHP-DOC] cvs: phpdoc / manual.xml.in

2004-05-08 Thread Mehdi Achour
didou Sat May 8 16:08:34 2004 EDT Modified files: /phpdoc manual.xml.in Log: disable dom to fix build # why was it enabled? http://cvs.php.net/diff.php/phpdoc/manual.xml.in?r1=1.169&r2=1.170&ty=u Index: phpdoc/manual.xml.in diff -u phpdoc/manual.xml.in:

[PHP-DOC] Notes Status, 9240 total

2004-05-08 Thread phpdoc
Following are the top 20 pages of the manual, sorted by the number of user notes contributed. These sections could use a polish, those notes represent 8.5% of the 9240 total user notes. Notes | Page ---+- 43 | http://php.net/manual/

RE: [PHP-DOC] [PATCH] several bug fix in livedocs

2004-05-08 Thread Wez Furlong
Hey Nuno, You're using sqlite_array_query() where you could just use sqlite_single_query(): $value = sqlite_single_query($GLOBALS['fb_idx'], "select value from ents where entid="); ... $entities['&' . $ent . ';'] = $value; What exactly was the problem that you fixed in make_function_link, a

RE: [PHP-DOC] dom docs first attempt

2004-05-08 Thread Wez Furlong
I'm not sure that hitting the DB will be too nice on performance; it seems much simpler just to come up with a reasonable naming convention to resolve the ambiguity; a couple of compares are much less expensive than the IO needed to run a query, even with SQLite being quite fast. --Wez. > -O

[PHP-DOC] [PATCH] several bug fix in livedocs

2004-05-08 Thread Nuno Lopes
Here is one more patch for livedocs. It address the following issues: * Fetch english entities if other's languages aren't avaliable; * Small bug in load_xml_doc(): replace pre-defined entites before bind_entities(); * Re-writen make_function_link(): there was a problem because of DOM extension;

Re: [PHP-DOC] dom docs first attempt

2004-05-08 Thread Nuno Lopes
> Can we come up with a more precise naming scheme for ID attributes then? > > Something like function.ext-name.func-name; we can still retain (and > prefer) the current scheme, but use this one when we have a collision. > > This should be reasonably simple to hack into livedocs. > > --Wez. I was

RE: [PHP-DOC] dom docs first attempt

2004-05-08 Thread Wez Furlong
Can we come up with a more precise naming scheme for ID attributes then? Something like function.ext-name.func-name; we can still retain (and prefer) the current scheme, but use this one when we have a collision. This should be reasonably simple to hack into livedocs. --Wez. > -Original Me

Re: [PHP-DOC] dom docs first attempt

2004-05-08 Thread Nuno Lopes
> On Sat, 8 May 2004, Nuno Lopes wrote: > > > > The reason why I went with link is due to having to append the "dom-" to > > the > > > ids. I had origionally used , but the it wouldnt map > > to > > > the ids. And I was a bit worried about the livedocs, but there is no other > > > way due to the do

Re: [PHP-DOC] dom docs first attempt

2004-05-08 Thread Derick Rethans
On Sat, 8 May 2004, Nuno Lopes wrote: > > The reason why I went with link is due to having to append the "dom-" to > the > > ids. I had origionally used , but the it wouldnt map > to > > the ids. And I was a bit worried about the livedocs, but there is no other > > way due to the domxml functions.

[PHP-DOC] cvs: phpdoc /en livedocs.ent

2004-05-08 Thread Nuno Lopes
nlopess Sat May 8 06:13:33 2004 EDT Modified files: /phpdoc/en livedocs.ent Log: more one entity http://cvs.php.net/diff.php/phpdoc/en/livedocs.ent?r1=1.1&r2=1.2&ty=u Index: phpdoc/en/livedocs.ent diff -u phpdoc/en/livedocs.ent:1.1 phpdoc/en/livedocs.ent:1.2 -

[PHP-DOC] cvs: phpdoc / manual.xml.in /en livedocs.ent

2004-05-08 Thread Nuno Lopes
nlopess Sat May 8 05:29:46 2004 EDT Added files: /phpdoc/en livedocs.ent Modified files: /phpdoc manual.xml.in Log: phpdoc part to localize livedocs messages http://cvs.php.net/diff.php/phpdoc/manual.xml.in?r1=1.168&r2=1.169&ty=u I

[PHP-DOC] Doxygen -> DocBook

2004-05-08 Thread Wez Furlong
Marcus has used doxygen to automatically document a lot of the SPL features. AFAIK though, there is no convenient way to convert doxygen into docbook; we have some .xml files but didn't find a handy .xsl file to process it with. Does anyone here know of anything that will help? Alternatively, doe

[PHP-DOC] cvs: livedocs / style_mapping.php

2004-05-08 Thread Wez Furlong
wez Sat May 8 05:20:43 2004 EDT Modified files: /livedocs style_mapping.php Log: Localization/entities patch by Nuno. # Nuno, please commit the phpdoc parts of this yourself; thanks! http://cvs.php.net/diff.php/livedocs/style_mapping.php?r1=1.12&r2=1

Re: [PHP-DOC] dom docs first attempt

2004-05-08 Thread Nuno Lopes
> The reason why I went with link is due to having to append the "dom-" to the > ids. I had origionally used , but the it wouldnt map to > the ids. And I was a bit worried about the livedocs, but there is no other > way due to the domxml functions. So how should the links actually be done? You sh