removed mods directory from the ATutor codebase
[atutor.git] / mods / phpdoc2 / PhpDocumentor / scripts / create_examples.php
diff --git a/mods/phpdoc2/PhpDocumentor/scripts/create_examples.php b/mods/phpdoc2/PhpDocumentor/scripts/create_examples.php
deleted file mode 100644 (file)
index 862547e..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-<?php\r
-//\r
-// +------------------------------------------------------------------------+\r
-// | phpDocumentor                                                          |\r
-// +------------------------------------------------------------------------+\r
-// | Copyright (c) 2000-2003 Joshua Eichorn, Gregory Beaver                 |\r
-// | Email         jeichorn@phpdoc.org, cellog@phpdoc.org                   |\r
-// | Web           http://www.phpdoc.org                                    |\r
-// | Mirror        http://phpdocu.sourceforge.net/                          |\r
-// | PEAR          http://pear.php.net/package/PhpDocumentor                |\r
-// +------------------------------------------------------------------------+\r
-// | This source file is subject to version 3.00 of the PHP License,        |\r
-// | that is available at http://www.php.net/license/3_0.txt.               |\r
-// | If you did not receive a copy of the PHP license and are unable to     |\r
-// | obtain it through the world-wide-web, please send a note to            |\r
-// | license@php.net so we can mail you a copy immediately.                 |\r
-// +------------------------------------------------------------------------+\r
-//\r
-// ./phpdoc -d /home/jeichorn/phpdoc -dn phpDocumentor -ti "phpDocumentor generated docs" -td templates/DOM/l0l33t -t /tmp/phpdoc_DOM_l0l33t\r
-/**\r
-* This file creates example documentation output of all templates.\r
-* @package phpDocumentor\r
-*/\r
-\r
-/**\r
-* Directory the output should go to.\r
-* Change this variable to an output directory on your computer\r
-* @global      string  $output_directory\r
-*/\r
-$output_directory = "/tmp";\r
-/**\r
-* default package name, used to change all non-included files to this package\r
-* @global      string  $base_package\r
-*/\r
-$base_package = "phpDocumentor";\r
-/**\r
-* Title of the generated documentation\r
-* @global      string  $title\r
-*/\r
-$title = "phpDocumentor Generated Documentation";\r
-/**\r
-* location of the files to parse.  Change to a location on your computer.\r
-* Example:\r
-* <code>\r
-* $parse_directory = "/home/jeichorn/phpdoc";\r
-* </code>\r
-* @global      string  $parse_directory\r
-*/\r
-$parse_directory = "/you-MUST/change-me/to-fit/your-environment";\r
-\r
-/**\r
-* directories to output examples into.\r
-* @global      array   $output\r
-*/\r
-$output = array(\r
-       $output_directory.'/docs/phpdoc_default'                => 'HTML:default:default',\r
-       $output_directory.'/docs/phpdoc_l0l33t'                 => 'HTML:default:l0l33t',\r
-       $output_directory.'/docs/phpdoc_phpdoc_de'              => 'HTML:default:phpdoc.de',\r
-       $output_directory.'/docs/phpdoc_DOM_default'            => 'HTML:default:DOM/default',\r
-       $output_directory.'/docs/phpdoc_DOM_l0l33t'             => 'HTML:default:DOM/l0l33t',\r
-       $output_directory.'/docs/phpdoc_DOM_phpdoc_de'          => 'HTML:default:DOM/phpdoc.de',\r
-       $output_directory.'/docs/phpdoc_smarty_default'         => 'HTML:Smarty:default',\r
-       $output_directory.'/docs/phpdoc_pdf_default'            => 'PDF:default:default',\r
-       $output_directory.'/docs/phpdoc_chm_default'            => 'CHM:default:default',\r
-       );\r
-\r
-foreach($output as $output => $template)\r
-{\r
-       passthru("./phpdoc -d /home/jeichorn/phpdoc -dn $base_package -ti \"$title\" -td $template -t $output");\r
-}\r