Re: [PHP-DOC] Inconsistent command line formats

2007-11-11 Thread Hannes Magnusson
On Nov 11, 2007 3:23 PM, Edward Z. Yang <[EMAIL PROTECTED]> wrote: > Hannes Magnusson wrote: > > I don't know how you managed to get --option=value to work, PHP > > getopt() doesnt support it... > > As far as I can tell, configure.php doesn't use getopt... > > > foreach ($_SERVER['argv'] as $opt) {

Re: [PHP-DOC] Re: phpdoc REF_STRUCT_DEV partial configure patch

2007-11-11 Thread Edward Z. Yang
Hannes Magnusson wrote: > That patch seems oddly complicated. > Whats wrong with the method I explained on IRC? I thought this was the method you explained on IRC! :-) Obviously, I misunderstood. > [17:32] [ezyang] Does configure.php accept partial builds? > [17:32] no > [17:32] [ezyang] +1 feat

Re: [PHP-DOC] Inconsistent command line formats

2007-11-11 Thread Edward Z. Yang
Hannes Magnusson wrote: > I don't know how you managed to get --option=value to work, PHP > getopt() doesnt support it... As far as I can tell, configure.php doesn't use getopt... > foreach ($_SERVER['argv'] as $opt) { > if (strpos($opt, "=") !== false) { > list($o, $v) = explode("=",

Re: [PHP-DOC] Re: Compressed methodnames patch

2007-11-11 Thread Hannes Magnusson
On Nov 11, 2007 3:21 PM, Edward Z. Yang <[EMAIL PROTECTED]> wrote: > Hannes Magnusson wrote: > > You mean you want: > >

Re: [PHP-DOC] Re: phpdoc REF_STRUCT_DEV partial configure patch

2007-11-11 Thread Hannes Magnusson
On Nov 11, 2007 3:42 AM, Edward Z. Yang <[EMAIL PROTECTED]> wrote: > Edward Z. Yang wrote: > > It does nothing for a documentation writer who wants to make changes, > > run PhD and see his changes. configure.php still takes up way too much > > time, because we basically load up all of manual.xml an

Re: [PHP-DOC] Re: Compressed methodnames patch

2007-11-11 Thread Edward Z. Yang
Hannes Magnusson wrote: > You mean you want: > http://htmlpurifier.org> Anti-XSS Filter [[ 3FA8 E9A9 7385 B691 A6FC B3CB A933 BE7D 869C 48DA ]]

Re: [PHP-DOC] Re: Compressed methodnames patch

2007-11-11 Thread Hannes Magnusson
On Nov 11, 2007 1:19 AM, Edward Z. Yang <[EMAIL PROTECTED]> wrote: > Edward Z. Yang wrote: > > - There is no support for constants; adding that shouldn't be difficult > > to do though > > I have a question: why do inline property names (inside fieldsynopsis) > not have the class name prefixed on th

Re: [PHP-DOC] PhD 0.2.0 Released

2007-11-11 Thread Hannes Magnusson
On Nov 10, 2007 3:47 AM, Philip Olson <[EMAIL PROTECTED]> wrote: > > On Nov 8, 2007, at 10:36 AM, Hannes Magnusson wrote: > > > Hi all > > > > PhD 0.2.0 has been released \o/. > > Cool, and starting with this version we'll use PhD to generate the > PHP manual for all of the mirrors! That is up to

Re: [PHP-DOC] fixing our translations

2007-11-11 Thread Hannes Magnusson
On Nov 10, 2007 5:20 AM, Philip Olson <[EMAIL PROTECTED]> wrote: > Hello everyone, > > As most of us know, we have many outdated translations... so let's > discuss it: > > A) Critically old files: > > Many translations contain critically old files that should be either > updated or offline. Some id

Re: [PHP-DOC] Styling HTML output

2007-11-11 Thread Hannes Magnusson
On Nov 7, 2007 5:41 PM, Edward Z. Yang <[EMAIL PROTECTED]> wrote: > Edward Z. Yang wrote: > > 3. The plain HTML output of the class synopsis looks quite ugly, because > > there is no indentation, coloring, etc. We may want to consider having a > > simple, default style for these output formats. It

[PHP-DOC] Notes Status, 19606 total

2007-11-11 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.4% of the 19606 total user notes. Notes | Page ---+- 106 | http://php.net/manual

Re: [PHP-DOC] Inconsistent command line formats

2007-11-11 Thread Hannes Magnusson
On Nov 11, 2007 2:24 AM, Edward Z. Yang <[EMAIL PROTECTED]> wrote: > configure.php and build.php have inconsistent command line formats. I.e. > > configure.php --option=value > build.php --option value > > Well, which should it be? I don't know how you managed to get --option=value to work, PHP ge