didou Tue Apr 20 16:13:13 2004 EDT
Modified files:
/livedocs mkindex.php mk_peardoc.php mk_phpdoc.php mk_smarty.php
handlers.php
Log:
make the manual name defined in the build specific file
http://cvs.php.net/diff.php/livedocs/mkindex.php?r1=1.29&r2=1.30&ty=u
Index: livedocs/mkindex.php
diff -u livedocs/mkindex.php:1.29 livedocs/mkindex.php:1.30
--- livedocs/mkindex.php:1.29 Fri Apr 2 13:18:33 2004
+++ livedocs/mkindex.php Tue Apr 20 16:13:13 2004
@@ -19,7 +19,7 @@
// | construct an index |
// +----------------------------------------------------------------------+
//
-// $Id: mkindex.php,v 1.29 2004/04/02 18:18:33 nlopess Exp $
+// $Id: mkindex.php,v 1.30 2004/04/20 20:13:13 didou Exp $
/* just to be on the safe side */
@@ -465,6 +465,8 @@
$toca[$row[1]] = $row[0];
}
+print_r($toca);
+
$tocd = array();
foreach ($parse_dirs as $dir) {
http://cvs.php.net/diff.php/livedocs/mk_peardoc.php?r1=1.3&r2=1.4&ty=u
Index: livedocs/mk_peardoc.php
diff -u livedocs/mk_peardoc.php:1.3 livedocs/mk_peardoc.php:1.4
--- livedocs/mk_peardoc.php:1.3 Wed Mar 24 11:14:23 2004
+++ livedocs/mk_peardoc.php Tue Apr 20 16:13:13 2004
@@ -18,9 +18,10 @@
// | Configuration file for peardoc build |
// +----------------------------------------------------------------------+
//
-// $Id: mk_peardoc.php,v 1.3 2004/03/24 16:14:23 nlopess Exp $
+// $Id: mk_peardoc.php,v 1.4 2004/04/20 20:13:13 didou Exp $
define('MK_VERSION', false);
+define('MANUAL_TITLE', 'PEAR Manual');
$parse_dirs = array('chapters', 'core', 'guide', 'package', 'pecl');
http://cvs.php.net/diff.php/livedocs/mk_phpdoc.php?r1=1.3&r2=1.4&ty=u
Index: livedocs/mk_phpdoc.php
diff -u livedocs/mk_phpdoc.php:1.3 livedocs/mk_phpdoc.php:1.4
--- livedocs/mk_phpdoc.php:1.3 Sun Mar 21 05:45:15 2004
+++ livedocs/mk_phpdoc.php Tue Apr 20 16:13:13 2004
@@ -18,9 +18,10 @@
// | Configuration file for phpdoc build |
// +----------------------------------------------------------------------+
//
-// $Id: mk_phpdoc.php,v 1.3 2004/03/21 10:45:15 nlopess Exp $
+// $Id: mk_phpdoc.php,v 1.4 2004/04/20 20:13:13 didou Exp $
define('MK_VERSION', true);
+define('MANUAL_TITLE', 'PHP Manual');
$parse_dirs = array('faq', 'reference', 'security', 'chapters', 'appendices',
'language');
http://cvs.php.net/diff.php/livedocs/mk_smarty.php?r1=1.3&r2=1.4&ty=u
Index: livedocs/mk_smarty.php
diff -u livedocs/mk_smarty.php:1.3 livedocs/mk_smarty.php:1.4
--- livedocs/mk_smarty.php:1.3 Mon Mar 29 06:12:44 2004
+++ livedocs/mk_smarty.php Tue Apr 20 16:13:13 2004
@@ -18,9 +18,10 @@
// | Configuration file for peardoc build |
// +----------------------------------------------------------------------+
//
-// $Id: mk_smarty.php,v 1.3 2004/03/29 11:12:44 didou Exp $
+// $Id: mk_smarty.php,v 1.4 2004/04/20 20:13:13 didou Exp $
define('MK_VERSION', false);
+define('MANUAL_TITLE', 'Smarty Manual');
$parse_dirs = array('designers', 'programmers', 'appendixes');
http://cvs.php.net/diff.php/livedocs/handlers.php?r1=1.1&r2=1.2&ty=u
Index: livedocs/handlers.php
diff -u livedocs/handlers.php:1.1 livedocs/handlers.php:1.2
--- livedocs/handlers.php:1.1 Sun Mar 21 08:59:42 2004
+++ livedocs/handlers.php Tue Apr 20 16:13:13 2004
@@ -18,7 +18,7 @@
// | Special Handlers for $aliases |
// +----------------------------------------------------------------------+
//
-// $Id: handlers.php,v 1.1 2004/03/21 13:59:42 nlopess Exp $
+// $Id: handlers.php,v 1.2 2004/04/20 20:13:13 didou Exp $
/***********************************
@@ -45,7 +45,7 @@
function handle_contents()
{
- return '<center><h1>PHP Manual</h1></center><h2>Contents</h2>' .
do_contents(1, 0);
+ return '<center><h1>' . MANUAL_TITLE . '</h1></center><h2>Contents</h2>' .
do_contents(1, 0);
}
/*******************