From: Steve W. <wai...@us...> - 2001-03-11 17:50:01
|
Update of /cvsroot/phpwiki/phpwiki In directory usw-pr-cvs1:/tmp/cvs-serv8909 Modified Files: index.php Log Message: Added a flowerbox comment at the top of the file, explaining the whole file in general. Index: index.php =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/index.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -r1.13 -r1.14 *** index.php 2001/03/07 16:45:19 1.13 --- index.php 2001/03/11 17:51:54 1.14 *************** *** 1,13 **** <?php ///////////////////////////////////////////////////////////////////// // Part Zero: If PHP needs help in finding where you installed the // rest of the PhpWiki code, you can set the include_path here. - ///////////////////////////////////////////////////////////////////// //ini_set('include_path', '.:/where/you/installed/phpwiki'); ///////////////////////////////////////////////////////////////////// // Part Null: Don't touch this! ! ///////////////////////////////////////////////////////////////////// define ('PHPWIKI_VERSION', '1.3.0pre'); require "lib/prepend.php"; --- 1,25 ---- <?php + + /* + This is the starting file for PhpWiki. All this file does + is set configuration options, and at the end of the file + it includes() the file lib/main.php, where the real action begins. + + This file is divided into six parts: Parts Zero, One, Two, Three, + Four and Five. Each one has different configuration settings you + can change; in all cases the default should work on your system, + however, we recommend you tailor things to your particular setting. + */ + ///////////////////////////////////////////////////////////////////// // Part Zero: If PHP needs help in finding where you installed the // rest of the PhpWiki code, you can set the include_path here. + //ini_set('include_path', '.:/where/you/installed/phpwiki'); ///////////////////////////////////////////////////////////////////// // Part Null: Don't touch this! ! define ('PHPWIKI_VERSION', '1.3.0pre'); require "lib/prepend.php"; |