removed mods directory from the ATutor codebase
[atutor.git] / mods / phpdoc2 / PhpDocumentor / phpDocumentor / phpdoc.inc
diff --git a/mods/phpdoc2/PhpDocumentor/phpDocumentor/phpdoc.inc b/mods/phpdoc2/PhpDocumentor/phpDocumentor/phpdoc.inc
deleted file mode 100644 (file)
index 635cb2c..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-<?php\r
-/**\r
- * startup file\r
- * \r
- * phpDocumentor :: automatic documentation generator\r
- * \r
- * PHP versions 4 and 5\r
- *\r
- * Copyright (c) 2000-2007 Joshua Eichorn, Gregory Beaver\r
- * \r
- * LICENSE:\r
- * \r
- * This library is free software; you can redistribute it\r
- * and/or modify it under the terms of the GNU Lesser General\r
- * Public License as published by the Free Software Foundation;\r
- * either version 2.1 of the License, or (at your option) any\r
- * later version.\r
- * \r
- * This library is distributed in the hope that it will be useful,\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\r
- * Lesser General Public License for more details.\r
- * \r
- * You should have received a copy of the GNU Lesser General Public\r
- * License along with this library; if not, write to the Free Software\r
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\r
- *\r
- * @category  ToolsAndUtilities\r
- * @package   phpDocumentor\r
- * @author    Joshua Eichorn <jeichorn@phpdoc.org>\r
- * @author    Gregory Beaver <cellog@php.net>\r
- * @copyright 2000-2007 Joshua Eichorn, Gregory Beaver\r
- * @license   http://www.opensource.org/licenses/lgpl-license.php LGPL\r
- * @version   CVS: $Id: phpdoc.inc,v 1.4 2007/10/10 01:18:25 ashnazg Exp $\r
- * @link      http://www.phpdoc.org\r
- * @link      http://pear.php.net/PhpDocumentor\r
- * @since     0.1\r
- * @filesource\r
- * @todo      CS cleanup - change package to PhpDocumentor\r
- */\r
-\r
-\r
-// set up include path so we can find all files, no matter what\r
-$a = explode('/', str_replace('\\', '/', dirname(realpath(__FILE__))));\r
-array_pop($a);\r
-$GLOBALS['_phpDocumentor_install_dir'] = join('/', $a);\r
-// add my directory to the include path, and make it first, should fix any errors\r
-if (substr(PHP_OS, 0, 3) == 'WIN')\r
-ini_set('include_path', \r
-    $GLOBALS['_phpDocumentor_install_dir'].';'.ini_get('include_path'));\r
-else\r
-ini_set('include_path', \r
-    $GLOBALS['_phpDocumentor_install_dir'].':'.ini_get('include_path'));\r
-\r
-/**\r
- * All command-line handling from previous version has moved to here\r
- *\r
- * Many settings also moved to phpDocumentor.ini\r
- */\r
-require_once "phpDocumentor/Setup.inc.php";\r
-\r
-$phpdoc = new phpDocumentor_setup;\r
-$phpdoc->readCommandLineSettings();\r
-$phpdoc->setupConverters();\r
-$phpdoc->createDocs();\r
-?>\r