On Nov 3, 2007 6:30 AM, Edward Z. Yang <[EMAIL PROTECTED]> wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > How would I run PhD using a bleeding-edge copy from CVS? There seem to > be substitutions made during the PEAR packaging process, and manually > typing `php build.php` doesn't to work. Any suggestions?
php build.php [--format xhtml] [--theme phpweb] [--theme chunkedhtml] --docbook /path/to/your/phpdoc/.manual.xml [--partial ref.strings=false] [--partial function.strpos] [--partial ref.array] (removing the []) this will do a xhtml build, rendering the ref.strings page, functino.strpos and ref.array and all the array functions, using the phpweb and chunkedhtml themes (skipping bightml) using the /path/to/your/phpdoc/.manual.xml file using the default verbosity level. The stuff in the [] is optional, the only "required" option is --docbook - but for backwards compatibility dropping the option (but still passing the /path/to/phpdoc/.manual.xml) should work. Note: The long options are only available on PHP5.3. For the list of options (long&short): php build.php --help (after cvs up, I had forgotten to commit that option :P) -Hannes