phpDocumentor phpDocumentor
[ class tree: phpDocumentor ] [ index: phpDocumentor ] [ all elements ]

Source for file phpdoc.inc

Documentation is available at phpdoc.inc

  1. <?php
  2. /**
  3.  * startup file
  4.  * 
  5.  * phpDocumentor :: automatic documentation generator
  6.  * 
  7.  * PHP versions 4 and 5
  8.  *
  9.  * Copyright (c) 2000-2006 Joshua Eichorn, Gregory Beaver
  10.  * 
  11.  * LICENSE:
  12.  * 
  13.  * This library is free software; you can redistribute it
  14.  * and/or modify it under the terms of the GNU Lesser General
  15.  * Public License as published by the Free Software Foundation;
  16.  * either version 2.1 of the License, or (at your option) any
  17.  * later version.
  18.  * 
  19.  * This library is distributed in the hope that it will be useful,
  20.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  22.  * Lesser General Public License for more details.
  23.  * 
  24.  * You should have received a copy of the GNU Lesser General Public
  25.  * License along with this library; if not, write to the Free Software
  26.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  27.  *
  28.  * @package    phpDocumentor
  29.  * @author     Joshua Eichorn <[email protected]>
  30.  * @author     Gregory Beaver <[email protected]>
  31.  * @copyright  2000-2006 Joshua Eichorn, Gregory Beaver
  32.  * @license    http://www.opensource.org/licenses/lgpl-license.php LGPL
  33.  * @version    CVS: $Id: phpdoc.inc,v 1.3 2006/04/30 22:18:14 cellog Exp $
  34.  * @link       http://www.phpdoc.org
  35.  * @link       http://pear.php.net/PhpDocumentor
  36.  * @since      0.1
  37.  * @filesource
  38.  */
  39.  
  40.  
  41. // set up include path so we can find all files, no matter what
  42. $a explode('/',str_replace('\\','/',dirname(realpath(__FILE__))));
  43. $GLOBALS['_phpDocumentor_install_dir'join('/',$a);
  44. // add my directory to the include path, and make it first, should fix any errors
  45. if (substr(PHP_OS03== 'WIN')
  46. ini_set('include_path',$GLOBALS['_phpDocumentor_install_dir'].';'.ini_get('include_path'));
  47. else
  48. ini_set('include_path',$GLOBALS['_phpDocumentor_install_dir'].':'.ini_get('include_path'));
  49.  
  50. /**
  51.  * All command-line handling from previous version has moved to here
  52.  *
  53.  * Many settings also moved to phpDocumentor.ini
  54.  */
  55. include("phpDocumentor/Setup.inc.php");
  56.  
  57. $phpdoc new phpDocumentor_setup;
  58. $phpdoc->readCommandLineSettings();
  59. $phpdoc->setupConverters();
  60. $phpdoc->createDocs();
  61. ?>

Documentation generated on Tue, 24 Oct 2006 09:25:28 -0500 by phpDocumentor 1.3.1