From: alex <bin...@li...> - 2001-10-03 23:56:07
|
alex Wed Oct 3 16:56:01 2001 EDT Modified files: /r2/binarycloud/make/lib MakePHPDoc.php Log: Correting path in new phpdoc make class to match path in ext/ Index: r2/binarycloud/make/lib/MakePHPDoc.php diff -u r2/binarycloud/make/lib/MakePHPDoc.php:1.1 r2/binarycloud/make/lib/MakePHPDoc.php:1.2 --- r2/binarycloud/make/lib/MakePHPDoc.php:1.1 Wed Oct 3 16:41:19 2001 +++ r2/binarycloud/make/lib/MakePHPDoc.php Wed Oct 3 16:56:01 2001 @@ -1,7 +1,7 @@ <?php // Header {{{ /* - * -File $Id: MakePHPDoc.php,v 1.1 2001/10/03 23:41:19 alex Exp $ + * -File $Id: MakePHPDoc.php,v 1.2 2001/10/03 23:56:01 alex Exp $ * -License LGPL (http://www.gnu.org/copyleft/lesser.html) * -Copyright 2001, The Turing Studio, Inc. * -Author alex black, en...@tu... @@ -37,12 +37,12 @@ // document phpdoc itself. // Directory with include files - define("PHPDOC_INCLUDE_DIR", "../docs/phpdoc/"); + define("PHPDOC_INCLUDE_DIR", "../ext/phpdoc/"); // Important: set this to the Linebreak sign of your system! define("PHPDOC_LINEBREAK", "\n"); // main PHPDoc Include File - include("../docs/phpdoc/prepend.php"); + include("../ext/phpdoc/prepend.php"); $doc = new Phpdoc; @@ -57,7 +57,7 @@ $doc->setTarget($this->target_dir); // use these templates: - $doc->setTemplateDirectory("../docs/phpdoc/renderer/html/templates/"); + $doc->setTemplateDirectory("../ext/phpdoc/renderer/html/templates/"); // source files have one of these suffixes: $doc->setSourceFileSuffix( array ("php") ); |