diff options
author | Ciro Mattia Gonano <ciromattia@gmail.com> | 2013-09-11 15:56:48 +0200 |
---|---|---|
committer | Ciro Mattia Gonano <ciromattia@gmail.com> | 2013-09-11 15:57:07 +0200 |
commit | 3069eaf35e833ffe4a1c1c7829dd7e168ae27420 (patch) | |
tree | d0c2e4d934cc34ba7d4232f759923b5a257dcb21 /buildscripts/phing/tasks/PradoQuickStartDocs.php | |
parent | b833247ce597ec26159b46c8dfbea7f1e265950b (diff) |
Merge up to r3319
Diffstat (limited to 'buildscripts/phing/tasks/PradoQuickStartDocs.php')
-rw-r--r-- | buildscripts/phing/tasks/PradoQuickStartDocs.php | 85 |
1 files changed, 0 insertions, 85 deletions
diff --git a/buildscripts/phing/tasks/PradoQuickStartDocs.php b/buildscripts/phing/tasks/PradoQuickStartDocs.php deleted file mode 100644 index 1cbc5140..00000000 --- a/buildscripts/phing/tasks/PradoQuickStartDocs.php +++ /dev/null @@ -1,85 +0,0 @@ -<?php -require_once 'phing/Task.php'; - -require_once(dirname(__FILE__).'/../../chmbuilder/ChmQuickstartBuilder.php'); -include(dirname(__FILE__).'/../../../framework/PradoBase.php'); -class Prado extends PradoBase -{ - protected static $app; - - public static function setApplication($application) - { - self::$app=$application; - } - - public static function getApplication() - { - return self::$app; - } - - public static function setPathOfAlias($alias,$path) - { - $aliases = self::getPathAliases(); - if(!isset($aliases[$alias])) - parent::setPathOfAlias($alias,$path); - } -} - -include(dirname(__FILE__).'/../../../framework/prado.php'); - -/** - * Task to run phpDocumentor for PRADO API docs. - */ -class PradoQuickStartDocs extends Task -{ - private $base_dir; - - private $destdir; - - private $page; - - /** - * Set the destination directory for the generated documentation - */ - function setOutput(PhingFile $destdir) - { - $this->destdir = $destdir; - } - - function setPages($page) - { - $this->page = $page; - } - - /** - * Main entrypoint of the task - */ - function main() - { - $output = $this->destdir->getAbsolutePath(); - $base = dirname(__FILE__).'/../../../demos/quickstart/protected/'; - error_reporting(0); - $quickstart= new ChmQuickstartBuilder($base,$output); - - foreach(preg_split('/\s*[, ]+\s*/', $this->page) as $page) - { - $file = str_replace(array('/','.page'), array('_','.html'),$page); - $this->log("Parsing $page"); - file_put_contents($output.'/'.$file, $this->parsePage($quickstart,$page)); - $this->log("Writing $file"); - } - } - - protected function parsePage($quickstart, $page) - { - $_GET['page'] = str_replace(array('/','.page'),array('.',''),$page); - $_GET['notheme'] = 'true'; - $content = $quickstart->parseHtmlContent($quickstart->getApplicationContent()); - //hide prado specific content - $content = str_replace('<body>', '<style type="text/css">.prado-specific {display:none;}</style><body>', $content); - return $content; - } - -} - -?>
\ No newline at end of file |