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/PhpDocumentor/phpDocumentor/Converters | |
parent | b833247ce597ec26159b46c8dfbea7f1e265950b (diff) |
Merge up to r3319
Diffstat (limited to 'buildscripts/PhpDocumentor/phpDocumentor/Converters')
747 files changed, 0 insertions, 44759 deletions
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/CHMdefaultConverter.inc b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/CHMdefaultConverter.inc deleted file mode 100755 index e5ad8172..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/CHMdefaultConverter.inc +++ /dev/null @@ -1,1899 +0,0 @@ -<?php -/** - * CHM (Compiled Help Manual) output converter for Smarty Template. - * - * phpDocumentor :: automatic documentation generator - * - * PHP versions 4 and 5 - * - * Copyright (c) 2003-2006 Andrew Eddie, Greg Beaver - * - * LICENSE: - * - * This library is free software; you can redistribute it - * and/or modify it under the terms of the GNU Lesser General - * Public License as published by the Free Software Foundation; - * either version 2.1 of the License, or (at your option) any - * later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * - * @package Converters - * @subpackage CHMdefault - * @author Joshua Eichorn <jeichorn@phpdoc.org> - * @author Greg Beaver <cellog@php.net> - * @copyright 2000-2006 Joshua Eichorn, Gregory Beaver - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL - * @version CVS: $Id: CHMdefaultConverter.inc 234145 2007-04-19 20:20:57Z ashnazg $ - * @filesource - * @link http://www.phpdoc.org - * @link http://pear.php.net/PhpDocumentor - * @since 1.0rc1 - */ -/** - * Generates files that MS HTML Help Worshop can use to create a MS Windows - * compiled help file (CHM) - * - * The free MS HTML Help compiler takes the project file (phpdoc.hhp) and reads - * the table of contents file specified in the project (which is always contents.hhc - * in phpDocumentor). When the converter reaches stable state, it will also - * output an index file index.hhk. The free download for MS HTML Help Workshop - * is available below - * @link http://www.microsoft.com/downloads/release.asp?releaseid=33071 MS HTML Help Workshop download - * @package Converters - * @subpackage CHMdefault - * @author Greg Beaver <cellog@php.net> - * @since 1.0rc1 - * @version $Revision: 234145 $ - */ -class CHMdefaultConverter extends Converter -{ - /** - * CHMdefaultConverter wants elements sorted by type as well as alphabetically - * @see Converter::$sort_page_contents_by_type - * @var boolean - */ - var $sort_page_contents_by_type = true; - /** @var string */ - var $outputformat = 'CHM'; - /** @var string */ - var $name = 'default'; - /** - * indexes of elements by package that need to be generated - * @var array - */ - var $leftindex = array('classes' => true, 'pages' => true, 'functions' => true, 'defines' => false, 'globals' => false); - - /** - * output directory for the current procedural page being processed - * @var string - */ - var $page_dir; - - /** - * target directory passed on the command-line. - * {@link $targetDir} is malleable, always adding package/ and package/subpackage/ subdirectories onto it. - * @var string - */ - var $base_dir; - - /** - * output directory for the current class being processed - * @var string - */ - var $class_dir; - - /** - * array of converted package page names. - * Used to link to the package page in the left index - * @var array Format: array(package => 1) - */ - var $package_pages = array(); - - /** - * controls formatting of parser informative output - * - * Converter prints: - * "Converting /path/to/file.php... Procedural Page Elements... Classes..." - * Since CHMdefaultConverter outputs files while converting, it needs to send a \n to start a new line. However, if there - * is more than one class, output is messy, with multiple \n's just between class file output. This variable prevents that - * and is purely cosmetic - * @var boolean - */ - var $juststarted = false; - - /** - * contains all of the template procedural page element loop data needed for the current template - * @var array - */ - var $current; - - /** - * contains all of the template class element loop data needed for the current template - * @var array - */ - var $currentclass; - var $wrote = false; - var $ric_set = array(); - /** - * Table of Contents entry for index.hhk - * @var array - */ - var $KLinks = array(); - - /** - * sets {@link $base_dir} to $targetDir - * @see Converter() - */ - function CHMdefaultConverter(&$allp, &$packp, &$classes, &$procpages, $po, $pp, $qm, $targetDir, $templateDir, $title) - { - Converter::Converter($allp, $packp, $classes, $procpages,$po, $pp, $qm, $targetDir, $templateDir, $title); - $this->base_dir = $targetDir; - } - - /** - * @deprecated in favor of PHP 4.3.0+ tokenizer-based source highlighting - */ - function unmangle($sourcecode) - { - $sourcecode = str_replace('<code>','<pre>',$sourcecode); - $sourcecode = str_replace('</code>','</pre>',$sourcecode); - $sourcecode = str_replace('<br />',"\n",$sourcecode); - $sourcecode = str_replace(' ',' ',$sourcecode); - $sourcecode = str_replace('<','<',$sourcecode); - $sourcecode = str_replace('>','>',$sourcecode); - $sourcecode = str_replace('&','&',$sourcecode); - return $sourcecode; - } - - /** - * @param string full path to the source file - * @param string fully highlighted source code - */ - function writeSource($path, $value) - { - $templ = &$this->newSmarty(); - $pathinfo = $this->proceduralpages->getPathInfo($path, $this); - $templ->assign('source',$value); - $templ->assign('package',$pathinfo['package']); - $templ->assign('subpackage',$pathinfo['subpackage']); - $templ->assign('name',$pathinfo['name']); - $templ->assign('source_loc',$pathinfo['source_loc']); - $templ->assign('docs',$pathinfo['docs']); - $templ->assign("subdir",'../'); - $templ->register_outputfilter('CHMdefault_outputfilter'); - $this->setTargetDir($this->getFileSourcePath($this->base_dir)); - $this->addSourceTOC($pathinfo['name'],$this->getFileSourceName($path),$pathinfo['package'],$pathinfo['subpackage'], true); - phpDocumentor_out("\n"); - $this->setSourcePaths($path); - $this->writefile($this->getFileSourceName($path).'.html',$templ->fetch('filesource.tpl')); - } - - function writeExample($title, $path, $source) - { - $templ = &$this->newSmarty(); - $templ->assign('source',$source); - if (empty($title)) - { - $title = 'example'; - addWarning(PDERROR_EMPTY_EXAMPLE_TITLE, $path, $title); - } - $templ->assign('title',$title); - $templ->assign('file',$path); - $templ->assign("subdir",'../'); - $templ->register_outputfilter('CHMdefault_outputfilter'); - $pathinfo = $this->proceduralpages->getPathInfo($path, $this); - $this->setTargetDir($this->base_dir . PATH_DELIMITER . '__examplesource'); - $this->addSourceTOC($title,'exsource_'.$path,$pathinfo['package'],$pathinfo['subpackage'], false); - phpDocumentor_out("\n"); - $this->writefile('exsource_'.$path.'.html',$templ->fetch('examplesource.tpl')); - } - - function getExampleLink($path, $title) - { - return $this->returnLink('{$subdir}__examplesource' . PATH_DELIMITER . 'exsource_'.$path.'.html',$title); - } - - function getSourceLink($path) - { - return $this->returnLink('{$subdir}__filesource/' . - $this->getFileSourceName($path).'.html','Source Code for this file'); - } - - /** - * Retrieve a Converter-specific anchor to a segment of a source code file - * parsed via a {@tutorial tags.filesource.pkg} tag. - * @param string full path to source file - * @param string name of anchor - * @param string link text, if this is a link - * @param boolean returns either a link or a destination based on this - * parameter - * @return string link to an anchor, or the anchor - */ - function getSourceAnchor($sourcefile,$anchor,$text = '',$link = false) - { - if ($link) { - return $this->returnLink('{$subdir}__filesource/' . - $this->getFileSourceName($sourcefile) . '.html#a' . $anchor, $text); - } else { - return '<a name="a'.$anchor.'"></a>'; - } - } - - - /** - * Return a line of highlighted source code with formatted line number - * - * If the $path is a full path, then an anchor to the line number will be - * added as well - * @param integer line number - * @param string highlighted source code line - * @param false|string full path to @filesource file this line is a part of, - * if this is a single line from a complete file. - * @return string formatted source code line with line number - */ - function sourceLine($linenumber, $line, $path = false) - { - $extra = ''; - if (strlen(str_replace("\n", '', $line)) == 0) { - $extra = ' '; - } - if ($path) - { - return '<li><div class="src-line">' . $this->getSourceAnchor($path, $linenumber) . - str_replace("\n",'',$line) . $extra . - "</div></li>\n"; - } else - { - return '<li><div class="src-line">' . str_replace("\n",'',$line) . - "$extra</div></li>\n"; - } - } - - /** - * Used to convert the <<code>> tag in a docblock - * @param string - * @param boolean - * @return string - */ - function ProgramExample($example, $tutorial = false, $inlinesourceparse = null/*false*/, - $class = null/*false*/, $linenum = null/*false*/, $filesourcepath = null/*false*/) - { - return $this->PreserveWhiteSpace(parent::ProgramExample($example, $tutorial, $inlinesourceparse, $class, $linenum, $filesourcepath)); - } - - /** - * @param string - */ - function TutorialExample($example) - { - $trans = $this->template_options['desctranslate']; - $this->template_options['desctranslate'] = array(); - $example = '<ol>' . parent::TutorialExample($example) - .'</ol>'; - $this->template_options['desctranslate'] = $trans; - if (!isset($this->template_options['desctranslate'])) return $example; - if (!isset($this->template_options['desctranslate']['code'])) return $example; - $example = $this->template_options['desctranslate']['code'] . $example; - if (!isset($this->template_options['desctranslate']['/code'])) return $example; - return $example . $this->template_options['desctranslate']['/code']; - } - - function getCurrentPageLink() - { - return $this->curname . '.html'; - } - - /** - * Uses htmlspecialchars() on the input - */ - function postProcess($text) - { - if ($this->highlightingSource) { - return str_replace(array(' ',"\t"), array(' ', ' '), - htmlspecialchars($text)); - } - return htmlspecialchars($text); - } - - /** - * Use the template tutorial_toc.tpl to generate a table of contents for HTML - * @return string table of contents formatted for use in the current output format - * @param array format: array(array('tagname' => section, 'link' => returnsee link, 'id' => anchor name, 'title' => from title tag),...) - */ - function formatTutorialTOC($toc) - { - $template = &$this->newSmarty(); - $template->assign('toc',$toc); - return $template->fetch('tutorial_toc.tpl'); - } - - function &SmartyInit(&$templ) - { - if (!isset($this->package_index)) - foreach($this->all_packages as $key => $val) - { - if (isset($this->pkg_elements[$key])) - { - if (!isset($start)) $start = $key; - $this->package_index[] = array('link' => "li_$key.html", 'title' => $key); - } - } - $templ->assign("packageindex",$this->package_index); - $templ->assign("subdir",''); - return $templ; - } - - - /** - * Writes out the template file of {@link $class_data} and unsets the template to save memory - * @see registerCurrentClass() - * @see parent::endClass() - */ - function endClass() - { - $a = '../'; - if (!empty($this->subpackage)) $a .= '../'; - if ($this->juststarted) - { - $this->juststarted = false; - phpDocumentor_out("\n"); - flush(); - } - $this->setTargetDir($this->base_dir . PATH_DELIMITER . $this->class_dir); - $this->class_data->assign("subdir",$a); - $this->class_data->register_outputfilter('CHMdefault_outputfilter'); - $this->addTOC($this->class,$this->class,$this->package,$this->subpackage, true); - $this->writefile($this->class . '.html',$this->class_data->fetch('class.tpl')); - unset($this->class_data); - } - - /** - * Writes out the template file of {@link $page_data} and unsets the template to save memory - * @see registerCurrent() - * @see parent::endPage() - */ - function endPage() - { - $this->package = $this->curpage->package; - $this->subpackage = $this->curpage->subpackage; - $a = '../'; - if (!empty($this->subpackage)) $a .= '../'; - $this->setTargetDir($this->base_dir . PATH_DELIMITER . $this->page_dir); - $this->page_data->assign("package",$this->package); - $this->page_data->assign("subdir",$a); - $this->page_data->register_outputfilter('CHMdefault_outputfilter'); - $this->addTOC($this->curpage->file,$this->page,$this->package,$this->subpackage); - $this->writefile($this->page . '.html',$this->page_data->fetch('page.tpl')); - unset($this->page_data); - } - - /** - * @param string - * @param string - * @return string <a href="'.$link.'">'.$text.'</a> - */ - function returnLink($link,$text) - { - return '<a href="'.$link.'">'.$text.'</a>'; - } - - /** - * CHMdefaultConverter chooses to format both package indexes and the complete index here - * - * This function formats output for the elementindex.html and pkgelementindex.html template files. It then - * writes them to the target directory - * @see generateElementIndex(), generatePkgElementIndex() - */ - function formatPkgIndex() - { - list($package_indexes,$packages,$mletters) = $this->generatePkgElementIndexes(); - for($i=0;$i<count($package_indexes);$i++) - { - $template = &$this->newSmarty(); - $this->package = $package_indexes[$i]['package']; - $this->subpackage = ''; - $template->assign("index",$package_indexes[$i]['pindex']); - $template->assign("package",$package_indexes[$i]['package']); - $template->assign("letters",$mletters[$package_indexes[$i]['package']]); - $template->assign("title","Package ".$package_indexes[$i]['package']." Element Index"); - $template->assign("subdir",'../'); - $template->register_outputfilter('CHMdefault_outputfilter'); - $this->setTargetDir($this->base_dir . PATH_DELIMITER . $package_indexes[$i]['package']); - $this->addTOC($package_indexes[$i]['package']." Alphabetical Index",'elementindex_'.$package_indexes[$i]['package'],$package_indexes[$i]['package'],''); - $this->writefile('elementindex_'.$package_indexes[$i]['package'].'.html',$template->fetch('pkgelementindex.tpl')); - } - phpDocumentor_out("\n"); - flush(); - } - - /** - * CHMdefaultConverter uses this function to format template index.html and packages.html - * - * This function generates the package list from {@link $all_packages}, eliminating any - * packages that don't have any entries in their package index (no files at all, due to @ignore - * or other factors). Then it uses the default package name as the first package index to display. - * It sets the right pane to be either a blank file with instructions on making package-level docs, - * or the package-level docs for the default package. - * @global string Used to set the starting package to display - */ - function formatIndex() - { - global $phpDocumentor_DefaultPackageName; - list($elindex,$mletters) = $this->generateElementIndex(); - $template = &$this->newSmarty(); - $template->assign("index",$elindex); - $template->assign("letters",$mletters); - $template->assign("title","Element Index"); - $template->assign("date",date("r",time())); - $template->register_outputfilter('CHMdefault_outputfilter'); - phpDocumentor_out("\n"); - flush(); - $this->setTargetDir($this->base_dir); - $this->addTOC("Alphabetical Index Of All Elements",'elementindex',"Index",''); - $this->writefile('elementindex.html',$template->fetch('elementindex.tpl')); - usort($this->package_index,"CHMdefault_pindexcmp"); - $index = &$this->newSmarty(); - foreach($this->all_packages as $key => $val) - { - if (isset($this->pkg_elements[$key])) - { - if (!isset($start)) $start = $key; - if (!isset($this->package_pages[$key])) $this->writeNewPPage($key); - } - } - $this->setTargetDir($this->base_dir); - // Created index.html - if (isset($this->pkg_elements[$phpDocumentor_DefaultPackageName])) $start = $phpDocumentor_DefaultPackageName; - $this->package = $start; - $this->subpackage = ''; - $setalready = false; - if (isset($this->tutorials[$start]['']['pkg'])) - { - foreach($this->tutorials[$start]['']['pkg'] as $tute) - { - if ($tute->name == $start . '.pkg') - { - $setalready = true; - $this->addTOC("Start page",$start.'/tutorial_'.$tute->name,"Index",''); - } - } - } - if (!$setalready) - { - if (isset($this->package_pages[$start])) - { - $this->addTOC("Start page",'package_'.$start,"Index",''); - } - else - { - $index->assign("blank","blank"); - $blank = &$this->newSmarty(); - $blank->assign('package',$phpDocumentor_DefaultPackageName); - $this->addTOC("Start page",'blank',"Index",''); - $this->writefile("blank.html",$blank->fetch('blank.tpl')); - Converter::writefile('index.html',$blank->fetch('tutorial.tpl')); - } - } - phpDocumentor_out("\n"); - flush(); - - unset($index); - } - - function writeNewPPage($key) - { - return; - $template = &$this->newSmarty(); - $this->package = $key; - $this->subpackage = ''; - $template->assign("date",date("r",time())); - $template->assign("title",$this->title); - $template->assign("package",$key); - $template->register_outputfilter('CHMdefault_outputfilter'); - phpDocumentor_out("\n"); - flush(); - $this->setTargetDir($this->base_dir); - - $this->addTOC("$key Index","li_$key",$key,''); - $this->writefile("li_$key.html",$template->fetch('index.tpl')); - unset($template); - } - - /** - * Generate indexes for li_package.html and classtree output files - * - * This function generates the li_package.html files from the template file left.html. It does this by - * iterating through each of the $page_elements, $class_elements and $function_elements arrays to retrieve - * the pre-sorted {@link abstractLink} descendants needed for index generation. Conversion of these links to - * text is done by {@link returnSee()}. The {@link $local} parameter is set to false to ensure that paths are correct. - * - * Then it uses {@link generateFormattedClassTrees()} to create class trees from the template file classtrees.html. Output - * filename is classtrees_packagename.html. This function also unsets {@link $elements} and {@link $pkg_elements} to free - * up the considerable memory these two class vars use - * @see $page_elements, $class_elements, $function_elements - */ - function formatLeftIndex() - { - phpDocumentor_out("\n"); - flush(); - $this->setTargetDir($this->base_dir); - if (0)//!isset($this->left)) - { - debug("Nothing parsed, check the command-line"); - die(); - } - foreach($this->all_packages as $package => $rest) - { - if (!isset($this->pkg_elements[$package])) continue; - - // Create class tree page - $template = &$this->newSmarty(); - $template->assign("classtrees",$this->generateFormattedClassTrees($package)); - $template->assign("package",$package); - $template->assign("date",date("r",time())); - $template->register_outputfilter('CHMdefault_outputfilter'); - $this->addTOC("$package Class Trees","classtrees_$package",$package,''); - $this->writefile("classtrees_$package.html",$template->fetch('classtrees.tpl')); - phpDocumentor_out("\n"); - flush(); - } - // free up considerable memory - unset($this->elements); - unset($this->pkg_elements); - } - - /** - * This function takes an {@link abstractLink} descendant and returns an html link - * - * @param abstractLink a descendant of abstractlink should be passed, and never text - * @param string text to display in the link - * @param boolean this parameter is not used, and is deprecated - * @param boolean determines whether the returned text is enclosed in an <a> tag - */ - function returnSee(&$element, $eltext = false, $with_a = true) - { - if (!is_object($element) || !$element) return false; - if (!$with_a) return $this->getId($element, false); - if (!$eltext) - { - $eltext = ''; - switch($element->type) - { - case 'tutorial' : - $eltext = strip_tags($element->title); - break; - case 'method' : - case 'var' : - case 'const' : - $eltext .= $element->class.'::'; - case 'page' : - case 'define' : - case 'class' : - case 'function' : - case 'global' : - default : - $eltext .= $element->name; - if ($element->type == 'function' || $element->type == 'method') $eltext .= '()'; - break; - } - } - return '<a href="'.$this->getId($element).'">'.$eltext.'</a>'; - } - - function getId($element, $fullpath = true) - { - if (phpDocumentor_get_class($element) == 'parserdata') - { - $element = $this->addLink($element->parent); - $elp = $element->parent; - } elseif (is_a($element, 'parserbase')) - { - $elp = $element; - $element = $this->addLink($element); - } - $c = ''; - if (!empty($element->subpackage)) - { - $c = '/'.$element->subpackage; - } - $b = '{$subdir}'; - switch ($element->type) - { - case 'page' : - if ($fullpath) - return $b.$element->package.$c.'/'.$element->fileAlias.'.html'; - return 'top'; - break; - case 'define' : - case 'global' : - case 'function' : - if ($fullpath) - return $b.$element->package.$c.'/'.$element->fileAlias.'.html#'.$element->type.$element->name; - return $element->type.$element->name; - break; - case 'class' : - if ($fullpath) - return $b.$element->package.$c.'/'.$element->name.'.html'; - return 'top'; - break; - case 'method' : - case 'var' : - case 'const' : - if ($fullpath) - return $b.$element->package.$c.'/'.$element->class.'.html#'.$element->type.$element->name; - return $element->type.$element->name; - break; - case 'tutorial' : - $d = ''; - if ($element->section) - { - $d = '#'.$element->section; - } - return $b.$element->package.$c.'/tutorial_'.$element->name.'.html'.$d; - } - } - - function ConvertTodoList() - { - $todolist = array(); - foreach($this->todoList as $package => $alltodos) - { - foreach($alltodos as $todos) - { - $converted = array(); - $converted['link'] = $this->returnSee($todos[0]); - if (!is_array($todos[1])) - { - $converted['todos'][] = $todos[1]->Convert($this); - } else - { - foreach($todos[1] as $todo) - { - $converted['todos'][] = $todo->Convert($this); - } - } - $todolist[$package][] = $converted; - } - } - $templ = &$this->newSmarty(); - $templ->assign('todos',$todolist); - $templ->register_outputfilter('CHMdefault_outputfilter'); - $this->setTargetDir($this->base_dir); - $this->addTOC('Todo List','todolist','Index','',false,true); - $this->addKLink('Todo List', 'todolist', '', 'Development'); - $this->writefile('todolist.html',$templ->fetch('todolist.tpl')); - } - - /** - * Convert README/INSTALL/CHANGELOG file contents to output format - * @param README|INSTALL|CHANGELOG - * @param string contents of the file - */ - function Convert_RIC($name, $contents) - { - $template = &$this->newSmarty(); - $template->assign('contents',$contents); - $template->assign('name',$name); - $this->setTargetDir($this->base_dir); - $this->addTOC($name,'ric_'.$name,'Index','',false,true); - $this->addKLink($name, 'ric_'.$name, '', 'Development'); - $this->writefile('ric_'.$name . '.html',$template->fetch('ric.tpl')); - $this->ric_set[$name] = true; - } - - /** - * Create errors.html template file output - * - * This method takes all parsing errors and warnings and spits them out ordered by file and line number. - * @global ErrorTracker We'll be using it's output facility - */ - function ConvertErrorLog() - { - global $phpDocumentor_errors; - $allfiles = array(); - $files = array(); - $warnings = $phpDocumentor_errors->returnWarnings(); - $errors = $phpDocumentor_errors->returnErrors(); - $template = &$this->newSmarty(); - foreach($warnings as $warning) - { - $file = '##none'; - $linenum = 'Warning'; - if ($warning->file) - { - $file = $warning->file; - $allfiles[$file] = 1; - $linenum .= ' on line '.$warning->linenum; - } - $files[$file]['warnings'][] = array('name' => $linenum, 'listing' => $warning->data); - } - foreach($errors as $error) - { - $file = '##none'; - $linenum = 'Error'; - if ($error->file) - { - $file = $error->file; - $allfiles[$file] = 1; - $linenum .= ' on line '.$error->linenum; - } - $files[$file]['errors'][] = array('name' => $linenum, 'listing' => $error->data); - } - $i=1; - $af = array(); - foreach($allfiles as $file => $num) - { - $af[$i++] = $file; - } - $allfiles = $af; - usort($allfiles,'strnatcasecmp'); - $allfiles[0] = "Post-parsing"; - foreach($allfiles as $i => $a) - { - $allfiles[$i] = array('file' => $a); - } - $out = array(); - foreach($files as $file => $data) - { - if ($file == '##none') $file = 'Post-parsing'; - $out[$file] = $data; - } - $template->assign("files",$allfiles); - $template->assign("all",$out); - $template->assign("title","phpDocumentor Parser Errors and Warnings"); - $this->setTargetDir($this->base_dir); - $this->writefile("errors.html",$template->fetch('errors.tpl')); - unset($template); - phpDocumentor_out("\n\nTo view errors and warnings, look at ".$this->base_dir. PATH_DELIMITER . "errors.html\n"); - flush(); - } - - function getCData($value) - { - return '<pre>'.htmlentities($value).'</pre>'; - } - - function getTutorialId($package,$subpackage,$tutorial,$id) - { - return $id; - } - - /** - * Converts package page and sets its package as used in {@link $package_pages} - * @param parserPackagePage - */ - function convertPackagepage(&$element) - { - phpDocumentor_out("\n"); - flush(); - $this->package = $element->package; - $this->subpackage = ''; - $contents = $element->Convert($this); - $this->package_pages[$element->package] = str_replace('{$subdir}','../',$contents); - phpDocumentor_out("\n"); - flush(); - $this->setTargetDir($this->base_dir . PATH_DELIMITER . $element->package); - $this->addTOC($element->package." Tutorial",'package_'.$element->package,$element->package,''); - $this->writeFile('package_'.$element->package.'.html',str_replace('{$subdir}','../',$contents)); - $this->setTargetDir($this->base_dir); - Converter::writefile('index.html',str_replace('{$subdir}','',$contents)); - $this->addKLink($element->package." Tutorial", 'package_'.$element->package, '', 'Tutorials'); - } - - /** - * @param parserTutorial - */ - function convertTutorial(&$element) - { - phpDocumentor_out("\n"); - flush(); - $template = &parent::convertTutorial($element); - $a = '../'; - if ($element->subpackage) $a .= '../'; - $template->assign('subdir',$a); - $template->register_outputfilter('CHMdefault_outputfilter'); - $contents = $template->fetch('tutorial.tpl'); - if ($element->package == $GLOBALS['phpDocumentor_DefaultPackageName'] && empty($element->subpackage) && ($element->name == $element->package . '.pkg')) - { - $template->assign('subdir',''); - $this->setTargetDir($this->base_dir); - Converter::writefile('index.html',$template->fetch('tutorial.tpl')); - } - $a = ''; - if ($element->subpackage) $a = PATH_DELIMITER . $element->subpackage; - phpDocumentor_out("\n"); - flush(); - $this->setTargetDir($this->base_dir . PATH_DELIMITER . $element->package . $a); - $this->addTOC($a = strip_tags($element->getTitle($this)), 'tutorial_'.$element->name, - $element->package, $element->subpackage, false, true); - $this->writeFile('tutorial_'.$element->name.'.html',$contents); - $this->addKLink($element->getTitle($this), $element->package . $a . PATH_DELIMITER . 'tutorial_'.$element->name, - '', 'Tutorials'); - } - - /** - * Converts class for template output - * @see prepareDocBlock(), generateChildClassList(), generateFormattedClassTree(), getFormattedConflicts() - * @see getFormattedInheritedMethods(), getFormattedInheritedVars() - * @param parserClass - */ - function convertClass(&$element) - { - parent::convertClass($element); - $this->class_dir = $element->docblock->package; - if (!empty($element->docblock->subpackage)) $this->class_dir .= PATH_DELIMITER . $element->docblock->subpackage; - $a = '../'; - if ($element->docblock->subpackage != '') $a = "../$a"; - - $this->class_data->assign('subdir',$a); - $this->class_data->assign("title","Docs For Class " . $element->getName()); - $this->class_data->assign("page",$element->getName() . '.html'); - $this->addKLink($element->name, $this->class_dir . PATH_DELIMITER . $this->class, '', 'Classes'); - } - - - /** - * Converts class variables for template output - * @see prepareDocBlock(), getFormattedConflicts() - * @param parserDefine - */ - function convertVar(&$element) - { - parent::convertVar($element, array('var_dest' => $this->getId($element,false))); - $this->setTargetDir($this->base_dir . PATH_DELIMITER . $this->class_dir); - $this->addKLink($element->name, $this->class_dir . PATH_DELIMITER .$this->class, $this->getId($element,false), $element->class.' Properties'); - } - - /** - * Converts class constants for template output - * @see prepareDocBlock(), getFormattedConflicts() - * @param parserDefine - */ - function convertConst(&$element) - { - parent::convertConst($element, array('const_dest' => $this->getId($element,false))); - $this->setTargetDir($this->base_dir . PATH_DELIMITER . $this->class_dir); - $this->addKLink($element->name, $this->class_dir . PATH_DELIMITER .$this->class, $this->getId($element,false), $element->class.' Constants'); - } - - /** - * Converts class methods for template output - * @see prepareDocBlock(), getFormattedConflicts() - * @param parserDefine - */ - function convertMethod(&$element) - { - parent::convertMethod($element, array('method_dest' => $this->getId($element,false))); - $this->setTargetDir($this->base_dir . PATH_DELIMITER . $this->class_dir); - $this->addKLink($element->name, $this->class_dir . PATH_DELIMITER .$this->class, $this->getId($element,false), $element->class.' Methods'); - } - - /** - * Converts function for template output - * @see prepareDocBlock(), parserFunction::getFunctionCall(), getFormattedConflicts() - * @param parserFunction - */ - function convertFunction(&$element) - { - $funcloc = $this->getId($this->addLink($element)); - parent::convertFunction($element,array('function_dest' => $this->getId($element,false))); - $this->setTargetDir($this->base_dir . PATH_DELIMITER . $this->page_dir); - $this->addKLink($element->name, $this->page_dir . PATH_DELIMITER . $this->page, $this->getId($element,false), 'Functions'); - } - - /** - * Converts include elements for template output - * @see prepareDocBlock() - * @param parserInclude - */ - function convertInclude(&$element) - { - parent::convertInclude($element, array('include_file' => '_'.strtr($element->getValue(),array('"' => '', "'" => '','.' => '_')))); - $this->setTargetDir($this->base_dir . PATH_DELIMITER . $this->page_dir); - $this->addKLink(str_replace('"', '', $element->getValue()), $this->page_dir . PATH_DELIMITER . $this->page, '', ucfirst($element->name)); - } - - /** - * Converts defines for template output - * @see prepareDocBlock(), getFormattedConflicts() - * @param parserDefine - */ - function convertDefine(&$element) - { - parent::convertDefine($element, array('define_link' => $this->getId($element,false))); - $this->setTargetDir($this->base_dir . PATH_DELIMITER . $this->page_dir); - $this->addKLink($element->name, $this->page_dir . PATH_DELIMITER . $this->page, $this->getId($element,false), 'Constants'); - } - - /** - * Converts global variables for template output - * @param parserGlobal - */ - function convertGlobal(&$element) - { - parent::convertGlobal($element, array('global_link' => $this->getId($element,false))); - $this->setTargetDir($this->base_dir . PATH_DELIMITER . $this->page_dir); - $this->addKLink($element->name, $this->page_dir . PATH_DELIMITER . $this->page, $this->getId($element,false), 'Global Variables'); - } - - /** - * converts procedural pages for template output - * @see prepareDocBlock(), getClassesOnPage() - * @param parserData - */ - function convertPage(&$element) - { - parent::convertPage($element); - $this->juststarted = true; - $this->page_dir = $element->parent->package; - if (!empty($element->parent->subpackage)) $this->page_dir .= PATH_DELIMITER . $element->parent->subpackage; - // registering stuff on the template - $this->page_data->assign("page",$this->getPageName($element) . '.html'); - $this->page_data->assign("title","Docs for page ".$element->parent->getFile()); - $this->setTargetDir($this->base_dir . PATH_DELIMITER . $this->page_dir); - $this->addKLink($element->parent->file, $this->page_dir . PATH_DELIMITER . $this->page, '', 'Files'); - } - - function getPageName(&$element) - { - if (phpDocumentor_get_class($element) == 'parserpage') return '_'.$element->getName(); - return '_'.$element->parent->getName(); - } - - /** - * returns an array containing the class inheritance tree from the root object to the class - * - * @param parserClass class variable - * @return array Format: array(root,child,child,child,...,$class) - * @uses parserClass::getParentClassTree() - */ - - function generateFormattedClassTree($class) - { - $tree = $class->getParentClassTree($this); - $out = ''; - if (count($tree) - 1) - { - $result = array($class->getName()); - $parent = $tree[$class->getName()]; - $distance[] = ''; - while ($parent) - { - $x = $parent; - if (is_object($parent)) - { - $subpackage = $parent->docblock->subpackage; - $package = $parent->docblock->package; - $x = $parent; - $x = $parent->getLink($this); - if (!$x) $x = $parent->getName(); - } - $result[] = - $x; - $distance[] = - "\n%s|\n" . - "%s--"; - if (is_object($parent)) - $parent = $tree[$parent->getName()]; - elseif (isset($tree[$parent])) - $parent = $tree[$parent]; - } - $nbsp = ' '; - for($i=count($result) - 1;$i>=0;$i--) - { - $my_nbsp = ''; - for($j=0;$j<count($result) - $i;$j++) $my_nbsp .= $nbsp; - $distance[$i] = sprintf($distance[$i],$my_nbsp,$my_nbsp); - } - return array('classes'=>array_reverse($result),'distance'=>array_reverse($distance)); - } else - { - return array('classes'=>$class->getName(),'distance'=>array('')); - } - } - - /** @access private */ - function sortVar($a, $b) - { - return strnatcasecmp($a->getName(),$b->getName()); - } - - /** @access private */ - function sortMethod($a, $b) - { - if ($a->isConstructor) return -1; - if ($b->isConstructor) return 1; - return strnatcasecmp($a->getName(),$b->getName()); - } - - /** - * returns a template-enabled array of class trees - * - * @param string $package package to generate a class tree for - * @see $roots, HTMLConverter::getRootTree() - */ - function generateFormattedClassTrees($package) - { - if (!isset($this->roots['normal'][$package]) && - !isset($this->roots['special'][$package])) { - return array(); - } - $trees = array(); - if (isset($this->roots['normal'][$package])) { - $roots = $this->roots['normal'][$package]; - for($i=0;$i<count($roots);$i++) - { - $root = $this->classes->getClassByPackage($roots[$i], $package); - if ($root && $root->isInterface()) { - continue; - } - $trees[] = array('class' => $roots[$i],'class_tree' => "<ul>\n".$this->getRootTree($this->getSortedClassTreeFromClass($roots[$i],$package,''),$package)."</ul>\n"); - } - } - if (isset($this->roots['special'][$package])) { - $roots = $this->roots['special'][$package]; - foreach ($roots as $parent => $classes) { - $thistree = ''; - foreach ($classes as $classinfo) { - $root = $this->classes->getClassByPackage($classinfo, $package); - if ($root && $root->isInterface()) { - continue; - } - $thistree .= - $this->getRootTree( - $this->getSortedClassTreeFromClass( - $classinfo, - $package, - ''), - $package, - true); - } - if (!$thistree) { - continue; - } - $trees[] = array( - 'class' => $parent, - 'class_tree' => "<ul>\n" . $thistree . "</ul>\n" - ); - } - } - return $trees; - } - - /** - * returns a template-enabled array of interface inheritance trees - * - * @param string $package package to generate a class tree for - * @see $roots, HTMLConverter::getRootTree() - */ - function generateFormattedInterfaceTrees($package) - { - if (!isset($this->roots['normal'][$package]) && - !isset($this->roots['special'][$package])) { - return array(); - } - $trees = array(); - if (isset($this->roots['normal'][$package])) { - $roots = $this->roots['normal'][$package]; - for($i=0;$i<count($roots);$i++) - { - $root = $this->classes->getClassByPackage($roots[$i], $package); - if ($root && !$root->isInterface()) { - continue; - } - $trees[] = array('class' => $roots[$i],'class_tree' => "<ul>\n".$this->getRootTree($this->getSortedClassTreeFromClass($roots[$i],$package,''),$package)."</ul>\n"); - } - } - if (isset($this->roots['special'][$package])) { - $roots = $this->roots['special'][$package]; - foreach ($roots as $parent => $classes) { - $thistree = ''; - foreach ($classes as $classinfo) { - $root = $this->classes->getClassByPackage($classinfo, $package); - if ($root && !$root->isInterface()) { - continue; - } - $thistree .= - $this->getRootTree( - $this->getSortedClassTreeFromClass( - $classinfo, - $package, - ''), - $package, - true); - } - if (!$thistree) { - continue; - } - $trees[] = array( - 'class' => $parent, - 'class_tree' => "<ul>\n" . $thistree . "</ul>\n" - ); - } - } - return $trees; - } - - /** - * return formatted class tree for the Class Trees page - * - * @param array $tree output from {@link getSortedClassTreeFromClass()} - * @param string $package package - * @param boolean $nounknownparent if true, an object's parent will not be checked - * @see Classes::$definitechild, generateFormattedClassTrees() - * @return string - */ - function getRootTree($tree, $package, $noparent = false) - { - if (!$tree) return ''; - $my_tree = ''; - $cur = '#root'; - $lastcur = array(false); - $kids = array(); - $dopar = false; - if (!$noparent && $tree[$cur]['parent']) - { - $dopar = true; - if (!is_object($tree[$cur]['parent'])) - { -// debug("parent ".$tree[$cur]['parent']." not found"); - $my_tree .= '<li>' . $tree[$cur]['parent'] .'<ul>'; - } - else - { -// debug("parent ".$this->returnSee($tree[$cur]['parent'])." in other package"); - $my_tree .= '<li>' . $this->returnSee($tree[$cur]['parent']); - if ($tree[$cur]['parent']->package != $package) $my_tree .= ' <b>(Different package)</b><ul>'; - } - } - do - { -// fancy_debug($cur,$lastcur,$kids); - if (count($tree[$cur]['children'])) - { -// debug("$cur has children"); - if (!isset($kids[$cur])) - { -// debug("set $cur kids"); - $kids[$cur] = 1; - $my_tree .= '<li>'.$this->returnSee($tree[$cur]['link']); - $my_tree .= '<ul>'."\n"; - } - array_push($lastcur,$cur); - list(,$cur) = each($tree[$cur]['children']); -// var_dump('listed',$cur); - if ($cur) - { - $cur = $cur['package'] . '#' . $cur['class']; -// debug("set cur to child $cur"); -// $my_tree .= '<li>'.$this->returnSee($tree[$cur]['link']); - continue; - } else - { -// debug("end of children for $cur"); - $cur = array_pop($lastcur); - $cur = array_pop($lastcur); - $my_tree .= '</ul></li>'."\n"; - if ($dopar && ($cur == '#root' || !$cur)) $my_tree .= '</ul></li>'; - } - } else - { -// debug("$cur has no children"); - $my_tree .= '<li>'.$this->returnSee($tree[$cur]['link'])."</li>"; - if ($dopar && $cur == '#root') $my_tree .= '</ul></li>'; - $cur = array_pop($lastcur); - } - } while ($cur); - return $my_tree; - } - /** - * Generate indexing information for given element - * - * @param parserElement descendant of parserElement - * @see generateElementIndex() - * @return array - */ - function getIndexInformation($elt) - { - $Result['type'] = $elt->type; - $Result['file_name'] = $elt->file; - $Result['path'] = $elt->getPath(); - - if (isset($elt->docblock)) - { - $Result['description'] = $elt->docblock->getSDesc($this); - - if ($elt->docblock->hasaccess) - $Result['access'] = $elt->docblock->tags['access'][0]->value; - else - $Result['access'] = 'public'; - - $Result['abstract'] = isset ($elt->docblock->tags['abstract'][0]); - } - else - $Result['description'] = ''; - - $aa = $Result['description']; - if (!empty($aa)) $aa = "<br> $aa"; - - switch($elt->type) - { - case 'class': - $Result['name'] = $elt->getName(); - $Result['title'] = 'Class'; - $Result['link'] = $this->getClassLink($elt->getName(), - $elt->docblock->package, - $elt->getPath(), - $elt->getName()); - $Result['listing'] = 'in file '.$elt->file.', class '.$Result['link']."$aa"; - break; - case 'define': - $Result['name'] = $elt->getName(); - $Result['title'] = 'Constant'; - $Result['link'] = $this->getDefineLink($elt->getName(), - $elt->docblock->package, - $elt->getPath(), - $elt->getName()); - $Result['listing'] = 'in file '.$elt->file.', constant '.$Result['link']."$aa"; - break; - case 'global': - $Result['name'] = $elt->getName(); - $Result['title'] = 'Global'; - $Result['link'] = $this->getGlobalLink($elt->getName(), - $elt->docblock->package, - $elt->getPath(), - $elt->getName()); - $Result['listing'] = 'in file '.$elt->file.', global variable '.$Result['link']."$aa"; - break; - case 'function': - $Result['name'] = $elt->getName(); - $Result['title'] = 'Function'; - $Result['link'] = $this->getFunctionLink($elt->getName(), - $elt->docblock->package, - $elt->getPath(), - $elt->getName().'()'); - $Result['listing'] = 'in file '.$elt->file.', function '.$Result['link']."$aa"; - break; - case 'method': - $Result['name'] = $elt->getName(); - $Result['title'] = 'Method'; - $Result['link'] = $this->getMethodLink($elt->getName(), - $elt->class, - $elt->docblock->package, - $elt->getPath(), - $elt->class.'::'.$elt->getName().'()' - ); - if ($elt->isConstructor) $Result['constructor'] = 1; - $Result['listing'] = 'in file '.$elt->file.', method '.$Result['link']."$aa"; - break; - case 'var': - $Result['name'] = $elt->getName(); - $Result['title'] = 'Variable'; - $Result['link'] = $this->getVarLink($elt->getName(), - $elt->class, - $elt->docblock->package, - $elt->getPath(), - $elt->class.'::'.$elt->getName()); - $Result['listing'] = 'in file '.$elt->file.', variable '.$Result['link']."$aa"; - break; - case 'const': - $Result['name'] = $elt->getName(); - $Result['title'] = 'Variable'; - $Result['link'] = $this->getConstLink($elt->getName(), - $elt->class, - $elt->docblock->package, - $elt->getPath(), - $elt->class.'::'.$elt->getName()); - $Result['listing'] = 'in file '.$elt->file.', class constant '.$Result['link']."$aa"; - break; - case 'page': - $Result['name'] = $elt->getFile(); - $Result['title'] = 'Page'; - $Result['link'] = $this->getPageLink($elt->getFile(), - $elt->package, - $elt->getPath(), - $elt->getFile()); - $Result['listing'] = 'procedural page '.$Result['link']; - break; - case 'include': - $Result['name'] = $elt->getName(); - $Result['title'] = 'Include'; - $Result['link'] = $elt->getValue(); - $Result['listing'] = 'include '.$Result['name']; - break; - } - - return $Result; - } - /** - * Generate alphabetical index of all elements - * - * @see $elements, walk() - */ - function generateElementIndex() - { - $elementindex = array(); - $letters = array(); - $used = array(); - foreach($this->elements as $letter => $nutoh) - { - foreach($this->elements[$letter] as $i => $yuh) - { - if ($this->elements[$letter][$i]->type != 'include') - { - if (!isset($used[$letter])) - { - $letters[]['letter'] = $letter; - $elindex['letter'] = $letter; - $used[$letter] = 1; - } - - $elindex['index'][] = $this->getIndexInformation($this->elements[$letter][$i]); - } - } - if (isset($elindex['index'])) - { - $elementindex[] = $elindex; - } else - { - unset($letters[count($letters) - 1]); - } - $elindex = array(); - } - return array($elementindex,$letters); - } - - function setTemplateDir($dir) - { - Converter::setTemplateDir($dir); - $this->smarty_dir = $this->templateDir; - } - - function copyMediaRecursively($media,$targetdir,$subdir = '') - { - $versionControlDirectories = array ('CVS', 'media/CVS', 'media\\CVS', '.svn', 'media/.svn', 'media\\.svn'); - if (!is_array($media)) { - return; - } - foreach($media as $dir => $files) - { - if ($dir === '/') - { - $this->copyMediaRecursively($files,$targetdir); - } else - { - if (!is_numeric($dir)) - { - if (in_array($dir, $versionControlDirectories)) - { - // skip it entirely - } - else - { - // create the subdir - phpDocumentor_out("creating $targetdir" . PATH_DELIMITER . "$dir\n"); - Converter::setTargetDir($targetdir . PATH_DELIMITER . $dir); - if (!empty($subdir)) - { - $subdir .= PATH_DELIMITER; - } - $this->copyMediaRecursively($files,"$targetdir/$dir",$subdir . $dir); - } - } - else - { - // copy the file - phpDocumentor_out("copying $targetdir" . PATH_DELIMITER . $files['file']."\n"); - $this->copyFile($files['file'],$subdir); - } - } - } - } - - /** - * calls the converter setTargetDir, and then copies any template images and the stylesheet if they haven't been copied - * @see Converter::setTargetDir() - */ - function setTargetDir($dir) - { - Converter::setTargetDir($dir); - if ($this->wrote) return; - $this->wrote = true; - $template_images = array(); - $stylesheets = array(); - $tdir = $dir; - $dir = $this->templateDir; - $this->templateDir = $this->templateDir.'templates/'; - $info = new Io; - $this->copyMediaRecursively($info->getDirTree($this->templateDir.'media',$this->templateDir),$tdir); - } - - /** - * Generate alphabetical index of all elements by package and subpackage - * - * @param string $package name of a package - * @see $pkg_elements, walk(), generatePkgElementIndexes() - */ - function generatePkgElementIndex($package) - { -// var_dump($this->pkg_elements[$package]); - $elementindex = array(); - $letters = array(); - $letterind = array(); - $used = array(); - $subp = ''; - foreach($this->pkg_elements[$package] as $subpackage => $els) - { - if (empty($els)) continue; - if (!empty($subpackage)) $subp = " (<b>subpackage:</b> $subpackage)"; else $subp = ''; - foreach($els as $letter => $yuh) - { - foreach($els[$letter] as $i => $yuh) - { - if ($els[$letter][$i]->type != 'include') - { - if (!isset($used[$letter])) - { - $letters[]['letter'] = $letter; - $letterind[$letter] = count($letters) - 1; - $used[$letter] = 1; - } - $elindex[$letter]['letter'] = $letter; - - $elindex[$letter]['index'][] = $this->getIndexInformation($els[$letter][$i]); - } - } - } - } - ksort($elindex); - usort($letters,'CHMdefault_lettersort'); - if (isset($elindex)) - { - while(list($letter,$tempel) = each($elindex)) - { - if (!isset($tempel)) - { - unset($letters[$letterind[$tempel['letter']]]); - } else - $elementindex[] = $tempel; - } - } else $letters = array(); - return array($elementindex,$letters); - } - - /** - * - * @see generatePkgElementIndex() - */ - function generatePkgElementIndexes() - { - $packages = array(); - $package_names = array(); - $pkg = array(); - $letters = array(); - foreach($this->pkg_elements as $package => $trash) - { - $pkgs['package'] = $package; - $pkg['package'] = $package; - list($pkg['pindex'],$letters[$package]) = $this->generatePkgElementIndex($package); - if (count($pkg['pindex'])) - { - $packages[] = $pkg; - $package_names[] = $pkgs; - } - unset($pkgs); - unset($pkg); - } - foreach($packages as $i => $package) - { - $pnames = array(); - for($j=0;$j<count($package_names);$j++) - { - if ($package_names[$j]['package'] != $package['package']) $pnames[] = $package_names[$j]; - } - $packages[$i]['packageindexes'] = $pnames; - } - return array($packages,$package_names,$letters); - } - - /** - * @param string name of class - * @param string package name - * @param string full path to look in (used in index generation) - * @param boolean deprecated - * @param boolean return just the URL, or enclose it in an html a tag - * @return mixed false if not found, or an html a link to the class's documentation - * @see parent::getClassLink() - */ - function getClassLink($expr,$package, $file = false,$text = false, $with_a = true) - { - $a = Converter::getClassLink($expr,$package,$file); - if (!$a) return false; - return $this->returnSee($a, $text, $with_a); - } - - /** - * @param string name of function - * @param string package name - * @param string full path to look in (used in index generation) - * @param boolean deprecated - * @param boolean return just the URL, or enclose it in an html a tag - * @return mixed false if not found, or an html a link to the function's documentation - * @see parent::getFunctionLink() - */ - function getFunctionLink($expr,$package, $file = false,$text = false) - { - $a = Converter::getFunctionLink($expr,$package,$file); - if (!$a) return false; - return $this->returnSee($a, $text); - } - - /** - * @param string name of define - * @param string package name - * @param string full path to look in (used in index generation) - * @param boolean deprecated - * @param boolean return just the URL, or enclose it in an html a tag - * @return mixed false if not found, or an html a link to the define's documentation - * @see parent::getDefineLink() - */ - function getDefineLink($expr,$package, $file = false,$text = false) - { - $a = Converter::getDefineLink($expr,$package,$file); - if (!$a) return false; - return $this->returnSee($a, $text); - } - - /** - * @param string name of global variable - * @param string package name - * @param string full path to look in (used in index generation) - * @param boolean deprecated - * @param boolean return just the URL, or enclose it in an html a tag - * @return mixed false if not found, or an html a link to the global variable's documentation - * @see parent::getGlobalLink() - */ - function getGlobalLink($expr,$package, $file = false,$text = false) - { - $a = Converter::getGlobalLink($expr,$package,$file); - if (!$a) return false; - return $this->returnSee($a, $text); - } - - /** - * @param string name of procedural page - * @param string package name - * @param string full path to look in (used in index generation) - * @param boolean deprecated - * @param boolean return just the URL, or enclose it in an html a tag - * @return mixed false if not found, or an html a link to the procedural page's documentation - * @see parent::getPageLink() - */ - function getPageLink($expr,$package, $path = false,$text = false) - { - $a = Converter::getPageLink($expr,$package,$path); - if (!$a) return false; - return $this->returnSee($a, $text); - } - - /** - * @param string name of method - * @param string class containing method - * @param string package name - * @param string full path to look in (used in index generation) - * @param boolean deprecated - * @param boolean return just the URL, or enclose it in an html a tag - * @return mixed false if not found, or an html a link to the method's documentation - * @see parent::getMethodLink() - */ - function getMethodLink($expr,$class,$package, $file = false,$text = false) - { - $a = Converter::getMethodLink($expr,$class,$package,$file); - if (!$a) return false; - return $this->returnSee($a, $text); - } - - /** - * @param string name of var - * @param string class containing var - * @param string package name - * @param string full path to look in (used in index generation) - * @param boolean deprecated - * @param boolean return just the URL, or enclose it in an html a tag - * @return mixed false if not found, or an html a link to the var's documentation - * @see parent::getVarLink() - */ - function getVarLink($expr,$class,$package, $file = false,$text = false) - { - $a = Converter::getVarLink($expr,$class,$package,$file); - if (!$a) return false; - return $this->returnSee($a, $text); - } - - /** - * @param string name of class constant - * @param string class containing class constant - * @param string package name - * @param string full path to look in (used in index generation) - * @param boolean deprecated - * @param boolean return just the URL, or enclose it in an html a tag - * @return mixed false if not found, or an html a link to the var's documentation - * @see parent::getVarLink() - */ - function getConstLink($expr,$class,$package, $file = false,$text = false) - { - $a = Converter::getConstLink($expr,$class,$package,$file); - if (!$a) return false; - return $this->returnSee($a, $text); - } - - /** - * does a nat case sort on the specified second level value of the array - * - * @param mixed $a - * @param mixed $b - * @return int - */ - function rcNatCmp ($a, $b) - { - $aa = strtoupper($a[$this->rcnatcmpkey]); - $bb = strtoupper($b[$this->rcnatcmpkey]); - - return strnatcasecmp($aa, $bb); - } - - /** - * does a nat case sort on the specified second level value of the array. - * this one puts constructors first - * - * @param mixed $a - * @param mixed $b - * @return int - */ - function rcNatCmp1 ($a, $b) - { - $aa = strtoupper($a[$this->rcnatcmpkey]); - $bb = strtoupper($b[$this->rcnatcmpkey]); - - if (strpos($aa,'CONSTRUCTOR') === 0) - { - return -1; - } - if (strpos($bb,'CONSTRUCTOR') === 0) - { - return 1; - } - if (strpos($aa,strtoupper($this->class)) === 0) - { - return -1; - } - if (strpos($bb,strtoupper($this->class)) === 0) - { - return -1; - } - return strnatcasecmp($aa, $bb); - } - - /** - * Write a file to disk, and add it to the {@link $hhp_files} list of files - * to include in the generated CHM - * - * {@source} - */ - function writefile($file,$contents) - { - $this->addHHP($this->targetDir . PATH_DELIMITER . $file); - Converter::writefile($file,$contents); - } - - /** - * @uses $hhp_files creates the array by adding parameter $file - */ - function addHHP($file) - { - $file = str_replace($this->base_dir . PATH_DELIMITER, '', $file); - $file = str_replace('\\',PATH_DELIMITER,$file); - $file = str_replace('//',PATH_DELIMITER,$file); - $file = str_replace(PATH_DELIMITER,'\\',$file); - $this->hhp_files[]['name'] = $file; - } - - function generateTOC() - { - $comppack = ''; - $templ = &$this->newSmarty(); - foreach($this->TOC as $package => $TOC1) - { - $comp_subs = ''; - $comp_subs1 = false; - foreach($TOC1 as $subpackage => $types) - { - $comp_types = ''; - foreach($types as $type => $files) - { - $comp = ''; - $templ1 = &$this->newSmarty(); - $templ1->assign('entry', array()); - foreach($files as $file) - { - // use book icon for classes - if ($type == 'Classes') { - $templ1->append('entry', array('paramname' => $file[0],'outputfile' => $file[1],'isclass' => 1)); - } else { - $templ1->append('entry', array('paramname' => $file[0],'outputfile' => $file[1])); - } - } - $templ = &$this->newSmarty(); - $templ->assign('tocsubentries',$templ1->fetch('tocentry.tpl')); - $templ->assign('entry', array(array('paramname' => $type))); - $comp_types .= $templ->fetch('tocentry.tpl'); - } - if (!empty($subpackage)) - { - $templ = &$this->newSmarty(); - $templ->assign('tocsubentries',$comp_types); - $templ->assign('entry', array(array('paramname' => $subpackage))); - $comp_subs .= $templ->fetch('tocentry.tpl'); - } else - { - $comp_subs1 = $comp_types; - } - } - if ($comp_subs1) - $templ->assign('tocsubentries',$comp_subs1); - if (!empty($comp_subs)) - $templ->assign('entry', array(array('paramname' => $package, 'tocsubentries' => $comp_subs))); - else - $templ->assign('entry', array(array('paramname' => $package))); - $comppack .= $templ->fetch('tocentry.tpl'); - } - return $comppack; - } - - function addSourceTOC($name, $file, $package, $subpackage, $source = false) - { - $file = str_replace($this->base_dir . PATH_DELIMITER, '', $this->targetDir) - . PATH_DELIMITER . $file . '.html'; - $file = str_replace('\\',PATH_DELIMITER,$file); - $file = str_replace('//',PATH_DELIMITER,$file); - $file = str_replace(PATH_DELIMITER,'\\',$file); - $sub = $source ? 'Source Code' : 'Examples'; - $this->TOC[$package][$subpackage][$sub][] = array($name, $file); - } - - function addTOC($name,$file,$package,$subpackage,$class = false,$tutorial = false) - { - $file = str_replace($this->base_dir . PATH_DELIMITER, '', $this->targetDir . PATH_DELIMITER) - . $file . '.html'; - $file = str_replace('\\',PATH_DELIMITER,$file); - $file = str_replace('//',PATH_DELIMITER,$file); - $file = str_replace(PATH_DELIMITER,'\\',$file); - $file = str_replace($this->base_dir . '\\', '', $file); - $sub = $class ? 'Classes' : 'Files'; - if ($tutorial) $sub = 'Manual'; - $this->TOC[$package][$subpackage][$sub][] = array($name,$file); - } - - /** - * Add an item to the index.hhk file - * @param string $name index entry name - * @param string $file filename containing index - * @param string $bookmark html anchor of location in file, if any - * @param string $group group this entry with a string - * @uses $KLinks tracks the index - * @author Andrew Eddie <eddieajau@users.sourceforge.net> - */ - function addKLink($name, $file, $bookmark='', $group='') - { - $file = $file . '.html'; - $file = str_replace('\\',PATH_DELIMITER,$file); - $file = str_replace('//',PATH_DELIMITER,$file); - $file = str_replace(PATH_DELIMITER,'\\',$file); -// debug("added $name, $file, $bookmark, $group "); - $link = $file; - $link .= $bookmark ? "#$bookmark" :''; - if ($group) { - $this->KLinks[$group]['grouplink'] = $file; - $this->KLinks[$group][] = array($name,$link); - } - $this->KLinks[] = array($name,$link); - } - - /** - * Get the table of contents for index.hhk - * @return string contents of tocentry.tpl generated from $KLinks - * @author Andrew Eddie <eddieajau@users.sourceforge.net> - */ - function generateKLinks() - { - $templ = &$this->newSmarty(); - $templ->assign('entry', array()); - foreach($this->KLinks as $group=>$link) - { - if (isset($link['grouplink'])) { - $templg = &$this->newSmarty(); - $templg->assign('entry', array()); - foreach($link as $k=>$sublink) - { - if ($k != 'grouplink') { - $templg->append('entry', array('paramname' => $sublink[0],'outputfile' => $sublink[1])); - } - } - $templ->append('entry', array('paramname' => $group, 'outputfile' => $link['grouplink'], 'tocsubentries' => $templg->fetch('tocentry.tpl') )); - } else { - $templ->append('entry', array('paramname' => $link[0],'outputfile' => $link[1])); - } - } - return $templ->fetch('tocentry.tpl'); - } - - /** - * Create the phpdoc.hhp, contents.hhc files needed by MS HTML Help Compiler - * to create a CHM file - * - * The output function generates the table of contents (contents.hhc) - * and file list (phpdoc.hhp) files used to create a .CHM by the - * free MS HTML Help compiler. - * {@internal - * Using {@link $hhp_files}, a list of all separate .html files - * is created in CHM format, and written to phpdoc.hhp. This list was - * generated by {@link writefile}. - * - * Next, a call to the table of contents: - * - * {@source 12 2} - * - * finishes things off}} - * @todo use to directly call html help compiler hhc.exe - * @link http://www.microsoft.com/downloads/release.asp?releaseid=33071 - * @uses generateTOC() assigns to the toc template variable - */ - function Output() - { - $templ = &$this->newSmarty(); - $templ->assign('files',$this->hhp_files); - $this->setTargetDir($this->base_dir); - Converter::writefile('phpdoc.hhp',$templ->fetch('hhp.tpl')); - $templ = &$this->newSmarty(); - $templ->assign('toc',$this->generateTOC()); - Converter::writefile('contents.hhc',$templ->fetch('contents.hhc.tpl')); - $templ->assign('klinks',$this->generateKLinks()); - Converter::writefile('index.hhk',$templ->fetch('index.hhk.tpl')); - phpDocumentor_out("NOTE: to create the documentation.chm file, you must now run Microsoft Help Workshop on phpdoc.hhp\n"); - phpDocumentor_out("To get the free Microsoft Help Workshop, browse to: http://go.microsoft.com/fwlink/?LinkId=14188\n"); - flush(); - } -} - -/** - * @access private - * @global string name of the package to set as the first package - */ -function CHMdefault_pindexcmp($a, $b) -{ - global $phpDocumentor_DefaultPackageName; - if ($a['title'] == $phpDocumentor_DefaultPackageName) return -1; - if ($b['title'] == $phpDocumentor_DefaultPackageName) return 1; - return strnatcasecmp($a['title'],$b['title']); -} - -/** @access private */ -function CHMdefault_lettersort($a, $b) -{ - return strnatcasecmp($a['letter'],$b['letter']); -} - -/** @access private */ -function CHMdefault_outputfilter($src, &$smarty) -{ - return str_replace('{$subdir}',$smarty->_tpl_vars['subdir'],$src); -} -?> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/options.ini b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/options.ini deleted file mode 100755 index cae1952d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/options.ini +++ /dev/null @@ -1,507 +0,0 @@ -preservedocbooktags = false - -;; used to highlight the {@source} inline tag, @filesource tag, and @example tag -[highlightSourceTokens] -;; format: -;; T_CONSTANTNAME = open -;; /T_CONSTANTNAME = close -T_ABSTRACT = <font color="blue"> -/T_ABSTRACT = </font> -T_CLONE = <font color="blue"> -/T_CLONE = </font> -T_HALT_COMPILER = <font color="red"> -/T_HALT_COMPILER = </font> -T_PUBLIC = <font color="blue"> -/T_PUBLIC = </font> -T_PRIVATE = <font color="blue"> -/T_PRIVATE = </font> -T_PROTECTED = <font color="blue"> -/T_PROTECTED = </font> -T_FINAL = <font color="blue"> -/T_FINAL = </font> -T_IMPLEMENTS = <font color="blue"> -/T_IMPLEMENTS = </font> -T_CLASS = <font color="blue"> -/T_CLASS = </font> -T_INTERFACE = <font color="blue"> -/T_INTERFACE = </font> -T_INCLUDE = <font color="blue"> -/T_INCLUDE = </font> -T_INCLUDE_ONCE = <font color="blue"> -/T_INCLUDE_ONCE = </font> -T_REQUIRE_ONCE = <font color="blue"> -/T_REQUIRE_ONCE = </font> -T_FUNCTION = <font color="blue"> -/T_FUNCTION = </font> -T_VARIABLE = <strong> -/T_VARIABLE = </strong> -T_CONSTANT_ENCAPSED_STRING = <font color="#66cccc"> -/T_CONSTANT_ENCAPSED_STRING = </font> -T_COMMENT = <font color="green"> -/T_COMMENT = </font> -T_OBJECT_OPERATOR = <strong> -/T_OBJECT_OPERATOR = </strong> -T_RETURN = <font color="blue"> -/T_RETURN = </font> -T_STATIC = <font color="blue"> -/T_STATIC = </font> -T_SWITCH = <font color="blue"> -/T_SWITCH = </font> -T_IF = <font color="blue"> -/T_IF = </font> -T_FOREACH = <font color="blue"> -/T_FOREACH = </font> -T_FOR = <font color="blue"> -/T_FOR = </font> -T_VAR = <font color="blue"> -/T_VAR = </font> -T_EXTENDS = <font color="blue"> -/T_EXTENDS = </font> -T_RETURN = <font color="blue"> -/T_RETURN = </font> -T_GLOBAL = <font color="blue"> -/T_GLOBAL = </font> -T_DOUBLE_COLON = <strong> -/T_DOUBLE_COLON = </strong> -T_OBJECT_OPERATOR = <strong> -/T_OBJECT_OPERATOR = </strong> -T_OPEN_TAG = <strong> -/T_OPEN_TAG = </strong> -T_CLOSE_TAG = <strong> -/T_CLOSE_TAG = </strong> - -[highlightSource] -;; this is for highlighting things that aren't tokens like "&" -;; format: -;; word = open -;; /word = close -@ = <strong> -/@ = </strong> -& = <strong> -/& = </strong> -[ = <strong> -/[ = </strong> -] = <strong> -/] = </strong> -! = <strong> -/! = </strong> -";" = <strong> -/; = </strong> -( = <strong> -/( = </strong> -) = <strong> -/) = </strong> -, = <strong> -/, = </strong> -{ = <strong> -/{ = </strong> -} = <strong> -/} = </strong> -""" = <font color="#66cccc"> -/" = </font> - -[highlightDocBlockSourceTokens] -;; this is for docblock tokens, using by phpDocumentor_HighlightParser -;; tagphptype is for "string" in @param string description, for example -docblock = <font color="#009999"> -/docblock = </font> -tagphptype = <em> -/tagphptype = </em> -tagvarname = <strong> -/tagvarname = </strong> -coretag = <strong><font color = "#0099FF"> -/coretag = </font></strong> -tag = <strong><font color="#009999"> -/tag = </font></strong> -inlinetag = <em><font color="#0099FF"> -/inlinetag = </font></em> -internal = <em><font color = "#6699cc"> -/internal = </font></em> -closetemplate = <strong><font color="blue"> -/closetemplate = </font></strong> -docblocktemplate = <font color="blue"> -/docblocktemplate = </font color="blue"> - -[highlightTutorialSourceTokens] -;; this is for XML DocBook-based tutorials, highlighted by phpDocumentor_TutorialHighlightParser -;; <tag> -opentag = <span class="tute-tag"> -/opentag = </span> -;; </tag> -closetag = <span class="tute-tag"> -/closetag = </span> -;; <tag attribute="value"> -attribute = <span class="tute-attribute-name"> -/attribute = </span> -;; <tag attribute="value"> -attributevalue = <span class="tute-attribute-value"> -/attributevalue = </span> -;; &entity; -entity = <span class="tute-entity"> -/entity = </span> -;; <!-- comment --> -comment = <span class="tute-comment"> -/comment = </span> -;; {@inline tag} -itag = <span class="tute-inline-tag"> -/itag = </span> - -;; used for translation of html in DocBlocks -[desctranslate] -ul = <ul> -/ul = </ul> -ol = <ol> -/ol = </ol> -li = <li> -/li = </li> -code = -/code = -var = <var> -/var = </var> -samp = <samp> -/samp = </samp> -kbd = <kbd> -/kbd = </kbd> -pre = <pre> -/pre = </pre> -p = <p> -/p = </p> -b = <strong> -/b = </strong> -i = <em> -/i = </em> -br = <br /> - -[ppage] -;; this is the DocBook package page translation section. All DocBook tags -;; that have a corresponding html tag must be listed here -;; -;; examples: -;; 1) -;; tagname = newtagname -;; -;; This is the simplest case, where all attributes will be added into the -;; starting tag and the ending tag will be html/xml style </tranlatedtagname> -;; <tagname></tagname> becomes <newtagname></newtagname> and -;; <tagname attr="value"></tagname> becomes -;; <newtagname attr="value"></newtagname> -;; -;; 2) -;; tagname = newtagname -;; tagname->attr = newattrname -;; -;; in this case, everything will be like the first case, except tags like: -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="value"></newtagname> -;; -;; 3) -;; tagname = newtagname -;; tagname->attr = newattrname -;; tagname->attr+value = newvalue -;; -;; in this case, the value is also translated to another. This can be useful -;; for instances such as focus="middle" changing to align="center" or something -;; of that nature. -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 4) -;; tagname = newtagname -;; tagname->attr1 = newattrname -;; tagname->attr2 = newattrname -;; tagname->attr1+value|attr2+value = newvalue -;; -;; in this case, two attributes combine to make one new attribute, and the combined -;; value is translated into a new value -;; <tagname attr1="value1" attr2="value2"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 5) -;; tagname = newtagname -;; tagname!attr = dummy -;; -;; here, the attribute will be ignored. dummy is not used and may be any value -;; <tagname attr="value"></tagname> will become -;; <newtagname></newtagname> -;; -;; 6) -;; tagname = newtagname -;; tagname! = dummy -;; -;; here, all attributes will be ignored. dummy is not used and may be any value -;; <tagname attr1="value" attr2="foo"></tagname> will become -;; <newtagname></newtagname> -;; -;; 7) -;; tagname = newtagname -;; tagname/ = 1 -;; -;; here, the tag will be translated as a single tag with no closing tag, and all -;; attributes -;; <tagname attr="val">{text text}</tagname> will become -;; <newtagname attr="val" /> -;; -;; 8) -;; tagname = <starttaginfo /> -;; /tagname = closetagtext -;; -;; in this case, the text <starttaginfo> will be inserted exactly as entered for -;; <tagname> and closetagtext for </tagname> -;; <tagname attr="val"></tagname> will become -;; <starttaginfo />closetagtext -;; -;; 9) -;; $attr$my_attribute = newattrname -;; -;; tagname = newtagname -;; -;; in this case, all occurences of my_attribute in any tag will be changed to -;; newattrname. This is useful for changing things like role="php" to -;; class="php," for example. Note that the text "$attr$" MUST be on the line -;; start for phpDocumentor to recognize it. -;; -;; 10) -;; &entity; = translation text -;; " = " -;; " = """ -;; < = < -;; -;; Use this to control translation of entities to their appropriate values - - = -" = " -” = ” -“ = “ -& = & -< = < -> = > -© = © - -$attr$role = class - -abbrev = abbr - -blockquote = blockquote - -arg = span -arg->choice = class - -author = <font size="-1"><strong>by <em> -/author = </em></strong></font> -author! = 0 - -authorblurb = blockquote - -authorgroup = <strong>Authors:</strong><br /> -/authorgroup = -authorgroup! = 0 - -caution = <table border="1"><th align="center">Caution</th><tr><td> -/caution = </td></tr></table> -caution! = 0 - -command = <b class="cmd"> -/command = </b> - -cmdsynopsis = <div id="cmdsynopsis"> -/cmdsynopsis = </div> - -copyright = <em> -/copyright = </em><br /> - -emphasis = strong - -example = <table class="example" width="100%" border="1"><tr><td> -/example = </td></tr></table> -example! = 0 - -function = -/function = () - -formalpara = p - -graphic = img -graphic->fileref = src -graphic/ = - -important = u - -informalequation = blockquote - -informalexample = pre - -inlineequation = em - -itemizedlist = ul - -listitem = li - -literal = code - -literallayout = pre - -option = " " -/option = - -orderedlist = ol - -para = p - -programlisting = <table border="0" bgcolor="#E0E0E0" cellpadding="5"><tr><td><div class="src-code"> -/programlisting = </div></td></tr></table> -programlisting! = 0 - -refentry = div - -refnamediv = <div class="refname"> -/refnamediv = </div> -refnamediv! = 0 - -refname = h1 - -refpurpose = <h2 class="refpurpose"><em> -/refpurpose = </em></h2> - -refsynopsisdiv = <div class="refsynopsis"> -/refsynopsisdiv = </div> -refsynopsisdiv! = 0 - -refsect1 = span - -refsect2 = -/refsect2 = <hr /> - -refsect3 = -/refsect3 = <br /> - -releaseinfo = ( -/releaseinfo = )<br /> - -simpara = -/simpara = <br /> -simpara! = 0 - -subscript = sub - -superscript = super - -table = table - -table->colsep = rules -table->rowsep = rules -table->colsep+1|rowsep+1 = all -table->colsep+1|rowsep+0 = cols -table->colsep+0|rowsep+1 = rows - -table->frame = frame -table->frame+all = border -table->frame+none = void -table->frame+sides = vsides -table->frame+top = above -table->frame+topbot = hsides - -thead = thead - -tfoot = tfoot - -tbody = tbody - -colspec = col - -tgroup = colgroup -tgroup/ = 1 -tgroup->cols = span - -row = tr - -entry = td -entry->morerows = colspan -entry->morerows+1 = 2 -entry->morerows+2 = 3 -entry->morerows+3 = 4 -entry->morerows+4 = 5 -entry->morerows+5 = 6 -entry->morerows+6 = 7 -entry->morerows+7 = 8 -entry->morerows+8 = 9 -entry->morerows+9 = 10 -entry->morerows+10 = 11 -;; add more if you need more colspans - -warning = <table border="1"><tr><td> -/warning = </td></tr></table> -warning! = 0 - -;; now begins the attributes that should be tags in cdata -[$attr$id] -open = a -;close = /a -cdata! = true -quotevalues = true -separator = "=" -;separateall = true -$id = name - -;; now begins the sections that deal with <title> -[refsynopsisdiv_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h1 class="title" align="center"> -close = </h1> - -[refsect1_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h2 class="title" align="center"> -close = </h1> - -[refsect2_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h2 class="title" align="center"> -close = </h2> - -[refsect3_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h3 class="title" align="center"> -close = </h3> - -[para_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <strong class="title" align="center"> -close = </strong> - -[formalpara_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <strong class="title" align="center"> -close = </strong> - -[example_title] -;tag_attr = true -;attr_name = title -;cdata_start = true -cdata_end = true -open = </td></tr><tr><td><strong> -close = </strong> - -[table_title] -;tag_attr = true -;attr_name = true -cdata_start = true -open = <caption> -close = </caption> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/basicindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/basicindex.tpl deleted file mode 100755 index 29a27593..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/basicindex.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{section name=letter loop=$letters} - <a href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> -{/section} -<table> -{section name=index loop=$index} -<tr><td colspan = "2"><a name="{$index[index].letter}"> </a> -<a href="#top">top</a><br> -<TABLE CELLPADDING='3' CELLSPACING='0' WIDTH='100%' CLASS="border"> - <TR CLASS='TableHeadingColor'> - <TD> - <FONT SIZE='+2'><B>{$index[index].letter}</B></FONT> - </TD> - </TR> -</TABLE> -</td></tr> - {section name=contents loop=$index[index].index} - <tr><td><b>{$index[index].index[contents].name}</b></td><td width="100%" align="left" valign="top">{$index[index].index[contents].listing}</td></tr> - {/section} -{/section} -</table> - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/blank.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/blank.tpl deleted file mode 100755 index 6a05f27e..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/blank.tpl +++ /dev/null @@ -1,13 +0,0 @@ -<html> -<head> - <title>{$maintitle}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> -</head> -<body> -<div align="center"><h1>{$maintitle}</h1></div> -<b>Welcome to {$package}!</b><br /> -<br /> -This documentation was generated by <a href="{$phpdocwebsite}">phpDocumentor v{$phpdocversion}</a><br /> -</body> -</html>
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/class.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/class.tpl deleted file mode 100755 index 93cd4f27..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/class.tpl +++ /dev/null @@ -1,94 +0,0 @@ -{include file="header.tpl" eltype="class" hasel=true contents=$classcontents} -<!-- Start of Class Data --> -<H3> - <SPAN class="type">{if $is_interface}Interface{else}Class{/if}</SPAN> {$class_name} - <HR> -</H3> -[line <span class="linenumber">{if $class_slink}{$class_slink}{else}{$line_number}{/if}</span>]<br /> -<pre> -{section name=tree loop=$class_tree.classes}{$class_tree.classes[tree]}{$class_tree.distance[tree]}{/section} -</pre> -{if $tutorial} -<div class="maintutorial">Class Tutorial: {$tutorial}</div> -{/if} -{if $children} -<SPAN class="type">Classes extended from {$class_name}:</SPAN> - {section name=kids loop=$children} - <dl> - <dt>{$children[kids].link}</dt> - <dd>{$children[kids].sdesc}</dd> - </dl> - {/section}</p> -{/if} -{if $conflicts.conflict_type}<p class="warning">Conflicts with classes:<br /> - {section name=me loop=$conflicts.conflicts} - {$conflicts.conflicts[me]}<br /> - {/section} -<p> -{/if} -<SPAN class="type">Location:</SPAN> {$source_location} -<hr> -{include file="docblock.tpl" type="class" sdesc=$sdesc desc=$desc} -<hr> -{include file="var.tpl" show="summary"} -<hr> -{include file="const.tpl" show="summary"} -<hr> -<!-- =========== INHERITED CONST SUMMARY =========== --> -<A NAME='inheritedconst_summary'><!-- --></A> -<H3>Inherited Class Constant Summary</H3> - -{section name=iconsts loop=$iconsts} -<H4>Inherited From Class {$iconsts[iconsts].parent_class}</H4> -<UL> - {section name=iconsts2 loop=$iconsts[iconsts].iconsts} - <!-- =========== Summary =========== --> - <LI><CODE>{$iconsts[iconsts].iconsts[iconsts2].link}</CODE> = <CODE class="varsummarydefault">{$iconsts[iconsts].iconsts[iconsts2].value}</CODE> - <BR> - {$iconsts[iconsts].iconsts[iconsts2].sdesc} - {/section} - </LI> -</UL> -{/section} -<hr> -<!-- =========== INHERITED VAR SUMMARY =========== --> -<A NAME='inheritedvar_summary'><!-- --></A> -<H3>Inherited Class Variable Summary</H3> - -{section name=ivars loop=$ivars} -<H4>Inherited From Class {$ivars[ivars].parent_class}</H4> -<UL> - {section name=ivars2 loop=$ivars[ivars].ivars} - <!-- =========== Summary =========== --> - <LI><CODE>{$ivars[ivars].ivars[ivars2].link}</CODE> = <CODE class="varsummarydefault">{$ivars[ivars].ivars[ivars2].default}</CODE> - <BR> - {$ivars[ivars].ivars[ivars2].sdesc} - {/section} - </LI> -</UL> -{/section} - -<hr> -{include file="method.tpl" show="summary"} -<!-- =========== INHERITED METHOD SUMMARY =========== --> -<A NAME='methods_inherited'><!-- --></A> -<H3>Inherited Method Summary</H3> - -{section name=imethods loop=$imethods} -<H4>Inherited From Class {$imethods[imethods].parent_class}</h4> -<UL> - {section name=im2 loop=$imethods[imethods].imethods} - <!-- =========== Summary =========== --> - <LI><CODE>{$imethods[imethods].imethods[im2].link}</CODE><br> - {$imethods[imethods].imethods[im2].sdesc} - {/section} -</UL> -{/section} -<hr> -{include file="method.tpl"} -<hr> -{include file="var.tpl"} -<hr> -{include file="const.tpl"} -<hr> -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/classleft.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/classleft.tpl deleted file mode 100755 index 65d60118..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/classleft.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{foreach key=subpackage item=files from=$classleftindex} - {if $subpackage != ""}<b>{$subpackage}</b><br>{/if} - {section name=files loop=$files} - {if $files[files].link != ''}<a href="{ldelim}$subdir{rdelim}{$files[files].link}">{/if} - {$files[files].title} - {if $files[files].link != ''}</a>{/if}<br> - {/section} -{/foreach} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/classtrees.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/classtrees.tpl deleted file mode 100755 index 6308aba9..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/classtrees.tpl +++ /dev/null @@ -1,12 +0,0 @@ -{capture name="title"}Class Trees for Package {$package}{/capture} -{include file="header.tpl" title=$smarty.capture.title} - -<!-- Start of Class Data --> -<H2> - {$smarty.capture.title} -</H2> -{section name=classtrees loop=$classtrees} -<SPAN class="code">Root class {$classtrees[classtrees].class}</SPAN> -<code class="vardefaultsummary">{$classtrees[classtrees].class_tree}</code> -{/section} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/const.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/const.tpl deleted file mode 100644 index 720a71b5..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/const.tpl +++ /dev/null @@ -1,29 +0,0 @@ -{if $show=="summary"} -<!-- =========== CONST SUMMARY =========== --> -<A NAME='const_summary'><!-- --></A> -<H3>Class Constant Summary</H3> - -<UL> - {section name=consts loop=$consts} - <!-- =========== Summary =========== --> - <LI><CODE><a href="{$consts[consts].id}">{$consts[consts].const_name}</a></CODE> = <CODE class="varsummarydefault">{$consts[consts].const_value|replace:"\n":"<br>\n"|replace:" ":" "|replace:"\t":" "}</CODE> - <BR> - {$consts[consts].sdesc} - {/section} -</UL> -{else} -<!-- ============ VARIABLE DETAIL =========== --> - -<A NAME='variable_detail'></A> - -<H3>Class Constant Detail</H3> - -<UL> -{section name=consts loop=$consts} -<A NAME="{$consts[consts].const_dest}"><!-- --></A> -<LI><SPAN class="code">{$consts[consts].const_name}</SPAN> = <CODE class="varsummarydefault">{$consts[consts].const_value|replace:"\n":"<br>\n"|replace:" ":" "|replace:"\t":" "}</CODE> [line <span class="linenumber">{if $consts[consts].slink}{$consts[consts].slink}{else}{$consts[consts].line_number}{/if}</span>]</LI> -{include file="docblock.tpl" sdesc=$consts[consts].sdesc desc=$consts[consts].desc tags=$consts[consts].tags} -<BR> -{/section} -</UL> -{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/contents.hhc.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/contents.hhc.tpl deleted file mode 100755 index 44938319..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/contents.hhc.tpl +++ /dev/null @@ -1,11 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> -<HTML> -<HEAD> -<meta name="GENERATOR" content="phpDocumentor version {$phpdocversion}"> -<!-- Sitemap 1.0 --> -</HEAD><BODY> -<OBJECT type="text/site properties"> - <param name="ImageType" value="Folder"> -</OBJECT> -{$toc} -</BODY></HTML> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/define.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/define.tpl deleted file mode 100755 index 4a3a64e9..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/define.tpl +++ /dev/null @@ -1,33 +0,0 @@ -{if $summary} -<!-- =========== CONSTANT SUMMARY =========== --> -<A NAME='constant_summary'><!-- --></A> -<H3>Constant Summary</H3> - -<UL> - {section name=def loop=$defines} - <LI><CODE><A HREF="{$defines[def].id}">{$defines[def].define_name}</A></CODE> = <CODE class="varsummarydefault">{$defines[def].define_value}</CODE> - <BR>{$defines[def].sdesc} - {/section} -</UL> -{else} -<!-- ============ CONSTANT DETAIL =========== --> - -<A NAME='constant_detail'></A> -<H3>Constant Detail</H3> - -<UL> - {section name=def loop=$defines} - <A NAME="{$defines[def].define_link}"><!-- --></A> - <LI><SPAN class="code">{$defines[def].define_name}</SPAN> = <CODE class="varsummarydefault">{$defines[def].define_value}</CODE> [line <span class="linenumber">{if $defines[def].slink}{$defines[def].slink}{else}{$defines[def].line_number}{/if}</span>]<br /> - {if $defines[def].define_conflicts.conflict_type} - <p><b>Conflicts with defines:</b> - {section name=me loop=$defines[def].define_conflicts.conflicts} - {$defines[def].define_conflicts.conflicts[me]}<br /> - {/section} - </p> - {/if} -<BR><BR> - {include file="docblock.tpl" sdesc=$defines[def].sdesc desc=$defines[def].desc tags=$defines[def].tags} - {/section} -</UL> -{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/docblock.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/docblock.tpl deleted file mode 100755 index ef621b9b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/docblock.tpl +++ /dev/null @@ -1,31 +0,0 @@ -<!-- ========== Info from phpDoc block ========= --> -{if $function} - {if $params} - <p class="label"><b>Parameters</b></p> - {section name=params loop=$params} - <p class=dt><i>{$params[params].var}</i></p> - <p class=indent>{$params[params].data}</p> - {/section} - {/if} -{/if} -{section name=tags loop=$tags} -{if $tags[tags].keyword == 'return'} - <p class="label"><b>Returns</b></p> - <p class=indent>{$tags[tags].data}</p> -{/if} -{/section} -{if $sdesc || $desc} -<p class="label"><b>Remarks</b></p> -{/if} -{if $sdesc} -<p>{$sdesc}</p> -{/if} -{if $desc} -<p>{$desc}</p> -{/if} -{section name=tags loop=$tags} -{if $tags[tags].keyword != 'return'} - <p class="label"><b>{$tags[tags].keyword}</b></p> - <p class=indent>{$tags[tags].data}</p> -{/if} -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/elementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/elementindex.tpl deleted file mode 100755 index 755f33c7..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/elementindex.tpl +++ /dev/null @@ -1,9 +0,0 @@ -{include file="header.tpl" noleftindex=true} -<a name="top"></a> -<h1>Index of All Elements</h1> -<b>Indexes by package:</b><br> -{section name=p loop=$packageindex} -<a href="elementindex_{$packageindex[p].title}.html">{$packageindex[p].title}</a><br> -{/section}<br> -{include file="basicindex.tpl" indexname="elementindex"} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/errors.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/errors.tpl deleted file mode 100755 index 0f526584..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/errors.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{include file="header.tpl" noleftindex=true} -{section name=files loop=$files} -<a href="#{$files[files].file}">{$files[files].file}</a><br> -{/section} -{foreach key=file item=issues from=$all} -<a name="{$file}"></a> -<h1>{$file}</h1> -{if count($issues.warnings)} -<h2>Warnings:</h2><br> -{section name=warnings loop=$issues.warnings} -<b>{$issues.warnings[warnings].name}</b> - {$issues.warnings[warnings].listing}<br> -{/section} -{/if} -{if count($issues.errors)} -<h2>Errors:</h2><br> -{section name=errors loop=$issues.errors} -<b>{$issues.errors[errors].name}</b> - {$issues.errors[errors].listing}<br> -{/section} -{/if} -{/foreach} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/fileleft.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/fileleft.tpl deleted file mode 100755 index 45bcf945..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/fileleft.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{foreach key=subpackage item=files from=$fileleftindex} - {if $subpackage != ""}subpackage <b>{$subpackage}</b><br>{/if} - {section name=files loop=$files} - {if $files[files].link != ''}<a href="{ldelim}$subdir{rdelim}{$files[files].link}">{/if} - {$files[files].title} - {if $files[files].link != ''}</a>{/if}<br> - {/section} -{/foreach} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/filesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/filesource.tpl deleted file mode 100755 index 55c826b9..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/filesource.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{capture name="tutle"}File Source for {$name}{/capture} -{include file="header.tpl" title=$smarty.capture.tutle} -<h1 align="center">Source for file {$name}</h1> -<p>Documentation is available at {$docs}</p> -{$source} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/footer.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/footer.tpl deleted file mode 100755 index 157bb1cd..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/footer.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{if !$index} - <div id="credit"> - <hr> - Documentation generated on {$date} by <a href="{$phpdocwebsite}" target="_blank">phpDocumentor {$phpdocversion}</a> - </div> -{/if} -</body> -</html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/function.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/function.tpl deleted file mode 100755 index 895e8ab4..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/function.tpl +++ /dev/null @@ -1,44 +0,0 @@ -{if $summary} -<!-- =========== FUNCTION SUMMARY =========== --> -<A NAME='function_summary'><!-- --></A> -<H3>Function Summary</H3> - -<UL> - {section name=func loop=$functions} - <!-- =========== Summary =========== --> - <LI><CODE><A HREF="{$functions[func].id}">{$functions[func].function_return} {$functions[func].function_name}()</A></CODE> - <BR>{$functions[func].sdesc} - {/section} -</UL> -{else} -<!-- ============ FUNCTION DETAIL =========== --> - -<A NAME='function_detail'></A> -<H3>Function Detail</H3> - -<UL> -{section name=func loop=$functions} -<A NAME="{$functions[func].function_dest}"><!-- --></A> - -<LI><SPAN class="code">{$functions[func].function_return} {$functions[func].function_name}()</SPAN> [line <span class="linenumber">{if $functions[func].slink}{$functions[func].slink}{else}{$functions[func].line_number}{/if}</span>]<br /> -<BR><BR> -<SPAN class="type">Usage:</SPAN> <SPAN class="code">{if $functions[func].ifunction_call.returnsref}&{/if}{$functions[func].function_name}( -{if count($functions[func].ifunction_call.params)} -{section name=params loop=$functions[func].ifunction_call.params} -{if $smarty.section.params.iteration != 1}, {/if}{if $functions[func].ifunction_call.params[params].hasdefault}[{/if}{$functions[func].ifunction_call.params[params].type} {$functions[func].ifunction_call.params[params].name}{if $functions[func].ifunction_call.params[params].hasdefault} = {$functions[func].ifunction_call.params[params].default|escape:"html"}]{/if} -{/section} -{/if})</SPAN> -<BR><BR> -{if $functions[func].function_conflicts.conflict_type} -<p><b>Conflicts with functions:</b> -{section name=me loop=$functions[func].function_conflicts.conflicts} -{$functions[func].function_conflicts.conflicts[me]}<br /> -{/section} -</p> -{/if} -{include file="docblock.tpl" sdesc=$functions[func].sdesc desc=$functions[func].desc tags=$functions[func].tags params=$functions[func].params function=true} -<BR> -<p class="top">[ <a href="#top">Top</a> ]</p> -{/section} -</UL> -{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/global.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/global.tpl deleted file mode 100755 index 113a67ab..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/global.tpl +++ /dev/null @@ -1,32 +0,0 @@ -{if $summary} -<!-- =========== GLOBAL VARIABLE SUMMARY =========== --> -<A NAME='global_summary'><!-- --></A> -<H3>Global Variable Summary</H3> - -<UL> - {section name=glob loop=$globals} - <LI><CODE><A HREF="{$globals[glob].id}">{$globals[glob].global_name}</A></CODE> = <CODE class="varsummarydefault">{$globals[glob].global_value}</CODE> - <BR>{$globals[glob].sdesc} - {/section} -</UL> - -{else} -<!-- ============ GLOBAL VARIABLE DETAIL =========== --> - -<A NAME='global_detail'></A> -<H3>Global Variable Detail</H3> - -<UL> - {section name=glob loop=$globals} - <A NAME="{$globals[glob].global_link}"><!-- --></A> - <LI><i>{$globals[glob].global_type}</i> <SPAN class="code">{$globals[glob].global_name}</SPAN> = <CODE class="varsummarydefault">{$globals[glob].global_value}</CODE> [line <span class="linenumber">{if $globals[glob].slink}{$globals[glob].slink}{else}{$globals[glob].line_number}{/if}</span>]<br /> - {if $globals[glob].global_conflicts.conflict_type} - <p><b>Conflicts with globals:</b> - {section name=me loop=$globals[glob].global_conflicts.conflicts} - {$globals[glob].global_conflicts.conflicts[me]}<br /> - {/section} - {/if}<BR><BR> - {include file="docblock.tpl" sdesc=$globals[glob].sdesc desc=$globals[glob].desc tags=$globals[glob].tags} - {/section} -</UL> -{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/header.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/header.tpl deleted file mode 100755 index 30fad6bb..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/header.tpl +++ /dev/null @@ -1,22 +0,0 @@ -<!-- - IE 6 makes the page to wide with the following doctype. I accept - standards if they help me, not if they make anything even harder! -//--> -<!--<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.0 Transitional//EN' 'http://www.w3.org/TR/REC-html40/loose.dtd'>//--> -<!--NewPage--> -<HTML> -<HEAD> - <!-- Generated by PhpDoc date: '{$date}' --> - <TITLE>{$title}</TITLE> -<LINK REL ='stylesheet' TYPE='text/css' HREF='{$subdir}media/stylesheet.css' TITLE='Style'> -{if $bgleft} -<STYLE type="text/css"><!-- - BODY {ldelim} - background-image : url("{$subdir}media/bg_left.png"); - background-repeat : repeat-y; - {rdelim} -//--></STYLE> -{/if} -</HEAD> -<BODY {if !$bgleft}BGCOLOR='white'{/if}> -<a name="top"><!-- --></a>
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/hhp.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/hhp.tpl deleted file mode 100755 index c82846a8..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/hhp.tpl +++ /dev/null @@ -1,17 +0,0 @@ -[OPTIONS] -Compatibility=1.1 or later -Compiled file=documentation.chm -Contents file=contents.hhc -Default topic=index.html -Display compile progress=No -Index file=Index.hhk -Language=0x409 English (United States) -Title={$maintitle} - -[FILES] -{section name=files loop=$files} -{$files[files].name} -{/section} - -[INFOTYPES] - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/include.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/include.tpl deleted file mode 100755 index db76e4dc..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/include.tpl +++ /dev/null @@ -1,26 +0,0 @@ -{if $summary} -<!-- =========== INCLUDE SUMMARY =========== --> -<A NAME='include_summary'><!-- --></A> -<H3>Include Statements Summary</H3> - -<UL> - {section name=includes loop=$includes} - <LI><CODE><A HREF="#{$includes[includes].include_file}">{$includes[includes].include_name}</A></CODE> = <CODE class="varsummarydefault">{$includes[includes].include_value}</CODE> - <BR>{$includes[includes].sdesc} - {/section} -</UL> -{else} -<!-- ============ INCLUDE DETAIL =========== --> - -<A NAME='include_detail'></A> -<H3>Include Statements Detail</H3> - -<UL> - {section name=includes loop=$includes} - <A NAME="{$includes[includes].include_file}"><!-- --></A> - <LI><SPAN class="code">{$includes[includes].include_name} file:</SPAN> = <CODE class="varsummarydefault">{$includes[includes].include_value}</CODE> [line <span class="linenumber">{if $includes[includes].slink}{$includes[includes].slink}{else}{$includes[includes].line_number}{/if}</span>]<br /> - <BR><BR> - {include file="docblock.tpl" sdesc=$includes[includes].sdesc desc=$includes[includes].desc tags=$includes[includes].tags} - {/section} -</UL> -{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/index.hhk.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/index.hhk.tpl deleted file mode 100755 index 94cbd18e..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/index.hhk.tpl +++ /dev/null @@ -1,8 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> -<HTML> -<HEAD> -<meta name="GENERATOR" content="phpDocumentor {$phpdocversion} {$phpdocwebsite}"> -<!-- Sitemap 1.0 --> -</HEAD><BODY> -{$klinks} -</BODY></HTML> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/index.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/index.tpl deleted file mode 100755 index 4e053097..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/index.tpl +++ /dev/null @@ -1,24 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> -<!--NewPage--> -<HTML> -<HEAD> - <!-- Generated by PhpDoc on {$date} --> - <TITLE>{$title}</TITLE> -</HEAD> -<FRAMESET cols='220,*'> -{if $package_count > 1} - <FRAMESET rows='220,*'> - <FRAME src='packages.html' name='left_top'> -{/if} - <FRAME src='{$start}' name='left_bottom'> -{if $package_count > 1} - </FRAMESET> -{/if} - <FRAME src='{$blank}.html' name='right'> - <NOFRAMES> - <H2>Frame Alert</H2> - <P>This document is designed to be viewed using the frames feature. - If you see this message, you are using a non-frame-capable web client.</P> - </NOFRAMES> -</FRAMESET> -</HTML> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/media/bg_left.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/media/bg_left.png Binary files differdeleted file mode 100755 index 19fdf05d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/media/bg_left.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/media/stylesheet.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/media/stylesheet.css deleted file mode 100755 index aa245bfa..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/media/stylesheet.css +++ /dev/null @@ -1,130 +0,0 @@ -BODY, DIV, SPAN, PRE, CODE, TD, TH { - line-height: 140%; - font-size: 10pt; - font-family: verdana,arial,sans-serif; -} - -H1 { - font-size: 12pt; -} - -H4 { - font-size: 10pt; - font-weight: bold; -} - -P.label { - margin-bottom: 5px; -} -P.dt { - margin-top: 0px; - margin-bottom: 0px; -} -P.indent { - margin-top: 0px; - margin-left: 20px; - margin-bottom: 0px; -} -P.method { - background-color: #f0f0f0; - padding: 2px; - border: 1px #cccccc solid; -} - -A { - text-decoration: none; -} - -A:link{ - color: #336699; -} - -A:visited { - color: #003366; -} - -A:active, A:hover { - color: #6699CC; -} - -A:hover{ - text-decoration: underline; -} - -SPAN.type { - color: #336699; - font-size: xx-small; - font-weight: normal; - } - -PRE { - background-color: #EEEEEE; - padding: 10px; - border-width: 1px; - border-color: #336699; - border-style: solid; -} - -HR { - color: #336699; - background-color: #336699; - border-width: 0px; - height: 1px; - filter: Alpha (opacity=100,finishopacity=0,style=1); -} - -DIV.sdesc { - font-weight: bold; - background-color: #EEEEEE; - padding: 10px; - border-width: 1px; - border-color: #336699; - border-style: solid; -} - -DIV.desc { - font-family: monospace; - background-color: #EEEEEE; - padding: 10px; - border-width: 1px; - border-color: #336699; - border-style: solid; -} - -SPAN.code { - font-family: monospace; -} - -CODE.varsummarydefault{ - padding: 1px; - border-width: 1px; - border-style: dashed; - border-color: #336699; -} - -UL.tute { - margin: 0px; - padding: 0px; - padding-left: 5px; - } - -LI.tute { - line-height: 140%; - font-size: 10pt; - text-indent: -15px; - padding-bottom: 2px; - padding-left: 14px; -} - -.small{ - font-size: 9pt; -} - - -.tute-tag { color: #009999 } -.tute-attribute-name { color: #0000FF } -.tute-attribute-value { color: #0099FF } -.tute-entity { font-weight: bold; } -.tute-comment { font-style: italic } -.tute-inline-tag { color: #636311; font-weight: bold } -.src-code { font-family: 'Courier New', Courier, monospace; font-weight: normal; } diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/method.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/method.tpl deleted file mode 100755 index 4816c4f9..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/method.tpl +++ /dev/null @@ -1,126 +0,0 @@ -{if $show == 'summary'} -<!-- =========== METHOD SUMMARY =========== --> -<A NAME='method_summary'><!-- --></A> -<H3>Method Summary</H3> - -<UL> - {section name=methods loop=$methods} - {if $methods[methods].static} - <!-- =========== Summary =========== --> - <LI><CODE>static <A HREF='{$methods[methods].id}'>{$methods[methods].function_return} {$methods[methods].function_name}()</A></CODE> - <BR>{$methods[methods].sdesc} - {/if} - {/section} - {section name=methods loop=$methods} - {if $methods[methods].static} - <!-- =========== Summary =========== --> - <LI><CODE><A HREF='{$methods[methods].id}'>{$methods[methods].function_return} {$methods[methods].function_name}()</A></CODE> - <BR>{$methods[methods].sdesc} - {/if} - {/section} -</UL> - -{else} -<!-- ============ METHOD DETAIL =========== --> - -<A NAME='method_detail'></A> -<H3>Method Detail</H3> - -<UL> -{section name=methods loop=$methods} -{if $methods[methods].static} -<A NAME='{$methods[methods].method_dest}'><!-- --></A> - -<h1><A name="{$methods[methods].function_name}"></A>static {$class_name}::{$methods[methods].function_name}</h1> - -<p class=method> -<b>static {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}(</b> -{if count($methods[methods].ifunction_call.params)} -{section name=params loop=$methods[methods].ifunction_call.params} -{if $smarty.section.params.iteration != 1}, {/if} -{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<b>{$methods[methods].ifunction_call.params[params].type}</b> -<i>{$methods[methods].ifunction_call.params[params].name}</i>{if $methods[methods].ifunction_call.params[params].hasdefault} = {$methods[methods].ifunction_call.params[params].default}]{/if} -{/section} -{/if}<b> );</b> -</p> - -{if $methods[methods].descmethod} - <p>Overridden in child classes as:<br /> - {section name=dm loop=$methods[methods].descmethod} - <dl> - <dt>{$methods[methods].descmethod[dm].link}</dt> - <dd>{$methods[methods].descmethod[dm].sdesc}</dd> - </dl> - {/section}</p> -{/if} -{if $methods[methods].method_overrides} -<p>Overrides {$methods[methods].method_overrides.link} ({$methods[methods].method_overrides.sdesc|default:"parent method not documented"})</p> -{/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} - -{include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags params=$methods[methods].params function=true} - <p class="top">[ <a href="#top">Top</a> ]</p> -<BR> -{/if} -{/section} - -{section name=methods loop=$methods} -{if !$methods[methods].static} -<A NAME='{$methods[methods].method_dest}'><!-- --></A> - -<h1><A name="{$methods[methods].function_name}"></A>{$class_name}::{$methods[methods].function_name}</h1> - -<p class=method> -<b>{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}(</b> -{if count($methods[methods].ifunction_call.params)} -{section name=params loop=$methods[methods].ifunction_call.params} -{if $smarty.section.params.iteration != 1}, {/if} -{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<b>{$methods[methods].ifunction_call.params[params].type}</b> -<i>{$methods[methods].ifunction_call.params[params].name}</i>{if $methods[methods].ifunction_call.params[params].hasdefault} = {$methods[methods].ifunction_call.params[params].default}]{/if} -{/section} -{/if}<b> );</b> -</p> - -{if $methods[methods].descmethod} - <p>Overridden in child classes as:<br /> - {section name=dm loop=$methods[methods].descmethod} - <dl> - <dt>{$methods[methods].descmethod[dm].link}</dt> - <dd>{$methods[methods].descmethod[dm].sdesc}</dd> - </dl> - {/section}</p> -{/if} -{if $methods[methods].method_overrides} -<p>Overrides {$methods[methods].method_overrides.link} ({$methods[methods].method_overrides.sdesc|default:"parent method not documented"})</p> -{/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} - -{include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags params=$methods[methods].params function=true} - <p class="top">[ <a href="#top">Top</a> ]</p> -<BR> -{/if} -{/section} -</UL> -{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/packages.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/packages.tpl deleted file mode 100755 index 0967e6e7..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/packages.tpl +++ /dev/null @@ -1,3 +0,0 @@ -{section name=packages loop=$packages} -<a href="{$packages[packages].link}">{$packages[packages].title}</a> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/page.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/page.tpl deleted file mode 100755 index 39f4823a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/page.tpl +++ /dev/null @@ -1,34 +0,0 @@ -{include file="header.tpl" eltype="Procedural file"} -<h3><SPAN class="type">File:</SPAN> {$source_location}<HR> -</h3> -{if $tutorial} -<div class="maintutorial">Main Tutorial: {$tutorial}</div> -{/if} -{include file="docblock.tpl" desc=$desc sdesc=$sdesc tags=$tags} -Classes in this file: -<dl> -{section name=classes loop=$classes} -<dt>{$classes[classes].link}</dt> - <dd>{$classes[classes].sdesc}</dd> -{/section} -</dl> -<hr> -{include file="include.tpl" summary=true} -<hr> -{include file="global.tpl" summary=true} -<hr> -{include file="define.tpl" summary=true} -<hr> -{include file="function.tpl" summary=true} -<hr> -{include file="include.tpl"} -<hr> -{include file="global.tpl"} -<hr> -{include file="define.tpl"} -<hr> -{include file="function.tpl"} -<hr> -{include file="footer.tpl"} - -</HTML>
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/pkgelementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/pkgelementindex.tpl deleted file mode 100755 index f3a90ab3..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/pkgelementindex.tpl +++ /dev/null @@ -1,14 +0,0 @@ -{include file="header.tpl"} -<a name="top"></a> -<h1>Element index for package {$package}</h1> -{if count($packageindex) > 1} -<b>Indexes by package:</b><br> -{/if} -{section name=p loop=$packageindex} -{if $packageindex[p].title != $package} -<a href="elementindex_{$packageindex[p].title}.html">{$packageindex[p].title}</a><br> -{/if} -{/section}<br> -<a href="elementindex.html"><b>Index of all elements</b></a><br> -{include file="basicindex.tpl" indexname=elementindex_$package} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/ric.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/ric.tpl deleted file mode 100755 index eff734c1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/ric.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl"} -<h1 align="center">{$name}</h1> -<pre> -{$contents|htmlentities} -</pre> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/tocentry.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/tocentry.tpl deleted file mode 100755 index dd0669b5..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/tocentry.tpl +++ /dev/null @@ -1,11 +0,0 @@ -<UL> -{section name=entry loop=$entry} - <LI> <OBJECT type="text/sitemap"> - <param name="Name" value="{$entry[entry].paramname}"> -{if $entry[entry].isclass} <param name="ImageNumber" value="1"> -{/if}{if $entry[entry].outputfile} <param name="Local" value="{$entry[entry].outputfile}"> -{/if} </OBJECT> - {if $entry[entry].tocsubentries}{$entry[entry].tocsubentries}{/if} -{/section} - {$tocsubentries} -</UL> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/todolist.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/todolist.tpl deleted file mode 100755 index f929ccdb..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/todolist.tpl +++ /dev/null @@ -1,14 +0,0 @@ -{include file="header.tpl" title="Todo List"} -<div align="center"><h1>Todo List</h1></div> -{foreach from=$todos key=todopackage item=todo} -<h2>{$todopackage}</h2> -{section name=todo loop=$todo} -<h3>{$todo[todo].link}</h3> -<ul> -{section name=t loop=$todo[todo].todos} - <li>{$todo[todo].todos[t]}</li> -{/section} -</ul> -{/section} -{/foreach} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/tutorial.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/tutorial.tpl deleted file mode 100755 index a943522c..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/tutorial.tpl +++ /dev/null @@ -1,32 +0,0 @@ -{include file="header.tpl" title=$title} -{if $nav} -<table width="100%" border="0" cellpadding="0" cellspacing="0"> -<tr> -<td width="10%" align="left" valign="bottom">{if $prev}<a href= -"{$prev}">{/if}Prev{if $prev}</a>{/if}</td> -<td width="80%" align="center" valign="bottom"></td> -<td width="10%" align="right" valign="bottom">{if $next}<a href= -"{$next}">{/if}Next{if $next}</a>{/if}</td> -</tr> -</table> -{/if} -{$contents} -{if $nav} -<table width="100%" border="0" cellpadding="0" cellspacing="0"> -<tr> -<td width="33%" align="left" valign="top">{if $prev}<a href="{$prev}">{/if} -Prev{if $prev}</a>{/if}</td> -<td width="34%" align="center" valign="top">{if $up}<a href= -"{$up}">Up</a>{else} {/if}</td> -<td width="33%" align="right" valign="top">{if $next}<a href= -"{$next}">{/if}Next{if $next}</a>{/if}</td> -</tr> - -<tr> -<td width="33%" align="left" valign="top">{if $prevtitle}{$prevtitle}{/if}</td> -<td width="34%" align="center" valign="top">{if $uptitle}{$uptitle}{/if}</td> -<td width="33%" align="right" valign="top">{if $nexttitle}{$nexttitle}{/if}</td> -</tr> -</table> -{/if} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/tutorial_toc.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/tutorial_toc.tpl deleted file mode 100755 index 3d22d403..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/tutorial_toc.tpl +++ /dev/null @@ -1,29 +0,0 @@ -{if count($toc)} -<h1 align="center">Table of Contents</h1> -<ul> -{section name=toc loop=$toc} -{if $toc[toc].tagname == 'refsect1'} -{assign var="context" value="refsect1"} -{$toc[toc].link}<br /> -{/if} -{if $toc[toc].tagname == 'refsect2'} -{assign var="context" value="refsect2"} - {$toc[toc].link}<br /> -{/if} -{if $toc[toc].tagname == 'refsect3'} -{assign var="context" value="refsect3"} - {$toc[toc].link}<br /> -{/if} -{if $toc[toc].tagname == 'table'} -{if $context == 'refsect2'} {/if} -{if $context == 'refsect3'} {/if} -Table: {$toc[toc].link} -{/if} -{if $toc[toc].tagname == 'example'} -{if $context == 'refsect2'} {/if} -{if $context == 'refsect3'} {/if} -Table: {$toc[toc].link} -{/if} -{/section} -</ul> -{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/tutorial_tree.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/tutorial_tree.tpl deleted file mode 100755 index de907179..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/tutorial_tree.tpl +++ /dev/null @@ -1,5 +0,0 @@ -<ul> - <li><a href="{$main.link}" target="right">{$main.title|strip_tags}</a> -{if $kids}{$kids}</li>{/if} -</ul> - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/var.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/var.tpl deleted file mode 100755 index eeefcc51..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/CHM/default/templates/default/templates/var.tpl +++ /dev/null @@ -1,51 +0,0 @@ -{if $show=="summary"} -<!-- =========== VAR SUMMARY =========== --> -<A NAME='var_summary'><!-- --></A> -<H3>Class Variable Summary</H3> - -<UL> - {section name=vars loop=$vars} - {if $vars[vars].static} - <!-- =========== Summary =========== --> - <LI><CODE>static <a href="{$vars[vars].id}">{$vars[vars].var_name}</a></CODE> = <CODE class="varsummarydefault">{$vars[vars].var_default|replace:"\n":"<br>\n"|replace:" ":" "|replace:"\t":" "}</CODE> - <BR> - {$vars[vars].sdesc} - {/if} - {/section} - {section name=vars loop=$vars} - {if !$vars[vars].static} - <!-- =========== Summary =========== --> - <LI><CODE><a href="{$vars[vars].id}">{$vars[vars].var_name}</a></CODE> = <CODE class="varsummarydefault">{$vars[vars].var_default|replace:"\n":"<br>\n"|replace:" ":" "|replace:"\t":" "}</CODE> - <BR> - {$vars[vars].sdesc} - {/if} - {/section} -</UL> -{else} -<!-- ============ VARIABLE DETAIL =========== --> - -<A NAME='variable_detail'></A> - -<H3>Variable Detail</H3> - -<UL> -{section name=vars loop=$vars} -{if $vars[vars].static} -<A NAME="{$vars[vars].var_dest}"><!-- --></A> -<LI><SPAN class="code">static {$vars[vars].var_name}</SPAN> = <CODE class="varsummarydefault">{$vars[vars].var_default|replace:"\n":"<br>\n"|replace:" ":" "|replace:"\t":" "}</CODE> [line <span class="linenumber">{if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}</span>]</LI> -<LI><b>Data type:</b> <CODE class="varsummarydefault">{$vars[vars].var_type}</CODE>{if $vars[vars].var_overrides}<b>Overrides:</b> {$vars[vars].var_overrides}<br>{/if}</LI> -{include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} -<BR> -{/if} -{/section} -{section name=vars loop=$vars} -{if !$vars[vars].static} -<A NAME="{$vars[vars].var_dest}"><!-- --></A> -<LI><SPAN class="code">{$vars[vars].var_name}</SPAN> = <CODE class="varsummarydefault">{$vars[vars].var_default|replace:"\n":"<br>\n"|replace:" ":" "|replace:"\t":" "}</CODE> [line <span class="linenumber">{if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}</span>]</LI> -<LI><b>Data type:</b> <CODE class="varsummarydefault">{$vars[vars].var_type}</CODE>{if $vars[vars].var_overrides}<b>Overrides:</b> {$vars[vars].var_overrides}<br>{/if}</LI> -{include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} -<BR> -{/if} -{/section} -</UL> -{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/HTMLSmartyConverter.inc b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/HTMLSmartyConverter.inc deleted file mode 100755 index d9fe459c..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/HTMLSmartyConverter.inc +++ /dev/null @@ -1,1966 +0,0 @@ -<?php -/** - * HTML output converter for Smarty Template. - * This Converter takes output from the {@link Parser} and converts it to HTML-ready output for use with {@link Smarty}. - * - * phpDocumentor :: automatic documentation generator - * - * PHP versions 4 and 5 - * - * Copyright (c) 2000-2006 Joshua Eichorn, Gregory Beaver - * - * LICENSE: - * - * This library is free software; you can redistribute it - * and/or modify it under the terms of the GNU Lesser General - * Public License as published by the Free Software Foundation; - * either version 2.1 of the License, or (at your option) any - * later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * - * @package Converters - * @subpackage HTMLframes - * @author Joshua Eichorn <jeichorn@phpdoc.org> - * @author Greg Beaver <cellog@php.net> - * @copyright 2000-2006 Joshua Eichorn, Gregory Beaver - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL - * @version CVS: $Id: HTMLSmartyConverter.inc 234145 2007-04-19 20:20:57Z ashnazg $ - * @filesource - * @link http://www.phpdoc.org - * @link http://pear.php.net/PhpDocumentor - * @see parserDocBlock, parserInclude, parserPage, parserClass - * @see parserDefine, parserFunction, parserMethod, parserVar - * @since 1.0rc1 - */ -/** - * HTML output converter. - * This Converter takes output from the {@link Parser} and converts it to HTML-ready output for use with {@link Smarty}. - * - * @package Converters - * @subpackage HTMLSmarty - * @see parserDocBlock, parserInclude, parserPage, parserClass, parserDefine, parserFunction, parserMethod, parserVar - * @author Greg Beaver <cellog@php.net> - * @since 1.0rc1 - * @version $Revision: 234145 $ - */ -class HTMLSmartyConverter extends Converter -{ - /** - * This converter knows about the new root tree processing - * In order to fix PEAR Bug #6389 - * @var boolean - */ - var $processSpecialRoots = true; - /** - * Smarty Converter wants elements sorted by type as well as alphabetically - * @see Converter::$sort_page_contents_by_type - * @var boolean - */ - var $sort_page_contents_by_type = true; - /** @var string */ - var $outputformat = 'HTML'; - /** @var string */ - var $name = 'Smarty'; - /** - * indexes of elements by package that need to be generated - * @var array - */ - var $leftindex = array('classes' => true, 'pages' => true, 'functions' => true, 'defines' => false, 'globals' => false); - - /** - * output directory for the current procedural page being processed - * @var string - */ - var $page_dir; - - /** - * target directory passed on the command-line. - * {@link $targetDir} is malleable, always adding package/ and package/subpackage/ subdirectories onto it. - * @var string - */ - var $base_dir; - - /** - * output directory for the current class being processed - * @var string - */ - var $class_dir; - - /** - * array of converted package page names. - * Used to link to the package page in the left index - * @var array Format: array(package => 1) - */ - var $package_pages = array(); - - /** - * controls formatting of parser informative output - * - * Converter prints: - * "Converting /path/to/file.php... Procedural Page Elements... Classes..." - * Since HTMLdefaultConverter outputs files while converting, it needs to send a \n to start a new line. However, if there - * is more than one class, output is messy, with multiple \n's just between class file output. This variable prevents that - * and is purely cosmetic - * @var boolean - */ - var $juststarted = false; - - /** - * contains all of the template procedural page element loop data needed for the current template - * @var array - */ - var $current; - - /** - * contains all of the template class element loop data needed for the current template - * @var array - */ - var $currentclass; - var $wrote = false; - var $ric_set = array(); - - /** - * sets {@link $base_dir} to $targetDir - * @see Converter() - */ - - /**#@+ - * @access private - */ - var $_classleft_cache = false; - var $_classcontents_cache = false; - var $_pagecontents_cache = false; - var $_pageleft_cache = false; - var $_done_package_index = false; - var $_ric_done = false; - var $_wrote_tdir = false; - var $ric_contents = array(); - /**#@-*/ - - function HTMLSmartyConverter(&$allp, &$packp, &$classes, &$procpages, $po, $pp, $qm, $targetDir, $templateDir, $title) - { - Converter::Converter($allp, $packp, $classes, $procpages,$po, $pp, $qm, $targetDir, $templateDir, $title); - $this->base_dir = $targetDir; - } - - function writeSource($path, $value) - { - $templ = &$this->newSmarty(); - $pathinfo = $this->proceduralpages->getPathInfo($path, $this); - $templ->assign('source',$value); - $templ->assign('package',$pathinfo['package']); - $templ->assign('subpackage',$pathinfo['subpackage']); - $templ->assign('name',$pathinfo['name']); - $templ->assign('source_loc',$pathinfo['source_loc']); - $templ->assign('docs',$pathinfo['docs']); - $templ->assign("subdir",'../'); - $templ->register_outputfilter('HTMLSmarty_outputfilter'); - $this->setTargetDir($this->getFileSourcePath($this->base_dir)); - phpDocumentor_out("\n"); - $this->setSourcePaths($path); - $this->writefile($this->getFileSourceName($path).'.html',$templ->fetch('filesource.tpl')); - } - - function writeExample($title, $path, $source) - { - $templ = &$this->newSmarty(); - $templ->assign('source',$source); - if (empty($title)) - { - $title = 'example'; - addWarning(PDERROR_EMPTY_EXAMPLE_TITLE, $path, $title); - } - $templ->assign('title',$title); - $templ->assign('file',$path); - $templ->assign("subdir",'../'); - $templ->register_outputfilter('HTMLSmarty_outputfilter'); - $this->setTargetDir($this->base_dir . PATH_DELIMITER . '__examplesource'); - phpDocumentor_out("\n"); - $this->writefile('exsource_'.$path.'.html',$templ->fetch('examplesource.tpl')); - } - - function getExampleLink($path, $title) - { - return $this->returnLink('{$subdir}__examplesource' . PATH_DELIMITER . 'exsource_'.$path.'.html',$title); - } - - function getSourceLink($path) - { - return $this->returnLink('{$subdir}__filesource/' . - $this->getFileSourceName($path).'.html','Source Code for this file'); - } - - /** - * Retrieve a Converter-specific anchor to a segment of a source code file - * parsed via a {@tutorial tags.filesource.pkg} tag. - * @param string full path to source file - * @param string name of anchor - * @param string link text, if this is a link - * @param boolean returns either a link or a destination based on this - * parameter - * @return string link to an anchor, or the anchor - */ - function getSourceAnchor($sourcefile,$anchor,$text = '',$link = false) - { - if ($link) { - return $this->returnLink('{$subdir}__filesource/' . - $this->getFileSourceName($sourcefile) . '.html#a' . $anchor, $text); - } else { - return '<a name="a'.$anchor.'"></a>'; - } - } - - /** - * Return a line of highlighted source code with formatted line number - * - * If the $path is a full path, then an anchor to the line number will be - * added as well - * @param integer line number - * @param string highlighted source code line - * @param false|string full path to @filesource file this line is a part of, - * if this is a single line from a complete file. - * @return string formatted source code line with line number - */ - function sourceLine($linenumber, $line, $path = false) - { - $extra = ''; - if (strlen(str_replace("\n", '', $line)) == 0) { - $extra = ' '; - } - if ($path) - { - return '<li><div class="src-line">' . $this->getSourceAnchor($path, $linenumber) . - str_replace("\n",'',$line) . $extra . - "</div></li>\n"; - } else - { - return '<li><div class="src-line">' . str_replace("\n",'',$line) . "$extra</div></li>\n"; - } - } - - /** - * Used to convert the <<code>> tag in a docblock - * @param string - * @param boolean - * @return string - */ - function ProgramExample($example, $tutorial = false, $inlinesourceparse = null/*false*/, - $class = null/*false*/, $linenum = null/*false*/, $filesourcepath = null/*false*/) - { - $trans = $this->template_options['desctranslate']; - $this->template_options['desctranslate'] = array(); - $example = '<ol>' . parent::ProgramExample($example, $tutorial, $inlinesourceparse, $class, $linenum, $filesourcepath) - .'</ol>'; - $this->template_options['desctranslate'] = $trans; - if (!isset($this->template_options['desctranslate'])) return $example; - if (!isset($this->template_options['desctranslate']['code'])) return $example; - $example = $this->template_options['desctranslate']['code'] . $example; - if (!isset($this->template_options['desctranslate']['/code'])) return $example; - return $example . $this->template_options['desctranslate']['/code']; - } - - /** - * @param string - */ - function TutorialExample($example) - { - $trans = $this->template_options['desctranslate']; - $this->template_options['desctranslate'] = array(); - $example = '<ol>' . parent::TutorialExample($example) - .'</ol>'; - $this->template_options['desctranslate'] = $trans; - if (!isset($this->template_options['desctranslate'])) return $example; - if (!isset($this->template_options['desctranslate']['code'])) return $example; - $example = $this->template_options['desctranslate']['code'] . $example; - if (!isset($this->template_options['desctranslate']['/code'])) return $example; - return $example . $this->template_options['desctranslate']['/code']; - } - - function getCurrentPageLink() - { - return $this->curname . '.html'; - } - - function unmangle($sourcecode) - { - $sourcecode = str_replace(' ',' ',$sourcecode); - $sourcecode = str_replace('&','&',$sourcecode); - $sourcecode = str_replace('<br />',"<br>",$sourcecode); - $sourcecode = str_replace('<code>','<pre>',$sourcecode); - $sourcecode = str_replace('</code>','</pre>',$sourcecode); - $sourcecode = str_replace('<','<',$sourcecode); - $sourcecode = str_replace('>','>',$sourcecode); - return $sourcecode; - } - - /** - * Uses htmlspecialchars() on the input - */ - function postProcess($text) - { - if ($this->highlightingSource) { - return str_replace(array(' ',"\t"), array(' ', ' '), - htmlspecialchars($text)); - } - return htmlspecialchars($text); - } - - /** - * Use the template tutorial_toc.tpl to generate a table of contents for HTML - * @return string table of contents formatted for use in the current output format - * @param array format: array(array('tagname' => section, 'link' => returnsee link, 'id' => anchor name, 'title' => from title tag),...) - */ - function formatTutorialTOC($toc) - { - $template = &$this->newSmarty(); - $template->assign('toc',$toc); - return $template->fetch('tutorial_toc.tpl'); - } - - function &SmartyInit(&$templ) - { - $this->makeLeft(); - $templ->assign("ric",$this->ric_set); - $templ->assign("packageindex",$this->package_index); - $templ->assign('hastodos',count($this->todoList)); - $templ->assign('todolink','todolist.html'); - $templ->assign("subdir",''); - return $templ; - } - - /** - * Writes out the template file of {@link $class_data} and unsets the template to save memory - * @see registerCurrentClass() - * @see parent::endClass() - */ - function endClass() - { - $a = '../'; - if (!empty($this->subpackage)) $a .= '../'; - if ($this->juststarted) - { - $this->juststarted = false; - phpDocumentor_out("\n"); - flush(); - } - $this->setTargetDir($this->base_dir . PATH_DELIMITER . $this->class_dir); - $classleft = $this->getClassLeft(); - $this->class_data->assign("compiledfileindex",$this->getPageLeft()); - $this->class_data->assign("compiledclassindex",$classleft['class']); - $this->class_data->assign("compiledinterfaceindex",$classleft['interface']); - $this->class_data->assign("tutorials",$this->getTutorialList()); - $this->class_data->assign("contents",$this->getClassContents()); - $this->class_data->assign("packageindex",$this->package_index); - $this->class_data->assign("package",$this->package); - $this->class_data->assign("subdir",$a); - $this->class_data->register_outputfilter('HTMLSmarty_outputfilter'); - $this->writefile($this->class . '.html',$this->class_data->fetch('class.tpl')); - unset($this->class_data); - } - - function getTutorialList() - { - static $cache = false; - if ($cache) - { - if (isset($cache[$this->package])) return $cache[$this->package]; - } - $package = $this->package; - if (!isset($this->tutorials[$package])) return false; - foreach($this->tutorials[$package] as $subpackage => $blah) - { - $subpackages[] = $subpackage; - } - $tutes = array(); - foreach($subpackages as $subpackage) - { - if (isset($this->tutorial_tree) && is_array($this->tutorial_tree)) - foreach($this->tutorial_tree as $root => $tr) - { - if ($tr['tutorial']->package == $package && $tr['tutorial']->subpackage == $subpackage) - $tutes[$tr['tutorial']->tutorial_type][] = $this->getTutorialTree($tr['tutorial']); - } - } - $cache[$this->package] = $tutes; - return $tutes; - } - - function getTutorialTree($tutorial,$k = false) - { - $ret = ''; - if (is_object($tutorial)) $tree = parent::getTutorialTree($tutorial); else $tree = $tutorial; - if (!$tree) - { - $template = &$this->newSmarty(); - $template->assign('subtree',false); - $template->assign('name',str_replace('.','',$tutorial->name)); - $template->assign('parent',false); - $template->assign('haskids',false); - $template->assign('kids',''); - $link = new tutorialLink; - $t = $tutorial; - $link->addLink('',$t->path,$t->name,$t->package,$t->subpackage,$t->getTitle($this)); - $main = array('link' => $this->getId($link), 'title' => $link->title); - $template->assign('main',$main); - return $template->fetch('tutorial_tree.tpl'); - } - if (isset($tree['kids'])) - { - foreach($tree['kids'] as $subtree) - { - $ret .= $this->getTutorialTree($subtree, true); - } - } - $template = &$this->newSmarty(); - $template->assign('subtree',$k); - $template->assign('name',str_replace('.','',$tree['tutorial']->name)); - $template->assign('parent',($k ? str_replace('.','',$tree['tutorial']->parent->name) : false)); - $template->assign('haskids',strlen($ret)); - $template->assign('kids',$ret); - $link = new tutorialLink; - $t = $tree['tutorial']; - $link->addLink('',$t->path,$t->name,$t->package,$t->subpackage,$t->getTitle($this)); - $main = array('link' => $this->getId($link), 'title' => $link->title); - $template->assign('main',$main); - return $template->fetch('tutorial_tree.tpl'); - } - - function getClassLeft() - { - if ($this->_classleft_cache) - { - if (isset($this->_classleft_cache[$this->package][$this->subpackage])) return $this->_classleft_cache[$this->package][$this->subpackage]; - } - $arr = $classarr = $interfacearr = array(); - if (isset($this->left['#class'][$this->package])) - foreach($this->left['#class'][$this->package] as $subpackage => $pages) - { - for ($i = 0; $i < count($pages); $i++) { - if ($pages[$i]['is_interface']) { - $interfacearr[$subpackage][] = $pages[$i]; - } else { - $classarr[$subpackage][] = $pages[$i]; - } - } - } - $templ = &$this->newSmarty(); - $templ->assign('classleftindex',$classarr); - $classarr = $templ->fetch('classleft.tpl'); - $this->_classleft_cache[$this->package][$this->subpackage]['class'] = $classarr; - $templ = &$this->newSmarty(); - $templ->assign('classleftindex',$interfacearr); - $interfacearr = $templ->fetch('classleft.tpl'); - $this->_classleft_cache[$this->package][$this->subpackage]['interface'] = - $interfacearr; - return $this->_classleft_cache[$this->package][$this->subpackage]; - } - - function getClassContents() - { - if ($this->_classcontents_cache) - { - if (isset($this->_classcontents_cache[$this->package][$this->subpackage][$this->class])) return $this->_classcontents_cache[$this->package][$this->subpackage][$this->class]; - } - $arr = array(); - foreach($this->class_contents[$this->package][$this->subpackage][$this->class] as $i => $link) - { - if (is_object($link)) - $arr[$link->type][] = $this->returnSee($link,$link->name); - } - $this->_classcontents_cache[$this->package][$this->subpackage][$this->class] = $arr; - return $arr; - } - - function getPageContents() - { - if (!isset($this->path)) $this->path = '#####'; - if ($this->_pagecontents_cache) - { - if (isset($this->_pagecontents_cache[$this->package][$this->subpackage][$this->path])) return $this->_pagecontents_cache[$this->package][$this->subpackage][$this->path]; - } - $arr = array(); - foreach($this->page_contents[$this->curpage->package][$this->curpage->subpackage] as $i => $link) - { - if (is_object($link)) - $arr[$link->type][$i] = $this->returnSee($link); - } - $this->_pagecontents_cache[$this->package][$this->subpackage][$this->path] = $arr; - return $arr; - } - - function getPageLeft() - { - if ($this->_pageleft_cache) - { - if (isset($this->_pageleft_cache[$this->package][$this->subpackage])) return $this->_pageleft_cache[$this->package][$this->subpackage]; - } - $arr = array(); - if (isset($this->left[$this->package])) - foreach($this->left[$this->package] as $subpackage => $pages) - { - $arr[$subpackage] = $pages; - } - $templ = &$this->newSmarty(); - $templ->assign('fileleftindex',$arr); - $arr = $templ->fetch('fileleft.tpl'); - $this->_pageleft_cache[$this->package][$this->subpackage] = $arr; - return $arr; - } - - /** - * Writes out the template file of {@link $page_data} and unsets the template to save memory - * @see registerCurrent() - * @see parent::endPage() - */ - function endPage() - { - $this->package = $this->curpage->package; - $this->subpackage = $this->curpage->subpackage; - $a = '../'; - if (!empty($this->subpackage)) $a .= '../'; - $classleft = $this->getClassLeft(); - $this->setTargetDir($this->base_dir . PATH_DELIMITER . $this->page_dir); - $this->page_data->assign("contents",$this->getPageContents()); - $this->page_data->assign("compiledfileindex",$this->getPageLeft()); - $this->page_data->assign("compiledclassindex",$classleft['class']); - $this->page_data->assign("compiledinterfaceindex",$classleft['interface']); - $this->page_data->assign("tutorials",$this->getTutorialList()); - $this->page_data->assign("packageindex",$this->package_index); - $this->page_data->assign("package",$this->package); - $this->page_data->assign("subdir",$a); - $this->page_data->register_outputfilter('HTMLSmarty_outputfilter'); - $this->writefile($this->page . '.html',$this->page_data->fetch('page.tpl')); - unset($this->page_data); - } - - /** - * @param string - * @param string - * @return string <a href="'.$link.'">'.$text.'</a> - */ - function returnLink($link,$text) - { - return '<a href="'.$link.'">'.$text.'</a>'; - } - - function makeLeft() - { - if ($this->_done_package_index) return; - $this->_done_package_index = true; - if (!isset($this->package_index)) - foreach($this->all_packages as $key => $val) - { - if (isset($this->pkg_elements[$key])) - { - if (!isset($start)) $start = $key; - $this->package_index[] = array('link' => "li_$key.html", 'title' => $key); - } - } - foreach($this->page_elements as $package => $o1) - { - foreach($o1 as $subpackage => $links) - { - for($i=0;$i<count($links);$i++) - { - $this->left[$package][$subpackage][] = - array("link" => $this->getId($links[$i]), "title" => $links[$i]->name); - } - } - } - foreach($this->class_elements as $package => $o1) - { - foreach($o1 as $subpackage => $links) - { - for($i=0;$i<count($links);$i++) - { - $isinterface = false; - if ($links[$i]->type == 'class') { - $class = $this->classes->getClass($links[$i]->name, - $links[$i]->path); - if ($class) { - $isinterface = $class->isInterface(); - } - } - $this->left['#class'][$package][$subpackage][] = - array("link" => $this->getId($links[$i]), "title" => $links[$i]->name, 'is_interface' => $isinterface); - } - } - } - } - - /** - * HTMLdefaultConverter chooses to format both package indexes and the complete index here - * - * This function formats output for the elementindex.html and pkgelementindex.html template files. It then - * writes them to the target directory - * @see generateElementIndex(), generatePkgElementIndex() - */ - function formatPkgIndex() - { - list($package_indexes,$packages,$mletters) = $this->generatePkgElementIndexes(); - for($i=0;$i<count($package_indexes);$i++) - { - $template = &$this->newSmarty(); - $this->package = $package_indexes[$i]['package']; - $this->subpackage = ''; - $classleft = $this->getClassLeft(); - $template->assign("compiledfileindex",$this->getPageLeft()); - $template->assign("compiledclassindex",$classleft['class']); - $template->assign("compiledinterfaceindex",$classleft['interface']); - $template->assign("tutorials",$this->getTutorialList()); - $template->assign("index",$package_indexes[$i]['pindex']); - $template->assign("package",$package_indexes[$i]['package']); - $template->assign("letters",$mletters[$package_indexes[$i]['package']]); - $template->assign("title","Package ".$package_indexes[$i]['package']." Element Index"); - $template->assign("date",date("r",time())); - $template->register_outputfilter('HTMLSmarty_outputfilter'); - $this->setTargetDir($this->base_dir); - $this->writefile('elementindex_'.$package_indexes[$i]['package'].'.html',$template->fetch('pkgelementindex.tpl')); - } - phpDocumentor_out("\n"); - flush(); - } - - /** - * HTMLdefaultConverter uses this function to format template index.html and packages.html - * - * This function generates the package list from {@link $all_packages}, eliminating any - * packages that don't have any entries in their package index (no files at all, due to @ignore - * or other factors). Then it uses the default package name as the first package index to display. - * It sets the right pane to be either a blank file with instructions on making package-level docs, - * or the package-level docs for the default package. - * @global string Used to set the starting package to display - */ - function formatIndex() - { - global $phpDocumentor_DefaultPackageName; - if (!isset($this->package_index)) - { - debug("\nERROR: Nothing parsed, check the command-line"); - die(); - } - list($elindex,$mletters) = $this->generateElementIndex(); - $template = &$this->newSmarty(); - $template->assign("index",$elindex); - $template->assign("letters",$mletters); - $template->assign("title","Element Index"); - $template->assign("package", false); - $template->assign("date",date("r",time())); - phpDocumentor_out("\n"); - flush(); - $this->setTargetDir($this->base_dir); - $template->register_outputfilter('HTMLSmarty_outputfilter'); - $this->writefile('elementindex.html',$template->fetch('elementindex.tpl')); - usort($this->package_index,"HTMLSmarty_pindexcmp"); - $index = &$this->newSmarty(); - foreach($this->all_packages as $key => $val) - { - if (isset($this->pkg_elements[$key])) - { - if (!isset($start)) $start = $key; - if (!isset($this->package_pages[$key])) $this->writeNewPPage($key); - } - } - // Created index.html - $start = $phpDocumentor_DefaultPackageName; - if (!isset($this->pkg_elements[$key])) - { - // if there are no elements, use a random package as the default - $a = array_keys($this->pkg_elements); - $start = array_shift($a); - } - $this->package = $start; - $this->subpackage = ''; - $classleft = $this->getClassLeft(); - $index->assign("compiledfileindex",$this->getPageLeft()); - $index->assign("compiledclassindex",$classleft['class']); - $index->assign("compiledinterfaceindex",$classleft['interface']); - $index->assign('hastodos',count($this->todoList)); - $index->assign('todolink','todolist.html'); - $index->assign("tutorials",$this->getTutorialList()); - $index->assign("date",date("r",time())); - $index->assign("package",$this->package); - $index->assign("title",$this->title); - $index->assign("start","li_$start.html"); - if (isset($this->package_pages[$start])) - { - $index->assign("contents",$this->package_pages[$start]); - } - $index->register_outputfilter('HTMLSmarty_outputfilter'); - phpDocumentor_out("\n"); - flush(); - $this->setTargetDir($this->base_dir); - $this->writefile("index.html",$index->fetch('index.tpl')); - unset($index); - - } - - function writeNewPPage($key) - { - $template = &$this->newSmarty(); - $this->package = $key; - $this->subpackage = ''; - $classleft = $this->getClassLeft(); - $template->assign("compiledfileindex",$this->getPageLeft()); - $template->assign("compiledclassindex",$classleft['class']); - $template->assign("compiledinterfaceindex",$classleft['interface']); - $template->assign("tutorials",$this->getTutorialList()); - $template->assign("date",date("r",time())); - $template->assign("title",$this->title); - $template->assign("package",$key); - $template->register_outputfilter('HTMLSmarty_outputfilter'); - phpDocumentor_out("\n"); - flush(); - $this->setTargetDir($this->base_dir); - $this->writefile("li_$key.html",$template->fetch('index.tpl')); - unset($template); - } - - /** - * Generate indexes for li_package.html and classtree output files - * - * This function generates the li_package.html files from the template file left.html. It does this by - * iterating through each of the $page_elements, $class_elements and $function_elements arrays to retrieve - * the pre-sorted {@link abstractLink} descendants needed for index generation. Conversion of these links to - * text is done by {@link returnSee()}. - * - * Then it uses {@link generateFormattedClassTrees()} to create class trees from the template file classtrees.html. Output - * filename is classtrees_packagename.html. This function also unsets {@link $elements} and {@link $pkg_elements} to free - * up the considerable memory these two class vars use - * @see $page_elements, $class_elements, $function_elements - */ - function formatLeftIndex() - { - phpDocumentor_out("\n"); - flush(); - $this->setTargetDir($this->base_dir); - if (!isset($this->left)) - { - debug("Nothing parsed, check the command-line"); - die(); - } - foreach($this->all_packages as $package => $rest) - { - if (!isset($this->pkg_elements[$package])) continue; - // Create class tree page - $template = &$this->newSmarty(); - $classleft = $this->getClassLeft(); - $template->assign("compiledfileindex",$this->getPageLeft()); - $template->assign("compiledclassindex",$classleft['class']); - $template->assign("compiledinterfaceindex",$classleft['interface']); - $template->assign("classtrees",$this->generateFormattedClassTrees($package)); - $template->assign("interfaces",$this->generateFormattedInterfaceTrees($package)); - $template->assign("package",$package); - $template->assign("date",date("r",time())); - $template->assign("title","Class Trees for Package $package"); - $template->register_outputfilter('HTMLSmarty_outputfilter'); - $this->writefile("classtrees_$package.html",$template->fetch('classtrees.tpl')); - phpDocumentor_out("\n"); - flush(); - } - $this->writeRIC(); - // free up considerable memory - unset($this->elements); - unset($this->pkg_elements); - } - - - /** - * This function takes an {@link abstractLink} descendant and returns an html link - * - * @param abstractLink a descendant of abstractlink should be passed, and never text - * @param string text to display in the link - * @param boolean this parameter is not used, and is deprecated - * @param boolean determines whether the returned text is enclosed in an <a> tag - */ - function returnSee(&$element, $eltext = false, $with_a = true) - { - if (!is_object($element) || !$element) return false; - if (!$with_a) return $this->getId($element, false); - if (!$eltext) - { - $eltext = ''; - switch($element->type) - { - case 'tutorial' : - $eltext = strip_tags($element->title); - break; - case 'method' : - case 'var' : - case 'const' : - $eltext .= $element->class.'::'; - case 'page' : - case 'define' : - case 'class' : - case 'function' : - case 'global' : - default : - $eltext .= $element->name; - if ($element->type == 'function' || $element->type == 'method') $eltext .= '()'; - break; - } - } - return '<a href="'.$this->getId($element).'">'.$eltext.'</a>'; - } - - function getId($element, $fullpath = true) - { - if (phpDocumentor_get_class($element) == 'parserdata') - { - $element = $this->addLink($element->parent); - $elp = $element->parent; - } elseif (is_a($element, 'parserbase')) - { - $elp = $element; - $element = $this->addLink($element); - } - $c = ''; - if (!empty($element->subpackage)) - { - $c = '/'.$element->subpackage; - } - $b = '{$subdir}'; - switch ($element->type) - { - case 'page' : - if ($fullpath) - return $b.$element->package.$c.'/'.$element->fileAlias.'.html'; - return 'top'; - break; - case 'define' : - case 'global' : - case 'function' : - if ($fullpath) - return $b.$element->package.$c.'/'.$element->fileAlias.'.html#'.$element->type.$element->name; - return $element->type.$element->name; - break; - case 'class' : - if ($fullpath) - return $b.$element->package.$c.'/'.$element->name.'.html'; - return 'top'; - break; - case 'method' : - case 'var' : - case 'const' : - if ($fullpath) - return $b.$element->package.$c.'/'.$element->class.'.html#'.$element->type.$element->name; - return $element->type.$element->name; - break; - case 'tutorial' : - $d = ''; - if ($element->section) - { - $d = '#'.$element->section; - } - return $b.$element->package.$c.'/tutorial_'.$element->name.'.html'.$d; - } - } - - /** - * Convert README/INSTALL/CHANGELOG file contents to output format - * @param README|INSTALL|CHANGELOG - * @param string contents of the file - */ - function Convert_RIC($name, $contents) - { - $this->ric_contents[$name] = $contents; - $this->ric_set[] = array('file' => 'ric_'.$name . '.html','name' => $name); - } - - function writeRIC() - { - if ($this->_ric_done) return; - $this->_ric_done = true; - foreach($this->ric_contents as $name => $contents) - { - $template = &$this->newSmarty(); - $template->assign('contents',$contents); - $template->assign('name',$name); - $template->assign('title',$name); - $this->setTargetDir($this->base_dir); - $this->writefile('ric_'.$name . '.html',$template->fetch('ric.tpl')); - } - } - - function ConvertTodoList() - { - $todolist = array(); - foreach($this->todoList as $package => $alltodos) - { - foreach($alltodos as $todos) - { - $converted = array(); - $converted['link'] = $this->returnSee($todos[0]); - if (!is_array($todos[1])) - { - $converted['todos'][] = $todos[1]->Convert($this); - } else - { - foreach($todos[1] as $todo) - { - $converted['todos'][] = $todo->Convert($this); - } - } - $todolist[$package][] = $converted; - } - } - $templ = &$this->newSmarty(); - $templ->assign('todos',$todolist); - $templ->register_outputfilter('HTMLSmarty_outputfilter'); - $this->setTargetDir($this->base_dir); - $this->writefile('todolist.html',$templ->fetch('todolist.tpl')); - } - - /** - * Create errors.html template file output - * - * This method takes all parsing errors and warnings and spits them out ordered by file and line number. - * @global ErrorTracker We'll be using it's output facility - */ - function ConvertErrorLog() - { - global $phpDocumentor_errors; - $allfiles = array(); - $files = array(); - $warnings = $phpDocumentor_errors->returnWarnings(); - $errors = $phpDocumentor_errors->returnErrors(); - $template = &$this->newSmarty(); - foreach($warnings as $warning) - { - $file = '##none'; - $linenum = 'Warning'; - if ($warning->file) - { - $file = $warning->file; - $allfiles[$file] = 1; - $linenum .= ' on line '.$warning->linenum; - } - $files[$file]['warnings'][] = array('name' => $linenum, 'listing' => $warning->data); - } - foreach($errors as $error) - { - $file = '##none'; - $linenum = 'Error'; - if ($error->file) - { - $file = $error->file; - $allfiles[$file] = 1; - $linenum .= ' on line '.$error->linenum; - } - $files[$file]['errors'][] = array('name' => $linenum, 'listing' => $error->data); - } - $i=1; - $af = array(); - foreach($allfiles as $file => $num) - { - $af[$i++] = $file; - } - $allfiles = $af; - usort($allfiles,'strnatcasecmp'); - $allfiles[0] = "Post-parsing"; - foreach($allfiles as $i => $a) - { - $allfiles[$i] = array('file' => $a); - } - $out = array(); - foreach($files as $file => $data) - { - if ($file == '##none') $file = 'Post-parsing'; - $out[$file] = $data; - } - $template->assign("files",$allfiles); - $template->assign("all",$out); - $template->assign("title","phpDocumentor Parser Errors and Warnings"); - $template->register_outputfilter('HTMLSmarty_outputfilter'); - $this->setTargetDir($this->base_dir); - $this->writefile("errors.html",$template->fetch('errors.tpl')); - unset($template); - phpDocumentor_out("\n\nTo view errors and warnings, look at ".$this->base_dir. PATH_DELIMITER . "errors.html\n"); - flush(); - } - - function getCData($value) - { - return '<pre>'.htmlentities($value).'</pre>'; - } - - function getTutorialId($package,$subpackage,$tutorial,$id) - { - return $id; - } - - /** - * Converts package page and sets its package as used in {@link $package_pages} - * @param parserPackagePage - */ - function convertPackagepage(&$element) - { - phpDocumentor_out("\n"); - flush(); - $template = &$this->newSmarty(); - $this->package = $element->package; - $this->subpackage = ''; - $classleft = $this->getClassLeft(); - $template->assign("compiledfileindex",$this->getPageLeft()); - $template->assign("compiledclassindex",$classleft['class']); - $template->assign("compiledinterfaceindex",$classleft['interface']); - $template->assign("tutorials",$this->getTutorialList()); - $template->assign("date",date("r",time())); - $template->assign("title",$this->title); - $template->assign("package",$element->package); - $x = $element->Convert($this); - $x = substr($x,strpos($x,'<body')); - $template->assign("contents",trim(substr($x,strpos($x,'>') + 1))); - $this->package_pages[$element->package] = trim(substr($x,strpos($x,'>') + 1)); - $template->register_outputfilter('HTMLSmarty_outputfilter'); - phpDocumentor_out("\n"); - flush(); - $this->setTargetDir($this->base_dir); - $this->writefile("li_".$element->package.".html",$template->fetch('index.tpl')); - unset($template); - } - - /** - * @param parserTutorial - */ - function convertTutorial(&$element) - { - phpDocumentor_out("\n"); - flush(); - $template = &parent::convertTutorial($element); - $this->package = $element->package; - $this->subpackage = $element->subpackage; - $classleft = $this->getClassLeft(); - $template->assign("compiledfileindex",$this->getPageLeft()); - $template->assign("compiledclassindex",$classleft['class']); - $template->assign("compiledinterfaceindex",$classleft['interface']); - $template->assign("tutorials",$this->getTutorialList()); - $template->assign("title",strip_tags($element->getTitle($this))); - $contents = $element->Convert($this); - if ($element->name == $this->package . '.pkg') - { - $this->package_pages[$element->package] = $contents; - } - $a = '../'; - if (!empty($element->subpackage)) $a .= $a; - $template->assign("subdir",$a); - $a = ''; - if ($element->subpackage) $a = PATH_DELIMITER . $element->subpackage; - $template->register_outputfilter('HTMLSmarty_outputfilter'); - $this->setTargetDir($this->base_dir . PATH_DELIMITER . $element->package . $a); - $this->writeFile('tutorial_'.$element->name.'.html',$template->fetch('tutorial.tpl')); - if ($element->name == $element->package . '.pkg') - { - phpDocumentor_out("\n"); - flush(); - // package-level docs - $this->setTargetDir($this->base_dir); - $template->assign("subdir",''); - $this->writeFile('li_'.$element->package.'.html',$template->fetch('tutorial.tpl')); - } - unset($template); - } - - /** - * Converts class for template output - * @see prepareDocBlock(), generateChildClassList(), generateFormattedClassTree(), getFormattedConflicts() - * @see getFormattedInheritedMethods(), getFormattedInheritedVars() - * @param parserClass - */ - function convertClass(&$element) - { - parent::convertClass($element); - $this->class_dir = $element->docblock->package; - if (!empty($element->docblock->subpackage)) $this->class_dir .= PATH_DELIMITER . $element->docblock->subpackage; - $a = '../classtrees_'; - if ($element->docblock->subpackage != '') $a = "../$a"; - - $this->class_data->assign('subdir',$a); - $this->class_data->assign("title","Docs For Class " . $element->getName()); - $this->class_data->assign("page",$element->getName() . '.html'); - } - - /** - * Converts class variables for template output - * @see prepareDocBlock(), getFormattedConflicts() - * @param parserDefine - */ - function convertVar(&$element) - { - parent::convertVar($element, array('var_dest' => $this->getId($element,false))); - } - - /** - * Converts class variables for template output - * @see prepareDocBlock(), getFormattedConflicts() - * @param parserDefine - */ - function convertConst(&$element) - { - parent::convertConst($element, array('const_dest' => $this->getId($element,false))); - } - - /** - * Converts class methods for template output - * @see prepareDocBlock(), getFormattedConflicts() - * @param parserDefine - */ - function convertMethod(&$element) - { - parent::convertMethod($element, array('method_dest' => $this->getId($element,false))); - } - - /** - * Converts function for template output - * @see prepareDocBlock(), parserFunction::getFunctionCall(), getFormattedConflicts() - * @param parserFunction - */ - function convertFunction(&$element) - { - $funcloc = $this->getId($this->addLink($element)); - parent::convertFunction($element,array('function_dest' => $this->getId($element,false))); - } - - /** - * Converts include elements for template output - * @see prepareDocBlock() - * @param parserInclude - */ - function convertInclude(&$element) - { - parent::convertInclude($element, array('include_file' => '_'.strtr($element->getValue(),array('"' => '', "'" => '','.' => '_')))); - } - - /** - * Converts defines for template output - * @see prepareDocBlock(), getFormattedConflicts() - * @param parserDefine - */ - function convertDefine(&$element) - { - parent::convertDefine($element, array('define_link' => $this->getId($element,false))); - } - - /** - * Converts global variables for template output - * @param parserGlobal - * @see prepareDocBlock(), getFormattedConflicts() - */ - function convertGlobal(&$element) - { - parent::convertGlobal($element, array('global_link' => $this->getId($element,false))); - } - - /** - * converts procedural pages for template output - * @see prepareDocBlock(), getClassesOnPage() - * @param parserData - */ - function convertPage(&$element) - { - parent::convertPage($element); - $this->juststarted = true; - $this->page_dir = $element->parent->package; - if (!empty($element->parent->subpackage)) $this->page_dir .= PATH_DELIMITER . $element->parent->subpackage; - // registering stuff on the template - $a = '../'; - if (!empty($element->docblock->subpackage)) $a = $a . $a; - $this->page_data->assign('subdir',$a); - $this->page_data->assign("page",$this->getPageName($element) . '.html'); - $this->page_data->assign("title","Docs for page ".$element->parent->getFile()); - } - - function getPageName(&$element) - { - if (phpDocumentor_get_class($element) == 'parserpage') return '_'.$element->getName(); - return '_'.$element->parent->getName(); - } - - /** - * returns an array containing the class inheritance tree from the root object to the class - * - * @param parserClass class variable - * @return array Format: array(root,child,child,child,...,$class) - * @uses parserClass::getParentClassTree() - */ - - function generateFormattedClassTree($class) - { - $tree = $class->getParentClassTree($this); - $out = ''; - if (count($tree) - 1) - { - $result = array($class->getName()); - $parent = $tree[$class->getName()]; - $distance[] = ''; - while ($parent) - { - $x = $parent; - if (is_object($parent)) - { - $subpackage = $parent->docblock->subpackage; - $package = $parent->docblock->package; - $x = $parent; - $x = $parent->getLink($this); - if (!$x) $x = $parent->getName(); - } - $result[] = - $x; - $distance[] = - "\n%s|\n" . - "%s--"; - if (is_object($parent)) - $parent = $tree[$parent->getName()]; - elseif (isset($tree[$parent])) - $parent = $tree[$parent]; - } - $nbsp = ' '; - for($i=count($result) - 1;$i>=0;$i--) - { - $my_nbsp = ''; - for($j=0;$j<count($result) - $i;$j++) $my_nbsp .= $nbsp; - $distance[$i] = sprintf($distance[$i],$my_nbsp,$my_nbsp); - } - return array('classes'=>array_reverse($result),'distance'=>array_reverse($distance)); - } else - { - return array('classes'=>$class->getName(),'distance'=>array('')); - } - } - - /** @access private */ - function sortVar($a, $b) - { - return strnatcasecmp($a->getName(),$b->getName()); - } - - /** @access private */ - function sortMethod($a, $b) - { - if ($a->isConstructor) return -1; - if ($b->isConstructor) return 1; - return strnatcasecmp($a->getName(),$b->getName()); - } - - /** - * returns a template-enabled array of class trees - * - * @param string $package package to generate a class tree for - * @see $roots, HTMLConverter::getRootTree() - */ - function generateFormattedClassTrees($package) - { - if (!isset($this->roots['normal'][$package]) && - !isset($this->roots['special'][$package])) { - return array(); - } - $trees = array(); - if (isset($this->roots['normal'][$package])) { - $roots = $this->roots['normal'][$package]; - for($i=0;$i<count($roots);$i++) - { - $root = $this->classes->getClassByPackage($roots[$i], $package); - if ($root && $root->isInterface()) { - continue; - } - $trees[] = array('class' => $roots[$i],'class_tree' => "<ul>\n".$this->getRootTree($this->getSortedClassTreeFromClass($roots[$i],$package,''),$package)."</ul>\n"); - } - } - if (isset($this->roots['special'][$package])) { - $roots = $this->roots['special'][$package]; - foreach ($roots as $parent => $classes) { - $thistree = ''; - foreach ($classes as $classinfo) { - $root = $this->classes->getClassByPackage($classinfo, $package); - if ($root && $root->isInterface()) { - continue; - } - $thistree .= - $this->getRootTree( - $this->getSortedClassTreeFromClass( - $classinfo, - $package, - ''), - $package, - true); - } - if (!$thistree) { - continue; - } - $trees[] = array( - 'class' => $parent, - 'class_tree' => "<ul>\n" . $thistree . "</ul>\n" - ); - } - } - return $trees; - } - - /** - * returns a template-enabled array of interface inheritance trees - * - * @param string $package package to generate a class tree for - * @see $roots, HTMLConverter::getRootTree() - */ - function generateFormattedInterfaceTrees($package) - { - if (!isset($this->roots['normal'][$package]) && - !isset($this->roots['special'][$package])) { - return array(); - } - $trees = array(); - if (isset($this->roots['normal'][$package])) { - $roots = $this->roots['normal'][$package]; - for($i=0;$i<count($roots);$i++) - { - $root = $this->classes->getClassByPackage($roots[$i], $package); - if ($root && !$root->isInterface()) { - continue; - } - $trees[] = array('class' => $roots[$i],'class_tree' => "<ul>\n".$this->getRootTree($this->getSortedClassTreeFromClass($roots[$i],$package,''),$package)."</ul>\n"); - } - } - if (isset($this->roots['special'][$package])) { - $roots = $this->roots['special'][$package]; - foreach ($roots as $parent => $classes) { - $thistree = ''; - foreach ($classes as $classinfo) { - $root = $this->classes->getClassByPackage($classinfo, $package); - if ($root && !$root->isInterface()) { - continue; - } - $thistree .= - $this->getRootTree( - $this->getSortedClassTreeFromClass( - $classinfo, - $package, - ''), - $package, - true); - } - if (!$thistree) { - continue; - } - $trees[] = array( - 'class' => $parent, - 'class_tree' => "<ul>\n" . $thistree . "</ul>\n" - ); - } - } - return $trees; - } - - /** - * return formatted class tree for the Class Trees page - * - * @param array $tree output from {@link getSortedClassTreeFromClass()} - * @param string $package package - * @param boolean $nounknownparent if true, an object's parent will not be checked - * @see Classes::$definitechild, generateFormattedClassTrees() - * @return string - */ - function getRootTree($tree, $package, $noparent = false) - { - if (!$tree) return ''; - $my_tree = ''; - $cur = '#root'; - $lastcur = array(false); - $kids = array(); - $dopar = false; - if (!$noparent && $tree[$cur]['parent']) - { - $dopar = true; - if (!is_object($tree[$cur]['parent'])) - { -// debug("parent ".$tree[$cur]['parent']." not found"); - $my_tree .= '<li>' . $tree[$cur]['parent'] .'<ul>'; - } - else - { -// debug("parent ".$this->returnSee($tree[$cur]['parent'])." in other package"); - $root = $this->classes->getClassByPackage($tree[$cur]['parent']->name, - $package); - $my_tree .= '<li>' . $this->returnSee($tree[$cur]['parent']); - if ($tree[$cur]['parent']->package != $package) $my_tree .= ' <b>(Different package)</b><ul>'; - } - } - do - { -// fancy_debug($cur,$lastcur,$kids); - if (count($tree[$cur]['children'])) - { -// debug("$cur has children"); - if (!isset($kids[$cur])) - { -// debug("set $cur kids"); - $kids[$cur] = 1; - $root = $this->classes->getClassByPackage( - $tree[$cur]['link']->name, - $tree[$cur]['link']->package); - if ($implements = $root->getImplements()) { - $my_tree .= '<li>'.$this->returnSee($tree[$cur]['link']) . - ' (implements '; - foreach ($implements as $i => $interface) { - if ($i && $i != count($implements) - 1) $my_tree .= ', '; - if ($link = $this->getLink('object ' . $interface)) { - $my_tree .= $this->returnSee($link); - } else { - $my_tree .= $interface; - } - } - $my_tree .= ')'; - } else { - $my_tree .= '<li>'.$this->returnSee($tree[$cur]['link']); - } - $my_tree .= '<ul>'."\n"; - } - array_push($lastcur,$cur); - list(,$cur) = each($tree[$cur]['children']); -// var_dump('listed',$cur); - if ($cur) - { - $cur = $cur['package'] . '#' . $cur['class']; -// debug("set cur to child $cur"); -// $my_tree .= '<li>'.$this->returnSee($tree[$cur]['link']); - continue; - } else - { -// debug("end of children for $cur"); - $cur = array_pop($lastcur); - $cur = array_pop($lastcur); - $my_tree .= '</ul></li>'."\n"; - if ($dopar && ($cur == '#root' || !$cur)) $my_tree .= '</ul></li>'; - } - } else - { -// debug("$cur has no children"); - $my_tree .= '<li>'.$this->returnSee($tree[$cur]['link'])."</li>"; - if ($dopar && $cur == '#root') $my_tree .= '</ul></li>'; - $cur = array_pop($lastcur); - } - } while ($cur); - return $my_tree; - } - - /** - * Generate indexing information for given element - * - * @param parserElement descendant of parserElement - * @see generateElementIndex() - * @return array - */ - function getIndexInformation($elt) - { - $Result['type'] = $elt->type; - $Result['file_name'] = $elt->file; - $Result['path'] = $elt->getPath(); - - if (isset($elt->docblock)) - { - $Result['description'] = $elt->docblock->getSDesc($this); - - if ($elt->docblock->hasaccess) - $Result['access'] = $elt->docblock->tags['access'][0]->value; - else - $Result['access'] = 'public'; - - $Result['abstract'] = isset ($elt->docblock->tags['abstract'][0]); - } - else - $Result['description'] = ''; - - $aa = $Result['description']; - if (!empty($aa)) $aa = "<br> $aa"; - - switch($elt->type) - { - case 'class': - $Result['name'] = $elt->getName(); - $Result['title'] = 'Class'; - $Result['link'] = $this->getClassLink($elt->getName(), - $elt->docblock->package, - $elt->getPath(), - $elt->getName()); - $Result['listing'] = 'in file '.$elt->file.', class '.$Result['link']."$aa"; - break; - case 'define': - $Result['name'] = $elt->getName(); - $Result['title'] = 'Constant'; - $Result['link'] = $this->getDefineLink($elt->getName(), - $elt->docblock->package, - $elt->getPath(), - $elt->getName()); - $Result['listing'] = 'in file '.$elt->file.', constant '.$Result['link']."$aa"; - break; - case 'global': - $Result['name'] = $elt->getName(); - $Result['title'] = 'Global'; - $Result['link'] = $this->getGlobalLink($elt->getName(), - $elt->docblock->package, - $elt->getPath(), - $elt->getName()); - $Result['listing'] = 'in file '.$elt->file.', global variable '.$Result['link']."$aa"; - break; - case 'function': - $Result['name'] = $elt->getName(); - $Result['title'] = 'Function'; - $Result['link'] = $this->getFunctionLink($elt->getName(), - $elt->docblock->package, - $elt->getPath(), - $elt->getName().'()'); - $Result['listing'] = 'in file '.$elt->file.', function '.$Result['link']."$aa"; - break; - case 'method': - $Result['name'] = $elt->getName(); - $Result['title'] = 'Method'; - $Result['link'] = $this->getMethodLink($elt->getName(), - $elt->class, - $elt->docblock->package, - $elt->getPath(), - $elt->class.'::'.$elt->getName().'()' - ); - if ($elt->isConstructor) $Result['constructor'] = 1; - $Result['listing'] = 'in file '.$elt->file.', method '.$Result['link']."$aa"; - break; - case 'var': - $Result['name'] = $elt->getName(); - $Result['title'] = 'Variable'; - $Result['link'] = $this->getVarLink($elt->getName(), - $elt->class, - $elt->docblock->package, - $elt->getPath(), - $elt->class.'::'.$elt->getName()); - $Result['listing'] = 'in file '.$elt->file.', variable '.$Result['link']."$aa"; - break; - case 'const': - $Result['name'] = $elt->getName(); - $Result['title'] = 'Variable'; - $Result['link'] = $this->getConstLink($elt->getName(), - $elt->class, - $elt->docblock->package, - $elt->getPath(), - $elt->class.'::'.$elt->getName()); - $Result['listing'] = 'in file '.$elt->file.', class constant '.$Result['link']."$aa"; - break; - case 'page': - $Result['name'] = $elt->getFile(); - $Result['title'] = 'Page'; - $Result['link'] = $this->getPageLink($elt->getFile(), - $elt->package, - $elt->getPath(), - $elt->getFile()); - $Result['listing'] = 'procedural page '.$Result['link']; - break; - case 'include': - $Result['name'] = $elt->getName(); - $Result['title'] = 'Include'; - $Result['link'] = $elt->getValue(); - $Result['listing'] = 'include '.$Result['name']; - break; - } - - return $Result; - } - - /** - * Generate alphabetical index of all elements - * - * @see $elements, walk() - */ - function generateElementIndex() - { - $elementindex = array(); - $letters = array(); - $used = array(); - foreach($this->elements as $letter => $nutoh) - { - foreach($this->elements[$letter] as $i => $yuh) - { - if ($this->elements[$letter][$i]->type != 'include') - { - if (!isset($used[$letter])) - { - $letters[]['letter'] = $letter; - $elindex['letter'] = $letter; - $used[$letter] = 1; - } - - $elindex['index'][] = $this->getIndexInformation($this->elements[$letter][$i]); - } - } - if (isset($elindex['index'])) - { - $elementindex[] = $elindex; - } else - { - unset($letters[count($letters) - 1]); - } - $elindex = array(); - } - return array($elementindex,$letters); - } - - function copyMediaRecursively($media,$targetdir,$subdir = '') - { - $versionControlDirectories = array ('CVS', 'media/CVS', 'media\\CVS', '.svn', 'media/.svn', 'media\\.svn'); - if (!is_array($media)) { - return; - } - foreach($media as $dir => $files) - { - if ($dir === '/') - { - $this->copyMediaRecursively($files,$targetdir); - } else - { - if (!is_numeric($dir)) - { - if (in_array($dir, $versionControlDirectories)) - { - // skip it entirely - } - else - { - // create the subdir - phpDocumentor_out("creating $targetdir" . PATH_DELIMITER . "$dir\n"); - Converter::setTargetDir($targetdir . PATH_DELIMITER . $dir); - if (!empty($subdir)) - { - $subdir .= PATH_DELIMITER; - } - $this->copyMediaRecursively($files,"$targetdir/$dir",$subdir . $dir); - } - } - else - { - // copy the file - phpDocumentor_out("copying $targetdir" . PATH_DELIMITER . $files['file']."\n"); - $this->copyFile($files['file'],$subdir); - } - } - } - } - - /** - * calls the converter setTargetDir, and then copies any template images and the stylesheet if they haven't been copied - * @see Converter::setTargetDir() - */ - function setTargetDir($dir) - { - Converter::setTargetDir($dir); - if ($this->_wrote_tdir) return; - $this->_wrote_tdir = true; - $template_images = array(); - $stylesheets = array(); - $tdir = $dir; - $dir = $this->templateDir; - $this->templateDir = $this->templateDir.'templates/'; - $info = new Io; - $this->copyMediaRecursively($info->getDirTree($this->templateDir.'media',$this->templateDir),$tdir); - } - - /** - * Generate alphabetical index of all elements by package and subpackage - * - * @param string $package name of a package - * @see $pkg_elements, walk(), generatePkgElementIndexes() - */ - function generatePkgElementIndex($package) - { - $elementindex = array(); - $letters = array(); - $letterind = array(); - $used = array(); - $subp = ''; - foreach($this->pkg_elements[$package] as $subpackage => $els) - { - if (empty($els)) continue; - if (!empty($subpackage)) $subp = " (<b>subpackage:</b> $subpackage)"; else $subp = ''; - foreach($els as $letter => $yuh) - { - foreach($els[$letter] as $i => $yuh) - { - if ($els[$letter][$i]->type != 'include') - { - if (!isset($used[$letter])) - { - $letters[]['letter'] = $letter; - $letterind[$letter] = count($letters) - 1; - $used[$letter] = 1; - } - $elindex[$letter]['letter'] = $letter; - - $elindex[$letter]['index'][] = $this->getIndexInformation($els[$letter][$i]); - } - } - } - } - ksort($elindex); - usort($letters,'HTMLSmarty_lettersort'); - if (isset($elindex)) - { - while(list($letter,$tempel) = each($elindex)) - { - if (!isset($tempel)) - { - unset($letters[$letterind[$tempel['letter']]]); - } else - $elementindex[] = $tempel; - } - } else $letters = array(); - return array($elementindex,$letters); - } - - /** - * - * @see generatePkgElementIndex() - */ - function generatePkgElementIndexes() - { - $packages = array(); - $package_names = array(); - $pkg = array(); - $letters = array(); - foreach($this->pkg_elements as $package => $trash) - { - $pkgs['package'] = $package; - $pkg['package'] = $package; - list($pkg['pindex'],$letters[$package]) = $this->generatePkgElementIndex($package); - if (count($pkg['pindex'])) - { - $packages[] = $pkg; - $package_names[] = $pkgs; - } - unset($pkgs); - unset($pkg); - } - foreach($packages as $i => $package) - { - $pnames = array(); - for($j=0;$j<count($package_names);$j++) - { - if ($package_names[$j]['package'] != $package['package']) $pnames[] = $package_names[$j]; - } - $packages[$i]['packageindexes'] = $pnames; - } - return array($packages,$package_names,$letters); - } - - /** - * @param string name of class - * @param string package name - * @param string full path to look in (used in index generation) - * @param boolean deprecated - * @param boolean return just the URL, or enclose it in an html a tag - * @return mixed false if not found, or an html a link to the class's documentation - * @see parent::getClassLink() - */ - function getClassLink($expr,$package, $file = false,$text = false, $with_a = true) - { - $a = Converter::getClassLink($expr,$package,$file); - if (!$a) return false; - return $this->returnSee($a, $text, $with_a); - } - - /** - * @param string name of function - * @param string package name - * @param string full path to look in (used in index generation) - * @param boolean deprecated - * @param boolean return just the URL, or enclose it in an html a tag - * @return mixed false if not found, or an html a link to the function's documentation - * @see parent::getFunctionLink() - */ - function getFunctionLink($expr,$package, $file = false,$text = false) - { - $a = Converter::getFunctionLink($expr,$package,$file); - if (!$a) return false; - return $this->returnSee($a, $text); - } - - /** - * @param string name of define - * @param string package name - * @param string full path to look in (used in index generation) - * @param boolean deprecated - * @param boolean return just the URL, or enclose it in an html a tag - * @return mixed false if not found, or an html a link to the define's documentation - * @see parent::getDefineLink() - */ - function getDefineLink($expr,$package, $file = false,$text = false) - { - $a = Converter::getDefineLink($expr,$package,$file); - if (!$a) return false; - return $this->returnSee($a, $text); - } - - /** - * @param string name of global variable - * @param string package name - * @param string full path to look in (used in index generation) - * @param boolean deprecated - * @param boolean return just the URL, or enclose it in an html a tag - * @return mixed false if not found, or an html a link to the global variable's documentation - * @see parent::getGlobalLink() - */ - function getGlobalLink($expr,$package, $file = false,$text = false) - { - $a = Converter::getGlobalLink($expr,$package,$file); - if (!$a) return false; - return $this->returnSee($a, $text); - } - - /** - * @param string name of procedural page - * @param string package name - * @param string full path to look in (used in index generation) - * @param boolean deprecated - * @param boolean return just the URL, or enclose it in an html a tag - * @return mixed false if not found, or an html a link to the procedural page's documentation - * @see parent::getPageLink() - */ - function getPageLink($expr,$package, $path = false,$text = false) - { - $a = Converter::getPageLink($expr,$package,$path); - if (!$a) return false; - return $this->returnSee($a, $text); - } - - /** - * @param string name of method - * @param string class containing method - * @param string package name - * @param string full path to look in (used in index generation) - * @param boolean deprecated - * @param boolean return just the URL, or enclose it in an html a tag - * @return mixed false if not found, or an html a link to the method's documentation - * @see parent::getMethodLink() - */ - function getMethodLink($expr,$class,$package, $file = false,$text = false) - { - $a = Converter::getMethodLink($expr,$class,$package,$file); - if (!$a) return false; - return $this->returnSee($a, $text); - } - - /** - * @param string name of var - * @param string class containing var - * @param string package name - * @param string full path to look in (used in index generation) - * @param boolean deprecated - * @param boolean return just the URL, or enclose it in an html a tag - * @return mixed false if not found, or an html a link to the var's documentation - * @see parent::getVarLink() - */ - function getVarLink($expr,$class,$package, $file = false,$text = false) - { - $a = Converter::getVarLink($expr,$class,$package,$file); - if (!$a) return false; - return $this->returnSee($a, $text); - } - - /** - * @param string name of class constant - * @param string class containing class constant - * @param string package name - * @param string full path to look in (used in index generation) - * @param boolean deprecated - * @param boolean return just the URL, or enclose it in an html a tag - * @return mixed false if not found, or an html a link to the var's documentation - * @see parent::getVarLink() - */ - function getConstLink($expr,$class,$package, $file = false,$text = false) - { - $a = Converter::getConstLink($expr,$class,$package,$file); - if (!$a) return false; - return $this->returnSee($a, $text); - } - - /** - * does a nat case sort on the specified second level value of the array - * - * @param mixed $a - * @param mixed $b - * @return int - */ - function rcNatCmp ($a, $b) - { - $aa = strtoupper($a[$this->rcnatcmpkey]); - $bb = strtoupper($b[$this->rcnatcmpkey]); - - return strnatcasecmp($aa, $bb); - } - - /** - * does a nat case sort on the specified second level value of the array. - * this one puts constructors first - * - * @param mixed $a - * @param mixed $b - * @return int - */ - function rcNatCmp1 ($a, $b) - { - $aa = strtoupper($a[$this->rcnatcmpkey]); - $bb = strtoupper($b[$this->rcnatcmpkey]); - - if (strpos($aa,'CONSTRUCTOR') === 0) - { - return -1; - } - if (strpos($bb,'CONSTRUCTOR') === 0) - { - return 1; - } - if (strpos($aa,strtoupper($this->class)) === 0) - { - return -1; - } - if (strpos($bb,strtoupper($this->class)) === 0) - { - return -1; - } - return strnatcasecmp($aa, $bb); - } - - /** - * This function is not used by HTMLdefaultConverter, but is required by Converter - */ - function Output() - { - } -} - -/** - * @access private - * @global string name of the package to set as the first package - */ -function HTMLSmarty_pindexcmp($a, $b) -{ - global $phpDocumentor_DefaultPackageName; - if ($a['title'] == $phpDocumentor_DefaultPackageName) return -1; - if ($b['title'] == $phpDocumentor_DefaultPackageName) return 1; - return strnatcasecmp($a['title'],$b['title']); -} - -/** @access private */ -function HTMLSmarty_lettersort($a, $b) -{ - return strnatcasecmp($a['letter'],$b['letter']); -} - -/** @access private */ -function HTMLSmarty_outputfilter($src, &$smarty) -{ - return str_replace('{$subdir}',$smarty->_tpl_vars['subdir'],$src); -} -?> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/options.ini b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/options.ini deleted file mode 100755 index 32ea2088..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/options.ini +++ /dev/null @@ -1,577 +0,0 @@ -preservedocbooktags = false - -;; used to highlight the {@source} inline tag, @filesource tag, and @example tag -[highlightSourceTokens] -;; format: -;; T_CONSTANTNAME = open -;; /T_CONSTANTNAME = close - -T_INCLUDE = <span class="src-inc"> -/T_INCLUDE = </span> -T_INCLUDE_ONCE = <span class="src-inc"> -/T_INCLUDE_ONCE = </span> -T_REQUIRE_ONCE = <span class="src-inc"> -/T_REQUIRE_ONCE = </span> -T_REQUIRE_ONCE = <span class="src-inc"> -/T_REQUIRE_ONCE = </span> - -T_CONSTANT_ENCAPSED_STRING = <span class="src-str"> -/T_CONSTANT_ENCAPSED_STRING = </span> -T_STRING_VARNAME = <span class="src-str"> -/T_STRING_VARNAME = </span> - -T_STRING = <span class="src-id"> -/T_STRING = </span> - -T_DNUMBER = <span class="src-num"> -/T_DNUMBER = </span> -T_LNUMBER = <span class="src-num"> -/T_LNUMBER = </span> - -T_VARIABLE = <span class="src-var"> -/T_VARIABLE = </span> - -T_COMMENT = <span class="src-comm"> -/T_COMMENT = </span> -T_ML_COMMENT = <span class="src-comm"> -/T_ML_COMMENT = </span> - -T_OBJECT_OPERATOR = <span class="src-sym"> -/T_OBJECT_OPERATOR = </span> - -T_ABSTRACT = <span class="src-key"> -/T_ABSTRACT = </span> -T_CLONE = <span class="src-key"> -/T_CLONE = </span> -T_HALT_COMPILER = <span class="src-key"> -/T_HALT_COMPILER = </span> -T_ARRAY = <span class="src-key"> -/T_ARRAY = </span> -T_AS = <span class="src-key"> -/T_AS = </span> -T_BREAK = <span class="src-key"> -/T_BREAK = </span> -T_CLASS = <span class="src-key"> -/T_CLASS = </span> -T_CASE = <span class="src-key"> -/T_CASE = </span> -T_CONST = <span class="src-key"> -/T_CONST = </span> -T_CONTINUE = <span class="src-key"> -/T_CONTINUE = </span> -T_DECLARE = <span class="src-key"> -/T_DECLARE = </span> -T_DEFAULT = <span class="src-key"> -/T_DEFAULT = </span> -T_ELSE = <span class="src-key"> -/T_ELSE = </span> -T_ELSEIF = <span class="src-key"> -/T_ELSEIF = </span> -T_EMPTY = <span class="src-key"> -/T_EMPTY = </span> -T_ENDDECLARE = <span class="src-key"> -/T_ENDDECLARE = </span> -T_ENDFOR = <span class="src-key"> -/T_ENDFOR = </span> -T_ENDSWITCH = <span class="src-key"> -/T_ENDSWITCH = </span> -T_ENDFOREACH = <span class="src-key"> -/T_ENDFOREACH = </span> -T_ENDIF = <span class="src-key"> -/T_ENDIF = </span> -T_ENDWHILE = <span class="src-key"> -/T_ENDWHILE = </span> -T_EXIT = <span class="src-key"> -/T_EXIT = </span> -T_EXTENDS = <span class="src-key"> -/T_EXTENDS = </span> -T_FINAL = <span class="src-key"> -/T_FINAL = </span> -T_FOR = <span class="src-key"> -/T_FOR = </span> -T_FOREACH = <span class="src-key"> -/T_FOREACH = </span> -T_FUNCTION = <span class="src-key"> -/T_FUNCTION = </span> -T_GLOBAL = <span class="src-key"> -/T_GLOBAL = </span> -T_IF = <span class="src-key"> -/T_IF = </span> -T_IMPLEMENTS = <span class="src-key"> -/T_IMPLEMENTS = </span> -T_INTERFACE = <span class="src-key"> -/T_INTERFACE = </span> -T_LOGICAL_AND = <span class="src-key"> -/T_LOGICAL_AND = </span> -T_LOGICAL_OR = <span class="src-key"> -/T_LOGICAL_OR = </span> -T_LOGICAL_XOR = <span class="src-key"> -/T_LOGICAL_XOR = </span> -T_NEW = <span class="src-key"> -/T_NEW = </span> -T_PRIVATE = <span class="src-key"> -/T_PRIVATE = </span> -T_PROTECTED = <span class="src-key"> -/T_PROTECTED = </span> -T_PUBLIC = <span class="src-key"> -/T_PUBLIC = </span> -T_RETURN = <span class="src-key"> -/T_RETURN = </span> -T_STATIC = <span class="src-key"> -/T_STATIC = </span> -T_SWITCH = <span class="src-key"> -/T_SWITCH = </span> -T_VAR = <span class="src-key"> -/T_VAR = </span> -T_WHILE = <span class="src-key"> -/T_WHILE = </span> - -T_DOUBLE_COLON = <span class="src-sym"> -/T_DOUBLE_COLON = </span> - -T_OPEN_TAG = <span class="src-php"> -/T_OPEN_TAG = </span> -T_OPEN_TAG_WITH_ECHO = <span class="src-php"> -/T_OPEN_TAG_WITH_ECHO = </span> -T_CLOSE_TAG = <span class="src-php"> -/T_CLOSE_TAG = </span> - - -[highlightSource] -;; this is for highlighting things that aren't tokens like "&" -;; format: -;; word = open -;; /word = close -@ = <span class="src-sym"> -/@ = </span> -& = <span class="src-sym"> -/& = </span> -[ = <span class="src-sym"> -/[ = </span> -] = <span class="src-sym"> -/] = </span> -! = <span class="src-sym"> -/! = </span> -";" = <span class="src-sym"> -/; = </span> -( = <span class="src-sym"> -/( = </span> -) = <span class="src-sym"> -/) = </span> -, = <span class="src-sym"> -/, = </span> -{ = <span class="src-sym"> -/{ = </span> -} = <span class="src-sym"> -/} = </span> -""" = <span class="src-str"> -/" = </span> - -[highlightDocBlockSourceTokens] -;; this is for docblock tokens, highlighted by phpDocumentor_HighlightParser -;; tagphptype is for "string" in @param string description, for example -docblock = <span class="src-doc"> -/docblock = </span> -tagphptype = <span class="src-doc-type"> -/tagphptype = </span> -tagvarname = <span class="src-doc-var"> -/tagvarname = </span> -coretag = <span class="src-doc-coretag"> -/coretag = </span> -tag = <span class="src-doc-tag"> -/tag = </span> -inlinetag = <span class="src-doc-inlinetag"> -/inlinetag = </span> -internal = <span class="src-doc-internal"> -/internal = </span> -closetemplate = <span class="src-doc-close-template"> -/closetemplate = </span> -docblocktemplate = <span class="src-doc-template"> -/docblocktemplate = </span> - -[highlightTutorialSourceTokens] -;; this is for XML DocBook-based tutorials, highlighted by phpDocumentor_TutorialHighlightParser -;; <tag> -opentag = <span class="tute-tag"> -/opentag = </span> -;; </tag> -closetag = <span class="tute-tag"> -/closetag = </span> -;; <tag attribute="value"> -attribute = <span class="tute-attribute-name"> -/attribute = </span> -;; <tag attribute="value"> -attributevalue = <span class="tute-attribute-value"> -/attributevalue = </span> -;; &entity; -entity = <span class="tute-entity"> -/entity = </span> -;; <!-- comment --> -comment = <span class="tute-comment"> -/comment = </span> -;; {@inline tag} -itag = <span class="tute-inline-tag"> -/itag = </span> - -;; used for translation of html in DocBlocks -[desctranslate] -ul = <ul> -/ul = </ul> -ol = <ol> -/ol = </ol> -li = <li> -/li = </li> -code = -/code = -var = <var> -/var = </var> -samp = <samp> -/samp = </samp> -kbd = <kbd> -/kbd = </kbd> -pre = <pre> -/pre = </pre> -p = <p> -/p = </p> -b = <strong> -/b = </strong> -i = <em> -/i = </em> -br = <br /> - -[ppage] -;; this is the DocBook package page translation section. All DocBook tags -;; that have a corresponding html tag must be listed here. Entities should -;; also be listed here -;; -;; examples: -;; 1) -;; tagname = newtagname -;; -;; This is the simplest case, where all attributes will be added into the -;; starting tag and the ending tag will be html/xml style </tranlatedtagname> -;; <tagname></tagname> becomes <newtagname></newtagname> and -;; <tagname attr="value"></tagname> becomes -;; <newtagname attr="value"></newtagname> -;; -;; 2) -;; tagname = newtagname -;; tagname->attr = newattrname -;; -;; in this case, everything will be like the first case, except tags like: -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="value"></newtagname> -;; -;; 3) -;; tagname = newtagname -;; tagname->attr = newattrname -;; tagname->attr+value = newvalue -;; -;; in this case, the value is also translated to another. This can be useful -;; for instances such as focus="middle" changing to align="center" or something -;; of that nature. -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 4) -;; tagname = newtagname -;; tagname->attr1 = newattrname -;; tagname->attr2 = newattrname -;; tagname->attr1+value|attr2+value = newvalue -;; -;; in this case, two attributes combine to make one new attribute, and the combined -;; value is translated into a new value -;; <tagname attr1="value1" attr2="value2"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 5) -;; tagname = newtagname -;; tagname!attr = dummy -;; -;; here, the attribute will be ignored. dummy is not used and may be any value -;; <tagname attr="value"></tagname> will become -;; <newtagname></newtagname> -;; -;; 6) -;; tagname = newtagname -;; tagname! = dummy -;; -;; here, all attributes will be ignored. dummy is not used and may be any value -;; <tagname attr1="value" attr2="foo"></tagname> will become -;; <newtagname></newtagname> -;; -;; 7) -;; tagname = newtagname -;; tagname/ = 1 -;; -;; here, the tag will be translated as a single tag with no closing tag, and all -;; attributes -;; <tagname attr="val">{text text}</tagname> will become -;; <newtagname attr="val" /> -;; -;; 8) -;; tagname = <starttaginfo /> -;; /tagname = closetagtext -;; -;; in this case, the text <starttaginfo> will be inserted exactly as entered for -;; <tagname> and closetagtext for </tagname> -;; <tagname attr="val"></tagname> will become -;; <starttaginfo />closetagtext -;; -;; 9) -;; $attr$my_attribute = newattrname -;; -;; tagname = newtagname -;; -;; in this case, all occurences of my_attribute in any tag will be changed to -;; newattrname. This is useful for changing things like role="php" to -;; class="php," for example. Note that the text "$attr$" MUST be on the line -;; start for phpDocumentor to recognize it. -;; -;; 10) -;; &entity; = translation text -;; " = " -;; " = """ -;; < = < -;; -;; Use this to control translation of entities to their appropriate values - - = -" = " -” = ” -“ = “ -& = & -< = < -> = > -© = © - -$attr$role = class - -abbrev = abbr - -blockquote = blockquote - -arg = span -arg->choice = class - -author = <strong>by <span class="author"> -/author = </span></strong> -author! = 0 - -authorblurb = <div class="author-blurb"> -/authorblurb = </div> - -authorgroup = <div class="authors"><h2 class="title">Authors</h2> -/authorgroup = </div> -authorgroup! = 0 - -caution = <span class="warning"> -/caution = </span> -caution! = 0 - -cmdsynopsis = <div class="cmd-synopsis"> -/cmdsynopsis = </div> - -command = <span class="cmd-title"> -/command = </span> - -copyright = <div class="notes"> -/copyright = </div> - -emphasis = strong - -example = <div class="src-code"> -/example = </div> -example! = 0 - -function = -/function = () - -formalpara = p - -graphic = img -graphic->fileref = src -graphic/ = - -important = strong - -informalequation = blockquote - -informalexample = div - -inlineequation = em - -itemizedlist = ul - -listitem = li - -literal = code - -literallayout = span - -option = " " -/option = - -orderedlist = ol - -para = p - -programlisting = <div class="src-code"> -/programlisting = </div> -programlisting! = 0 - -refentry = div - -refnamediv = <div class="ref-title-box"> -/refnamediv = </div> -refnamediv! = 0 - -refname = <h1 class="ref-title"> -/refname = </h1> - -refpurpose = <h2 class="ref-purpose"> -/refpurpose = </h2> - -refsynopsisdiv = <div class="ref-synopsis"> -/refsynopsisdiv = </div> -refsynopsisdiv! = 0 - -refsect1 = span - -refsect2 = -/refsect2 = <hr /> - -refsect3 = -/refsect3 = <br /> - -releaseinfo = <div class="release-info">( -/releaseinfo = )</div> - -simpara = -/simpara = <br /> -simpara! = 0 - -subscript = sub - -superscript = super - -table = table - -table->colsep = rules -table->rowsep = rules -table->colsep+1|rowsep+1 = all -table->colsep+1|rowsep+0 = cols -table->colsep+0|rowsep+1 = rows - -table->frame = frame -table->frame+all = border -table->frame+none = void -table->frame+sides = vsides -table->frame+top = above -table->frame+topbot = hsides - -thead = thead - -tfoot = tfoot - -tbody = tbody - -colspec = col - -tgroup = colgroup -tgroup/ = 1 -tgroup->cols = span - -row = tr - -entry = td -entry->morerows = colspan -entry->morerows+1 = 2 -entry->morerows+2 = 3 -entry->morerows+3 = 4 -entry->morerows+4 = 5 -entry->morerows+5 = 6 -entry->morerows+6 = 7 -entry->morerows+7 = 8 -entry->morerows+8 = 9 -entry->morerows+9 = 10 -entry->morerows+10 = 11 -;; add more if you need more colspans - -warning = <span class="warning"> -/warning = </span> -warning! = 0 - -;; now begins the attributes that should be tags in cdata -[$attr$id] -open = a -;close = /a -cdata! = true -quotevalues = true -separator = "=" -;separateall = true -$id = name - -;; now begins the sections that deal with <title> -[refsynopsisdiv_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h1 class="title"> -close = </h1> - -[refsect1_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h2 class="title"> -close = </h2> - -[refsect2_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h3 class="title"> -close = </h3> - -[refsect3_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h4 class="title"> -close = </h4> - -[para_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <div class="title"> -close = </div> - -[formalpara_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <div class="title"> -close = </div> - -[example_title] -;tag_attr = true -;attr_name = title -;cdata_start = true -cdata_end = true -open = </td></tr><tr><td><strong> -close = </strong> - -[table_title] -;tag_attr = true -;attr_name = true -cdata_start = true -open = <caption> -close = </caption> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/basicindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/basicindex.tpl deleted file mode 100755 index 02da5c40..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/basicindex.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{section name=letter loop=$letters} - [ <a href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> ] -{/section} -<br /><br /> -{section name=index loop=$index} - <a name="{$index[index].letter}"></a> - <div class="index-letter-section"> - <div style="float: left" class="index-letter-title">{$index[index].letter}</div> - <div style="float: right"><a href="#top">[Top]</a></div> - <div style="clear: both"></div> - </div> - <div> - <h2>{$index[index].letter}</h2> - <dl> - {section name=contents loop=$index[index].index} - <dt><b>{$index[index].index[contents].name}</b></dt> - <dd>{$index[index].index[contents].listing}</dd> - {/section} - </dl> - </div> -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/blank.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/blank.tpl deleted file mode 100755 index a7f6308f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/blank.tpl +++ /dev/null @@ -1,6 +0,0 @@ -<div align="center"><h1>{$maintitle}</h1></div> -<strong>Welcome to {$package}!</strong><br /> -<br /> -This documentation was generated by <a href="{$phpdocwebsite}">phpDocumentor v{$phpdocversion}</a> -<br /> - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/class.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/class.tpl deleted file mode 100755 index fe930904..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/class.tpl +++ /dev/null @@ -1,541 +0,0 @@ -{include file="header.tpl" eltype="class" hasel=true contents=$classcontents} - -<h2 class="class-name">{if $is_interface}Interface{else}Class{/if} {$class_name}</h2> - -<a name="sec-description"></a> -<div class="info-box"> - <div class="info-box-title">{if $is_interface}Interface{else}Class{/if} Overview</div> - <div class="nav-bar"> - {if $children || $vars || $ivars || $methods || $imethods || $consts || $iconsts} - <span class="disabled">{if $is_interface}Interface{else}Class{/if} Overview</span> - {/if} - {if $children} - | <a href="#sec-descendants">Descendants</a> - {/if} - - {if $ivars || $imethods} - | <a href="#sec-inherited">Inherited Properties, Constants, and Methods</a> - {/if} - {if $vars || $ivars} - {if $vars} - | <a href="#sec-var-summary">Property Summary</a> | <a href="#sec-vars">Properties Detail</a> - {else} - | <a href="#sec-vars">Properties</a> - {/if} - {/if} - {if $methods || $imethods} - {if $methods} - | <a href="#sec-method-summary">Method Summary</a> | <a href="#sec-methods">Methods Detail</a> - {else} - | <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - | <a href="#sec-const-summary">Constants Summary</a> | <a href="#sec-consts">Constants Detail</a> - {else} - | <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <table width="100%" border="0"> - <tr><td valign="top" width="60%" class="class-overview"> - - {if $implements} - <p class="implements"> - Implements interfaces: - <ul> - {foreach item="int" from=$implements}<li>{$int}</li>{/foreach} - </ul> - </p> - {/if} - {include file="docblock.tpl" type="class" sdesc=$sdesc desc=$desc} - - <p class="notes"> - Located in <a class="field" href="{$page_link}">{$source_location}</a> [<span class="field">line {if $class_slink}{$class_slink}{else}{$line_number}{/if}</span>] - </p> - - {if $tutorial} - <hr class="separator" /> - <div class="notes">Tutorial: <span class="tutorial">{$tutorial}</div> - {/if} - - <pre>{section name=tree loop=$class_tree.classes}{$class_tree.classes[tree]}{$class_tree.distance[tree]}{/section}</pre> - - {if $conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with classes:</span><br /> - {section name=me loop=$conflicts.conflicts} - {$conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - - {if count($tags) > 0} - <strong>Author(s):</strong> - <ul> - {section name=tag loop=$tags} - {if $tags[tag].keyword eq "author"} - <li>{$tags[tag].data}</li> - {/if} - {/section} - </ul> - {/if} - - {include file="classtags.tpl" tags=$tags} - </td> - - {if count($contents.var) > 0} - <td valign="top" width="20%" class="class-overview"> - <p align="center" class="short-description"><strong><a href="#sec_vars">Properties</a></strong></p> - <ul> - {section name=contents loop=$contents.var} - <li>{$contents.var[contents]}</li> - {/section} - </ul> - </td> - {/if} - - {if count($contents.method) > 0} - <td valign="top" width="20%" class="class-overview"> - <p align="center" class="short-description"><strong><a href="#sec_methods">Methods</a></strong></p> - <ul> - {section name=contents loop=$contents.method} - <li>{$contents.method[contents]}</li> - {/section} - </ul> - </td> - {/if} - - </tr></table> - <div class="top">[ <a href="#top">Top</a> ]</div> - </div> -</div> - -{if $children} - <a name="sec-descendants"></a> - <div class="info-box"> - <div class="info-box-title">Descendants</div> - <div class="nav-bar"> - <a href="#sec-description">Class Overview</a> - {if $children} - | <span class="disabled">Descendants</span> - {/if} - {if $ivars || $imethods} - | <a href="#sec-inherited">Inherited Properties and Methods</a> - {/if} - {if $vars || $ivars} - {if $vars} - | <a href="#sec-var-summary">Property Summary</a> | <a href="#sec-vars">Properties Detail</a> - {else} - | <a href="#sec-vars">Properties</a> - {/if} - {/if} - {if $methods || $imethods} - {if $methods} - | <a href="#sec-method-summary">Method Summary</a> | <a href="#sec-methods">Methods Detail</a> - {else} - | <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - | <a href="#sec-const-summary">Constants Summary</a> | <a href="#sec-consts">Constants Detail</a> - {else} - | <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <table cellpadding="2" cellspacing="0" class="class-table"> - <tr> - <th class="class-table-header">Child Class</th> - <th class="class-table-header">Description</th> - </tr> - {section name=kids loop=$children} - <tr> - <td style="padding-right: 2em">{$children[kids].link}</td> - <td> - {if $children[kids].sdesc} - {$children[kids].sdesc} - {else} - {$children[kids].desc} - {/if} - </td> - </tr> - {/section} - </table> - <br /><div class="top">[ <a href="#top">Top</a> ]</div> - </div> - </div> -{/if} - -{if $ivars || $imethods || $iconsts} - <a name="sec-inherited"></a> - <div class="info-box"> - <div class="info-box-title">Inherited Properties, Constants, and Methods</div> - <div class="nav-bar"> - <a href="#sec-description">Class Overview</a> - {if $children} - | <a href="#sec-descendants">Descendants</a> - {/if} - | <span class="disabled">Inherited Properties, Constants, and Methods</span> - {if $vars || $ivars} - {if $vars} - | <a href="#sec-var-summary">Property Summary</a> | <a href="#sec-vars">Properties Detail</a> - {else} - | <a href="#sec-vars">Properties</a> - {/if} - {/if} - {if $methods || $imethods} - {if $methods} - | <a href="#sec-method-summary">Method Summary</a> | <a href="#sec-methods">Methods Detail</a> - {else} - | <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - | <a href="#sec-const-summary">Constants Summary</a> | <a href="#sec-consts">Constants Detail</a> - {else} - | <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <table cellpadding="2" cellspacing="0" class="class-table"> - <tr> - <th class="class-table-header" width="30%">Inherited Properties</th> - <th class="class-table-header" width="40%">Inherited Methods</th> - <th class="class-table-header" width="30%">Inherited Constants</th> - </tr> - <tr> - <td width="30%"> - {section name=ivars loop=$ivars} - <p>Inherited From <span class="classname">{$ivars[ivars].parent_class}</span></p> - <blockquote> - <dl> - {section name=ivars2 loop=$ivars[ivars].ivars} - <dt> - <span class="method-definition">{$ivars[ivars].ivars[ivars2].link}</span> - </dt> - <dd> - <span class="method-definition">{$ivars[ivars].ivars[ivars2].ivars_sdesc}</span> - </dd> - {/section} - </dl> - </blockquote> - {/section} - </td> - <td width="40%"> - {section name=imethods loop=$imethods} - <p>Inherited From <span class="classname">{$imethods[imethods].parent_class}</span></p> - <blockquote> - <dl> - {section name=im2 loop=$imethods[imethods].imethods} - <dt> - <span class="method-definition">{$imethods[imethods].imethods[im2].link}</span> - </dt> - <dd> - <span class="method-definition">{$imethods[imethods].imethods[im2].sdesc}</span> - </dd> - {/section} - </dl> - </blockquote> - {/section} - </td> - <td width="30%"> - {section name=iconsts loop=$iconsts} - <p>Inherited From <span class="classname">{$iconsts[iconsts].parent_class}</span></p> - <blockquote> - <dl> - {section name=iconsts2 loop=$iconsts[iconsts].iconsts} - <dt> - <span class="method-definition">{$iconsts[iconsts].iconsts[iconsts2].link}</span> - </dt> - <dd> - <span class="method-definition">{$iconsts[iconsts].iconsts[iconsts2].iconsts_sdesc}</span> - </dd> - {/section} - </dl> - </blockquote> - {/section} - </td> - </tr> - </table> - <br /><div class="top">[ <a href="#top">Top</a> ]</div> - </div> - </div> -{/if} - -{if $consts} - <a name="sec-const-summary"></a> - <div class="info-box"> - <div class="info-box-title">Constant Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Class Overview</a> - {if $children} - | <a href="#sec-descendants">Descendants</a> - {/if} - {if $ivars || $imethods || $iconsts} - | <a href="#sec-inherited">Inherited Properties, Constants, and Methods</a> - {/if} - | <span class="disabled">Constants Summary</span> | <a href="#sec-consts">Constants Detail</a> - {if $vars || $ivars} - {if $vars} - | <a href="#sec-var-summary">Property Summary</a> | <a href="#sec-vars">Properties Detail</a> - {else} - | <a href="#sec-vars">Properties</a> - {/if} - {/if} - {if $methods || $imethods} - {if $methods} - | <a href="#sec-method-summary">Method Summary</a> | <a href="#sec-methods">Methods Detail</a> - {else} - | <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <div class="const-summary"> - <table border="0" cellspacing="0" cellpadding="0" class="var-summary"> - {section name=consts loop=$consts} - <div class="var-title"> - <tr> - <td class="var-title"><a href="#{$consts[consts].const_dest}" title="details" class="const-name-summary">{$consts[consts].const_name}</a> </td> - <td class="const-summary-description">{$consts[consts].sdesc}</td></tr> - </div> - {/section} - </table> - </div> - <br /><div class="top">[ <a href="#top">Top</a> ]</div> - </div> - </div> -{/if} - -{if $vars} - <a name="sec-var-summary"></a> - <div class="info-box"> - <div class="info-box-title">Property Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Class Overview</a> - {if $children} - | <a href="#sec-descendants">Descendants</a> - {/if} - {if $ivars || $imethods || $iconsts} - | <a href="#sec-inherited">Inherited Properties and Methods</a> - {/if} - | <span class="disabled">Property Summary</span> | <a href="#sec-vars">Properties Detail</a> - {if $methods || $imethods} - {if $methods} - | <a href="#sec-method-summary">Method Summary</a> | <a href="#sec-methods">Methods Detail</a> - {else} - | <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - | <a href="#sec-const-summary">Constants Summary</a> | <a href="#sec-consts">Constants Detail</a> - {else} - | <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <div class="var-summary"> - <table border="0" cellspacing="0" cellpadding="0" class="var-summary"> - {section name=vars loop=$vars} - {if $vars[vars].static} - <div class="var-title"> - <tr><td class="var-title">static <span class="var-type-summary">{$vars[vars].var_type}</span> </td> - <td class="var-title"><a href="#{$vars[vars].var_name}" title="details" class="var-name-summary">{$vars[vars].var_name}</a> </td> - <td class="var-summary-description">{$vars[vars].sdesc}</td></tr> - </div> - {/if} - {/section} - {section name=vars loop=$vars} - {if !$vars[vars].static} - <div class="var-title"> - <tr><td class="var-title"><span class="var-type-summary">{$vars[vars].var_type}</span> </td> - <td class="var-title"><a href="#{$vars[vars].var_name}" title="details" class="var-name-summary">{$vars[vars].var_name}</a> </td> - <td class="var-summary-description">{$vars[vars].sdesc}</td></tr> - </div> - {/if} - {/section} - </table> - </div> - <br /><div class="top">[ <a href="#top">Top</a> ]</div> - </div> - </div> -{/if} - -{if $methods} - <a name="sec-method-summary"></a> - <div class="info-box"> - <div class="info-box-title">Method Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Class Overview</a> - {if $children} - | <a href="#sec-descendants">Descendants</a> - {/if} - {if $ivars || $imethods || $iconsts} - | <a href="#sec-inherited">Inherited Properties and Methods</a> - {/if} - {if $vars || $ivars} - {if $vars} - | <a href="#sec-var-summary">Property Summary</a> | <a href="#sec-vars">Properties Detail</a> - {else} - | <a href="#sec-vars">Properties</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - | <a href="#sec-const-summary">Constants Summary</a> | <a href="#sec-consts">Constants Detail</a> - {else} - | <a href="#sec-consts">Constants</a> - {/if} - {/if} - | <span class="disabled">Method Summary</span> | <a href="#sec-methods">Methods Detail</a> - </div> - <div class="info-box-body"> - <div class="method-summary"> - <table border="0" cellspacing="0" cellpadding="0" class="method-summary"> - {section name=methods loop=$methods} - {if $methods[methods].static} - <div class="method-definition"> - <tr><td class="method-definition">static - {if $methods[methods].function_return} - <span class="method-result">{$methods[methods].function_return}</span> - {/if}</td> - <td class="method-definition"><a href="#{$methods[methods].function_name}" title="details" class="method-name">{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}</a>() </td> - <td class="method-definition">{$methods[methods].sdesc}</td></tr> - </div> - {/if} - {/section} - {section name=methods loop=$methods} - {if !$methods[methods].static} - <div class="method-definition"> - {if $methods[methods].function_return} - <tr><td class="method-definition"><span class="method-result">{$methods[methods].function_return}</span> </td> - {/if} - <td class="method-definition"><a href="#{$methods[methods].function_name}" title="details" class="method-name">{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}</a>() </td> - <td class="method-definition">{$methods[methods].sdesc}</td></tr> - </div> - {/if} - {/section} - </table> - </div> - <br /><div class="top">[ <a href="#top">Top</a> ]</div> - </div> - </div> -{/if} - -{if $vars || $ivars} - <a name="sec-vars"></a> - <div class="info-box"> - <div class="info-box-title">Properties</div> - <div class="nav-bar"> - <a href="#sec-description">Class Overview</a> - {if $children} - | <a href="#sec-descendants">Descendants</a> - {/if} - {if $ivars || $imethods || $iconsts} - | <a href="#sec-inherited">Inherited Properties and Methods</a> - {/if} - {if $methods} - | <a href="#sec-var-summary">Property Summary</a> | <span class="disabled">Properties Detail</span> - {else} - | <span class="disabled">Properties</span> - {/if} - {if $methods || $imethods} - {if $methods} - | <a href="#sec-method-summary">Method Summary</a> | <a href="#sec-methods">Methods Detail</a> - {else} - | <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - | <a href="#sec-const-summary">Constants Summary</a> | <a href="#sec-consts">Constants Detail</a> - {else} - | <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {include file="var.tpl"} - </div> - </div> -{/if} - -{if $methods || $imethods} - <a name="sec-methods"></a> - <div class="info-box"> - <div class="info-box-title">Methods</div> - <div class="nav-bar"> - <a href="#sec-description">Class Overview</a> - {if $children} - | <a href="#sec-descendants">Descendants</a> - {/if} - {if $ivars || $imethods || $iconsts} - | <a href="#sec-inherited">Inherited Properties and Methods</a> - {/if} - {if $vars || $ivars} - {if $vars} - | <a href="#sec-var-summary">Property Summary</a> | <a href="#sec-vars">Properties Detail</a> - {else} - | <a href="#sec-vars">Properties</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - | <a href="#sec-const-summary">Constants Summary</a> | <a href="#sec-consts">Constants Detail</a> - {else} - | <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $methods} - | <a href="#sec-method-summary">Method Summary</a> | <span class="disabled">Methods Detail</span> - {else} - | <span class="disabled">Methods</span> - {/if} - </div> - <div class="info-box-body"> - {include file="method.tpl"} - </div> - </div> -{/if} - -{if $consts || $consts} - <a name="sec-consts"></a> - <div class="info-box"> - <div class="info-box-title">Constants</div> - <div class="nav-bar"> - <a href="#sec-description">Class Overview</a> - {if $children} - | <a href="#sec-descendants">Descendants</a> - {/if} - {if $consts} - | <a href="#sec-const-summary">Constants Summary</a> | <span class="disabled">Constants Detail</span> - {else} - | <span class="disabled">Constants</span> - {/if} - {if $ivars || $imethods || $iconsts} - | <a href="#sec-inherited">Inherited Properties, Constants, and Methods</a> - {/if} - {if $methods || $imethods} - {if $methods} - | <a href="#sec-method-summary">Method Summary</a> | <a href="#sec-methods">Methods Detail</a> - {else} - | <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {include file="const.tpl"} - </div> - </div> -{/if} - -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/classleft.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/classleft.tpl deleted file mode 100755 index 3bae1684..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/classleft.tpl +++ /dev/null @@ -1,11 +0,0 @@ -{foreach key=subpackage item=files from=$classleftindex} - <div class="package"> - {if $subpackage != ""}{$subpackage}<br />{/if} - {section name=files loop=$files} - {if $subpackage != ""}<span style="padding-left: 1em;">{/if} - {if $files[files].link != ''}<a href="{$files[files].link}">{/if}{$files[files].title}{if $files[files].link != ''}</a>{/if} - {if $subpackage != ""}</span>{/if} - <br /> - {/section} - </div> -{/foreach} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/classtags.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/classtags.tpl deleted file mode 100755 index b810ecf8..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/classtags.tpl +++ /dev/null @@ -1,22 +0,0 @@ -{if count($api_tags) > 0} -<strong>API Tags:</strong><br /> -<table border="0" cellspacing="0" cellpadding="0"> -{section name=tag loop=$api_tags} - <tr> - <td class="indent"><strong>{$api_tags[tag].keyword|capitalize}:</strong> </td><td>{$api_tags[tag].data}</td> - </tr> -{/section} -</table> -<br /> -{/if} - -{if count($info_tags) > 0} -<strong>Information Tags:</strong><br /> -<table border="0" cellspacing="0" cellpadding="0"> -{section name=tag loop=$info_tags} - {if $info_tags[tag].keyword ne "author"} - <tr><td><strong>{$info_tags[tag].keyword|capitalize}:</strong> </td><td>{$info_tags[tag].data}</td></tr> - {/if} -{/section} -</table> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/classtrees.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/classtrees.tpl deleted file mode 100755 index 0c0e974a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/classtrees.tpl +++ /dev/null @@ -1,17 +0,0 @@ -{include file="header.tpl" noleftindex=true} -<h1>{$title}</h1> -{if $interfaces} -{section name=classtrees loop=$interfaces} -<hr /> -<div class="classtree">Root interface {$interfaces[classtrees].class}</div><br /> -{$interfaces[classtrees].class_tree} -{/section} -{/if} -{if $classtrees} -{section name=classtrees loop=$classtrees} -<hr /> -<div class="classtree">Root class {$classtrees[classtrees].class}</div><br /> -{$classtrees[classtrees].class_tree} -{/section} -{/if} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/const.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/const.tpl deleted file mode 100644 index 2e3270e0..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/const.tpl +++ /dev/null @@ -1,19 +0,0 @@ -{section name=consts loop=$consts} -<a name="const{$consts[consts].const_name}" id="{$consts[consts].const_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="var-header"> - <span class="var-title"> - <span class="var-name">{$consts[consts].const_name}</span> - = <span class="var-default">{$consts[consts].const_value|replace:"\n":"<br />"}</span> - <span class="smalllinenumber">[line {if $consts[consts].slink}{$consts[consts].slink}{else}{$consts[consts].line_number}{/if}]</span> - </span> - </div> - - {include file="docblock.tpl" sdesc=$consts[consts].sdesc desc=$consts[consts].desc} - {include file="tags.tpl" api_tags=$consts[consts].api_tags info_tags=$consts[consts].info_tags} - - <br /> - <div class="top">[ <a href="#top">Top</a> ]</div> -</div> -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/define.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/define.tpl deleted file mode 100755 index 9b3809df..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/define.tpl +++ /dev/null @@ -1,34 +0,0 @@ -{if count($defines) > 0} -{section name=def loop=$defines} -<a name="{$defines[def].define_link}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="const-title"> - <span class="const-name">{$defines[def].define_name}</span> <span class="smalllinenumber">[line {if $defines[def].slink}{$defines[def].slink}{else}{$defines[def].line_number}{/if}]</span> - </span> - </div> -<br /> - <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code-border"> - <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> - <code>{$defines[def].define_name} = {$defines[def].define_value}</code> - </td></tr></table> - </td></tr></table> - - {include file="docblock.tpl" sdesc=$defines[def].sdesc desc=$defines[def].desc} - {include file="tags.tpl" api_tags=$defines[def].api_tags info_tags=$defines[def].info_tags} - <br /> - - {if $globals[glob].global_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with constants:</span><br /> - {section name=me loop=$defines[def].define_conflicts.conflicts} - {$defines[def].define_conflicts.conflicts[me]}<br /> - {/section} - </div><br /> - {/if} - <div class="top">[ <a href="#top">Top</a> ]</div> - <br /> -</div> -{/section} -{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/docblock.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/docblock.tpl deleted file mode 100755 index 20bda10b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/docblock.tpl +++ /dev/null @@ -1,5 +0,0 @@ -{if $sdesc != ''} -<p align="center" class="short-description"><strong>{$sdesc|default:''} -</strong></p> -{/if} -{if $desc != ''}<span class="description">{$desc|default:''}</span>{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/elementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/elementindex.tpl deleted file mode 100755 index 0bb2be85..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/elementindex.tpl +++ /dev/null @@ -1,12 +0,0 @@ -{include file="header.tpl" noleftindex=true} -<a name="top"></a> -<h1>Index of All Elements</h1> -<h3>Package Indexes</h3> -<ul> -{section name=p loop=$packageindex} - <li><a href="elementindex_{$packageindex[p].title}.html">{$packageindex[p].title}</a></li> -{/section} -</ul> -<br /> -{include file="basicindex.tpl" indexname="elementindex"} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/errors.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/errors.tpl deleted file mode 100755 index 0f526584..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/errors.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{include file="header.tpl" noleftindex=true} -{section name=files loop=$files} -<a href="#{$files[files].file}">{$files[files].file}</a><br> -{/section} -{foreach key=file item=issues from=$all} -<a name="{$file}"></a> -<h1>{$file}</h1> -{if count($issues.warnings)} -<h2>Warnings:</h2><br> -{section name=warnings loop=$issues.warnings} -<b>{$issues.warnings[warnings].name}</b> - {$issues.warnings[warnings].listing}<br> -{/section} -{/if} -{if count($issues.errors)} -<h2>Errors:</h2><br> -{section name=errors loop=$issues.errors} -<b>{$issues.errors[errors].name}</b> - {$issues.errors[errors].listing}<br> -{/section} -{/if} -{/foreach} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/examplesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/examplesource.tpl deleted file mode 100755 index 8b8c94fc..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/examplesource.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl" title=$title} -<h1 align="center">{$title}</h1> -<div class="src-code"><span class="php"> -{$source} -</span></div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/fileleft.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/fileleft.tpl deleted file mode 100755 index 44d254e1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/fileleft.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{foreach key=subpackage item=files from=$fileleftindex} - <div class="package"> - {if $subpackage != ""}<strong>{$subpackage}</strong><br />{/if} - {section name=files loop=$files} - <span style="padding-left: 1em;">{if $files[files].link != ''}<a href="{$files[files].link}">{/if}{$files[files].title}{if $files[files].link != ''}</a>{/if}</span><br /> - {/section} - </div> -{/foreach} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/filesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/filesource.tpl deleted file mode 100755 index 73074863..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/filesource.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{capture name="tutle"}File Source for {$name}{/capture} -{include file="header.tpl" title=$smarty.capture.tutle} -<h1 align="center">Source for file {$name}</h1> -<p>Documentation is available at {$docs}</p> -<div class="src-code"><span class="php"> -{$source} -</span></div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/filetags.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/filetags.tpl deleted file mode 100755 index 77427b0e..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/filetags.tpl +++ /dev/null @@ -1,7 +0,0 @@ -{if count($tags) > 0} -<table border="0" cellspacing="0" cellpadding="0"> - {section name=tag loop=$tags} - <tr><td><strong>{$tags[tag].keyword|capitalize}:</strong> </td><td>{$tags[tag].data}</td></tr> - {/section} -</table> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/footer.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/footer.tpl deleted file mode 100755 index 32b09c11..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/footer.tpl +++ /dev/null @@ -1,11 +0,0 @@ - <div class="credit"> - <hr class="separator" /> - Documentation generated on {$date} by <a href="{$phpdocwebsite}">phpDocumentor {$phpdocversion}</a> - </div> - </td></tr></table> - </td> - </tr> -</table> - -</body> -</html>
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/function.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/function.tpl deleted file mode 100755 index 417bbf76..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/function.tpl +++ /dev/null @@ -1,54 +0,0 @@ -{section name=func loop=$functions} -<a name="{$functions[func].function_dest}" id="{$functions[func].function_dest}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="method-title">{$functions[func].function_name}</span> <span class="smalllinenumber">[line {if $functions[func].slink}{$functions[func].slink}{else}{$functions[func].line_number}{/if}]</span> - </div> -<br /> - <div class="function"> - <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code-border"> - <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> - <code>{$functions[func].function_return} {if $functions[func].ifunction_call.returnsref}&{/if}{$functions[func].function_name}( -{if count($functions[func].ifunction_call.params)} -{section name=params loop=$functions[func].ifunction_call.params} -{if $smarty.section.params.iteration != 1}, {/if}{if $functions[func].ifunction_call.params[params].hasdefault}[{/if}{$functions[func].ifunction_call.params[params].type} {$functions[func].ifunction_call.params[params].name}{if $functions[func].ifunction_call.params[params].hasdefault} = {$functions[func].ifunction_call.params[params].default|escape:"html"}]{/if} -{/section} - -{/if})</code> - </td></tr></table> - </td></tr></table> - - {include file="docblock.tpl" sdesc=$functions[func].sdesc desc=$functions[func].desc} - - {if count($functions[func].params) > 0} - <strong>Parameters:</strong><br /> - <table border="0" cellspacing="0" cellpadding="0"> - {section name=params loop=$functions[func].params} - <tr><td class="indent"> - <span class="var-type">{$functions[func].params[params].datatype}</span> </td> - <td> - <span class="var-name">{$functions[func].params[params].var}: </span></td> - <td> - {if $functions[func].params[params].data}<span class="var-description"> {$functions[func].params[params].data}</span>{/if} - </td></tr> - {/section} - </table> - {/if} - -<br /> - {include file="tags.tpl" api_tags=$functions[func].api_tags info_tags=$functions[func].info_tags} - - {if $functions[func].function_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with functions:</span><br /> - {section name=me loop=$functions[func].function_conflicts.conflicts} - {$functions[func].function_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - <br /> - <div class="top">[ <a href="#top">Top</a> ]</div> - </div> - </div> -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/global.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/global.tpl deleted file mode 100755 index f616349b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/global.tpl +++ /dev/null @@ -1,35 +0,0 @@ -{if count($globals) > 0} -{section name=glob loop=$globals} -<a name="{$globals[glob].global_link}" id="{$globals[glob].global_link}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="var-title"> - <span class="var-type">{$globals[glob].global_type}</span> - <span class="var-name">{$globals[glob].global_name}</span> - <span class="smalllinenumber">[line {if $globals[glob].slink}{$globals[glob].slink}{else}{$globals[glob].line_number}{/if}]</span> - </span> - </div> - - {if $globals[glob].sdesc != ""} - {include file="docblock.tpl" sdesc=$globals[glob].sdesc desc=$globals[glob].desc} - {/if} - - <b>Default value:</b> <span class="var-default">{$globals[glob].global_value|replace:" ":" "|replace:"\n":"<br />\n"|replace:"\t":" "}</span> -<br /> - {include file="tags.tpl" api_tags=$globals[glob].api_tags info_tags=$globals[glob].info_tags} - - {if $globals[glob].global_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with global variables:</span><br /> - {section name=me loop=$globals[glob].global_conflicts.conflicts} - {$globals[glob].global_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - <br /> - <div class="top">[ <a href="#top">Top</a> ]</div> - <br /> -</div> -{/section} -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/header.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/header.tpl deleted file mode 100755 index b57cbdb6..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/header.tpl +++ /dev/null @@ -1,110 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> -<head> - <title>{$title}</title> - <link rel="stylesheet" type="text/css" href="{$subdir}media/style.css"> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> -</head> -<body> - -<table border="0" cellspacing="0" cellpadding="0" height="48" width="100%"> - <tr> - <td class="header-top-left"><img src="{$subdir}media/logo.png" border="0" alt="phpDocumentor {$phpdocver}" /></td> - <td class="header-top-right">{$package}<br /><div class="header-top-right-subpackage">{$subpackage}</div></td> - </tr> - <tr><td colspan="2" class="header-line"><img src="{$subdir}media/empty.png" width="1" height="1" border="0" alt="" /></td></tr> - <tr> - <td colspan="2" class="header-menu"> - {assign var="packagehaselements" value=false} - {foreach from=$packageindex item=thispackage} - {if in_array($package, $thispackage)} - {assign var="packagehaselements" value=true} - {/if} - {/foreach} - {if $packagehaselements} - [ <a href="{$subdir}classtrees_{$package}.html" class="menu">class tree: {$package}</a> ] - [ <a href="{$subdir}elementindex_{$package}.html" class="menu">index: {$package}</a> ] - {/if} - [ <a href="{$subdir}elementindex.html" class="menu">all elements</a> ] - </td> - </tr> - <tr><td colspan="2" class="header-line"><img src="{$subdir}media/empty.png" width="1" height="1" border="0" alt="" /></td></tr> -</table> - -<table width="100%" border="0" cellpadding="0" cellspacing="0"> - <tr valign="top"> - <td width="195" class="menu"> - <div class="package-title">{$package}</div> -{if count($ric) >= 1} - <div class="package"> - <div id="ric"> - {section name=ric loop=$ric} - <p><a href="{$subdir}{$ric[ric].file}">{$ric[ric].name}</a></p> - {/section} - </div> - </div> -{/if} -{if $hastodos} - <div class="package"> - <div id="todolist"> - <p><a href="{$subdir}{$todolink}">Todo List</a></p> - </div> - </div> -{/if} - <b>Packages:</b><br /> - <div class="package"> - {section name=packagelist loop=$packageindex} - <a href="{$subdir}{$packageindex[packagelist].link}">{$packageindex[packagelist].title}</a><br /> - {/section} - </div> - <br /> -{if $tutorials} - <b>Tutorials/Manuals:</b><br /> - <div class="package"> - {if $tutorials.pkg} - <strong>Package-level:</strong> - {section name=ext loop=$tutorials.pkg} - {$tutorials.pkg[ext]} - {/section} - {/if} - {if $tutorials.cls} - <strong>Class-level:</strong> - {section name=ext loop=$tutorials.cls} - {$tutorials.cls[ext]} - {/section} - {/if} - {if $tutorials.proc} - <strong>Procedural-level:</strong> - {section name=ext loop=$tutorials.proc} - {$tutorials.proc[ext]} - {/section} - </div> - {/if} -{/if} - {if !$noleftindex}{assign var="noleftindex" value=false}{/if} - {if !$noleftindex} - {if $compiledfileindex} - <b>Files:</b><br /> - {eval var=$compiledfileindex} - {/if} - <br /> - {if $compiledinterfaceindex} - <b>Interfaces:</b><br /> - {eval var=$compiledinterfaceindex} - {/if} - {if $compiledclassindex} - <b>Classes:</b><br /> - {eval var=$compiledclassindex} - {/if} - {/if} - </td> - <td> - <table cellpadding="10" cellspacing="0" width="100%" border="0"><tr><td valign="top"> - -{if !$hasel}{assign var="hasel" value=false}{/if} -{if $eltype == 'class' && $is_interface}{assign var="eltype" value="interface"}{/if} -{if $hasel} -<h1>{$eltype|capitalize}: {$class_name}</h1> -Source Location: {$source_location}<br /><br /> -{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/include.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/include.tpl deleted file mode 100755 index ffab8eff..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/include.tpl +++ /dev/null @@ -1,18 +0,0 @@ -{section name=includes loop=$includes} -<a name="{$includes[includes].include_file}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="include-title"> - <span class="include-type">{$includes[includes].include_name}</span> - (<span class="include-name">{$includes[includes].include_value}</span>) - <span class="smalllinenumber">[line {if $includes[includes].slink}{$includes[includes].slink}{else}{$includes[includes].line_number}{/if}]</span> - </span> - </div> - - {include file="docblock.tpl" sdesc=$includes[includes].sdesc desc=$includes[includes].desc tags=$includes[includes].tags} - {include file="tags.tpl" api_tags=$includes[includes].api_tags info_tags=$includes[includes].info_tags} - <div class="top">[ <a href="#top">Top</a> ]</div> - <br /> -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/index.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/index.tpl deleted file mode 100755 index a493f70e..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/index.tpl +++ /dev/null @@ -1,7 +0,0 @@ -{include file="header.tpl"} -{if $contents} -{$contents} -{else} -{include file="blank.tpl"} -{/if} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/media/background.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/media/background.png Binary files differdeleted file mode 100755 index 8c4ff464..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/media/background.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/media/empty.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/media/empty.png Binary files differdeleted file mode 100755 index a9f29bb1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/media/empty.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/media/logo.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/media/logo.png Binary files differdeleted file mode 100644 index 10fe5d61..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/media/logo.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/media/style.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/media/style.css deleted file mode 100755 index a06eee2f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/media/style.css +++ /dev/null @@ -1,135 +0,0 @@ -a{ background-color: transparent; color: #636331; text-decoration: none; } -a:hover{ text-decoration: underline; } -a.menu{ background-color: transparent; color: #636331; } -body{ background-color: #ffffff; background-image: url("background.png"); background-repeat: repeat-y; color: #000000; font-family: tahoma,verdana,arial,sans-serif; font-size: 10pt; margin: 0; padding: 0; } -dd { margin-left: 0px; padding-left: 1em; } -div.credit{ font-size: 8pt; text-align: center; } -div.description,div.tags,div.function{ padding-left: 15px; } -div.header-top-right-subpackage{ background-color: #fdfcf2; color: #636331; font-size: 12pt; font-weight: bold; padding: 10px; text-align: right; } -div.package{ padding-left: 5px; } -div.warning{ background-color: transparent; color: #ff0000; } -hr{ border-color: #ccc9a4; border-style: solid; height: 1px; margin-bottom: 10px; margin-top: 10px; } -li { list-style-type: square; } -td{ font-size: 10pt; vertical-align: top; } -td.class-overview{ padding: 2px; padding-left: 1em; } -td.code{ background-color: #ccc9a4; color: #000000; padding-left: 3em; padding-right: 1em; text-indent: -2em; } -td.code-border{ background-color: #636331; color: #000000; } -td.header-line{ background-color: #636331; color: #ffffff; } -td.header-menu{ background-color: #ccc9a4; color: #636331; font-size: 8pt; padding: 2px; padding-right: 5px; text-align: right; } -td.header-top-left{ background-color: #fdfcf2; color: #636331; font-size: 16pt; font-weight: bold; padding: 10px; text-align: left; } -td.header-top-right{ background-color: #fdfcf2; color: #636331; font-size: 16pt; font-weight: bold; padding: 10px; text-align: right; } -td.indent { padding-left: 1em; } -td.menu{ padding: 2px; padding-left: 5px; } -td.type,.folder-title,.method-result,.include-type{ font-style: italic; } -ul{ margin-left: 0px; padding-left: 8px; vertical-align: top; } -.class-name { color: #000000; font-weight: bold; } -.class-table { width: 100%; } -.class-table-header { border-bottom: 1px dotted #666666; text-align: left; } -.const-title { } -.description{ color: #000000; } -.detail,div.top,span.smalllinenumber{ font-size: 8pt; } -.disabled{ color: #ccc9a4; font-style: italic; } -.evenrow{ border: 1px solid #ccc9a4; color: #000000; margin-bottom: 1em; padding: .5em; } -.include-title{ } -.index-item-body { margin-bottom: .5em; margin-top: .5em; } -.index-item-description { margin-top: .25em; } -.index-item-details { font-size: 8pt; font-style: italic; font-weight: normal; } -.index-letter { font-size: 12pt; } -.index-letter-menu { margin: 1em; text-align: center; } -.index-letter-section { background-color: #ccc9a4; border: 1px dotted #636331; margin-bottom: 1em; padding: .5em; } -.index-letter-title { font-size: 12pt; font-weight: bold; } -.info-box{ } -.info-box-body{ border: 1px solid #ccc9a4; padding: .5em; } -.info-box-title{ background-color: #ccc9a4; border: 1px solid #636331; color: #636331; font-size: 14pt; font-weight: normal; margin: 1em 0em 0em 0em; padding: .25em; } -.line-number, .var-name-summary { font-size: 8pt; font-weight: bold; } -.method-definition { font-size: 8pt; margin-bottom: .3em; padding-left: 1em; } -.method-definition{ font-size: 8pt; margin-bottom: .3em; } -.method-header{ } -.method-result { color: #636331; font-size: 8pt; font-style: italic; } -.method-signature{ color: #ccc9a4; font-size: 85%; margin: .5em 0em; } -.nav-bar{ font-size: 8pt; margin: 0em 0em 1em 0em; padding: .2em; text-align: right; white-space: nowrap; } -.nav-button:active, -.nav-button:focus, -.nav-button:hover{ background-color: #dddddd; outline: 1px solid #999999; text-decoration: none; } -.nav-button-disabled{ color: #999999; } -.notes{ font-size: 8pt; font-style: italic; } -.oddrow{ background-color: #fdfcf2; border: 1px solid #ccc9a4; color: #000000; margin-bottom: 1em; padding: .5em; } -.package{ padding-left : 2em; font-size : 9pt; } -.package-details{ font-size: 85%; } -.package-title{ border-bottom: 1px solid #000000; font-size: 14pt; font-weight: bold; } -.page-body{ margin: auto; max-width: 800px; } -.parameters{ list-style-type: square; margin-bottom: 0em; margin-left: 3em; margin-right: 1em; margin-top: 0em; padding-left: 0em; vertical-align: top; } -.redefinitions{ font-size: 8pt; margin-left: 2em; padding-left: 0em; } -.separator{ background-color: #ccc9a4; height: 1px; } -.short-description{ color: #636331; font-weight: bold; } -.src-code li, .php-src li, .php li, .listing li { list-style-type: decimal } -/* This will not be executed by IE, so now we have a fix! */ -.php-src { font-family: 'Courier New', Courier, monospace; font-weight: normal; } -.sub-package{ font-size: 120%; font-weight: bold; } -.tags{ color: #636331; list-style-type: square; margin-bottom: 0em; margin-left: 3em; margin-right: 1em; margin-top: 0em; padding-left: 0em; vertical-align: top; } -.tree dl { margin: 0px; } -.tutorial{ border-color: #0066ff; border-width: thin; } -.tutorial-nav-box{ background-color: #fdfcf2; border: 1px solid #999999; width: 100%; } -.var-default{ } -.var-summary-description { font-size: 8pt; font-weight: normal; color: #000000; } -.var-description{ color: #000000; font-weight: normal; } -.var-header{ } -.var-name, .const-name, .method-title,.method-name,.include-name,.var-name,.field { font-weight: bold; } -.var-summary,.method-summary{ font-size: 8pt;} -.var-title{ margin-bottom: .3em; } -.var-type{ color: #636331; font-style: italic; } -.var-type-summary{ color: #636331; font-size: 8pt; font-style: italic; padding-left: 1em; } -.warning{ color: #ff6600; } - -/* Syntax highlighting */ - -.src-code { background-color: #f5f5f5; border: 1px solid #ccc9a4; padding: 1em; margin : 0px; - font-family: 'Courier New', Courier, monospace; font-weight: normal; } -.src-line { font-family: 'Courier New', Courier, monospace; font-weight: normal; } - -.src-comm { color: green; } -.src-id { } -.src-inc { color: #0000FF; } -.src-key { color: #0000FF; } -.src-num { color: #CC0000; } -.src-str { color: #66cccc; } -.src-sym { font-weight: bold; } -.src-var { } - -.src-php { font-weight: bold; } - -.src-doc { color: #009999 } -.src-doc-close-template { color: #0000FF } -.src-doc-coretag { color: #0099FF; font-weight: bold } -.src-doc-inlinetag { color: #0099FF } -.src-doc-internal { color: #6699cc } -.src-doc-tag { color: #0080CC } -.src-doc-template { color: #0000FF } -.src-doc-type { font-style: italic } -.src-doc-var { font-style: italic } - -.tute-tag { color: #009999 } -.tute-attribute-name { color: #0000FF } -.tute-attribute-value { color: #0099FF } -.tute-entity { font-weight: bold; } -.tute-comment { font-style: italic } -.tute-inline-tag { color: #636311; font-weight: bold } - -/* tutorial */ - -.authors { } -.author { font-style: italic; font-weight: bold } -.author-blurb { margin: .5em 0em .5em 2em; font-size: 85%; font-weight: normal; font-style: normal } -.example { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; } -.listing { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; white-space: nowrap; } -.release-info { font-size: 85%; font-style: italic; margin: 1em 0em } -.ref-title-box { } -.ref-title { } -.ref-purpose { font-style: italic; color: #666666 } -.ref-synopsis { } -.title { font-weight: bold; margin: 1em 0em 0em 0em; padding: .25em; border: 2px solid #999999; background-color: #fdfcf2; - color: #636331; } -.cmd-synopsis { margin: 1em 0em } -.cmd-title { font-weight: bold } -.toc { margin-left: 2em; padding-left: 0em } - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/method.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/method.tpl deleted file mode 100755 index 8ea3853c..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/method.tpl +++ /dev/null @@ -1,176 +0,0 @@ -<a name='method_detail'></a> -{section name=methods loop=$methods} -{if $methods[methods].static} -<a name="method{$methods[methods].function_name}" id="{$methods[methods].function_name}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - -<div class="method-header"> - <span class="method-title">static method {$methods[methods].function_name}</span> <span class="smalllinenumber">[line {if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}]</span> -</div> -<br /> - - <div class="function"> - <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code-border"> - <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> - <code>static {$methods[methods].function_return} {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}( -{if count($methods[methods].ifunction_call.params)} -{section name=params loop=$methods[methods].ifunction_call.params} -{if $smarty.section.params.iteration != 1}, {/if} -{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}{$methods[methods].ifunction_call.params[params].type} -{$methods[methods].ifunction_call.params[params].name}{if $methods[methods].ifunction_call.params[params].hasdefault} = {$methods[methods].ifunction_call.params[params].default}]{/if} -{/section} - -{/if})</code> - </td></tr></table> - </td></tr></table><br /></div> - - {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc} - - {if $methods[methods].params} - <strong>Parameters:</strong><br /> - <table border="0" cellspacing="0" cellpadding="0"> - {section name=params loop=$methods[methods].params} - <tr><td class="indent"> - <span class="var-type">{$methods[methods].params[params].datatype}</span> </td> - <td> - <span class="var-name">{$methods[methods].params[params].var}: </span></td> - <td> - {if $methods[methods].params[params].data}<span class="var-description"> {$methods[methods].params[params].data}</span>{/if} - </td></tr> - {/section} - </table> - - {/if} -<br /> - {include file="tags.tpl" api_tags=$methods[methods].api_tags info_tags=$methods[methods].info_tags} - - {if $methods[methods].method_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$methods[methods].method_overrides.link}</dt> - {if $methods[methods].method_overrides.sdesc} - <dd>{$methods[methods].method_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} - - {if $methods[methods].descmethod} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=dm loop=$methods[methods].descmethod} - <li> - {$methods[methods].descmethod[dm].link} - {if $methods[methods].descmethod[dm].sdesc} - : {$methods[methods].descmethod[dm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} - <br /> - <div class="top">[ <a href="#top">Top</a> ]</div> -</div> -{/if} -{/section} - -{section name=methods loop=$methods} -{if !$methods[methods].static} -<a name="method{$methods[methods].function_name}" id="{$methods[methods].function_name}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - -<div class="method-header"> - <span class="method-title">{if $methods[methods].ifunction_call.constructor}Constructor {elseif $methods[methods].ifunction_call.destructor}Destructor {/if}{$methods[methods].function_name}</span> <span class="smalllinenumber">[line {if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}]</span> -</div> -<br /> - - <div class="function"> - <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code-border"> - <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> - <code>{$methods[methods].function_return} {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}( -{if count($methods[methods].ifunction_call.params)} -{section name=params loop=$methods[methods].ifunction_call.params} -{if $smarty.section.params.iteration != 1}, {/if} -{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}{$methods[methods].ifunction_call.params[params].type} -{$methods[methods].ifunction_call.params[params].name}{if $methods[methods].ifunction_call.params[params].hasdefault} = {$methods[methods].ifunction_call.params[params].default}]{/if} -{/section} - -{/if})</code> - </td></tr></table> - </td></tr></table><br /></div> - - {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc} - - {if $methods[methods].params} - <strong>Parameters:</strong><br /> - <table border="0" cellspacing="0" cellpadding="0"> - {section name=params loop=$methods[methods].params} - <tr><td class="indent"> - <span class="var-type">{$methods[methods].params[params].datatype}</span> </td> - <td> - <span class="var-name">{$methods[methods].params[params].var}: </span></td> - <td> - {if $methods[methods].params[params].data}<span class="var-description"> {$methods[methods].params[params].data}</span>{/if} - </td></tr> - {/section} - </table> - - {/if} -<br /> - {include file="tags.tpl" api_tags=$methods[methods].api_tags info_tags=$methods[methods].info_tags} - - {if $methods[methods].method_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$methods[methods].method_overrides.link}</dt> - {if $methods[methods].method_overrides.sdesc} - <dd>{$methods[methods].method_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} - - {if $methods[methods].descmethod} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=dm loop=$methods[methods].descmethod} - <li> - {$methods[methods].descmethod[dm].link} - {if $methods[methods].descmethod[dm].sdesc} - : {$methods[methods].descmethod[dm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} - <br /> - <div class="top">[ <a href="#top">Top</a> ]</div> -</div> -{/if} -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/packages.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/packages.tpl deleted file mode 100755 index 0967e6e7..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/packages.tpl +++ /dev/null @@ -1,3 +0,0 @@ -{section name=packages loop=$packages} -<a href="{$packages[packages].link}">{$packages[packages].title}</a> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/page.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/page.tpl deleted file mode 100755 index 83cfc582..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/page.tpl +++ /dev/null @@ -1,210 +0,0 @@ -{include file="header.tpl" eltype="Procedural file" class_name=$name hasel=true contents=$pagecontents} - -<a name="sec-description"></a> -<div class="info-box"> - <div class="info-box-title">Page Details</div> - <div class="nav-bar"> - {if $classes || $includes || $defines || $globals || $functions} - <span class="disabled">Page Details</span> | - {/if} - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Globals</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="docblock.tpl" type="page" desc=$desc sdesc=$sdesc} - {include file="filetags.tpl" tags=$tags} - - {if $tutorial} - <hr class="separator" /> - <div class="notes">Tutorial: <span class="tutorial">{$tutorial}</div> - {/if} - </div> -</div> - -{if $classes} - <a name="sec-classes"></a> - <div class="info-box"> - <div class="info-box-title">Classes</div> - <div class="nav-bar"> - <a href="#sec-description">Page Details</a> | - <span class="disabled">Classes</span> - {if $includes || $defines || $globals || $functions}|{/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Globals</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - <table cellpadding="2" cellspacing="0" class="class-table"> - <tr> - <th class="class-table-header">Class</th> - <th class="class-table-header">Description</th> - </tr> - {section name=classes loop=$classes} - <tr> - <td style="padding-right: 2em; vertical-align: top"> - {$classes[classes].link} - </td> - <td> - {if $classes[classes].sdesc} - {$classes[classes].sdesc} - {else} - {$classes[classes].desc} - {/if} - </td> - </tr> - {/section} - </table> - </div> - </div> -{/if} - -{if $includes} - <a name="sec-includes"></a> - <div class="info-box"> - <div class="info-box-title">Includes</div> - <div class="nav-bar"> - <a href="#sec-description">Page Details</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - <span class="disabled">Includes</span> - {if $defines || $globals || $functions}|{/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Globals</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="include.tpl"} - </div> - </div><br /> -{/if} - -{if $defines} - <a name="sec-constants"></a> - <div class="info-box"> - <div class="info-box-title">Constants</div> - <div class="nav-bar"> - <a href="#sec-description">Page Details</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - <span class="disabled">Constants</span> - {if $globals || $functions}|{/if} - {if $globals} - <a href="#sec-variables">Globals</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="define.tpl"} - </div> - </div><br /> -{/if} - -{if $globals} - <a name="sec-variables"></a> - <div class="info-box"> - <div class="info-box-title">Globals</div> - <div class="nav-bar"> - <a href="#sec-description">Page Details</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - <span class="disabled">Globals</span> - {if $functions}|{/if} - {if $globals} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="global.tpl"} - </div> - </div><br /> -{/if} - -{if $functions} - <a name="sec-functions"></a> - <div class="info-box"> - <div class="info-box-title">Functions</div> - <div class="nav-bar"> - <a href="#sec-description">Page Details</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Globals</a> - {if $functions}|{/if} - {/if} - <span class="disabled">Functions</span> - </div> - <div class="info-box-body"> - {include file="function.tpl"} - </div> - </div><br /> -{/if} - -{include file="footer.tpl" top3=true} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/pkgelementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/pkgelementindex.tpl deleted file mode 100755 index 7f12c6c5..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/pkgelementindex.tpl +++ /dev/null @@ -1,15 +0,0 @@ -{include file="header.tpl"} -<a name="top"></a> -<h1>Element index for package {$package}</h1> -{if count($packageindex) > 1} - <h3>Package indexes</h3> - <ul> - {section name=p loop=$packageindex} - {if $packageindex[p].title != $package} - <li><a href="elementindex_{$packageindex[p].title}.html">{$packageindex[p].title}</a></li> - {/if} - {/section} - </ul> -{/if} -{include file="basicindex.tpl" indexname=elementindex_$package} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/ric.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/ric.tpl deleted file mode 100755 index eff734c1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/ric.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl"} -<h1 align="center">{$name}</h1> -<pre> -{$contents|htmlentities} -</pre> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/tags.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/tags.tpl deleted file mode 100755 index 9f965d88..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/tags.tpl +++ /dev/null @@ -1,22 +0,0 @@ -{if count($api_tags) > 0} -<strong>API Tags:</strong><br /> -<table border="0" cellspacing="0" cellpadding="0"> -{section name=tag loop=$api_tags} - <tr> - <td class="indent"><strong>{$api_tags[tag].keyword|capitalize}:</strong> </td><td>{$api_tags[tag].data}</td> - </tr> -{/section} -</table> -<br /> -{/if} - -{if count($info_tags) > 0} -<strong>Information Tags:</strong><br /> -<table border="0" cellspacing="0" cellpadding="0"> -{section name=tag loop=$info_tags} - <tr> - <td class="indent"><strong>{$info_tags[tag].keyword|capitalize}:</strong> </td><td>{$info_tags[tag].data}</td> - </tr> -{/section} -</table> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/todolist.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/todolist.tpl deleted file mode 100755 index f929ccdb..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/todolist.tpl +++ /dev/null @@ -1,14 +0,0 @@ -{include file="header.tpl" title="Todo List"} -<div align="center"><h1>Todo List</h1></div> -{foreach from=$todos key=todopackage item=todo} -<h2>{$todopackage}</h2> -{section name=todo loop=$todo} -<h3>{$todo[todo].link}</h3> -<ul> -{section name=t loop=$todo[todo].todos} - <li>{$todo[todo].todos[t]}</li> -{/section} -</ul> -{/section} -{/foreach} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/tutorial.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/tutorial.tpl deleted file mode 100755 index a943522c..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/tutorial.tpl +++ /dev/null @@ -1,32 +0,0 @@ -{include file="header.tpl" title=$title} -{if $nav} -<table width="100%" border="0" cellpadding="0" cellspacing="0"> -<tr> -<td width="10%" align="left" valign="bottom">{if $prev}<a href= -"{$prev}">{/if}Prev{if $prev}</a>{/if}</td> -<td width="80%" align="center" valign="bottom"></td> -<td width="10%" align="right" valign="bottom">{if $next}<a href= -"{$next}">{/if}Next{if $next}</a>{/if}</td> -</tr> -</table> -{/if} -{$contents} -{if $nav} -<table width="100%" border="0" cellpadding="0" cellspacing="0"> -<tr> -<td width="33%" align="left" valign="top">{if $prev}<a href="{$prev}">{/if} -Prev{if $prev}</a>{/if}</td> -<td width="34%" align="center" valign="top">{if $up}<a href= -"{$up}">Up</a>{else} {/if}</td> -<td width="33%" align="right" valign="top">{if $next}<a href= -"{$next}">{/if}Next{if $next}</a>{/if}</td> -</tr> - -<tr> -<td width="33%" align="left" valign="top">{if $prevtitle}{$prevtitle}{/if}</td> -<td width="34%" align="center" valign="top">{if $uptitle}{$uptitle}{/if}</td> -<td width="33%" align="right" valign="top">{if $nexttitle}{$nexttitle}{/if}</td> -</tr> -</table> -{/if} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/tutorial_toc.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/tutorial_toc.tpl deleted file mode 100755 index 3d22d403..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/tutorial_toc.tpl +++ /dev/null @@ -1,29 +0,0 @@ -{if count($toc)} -<h1 align="center">Table of Contents</h1> -<ul> -{section name=toc loop=$toc} -{if $toc[toc].tagname == 'refsect1'} -{assign var="context" value="refsect1"} -{$toc[toc].link}<br /> -{/if} -{if $toc[toc].tagname == 'refsect2'} -{assign var="context" value="refsect2"} - {$toc[toc].link}<br /> -{/if} -{if $toc[toc].tagname == 'refsect3'} -{assign var="context" value="refsect3"} - {$toc[toc].link}<br /> -{/if} -{if $toc[toc].tagname == 'table'} -{if $context == 'refsect2'} {/if} -{if $context == 'refsect3'} {/if} -Table: {$toc[toc].link} -{/if} -{if $toc[toc].tagname == 'example'} -{if $context == 'refsect2'} {/if} -{if $context == 'refsect3'} {/if} -Table: {$toc[toc].link} -{/if} -{/section} -</ul> -{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/tutorial_tree.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/tutorial_tree.tpl deleted file mode 100755 index dd2e5811..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/tutorial_tree.tpl +++ /dev/null @@ -1,5 +0,0 @@ -<ul> - <li type="square"><a href="{$main.link}">{$main.title|strip_tags}</a> -{if $kids}{$kids}</li>{/if} -</ul> - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/var.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/var.tpl deleted file mode 100755 index 45aba195..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/HandS/templates/var.tpl +++ /dev/null @@ -1,94 +0,0 @@ -{section name=vars loop=$vars} -{if $vars[vars].static} -<a name="var{$vars[vars].var_name}" id="{$vars[vars].var_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="var-header"> - <span class="var-title"> - static <span class="var-type">{$vars[vars].var_type}</span> - <span class="var-name">{$vars[vars].var_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$vars[vars].var_default|replace:"\n":"<br />"}</span>{/if} - <span class="smalllinenumber">[line {if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}]</span> - </span> - </div> - - {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc} - {include file="tags.tpl" api_tags=$vars[vars].api_tags info_tags=$vars[vars].info_tags} - - {if $vars[vars].var_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$vars[vars].var_overrides.link}</dt> - {if $vars[vars].var_overrides.sdesc} - <dd>{$vars[vars].var_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - - {if $vars[vars].descvar} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=vm loop=$vars[vars].descvar} - <li> - {$vars[vars].descvar[vm].link} - {if $vars[vars].descvar[vm].sdesc} - : {$vars[vars].descvar[vm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} - <br /> - <div class="top">[ <a href="#top">Top</a> ]</div> -</div> -{/if} -{/section} -{section name=vars loop=$vars} -{if !$vars[vars].static} -<a name="var{$vars[vars].var_name}" id="{$vars[vars].var_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="var-header"> - <span class="var-title"> - <span class="var-type">{$vars[vars].var_type}</span> - <span class="var-name">{$vars[vars].var_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$vars[vars].var_default|replace:"\n":"<br />"}</span>{/if} - <span class="smalllinenumber">[line {if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}]</span> - </span> - </div> - - {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc} - {include file="tags.tpl" api_tags=$vars[vars].api_tags info_tags=$vars[vars].info_tags} - - {if $vars[vars].var_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$vars[vars].var_overrides.link}</dt> - {if $vars[vars].var_overrides.sdesc} - <dd>{$vars[vars].var_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - - {if $vars[vars].descvar} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=vm loop=$vars[vars].descvar} - <li> - {$vars[vars].descvar[vm].link} - {if $vars[vars].descvar[vm].sdesc} - : {$vars[vars].descvar[vm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} - <br /> - <div class="top">[ <a href="#top">Top</a> ]</div> -</div> -{/if} -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/options.ini b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/options.ini deleted file mode 100755 index 73479c5f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/options.ini +++ /dev/null @@ -1,577 +0,0 @@ -preservedocbooktags = false - -;; used to highlight the {@source} inline tag, @filesource tag, and @example tag -[highlightSourceTokens] -;; format: -;; T_CONSTANTNAME = open -;; /T_CONSTANTNAME = close - -T_INCLUDE = <span class="src-inc"> -/T_INCLUDE = </span> -T_INCLUDE_ONCE = <span class="src-inc"> -/T_INCLUDE_ONCE = </span> -T_REQUIRE_ONCE = <span class="src-inc"> -/T_REQUIRE_ONCE = </span> -T_REQUIRE_ONCE = <span class="src-inc"> -/T_REQUIRE_ONCE = </span> - -T_CONSTANT_ENCAPSED_STRING = <span class="src-str"> -/T_CONSTANT_ENCAPSED_STRING = </span> -T_STRING_VARNAME = <span class="src-str"> -/T_STRING_VARNAME = </span> - -T_STRING = <span class="src-id"> -/T_STRING = </span> - -T_DNUMBER = <span class="src-num"> -/T_DNUMBER = </span> -T_LNUMBER = <span class="src-num"> -/T_LNUMBER = </span> - -T_VARIABLE = <span class="src-var"> -/T_VARIABLE = </span> - -T_COMMENT = <span class="src-comm"> -/T_COMMENT = </span> -T_ML_COMMENT = <span class="src-comm"> -/T_ML_COMMENT = </span> - -T_OBJECT_OPERATOR = <span class="src-sym"> -/T_OBJECT_OPERATOR = </span> - -T_ABSTRACT = <span class="src-key"> -/T_ABSTRACT = </span> -T_CLONE = <span class="src-key"> -/T_CLONE = </span> -T_HALT_COMPILER = <span class="src-key"> -/T_HALT_COMPILER = </span> -T_ARRAY = <span class="src-key"> -/T_ARRAY = </span> -T_AS = <span class="src-key"> -/T_AS = </span> -T_BREAK = <span class="src-key"> -/T_BREAK = </span> -T_CLASS = <span class="src-key"> -/T_CLASS = </span> -T_CASE = <span class="src-key"> -/T_CASE = </span> -T_CONST = <span class="src-key"> -/T_CONST = </span> -T_CONTINUE = <span class="src-key"> -/T_CONTINUE = </span> -T_DECLARE = <span class="src-key"> -/T_DECLARE = </span> -T_DEFAULT = <span class="src-key"> -/T_DEFAULT = </span> -T_ELSE = <span class="src-key"> -/T_ELSE = </span> -T_ELSEIF = <span class="src-key"> -/T_ELSEIF = </span> -T_EMPTY = <span class="src-key"> -/T_EMPTY = </span> -T_ENDDECLARE = <span class="src-key"> -/T_ENDDECLARE = </span> -T_ENDFOR = <span class="src-key"> -/T_ENDFOR = </span> -T_ENDSWITCH = <span class="src-key"> -/T_ENDSWITCH = </span> -T_ENDFOREACH = <span class="src-key"> -/T_ENDFOREACH = </span> -T_ENDIF = <span class="src-key"> -/T_ENDIF = </span> -T_ENDWHILE = <span class="src-key"> -/T_ENDWHILE = </span> -T_EXIT = <span class="src-key"> -/T_EXIT = </span> -T_EXTENDS = <span class="src-key"> -/T_EXTENDS = </span> -T_FINAL = <span class="src-key"> -/T_FINAL = </span> -T_FOR = <span class="src-key"> -/T_FOR = </span> -T_FOREACH = <span class="src-key"> -/T_FOREACH = </span> -T_FUNCTION = <span class="src-key"> -/T_FUNCTION = </span> -T_GLOBAL = <span class="src-key"> -/T_GLOBAL = </span> -T_IF = <span class="src-key"> -/T_IF = </span> -T_IMPLEMENTS = <span class="src-key"> -/T_IMPLEMENTS = </span> -T_INTERFACE = <span class="src-key"> -/T_INTERFACE = </span> -T_LOGICAL_AND = <span class="src-key"> -/T_LOGICAL_AND = </span> -T_LOGICAL_OR = <span class="src-key"> -/T_LOGICAL_OR = </span> -T_LOGICAL_XOR = <span class="src-key"> -/T_LOGICAL_XOR = </span> -T_NEW = <span class="src-key"> -/T_NEW = </span> -T_PRIVATE = <span class="src-key"> -/T_PRIVATE = </span> -T_PROTECTED = <span class="src-key"> -/T_PROTECTED = </span> -T_PUBLIC = <span class="src-key"> -/T_PUBLIC = </span> -T_RETURN = <span class="src-key"> -/T_RETURN = </span> -T_STATIC = <span class="src-key"> -/T_STATIC = </span> -T_SWITCH = <span class="src-key"> -/T_SWITCH = </span> -T_VAR = <span class="src-key"> -/T_VAR = </span> -T_WHILE = <span class="src-key"> -/T_WHILE = </span> - -T_DOUBLE_COLON = <span class="src-sym"> -/T_DOUBLE_COLON = </span> - -T_OPEN_TAG = <span class="src-php"> -/T_OPEN_TAG = </span> -T_OPEN_TAG_WITH_ECHO = <span class="src-php"> -/T_OPEN_TAG_WITH_ECHO = </span> -T_CLOSE_TAG = <span class="src-php"> -/T_CLOSE_TAG = </span> - - -[highlightSource] -;; this is for highlighting things that aren't tokens like "&" -;; format: -;; word = open -;; /word = close -@ = <span class="src-sym"> -/@ = </span> -& = <span class="src-sym"> -/& = </span> -[ = <span class="src-sym"> -/[ = </span> -] = <span class="src-sym"> -/] = </span> -! = <span class="src-sym"> -/! = </span> -";" = <span class="src-sym"> -/; = </span> -( = <span class="src-sym"> -/( = </span> -) = <span class="src-sym"> -/) = </span> -, = <span class="src-sym"> -/, = </span> -{ = <span class="src-sym"> -/{ = </span> -} = <span class="src-sym"> -/} = </span> -""" = <span class="src-str"> -/" = </span> - -[highlightDocBlockSourceTokens] -;; this is for docblock tokens, using by phpDocumentor_HighlightParser -;; tagphptype is for "string" in @param string description, for example -docblock = <span class="src-doc"> -/docblock = </span> -tagphptype = <span class="src-doc-type"> -/tagphptype = </span> -tagvarname = <span class="src-doc-var"> -/tagvarname = </span> -coretag = <span class="src-doc-coretag"> -/coretag = </span> -tag = <span class="src-doc-tag"> -/tag = </span> -inlinetag = <span class="src-doc-inlinetag"> -/inlinetag = </span> -internal = <span class="src-doc-internal"> -/internal = </span> -closetemplate = <span class="src-doc-close-template"> -/closetemplate = </span> -docblocktemplate = <span class="src-doc-template"> -/docblocktemplate = </span> - -[highlightTutorialSourceTokens] -;; this is for XML DocBook-based tutorials, highlighted by phpDocumentor_TutorialHighlightParser -;; <tag> -opentag = <span class="tute-tag"> -/opentag = </span> -;; </tag> -closetag = <span class="tute-tag"> -/closetag = </span> -;; <tag attribute="value"> -attribute = <span class="tute-attribute-name"> -/attribute = </span> -;; <tag attribute="value"> -attributevalue = <span class="tute-attribute-value"> -/attributevalue = </span> -;; &entity; -entity = <span class="tute-entity"> -/entity = </span> -;; <!-- comment --> -comment = <span class="tute-comment"> -/comment = </span> -;; {@inline tag} -itag = <span class="tute-inline-tag"> -/itag = </span> - -;; used for translation of html in DocBlocks -[desctranslate] -ul = <ul> -/ul = </ul> -ol = <ol> -/ol = </ol> -li = <li> -/li = </li> -code = -/code = -var = <var> -/var = </var> -samp = <samp> -/samp = </samp> -kbd = <kbd> -/kbd = </kbd> -pre = <pre> -/pre = </pre> -p = <p> -/p = </p> -b = <strong> -/b = </strong> -i = <em> -/i = </em> -br = <br /> - -[ppage] -;; this is the DocBook package page translation section. All DocBook tags -;; that have a corresponding html tag must be listed here. Entities should -;; also be listed here -;; -;; examples: -;; 1) -;; tagname = newtagname -;; -;; This is the simplest case, where all attributes will be added into the -;; starting tag and the ending tag will be html/xml style </tranlatedtagname> -;; <tagname></tagname> becomes <newtagname></newtagname> and -;; <tagname attr="value"></tagname> becomes -;; <newtagname attr="value"></newtagname> -;; -;; 2) -;; tagname = newtagname -;; tagname->attr = newattrname -;; -;; in this case, everything will be like the first case, except tags like: -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="value"></newtagname> -;; -;; 3) -;; tagname = newtagname -;; tagname->attr = newattrname -;; tagname->attr+value = newvalue -;; -;; in this case, the value is also translated to another. This can be useful -;; for instances such as focus="middle" changing to align="center" or something -;; of that nature. -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 4) -;; tagname = newtagname -;; tagname->attr1 = newattrname -;; tagname->attr2 = newattrname -;; tagname->attr1+value|attr2+value = newvalue -;; -;; in this case, two attributes combine to make one new attribute, and the combined -;; value is translated into a new value -;; <tagname attr1="value1" attr2="value2"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 5) -;; tagname = newtagname -;; tagname!attr = dummy -;; -;; here, the attribute will be ignored. dummy is not used and may be any value -;; <tagname attr="value"></tagname> will become -;; <newtagname></newtagname> -;; -;; 6) -;; tagname = newtagname -;; tagname! = dummy -;; -;; here, all attributes will be ignored. dummy is not used and may be any value -;; <tagname attr1="value" attr2="foo"></tagname> will become -;; <newtagname></newtagname> -;; -;; 7) -;; tagname = newtagname -;; tagname/ = 1 -;; -;; here, the tag will be translated as a single tag with no closing tag, and all -;; attributes -;; <tagname attr="val">{text text}</tagname> will become -;; <newtagname attr="val" /> -;; -;; 8) -;; tagname = <starttaginfo /> -;; /tagname = closetagtext -;; -;; in this case, the text <starttaginfo> will be inserted exactly as entered for -;; <tagname> and closetagtext for </tagname> -;; <tagname attr="val"></tagname> will become -;; <starttaginfo />closetagtext -;; -;; 9) -;; $attr$my_attribute = newattrname -;; -;; tagname = newtagname -;; -;; in this case, all occurences of my_attribute in any tag will be changed to -;; newattrname. This is useful for changing things like role="php" to -;; class="php," for example. Note that the text "$attr$" MUST be on the line -;; start for phpDocumentor to recognize it. -;; -;; 10) -;; &entity; = translation text -;; " = " -;; " = """ -;; < = < -;; -;; Use this to control translation of entities to their appropriate values - - = -" = " -” = ” -“ = “ -& = & -< = < -> = > -© = © - -$attr$role = class - -abbrev = abbr - -blockquote = blockquote - -arg = span -arg->choice = class - -author = <span class="author"> -/author = </span> -author! = 0 - -authorblurb = <div class="author-blurb"> -/authorblurb = </div> - -authorgroup = <div class="authors"><h2 class="title">Authors</h2> -/authorgroup = </div> -authorgroup! = 0 - -caution = <span class="warning"> -/caution = </span> -caution! = 0 - -cmdsynopsis = <div class="cmd-synopsis"> -/cmdsynopsis = </div> - -command = <span class="cmd-title"> -/command = </span> - -copyright = <div class="notes"> -/copyright = </div> - -emphasis = strong - -example = <div class="src-code"> -/example = </div> -example! = 0 - -function = -/function = () - -formalpara = p - -graphic = img -graphic->fileref = src -graphic/ = - -important = strong - -informalequation = blockquote - -informalexample = div - -inlineequation = em - -itemizedlist = ul - -listitem = li - -literal = code - -literallayout = span - -option = " " -/option = - -orderedlist = ol - -para = p - -programlisting = <div class="src-code"> -/programlisting = </div> -programlisting! = 0 - -refentry = div - -refnamediv = <div class="ref-title-box"> -/refnamediv = </div> -refnamediv! = 0 - -refname = <h1 class="ref-title"> -/refname = </h1> - -refpurpose = <h2 class="ref-purpose"> -/refpurpose = </h2> - -refsynopsisdiv = <div class="ref-synopsis"> -/refsynopsisdiv = </div> -refsynopsisdiv! = 0 - -refsect1 = span - -refsect2 = -/refsect2 = <hr /> - -refsect3 = -/refsect3 = <br /> - -releaseinfo = <div class="release-info">( -/releaseinfo = )</div> - -simpara = -/simpara = <br /> -simpara! = 0 - -subscript = sub - -superscript = super - -table = table - -table->colsep = rules -table->rowsep = rules -table->colsep+1|rowsep+1 = all -table->colsep+1|rowsep+0 = cols -table->colsep+0|rowsep+1 = rows - -table->frame = frame -table->frame+all = border -table->frame+none = void -table->frame+sides = vsides -table->frame+top = above -table->frame+topbot = hsides - -thead = thead - -tfoot = tfoot - -tbody = tbody - -colspec = col - -tgroup = colgroup -tgroup/ = 1 -tgroup->cols = span - -row = tr - -entry = td -entry->morerows = colspan -entry->morerows+1 = 2 -entry->morerows+2 = 3 -entry->morerows+3 = 4 -entry->morerows+4 = 5 -entry->morerows+5 = 6 -entry->morerows+6 = 7 -entry->morerows+7 = 8 -entry->morerows+8 = 9 -entry->morerows+9 = 10 -entry->morerows+10 = 11 -;; add more if you need more colspans - -warning = <span class="warning"> -/warning = </span> -warning! = 0 - -;; now begins the attributes that should be tags in cdata -[$attr$id] -open = a -;close = /a -cdata! = true -quotevalues = true -separator = "=" -;separateall = true -$id = name - -;; now begins the sections that deal with <title> -[refsynopsisdiv_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h1 class="title"> -close = </h1> - -[refsect1_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h2 class="title"> -close = </h2> - -[refsect2_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h3 class="title"> -close = </h3> - -[refsect3_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h4 class="title"> -close = </h4> - -[para_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <div class="title"> -close = </div> - -[formalpara_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <div class="title"> -close = </div> - -[example_title] -;tag_attr = true -;attr_name = title -;cdata_start = true -cdata_end = true -open = </td></tr><tr><td><strong> -close = </strong> - -[table_title] -;tag_attr = true -;attr_name = true -cdata_start = true -open = <caption> -close = </caption> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/basicindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/basicindex.tpl deleted file mode 100755 index 36cf9b4f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/basicindex.tpl +++ /dev/null @@ -1,18 +0,0 @@ -{section name=letter loop=$letters} - [ <a href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> ] -{/section} - -{section name=index loop=$index} - <hr /> - <a name="{$index[index].letter}"></a> - <div> - <h2>{$index[index].letter}</h2> - <dl> - {section name=contents loop=$index[index].index} - <dt><b>{$index[index].index[contents].name}</b></dt> - <dd>{$index[index].index[contents].listing}</dd> - {/section} - </dl> - </div> - <a href="{$indexname}.html#top">top</a><br> -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/blank.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/blank.tpl deleted file mode 100755 index aae59975..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/blank.tpl +++ /dev/null @@ -1,5 +0,0 @@ -<div align="center"><h1>{$maintitle}</h1></div> -<b>Welcome to {$package}!</b><br /> -<br /> -This documentation was generated by <a href="{$phpdocwebsite}">phpDocumentor v{$phpdocversion}</a><br /> - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/class.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/class.tpl deleted file mode 100755 index 860707eb..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/class.tpl +++ /dev/null @@ -1,231 +0,0 @@ -{include file="header.tpl" eltype="class" hasel=true contents=$classcontents} - -{if $conflicts.conflict_type}<div class="warning">Conflicts with classes:<br /> - {section name=me loop=$conflicts.conflicts} - {$conflicts.conflicts[me]}<br /> - {/section} -</div> - {/if} -{* original <div class="warning">{$conflicts</div> *} - -<table width="100%" border="0"> -<tr><td valign="top"> - -<h3><a href="#class_details">{if $is_interface}Interface{else}Class{/if} Overview</a></h3> -<pre>{section name=tree loop=$class_tree.classes}{$class_tree.classes[tree]}{$class_tree.distance[tree]}{/section}</pre><br /> -<div class="description">{$sdesc|default:''}</div><br /><br /> -{if $tutorial} -<h4 class="classtutorial">{if $is_interface}Interface{else}Class{/if} Tutorial:</h4> -<ul> - <li>{$tutorial}</li> -</ul> -{/if} -{if count($tags) > 0} -<h4>Author(s):</h4> -<ul> - {section name=tag loop=$tags} - {if $tags[tag].keyword eq "author"} - <li>{$tags[tag].data}</li> - {/if} - {/section} -</ul> -{/if} - -{assign var="version" value=""} -{assign var="copyright" value=""} - -{section name=tag loop=$tags} - {if $tags[tag].keyword eq "version"} - {assign var="version" value=$tags[tag].data} - {/if} - {if $tags[tag].keyword eq "copyright"} - {assign var="copyright" value=$tags[tag].data} - {/if} -{/section} - -{if $version} -<h4>Version:</h4> -<ul> - <li>{$version}</li> -</ul> -{/if} - -{if $copyright} -<h4>Copyright:</h4> -<ul> - <li>{$copyright}</li> -</ul> -{/if} - {if $implements} - <p class="implements"> - Implements interfaces: - <ul> - {foreach item="int" from=$implements}<li>{$int}</li>{/foreach} - </ul> - </p> - {/if} - -</td> - -{if count($contents.var) > 0} -<td valign="top"> -<h3><a href="#class_vars">Variables</a></h3> -<ul> - {section name=contents loop=$contents.var} - <li>{$contents.var[contents]}</li> - {/section} -</ul> -</td> -{/if} - -{if count($contents.const) > 0} -<td valign="top"> -<h3><a href="#class_consts">Constants</a></h3> -<ul> - {section name=contents loop=$contents.const} - <li>{$contents.const[contents]}</li> - {/section} -</ul> -</td> -{/if} - -{if count($contents.method) > 0} -<td valign="top"> -<h3><a href="#class_methods">Methods</a></h3> -<ul> - {section name=contents loop=$contents.method} - <li>{$contents.method[contents]}</li> - {/section} -</ul> -</td> -{/if} - -</tr></table> -<hr /> - -<table width="100%" border="0"><tr> - -{* original {if $children != "" -<td valign="top"> -<h3>Child classes:</h3> -<div class="tags"> -{$children *} - -{if $children} -<td valign="top"> -<h3>Child classes:</h3> -<div class="tags"> -{section name=kids loop=$children} -<dl> -<dt>{$children[kids].link}</dt> - <dd>{$children[kids].sdesc}</dd> -</dl> -{/section} -</div> -</td> -{/if} - -{if $iconsts && count($iconsts) > 0} -<td valign="top"> -<h3>Inherited Constants</h3> -{section name=iconsts loop=$iconsts} -<div class="tags"> -<h4>Class: {$iconsts[iconsts].parent_class}</h4> -<dl> -{section name=iconsts2 loop=$iconsts[iconsts].iconsts} -<dt> - {$iconsts[iconsts].iconsts[iconsts2].link} -</dt> -<dd> - {$iconsts[iconsts].iconsts[iconsts2].iconsts_sdesc} -</dd> -{/section} -</dl> -</div> -{/section} -</td> -{/if} - -{if $ivars && count($ivars) > 0} -<td valign="top"> -<h3>Inherited Variables</h3> -{section name=ivars loop=$ivars} -<div class="tags"> -<h4>Class: {$ivars[ivars].parent_class}</h4> -<dl> -{section name=ivars2 loop=$ivars[ivars].ivars} -<dt> - {$ivars[ivars].ivars[ivars2].link} - {* original <a href="{$ivars[ivars].ivars[ivars2].ipath #{$ivars[ivars].ivars[ivars2].ivar_name ">{$ivars[ivars].ivars[ivars2].ivar_name </a> *} -</dt> -<dd> - {$ivars[ivars].ivars[ivars2].ivars_sdesc} -</dd> -{/section} -</dl> -</div> -{/section} -</td> -{/if} - -{if $imethods && count($imethods) > 0} -<td valign="top"> -<h3>Inherited Methods</h3> -<div class="tags"> -{section name=imethods loop=$imethods} -<h4>Class: {$imethods[imethods].parent_class}</h4> -<dl> - {section name=im2 loop=$imethods[imethods].imethods} - <dt> - {$imethods[imethods].imethods[im2].link} -{* original <a href="{$imethods[imethods].imethods[im2].ipath#{$imethods[imethods].imethods[im2].ifunction_name">{$imethods[imethods].imethods[im2].ifunction_call</a> *} - </dt> - <dd> - {$imethods[imethods].imethods[im2].sdesc} - </dd> - {/section} -</dl> -{/section} -</div> -</td> -{/if} - -</tr></table> -<hr /> - -<a name="class_details"></a> -<h3>Class Details</h3> -<div class="tags"> -[line {if $class_slink}{$class_slink}{else}{$line_number}{/if}]<br /> -{include file="docblock.tpl" type="class" sdesc=$sdesc desc=$desc} -</div><br /><br /> -<div class="top">[ <a href="#top">Top</a> ]</div><br /> - -{if $vars && count($vars) > 0} -<hr /> -<a name="class_vars"></a> -<h3>Class Variables</h3> -<div class="tags"> -{include file="var.tpl"} -</div><br /> -{/if} - -{if $methods & count($methods) > 0} -<hr /> -<a name="class_methods"></a> -<h3>Class Methods</h3> -<div class="tags"> -{include file="method.tpl"} -</div><br /> -{/if} - -{if $consts && count($consts) > 0} -<hr /> -<a name="class_consts"></a> -<h3>Class Constants</h3> -<div class="tags"> -{include file="const.tpl"} -</div><br /> -{/if} - -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/classleft.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/classleft.tpl deleted file mode 100755 index b847f409..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/classleft.tpl +++ /dev/null @@ -1,9 +0,0 @@ -{foreach key=subpackage item=files from=$classleftindex} - <div class="package"> - {if $subpackage != ""}{$subpackage}<br />{/if} - {section name=files loop=$files} - {if $subpackage != ""} {/if} - {if $files[files].link != ''}<a href="{$files[files].link}">{/if}{$files[files].title}{if $files[files].link != ''}</a>{/if}<br /> - {/section} - </div> -{/foreach} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/classtrees.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/classtrees.tpl deleted file mode 100755 index 0c0e974a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/classtrees.tpl +++ /dev/null @@ -1,17 +0,0 @@ -{include file="header.tpl" noleftindex=true} -<h1>{$title}</h1> -{if $interfaces} -{section name=classtrees loop=$interfaces} -<hr /> -<div class="classtree">Root interface {$interfaces[classtrees].class}</div><br /> -{$interfaces[classtrees].class_tree} -{/section} -{/if} -{if $classtrees} -{section name=classtrees loop=$classtrees} -<hr /> -<div class="classtree">Root class {$classtrees[classtrees].class}</div><br /> -{$classtrees[classtrees].class_tree} -{/section} -{/if} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/const.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/const.tpl deleted file mode 100644 index 9ad36e01..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/const.tpl +++ /dev/null @@ -1,14 +0,0 @@ -{section name=consts loop=$consts} -{if $show == 'summary'} - var {$consts[consts].const_name}, {$consts[consts].sdesc}<br> -{else} - <a name="{$consts[consts].const_dest}"></a> - <p></p> - <h4>{$consts[consts].const_name} = <span class="value">{$consts[consts].const_value|replace:"\n":"<br>\n"|replace:" ":" "|replace:"\t":" "}</span></h4> - <p>[line {if $consts[consts].slink}{$consts[consts].slink}{else}{$consts[consts].line_number}{/if}]</p> - {include file="docblock.tpl" sdesc=$consts[consts].sdesc desc=$consts[consts].desc tags=$consts[consts].tags} - - <br /> - <div class="top">[ <a href="#top">Top</a> ]</div><br /> -{/if} -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/define.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/define.tpl deleted file mode 100755 index 3cc84da3..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/define.tpl +++ /dev/null @@ -1,32 +0,0 @@ -{if count($defines) > 0} -{section name=def loop=$defines} -{if $show == 'summary'} -define constant <a href="{$defines[def].id}">{$defines[def].define_name}</a> = {$defines[def].define_value}, {$defines[def].sdesc}<br> -{else} - <hr /> - <a name="{$defines[def].define_link}"></a> - <h3>{$defines[def].define_name} <span class="smalllinenumber">[line {if $defines[def].slink}{$defines[def].slink}{else}{$defines[def].line_number}{/if}]</span></h3> - <div class="tags"> - <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> - <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> - <code>{$defines[def].define_name} = {$defines[def].define_value}</code> - </td></tr></table> - </td></tr></table> - - {include file="docblock.tpl" sdesc=$defines[def].sdesc desc=$defines[def].desc tags=$defines[def].tags} - <br /> - {if $defines[def].define_conflicts.conflict_type} - <p><b>Conflicts with defines:</b> - {section name=me loop=$defines[def].define_conflicts.conflicts} - {$defines[def].define_conflicts.conflicts[me]}<br /> - {/section} - </p> - {/if} -{* original {if $defines[def].define_conflicts != "" - <b>Conflicts:</b> {$defines[def].define_conflicts<br /><br /> - {/if *} - </div> - <div class="top">[ <a href="#top">Top</a> ]</div><br /><br /> -{/if} -{/section} -{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/docblock.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/docblock.tpl deleted file mode 100755 index 2ddfa0be..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/docblock.tpl +++ /dev/null @@ -1,15 +0,0 @@ -{if $sdesc != ''}{$sdesc|default:''}<br /><br />{/if} -{if $desc != ''}{$desc|default:''}<br />{/if} -{if count($tags) > 0} -<br /><br /> -<h4>Tags:</h4> -<div class="tags"> -<table border="0" cellspacing="0" cellpadding="0"> -{section name=tag loop=$tags} - <tr> - <td><b>{$tags[tag].keyword}:</b> </td><td>{$tags[tag].data}</td> - </tr> -{/section} -</table> -</div> -{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/elementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/elementindex.tpl deleted file mode 100755 index adb7b136..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/elementindex.tpl +++ /dev/null @@ -1,5 +0,0 @@ -{include file="header.tpl" noleftindex=true} -<a name="top"></a> -<h1>Index of all elements</h1> -{include file="basicindex.tpl" indexname="elementindex"} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/errors.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/errors.tpl deleted file mode 100755 index 0f526584..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/errors.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{include file="header.tpl" noleftindex=true} -{section name=files loop=$files} -<a href="#{$files[files].file}">{$files[files].file}</a><br> -{/section} -{foreach key=file item=issues from=$all} -<a name="{$file}"></a> -<h1>{$file}</h1> -{if count($issues.warnings)} -<h2>Warnings:</h2><br> -{section name=warnings loop=$issues.warnings} -<b>{$issues.warnings[warnings].name}</b> - {$issues.warnings[warnings].listing}<br> -{/section} -{/if} -{if count($issues.errors)} -<h2>Errors:</h2><br> -{section name=errors loop=$issues.errors} -<b>{$issues.errors[errors].name}</b> - {$issues.errors[errors].listing}<br> -{/section} -{/if} -{/foreach} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/examplesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/examplesource.tpl deleted file mode 100755 index c9ed8b86..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/examplesource.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl" title=$title} -<h1 align="center">{$title}</h1> -<div class="php"> -{$source} -</div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/fileleft.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/fileleft.tpl deleted file mode 100755 index 9af5e1cf..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/fileleft.tpl +++ /dev/null @@ -1,10 +0,0 @@ -{foreach key=subpackage item=files from=$fileleftindex} - {if $subpackage != ""}subpackage <b>{$subpackage}</b><br>{/if} - <div class="package"> - {section name=files loop=$files} - {if $files[files].link != ''}<a href="{$files[files].link}">{/if} - {$files[files].title} - {if $files[files].link != ''}</a>{/if}<br> - {/section} - </div><br /> -{/foreach} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/filesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/filesource.tpl deleted file mode 100755 index 3d93199e..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/filesource.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{capture name="tutle"}File Source for {$name}{/capture} -{include file="header.tpl" title=$smarty.capture.tutle} -<h1 align="center">Source for file {$name}</h1> -<p>Documentation is available at {$docs}</p> -<div class="src-code"> -{$source} -</div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/footer.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/footer.tpl deleted file mode 100755 index 57097ba5..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/footer.tpl +++ /dev/null @@ -1,11 +0,0 @@ - <div class="credit"> - <hr /> - Documentation generated on {$date} by <a href="{$phpdocwebsite}">phpDocumentor {$phpdocversion}</a> - </div> - </td></tr></table> - </td> - </tr> -</table> - -</body> -</html>
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/function.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/function.tpl deleted file mode 100755 index 204c582f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/function.tpl +++ /dev/null @@ -1,48 +0,0 @@ -{section name=func loop=$functions} -{if $show == 'summary'} -function {$functions[func].id}, {$functions[func].sdesc}<br /> -{else} - <hr /> - <a name="{$functions[func].function_dest}"></a> - <h3>{$functions[func].function_name} <span class="smalllinenumber">[line {if $functions[func].slink}{$functions[func].slink}{else}{$functions[func].line_number}{/if}]</span></h3> - <div class="function"> - <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> - <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> - <code>{$functions[func].function_return} {if $functions[func].ifunction_call.returnsref}&{/if}{$functions[func].function_name}( -{if count($functions[func].ifunction_call.params)} -{section name=params loop=$functions[func].ifunction_call.params} -{if $smarty.section.params.iteration != 1}, {/if}{if $functions[func].ifunction_call.params[params].hasdefault}[{/if}{$functions[func].ifunction_call.params[params].type} {$functions[func].ifunction_call.params[params].name}{if $functions[func].ifunction_call.params[params].hasdefault} = {$functions[func].ifunction_call.params[params].default|escape:"html"}]{/if} -{/section} -{/if})</code> - </td></tr></table> - </td></tr></table><br /> - - {include file="docblock.tpl" sdesc=$functions[func].sdesc desc=$functions[func].desc tags=$functions[func].tags} - <br /><br /> - {if $functions[func].function_conflicts.conflict_type} - <p><b>Conflicts with functions:</b> - {section name=me loop=$functions[func].function_conflicts.conflicts} - {$functions[func].function_conflicts.conflicts[me]}<br /> - {/section} - </p> - {/if} -{* original {if $functions[func].function_conflicts != "" - <b>Conflicts:</b> {$functions[func].function_conflicts<br /><br /> - {/if *} - - {if count($functions[func].params) > 0} - <h4>Parameters</h4> - <table border="0" cellspacing="0" cellpadding="0"> - {section name=params loop=$functions[func].params} - <tr> - <td class="type">{$functions[func].params[params].datatype} </td> - <td><b>{$functions[func].params[params].var}</b> </td> - <td>{$functions[func].params[params].data}</td> - </tr> - {/section} - </table> - {/if} - <div class="top">[ <a href="#top">Top</a> ]</div><br /><br /> - </div> -{/if} -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/global.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/global.tpl deleted file mode 100755 index 51ba0855..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/global.tpl +++ /dev/null @@ -1,40 +0,0 @@ -{if count($globals) > 0} -{section name=glob loop=$globals} -{if $show == 'summary'} -global variable <a href="{$globals[glob].id}">{$globals[glob].global_name}</a> = {$globals[glob].global_value}, {$globals[glob].sdesc}<br> -{else} - <hr /> - <a name="{$globals[glob].global_link}"></a> - <h4><i>{$globals[glob].global_type}</i> {$globals[glob].global_name} <span class="smalllinenumber">[line {if $globals[glob].slink}{$globals[glob].slink}{else}{$globals[glob].line_number}{/if}]</span></h4> - <div class="tags"> - {if $globals[glob].sdesc != ""} - {include file="docblock.tpl" sdesc=$globals[glob].sdesc desc=$globals[glob].desc tags=$globals[glob].tags} - {/if} - - <table border="0" cellspacing="0" cellpadding="0"> - <tr> - <td><b>Default value:</b> </td> - <td>{$globals[glob].global_value|replace:" ":" "|replace:"\n":"<br />\n"|replace:"\t":" "}</td> - </tr> - {if $globals[glob].global_conflicts.conflict_type} - <tr> - <td><b>Conflicts with globals:</b> </td> - <td> - {section name=me loop=$globals[glob].global_conflicts.conflicts} - {$globals[glob].global_conflicts.conflicts[me]}<br /> - {/section} - </td> - </tr> - {/if} -{* original {if $globals[glob].global_conflicts != "" - <tr> - <td><b>Conflicts:</b> </td> - <td>{$globals[glob].global_conflicts</td> - </tr> - {/if *} - </table> - </div><br /><br /> - <div class="top">[ <a href="#top">Top</a> ]</div><br /><br /> -{/if} -{/section} -{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/header.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/header.tpl deleted file mode 100755 index 7d3e8f7d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/header.tpl +++ /dev/null @@ -1,97 +0,0 @@ -<html> -<head> -<title>{$title}</title> -<link rel="stylesheet" type="text/css" href="{$subdir}media/style.css"> -</head> -<body> - -<table border="0" cellspacing="0" cellpadding="0" height="48" width="100%"> - <tr> - <td class="header_top">{$package}</td> - </tr> - <tr><td class="header_line"><img src="{$subdir}media/empty.png" width="1" height="1" border="0" alt="" /></td></tr> - <tr> - <td class="header_menu"> - {assign var="packagehaselements" value=false} - {foreach from=$packageindex item=thispackage} - {if in_array($package, $thispackage)} - {assign var="packagehaselements" value=true} - {/if} - {/foreach} - {if $packagehaselements} - [ <a href="{$subdir}classtrees_{$package}.html" class="menu">class tree: {$package}</a> ] - [ <a href="{$subdir}elementindex_{$package}.html" class="menu">index: {$package}</a> ] - {/if} - [ <a href="{$subdir}elementindex.html" class="menu">all elements</a> ] - </td> - </tr> - <tr><td class="header_line"><img src="{$subdir}media/empty.png" width="1" height="1" border="0" alt="" /></td></tr> -</table> - -<table width="100%" border="0" cellpadding="0" cellspacing="0"> - <tr valign="top"> - <td width="200" class="menu"> -{if count($ric) >= 1} - <div id="ric"> - {section name=ric loop=$ric} - <p><a href="{$subdir}{$ric[ric].file}">{$ric[ric].name}</a></p> - {/section} - </div> -{/if} -{if $hastodos} - <div id="todolist"> - <p><a href="{$subdir}{$todolink}">Todo List</a></p> - </div> -{/if} - <b>Packages:</b><br /> - {section name=packagelist loop=$packageindex} - <a href="{$subdir}{$packageindex[packagelist].link}">{$packageindex[packagelist].title}</a><br /> - {/section} - <br /><br /> -{if $tutorials} - <b>Tutorials/Manuals:</b><br /> - {if $tutorials.pkg} - <strong>Package-level:</strong> - {section name=ext loop=$tutorials.pkg} - {$tutorials.pkg[ext]} - {/section} - {/if} - {if $tutorials.cls} - <strong>Class-level:</strong> - {section name=ext loop=$tutorials.cls} - {$tutorials.cls[ext]} - {/section} - {/if} - {if $tutorials.proc} - <strong>Procedural-level:</strong> - {section name=ext loop=$tutorials.proc} - {$tutorials.proc[ext]} - {/section} - {/if} -{/if} - {if !$noleftindex}{assign var="noleftindex" value=false}{/if} - {if !$noleftindex} - {if $compiledfileindex} - <b>Files:</b><br /> - {eval var=$compiledfileindex} - {/if} - - {if $compiledinterfaceindex} - <b>Interfaces:</b><br /> - {eval var=$compiledinterfaceindex} - {/if} - - {if $compiledclassindex} - <b>Classes:</b><br /> - {eval var=$compiledclassindex} - {/if} - {/if} - </td> - <td> - <table cellpadding="10" cellspacing="0" width="100%" border="0"><tr><td valign="top"> - -{if !$hasel}{assign var="hasel" value=false}{/if} -{if $hasel} -<h1>{$eltype|capitalize}: {$class_name}</h1> -Source Location: {$source_location}<br /><br /> -{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/include.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/include.tpl deleted file mode 100755 index 68b80081..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/include.tpl +++ /dev/null @@ -1,9 +0,0 @@ -{if count($includes) > 0} -<h4>Includes:</h4> -<div class="tags"> -{section name=includes loop=$includes} -{$includes[includes].include_name}({$includes[includes].include_value}) [line {if $includes[includes].slink}{$includes[includes].slink}{else}{$includes[includes].line_number}{/if}]<br /> -{include file="docblock.tpl" sdesc=$includes[includes].sdesc desc=$includes[includes].desc tags=$includes[includes].tags} -{/section} -</div> -{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/index.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/index.tpl deleted file mode 100755 index a493f70e..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/index.tpl +++ /dev/null @@ -1,7 +0,0 @@ -{include file="header.tpl"} -{if $contents} -{$contents} -{else} -{include file="blank.tpl"} -{/if} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/media/background.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/media/background.png Binary files differdeleted file mode 100755 index d6f36f60..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/media/background.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/media/empty.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/media/empty.png Binary files differdeleted file mode 100755 index a9f29bb1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/media/empty.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/media/style.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/media/style.css deleted file mode 100755 index bc65d896..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/media/style.css +++ /dev/null @@ -1,195 +0,0 @@ -.php { - padding: 1em; -} -.php-src { font-family: 'Courier New', Courier, monospace; font-weight: normal; } - -body -{ - color: #000000; - background-color: #ffffff; - background-image: url("background.png"); - background-repeat: repeat-y; - font-family: tahoma, verdana, arial, sans-serif; - font-size: 10pt; - margin: 0; - padding: 0; -} - -a -{ - color: #000099; - background-color: transparent; - text-decoration: none; -} - -a:hover -{ - text-decoration: underline; -} - -a.menu -{ - color: #ffffff; - background-color: transparent; -} - -td -{ - font-size: 10pt; -} - -td.header_top -{ - color: #ffffff; - background-color: #9999cc; - font-size: 16pt; - font-weight: bold; - text-align: right; - padding: 10px; -} - -td.header_line -{ - color: #ffffff; - background-color: #333366; -} - -td.header_menu -{ - color: #ffffff; - background-color: #666699; - font-size: 8pt; - text-align: right; - padding: 2px; - padding-right: 5px; -} - -td.menu -{ - padding: 2px; - padding-left: 5px; -} - -td.code_border -{ - color: #000000; - background-color: #c0c0c0; -} - -td.code -{ - color: #000000; - background-color: #f0f0f0; -} - -td.type -{ - font-style: italic; -} - -div.credit -{ - font-size: 8pt; - text-align: center; -} - -div.package -{ - padding-left: 5px; -} - -div.tags -{ - padding-left: 15px; -} - -div.function -{ - padding-left: 15px; -} - -div.top -{ - font-size: 8pt; -} - -div.warning -{ - color: #ff0000; - background-color: transparent; -} - -div.description -{ - padding-left: 15px; -} - -hr -{ - height: 1px; - border-style: solid; - border-color: #c0c0c0; - margin-top: 10px; - margin-bottom: 10px; -} - -span.smalllinenumber -{ - font-size: 8pt; -} - -ul { - margin-left: 0px; - padding-left: 8px; -} -/* Syntax highlighting */ - -.src-code { background-color: #f5f5f5; border: 1px solid #ccc9a4; padding: 0 0 0 1em; margin : 0px; - font-family: 'Courier New', Courier, monospace; font-weight: normal; } -.src-line { font-family: 'Courier New', Courier, monospace; font-weight: normal; } - -.src-comm { color: green; } -.src-id { } -.src-inc { color: #0000FF; } -.src-key { color: #0000FF; } -.src-num { color: #CC0000; } -.src-str { color: #66cccc; } -.src-sym { font-weight: bold; } -.src-var { } - -.src-php { font-weight: bold; } - -.src-doc { color: #009999 } -.src-doc-close-template { color: #0000FF } -.src-doc-coretag { color: #0099FF; font-weight: bold } -.src-doc-inlinetag { color: #0099FF } -.src-doc-internal { color: #6699cc } -.src-doc-tag { color: #0080CC } -.src-doc-template { color: #0000FF } -.src-doc-type { font-style: italic } -.src-doc-var { font-style: italic } - -.tute-tag { color: #009999 } -.tute-attribute-name { color: #0000FF } -.tute-attribute-value { color: #0099FF } -.tute-entity { font-weight: bold; } -.tute-comment { font-style: italic } -.tute-inline-tag { color: #636311; font-weight: bold } - -/* tutorial */ - -.authors { } -.author { font-style: italic; font-weight: bold } -.author-blurb { margin: .5em 0em .5em 2em; font-size: 85%; font-weight: normal; font-style: normal } -.example { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; } -.listing { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; white-space: nowrap; } -.release-info { font-size: 85%; font-style: italic; margin: 1em 0em } -.ref-title-box { } -.ref-title { } -.ref-purpose { font-style: italic; color: #666666 } -.ref-synopsis { } -.title { font-weight: bold; margin: 1em 0em 0em 0em; padding: .25em; border: 2px solid #999999; background-color: #9999CC } -.cmd-synopsis { margin: 1em 0em } -.cmd-title { font-weight: bold } -.toc { margin-left: 2em; padding-left: 0em } - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/method.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/method.tpl deleted file mode 100755 index bcc4dcee..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/method.tpl +++ /dev/null @@ -1,145 +0,0 @@ -{section name=methods loop=$methods} -{if $methods[methods].static} -{if $show == 'summary'} -static method {$methods[methods].function_call}, {$methods[methods].sdesc}<br /> -{else} - <hr /> - <a name="{$methods[methods].method_dest}"></a> - <h3>static method {$methods[methods].function_name} <span class="smalllinenumber">[line {if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}]</span></h3> - <div class="function"> - <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> - <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> - <code>static {$methods[methods].function_return} {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}( -{if count($methods[methods].ifunction_call.params)} -{section name=params loop=$methods[methods].ifunction_call.params} -{if $smarty.section.params.iteration != 1}, {/if} -{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}{$methods[methods].ifunction_call.params[params].type} -{$methods[methods].ifunction_call.params[params].name}{if $methods[methods].ifunction_call.params[params].hasdefault} = {$methods[methods].ifunction_call.params[params].default}]{/if} -{/section} -{/if})</code> - </td></tr></table> - </td></tr></table><br /> - - {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags}<br /><br /> - -{if $methods[methods].descmethod} - <p>Overridden in child classes as:<br /> - {section name=dm loop=$methods[methods].descmethod} - <dl> - <dt>{$methods[methods].descmethod[dm].link}</dt> - <dd>{$methods[methods].descmethod[dm].sdesc}</dd> - </dl> - {/section}</p> -{/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} -{* original {if $methods[methods].descmethod != "" - {$methods[methods].descmethod<br /><br /> - {/if *} -{if $methods[methods].method_overrides}Overrides {$methods[methods].method_overrides.link} ({$methods[methods].method_overrides.sdesc|default:"parent method not documented"})<br /><br />{/if} -{* original {if $methods[methods].method_overrides != "" - {$methods[methods].method_overrides<br /><br /> - {/if *} - - {if count($methods[methods].params) > 0} - <h4>Parameters:</h4> - <div class="tags"> - <table border="0" cellspacing="0" cellpadding="0"> - {section name=params loop=$methods[methods].params} - <tr> - <td class="type">{$methods[methods].params[params].datatype} </td> - <td><b>{$methods[methods].params[params].var}</b> </td> - <td>{$methods[methods].params[params].data}</td> - </tr> - {/section} - </table> - </div><br /> - {/if} - <div class="top">[ <a href="#top">Top</a> ]</div> - </div> -{/if} -{/if} -{/section} - -{section name=methods loop=$methods} -{if !$methods[methods].static} -{if $show == 'summary'} -method {$methods[methods].function_call}, {$methods[methods].sdesc}<br /> -{else} - <hr /> - <a name="{$methods[methods].method_dest}"></a> - <h3>{if $methods[methods].ifunction_call.constructor}constructor {elseif $methods[methods].ifunction_call.destructor}destructor {else}method {/if}{$methods[methods].function_name} <span class="smalllinenumber">[line {if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}]</span></h3> - <div class="function"> - <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border"> - <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code"> - <code>{$methods[methods].function_return} {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}( -{if count($methods[methods].ifunction_call.params)} -{section name=params loop=$methods[methods].ifunction_call.params} -{if $smarty.section.params.iteration != 1}, {/if} -{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}{$methods[methods].ifunction_call.params[params].type} -{$methods[methods].ifunction_call.params[params].name}{if $methods[methods].ifunction_call.params[params].hasdefault} = {$methods[methods].ifunction_call.params[params].default}]{/if} -{/section} -{/if})</code> - </td></tr></table> - </td></tr></table><br /> - - {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags}<br /><br /> - -{if $methods[methods].descmethod} - <p>Overridden in child classes as:<br /> - {section name=dm loop=$methods[methods].descmethod} - <dl> - <dt>{$methods[methods].descmethod[dm].link}</dt> - <dd>{$methods[methods].descmethod[dm].sdesc}</dd> - </dl> - {/section}</p> -{/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} -{* original {if $methods[methods].descmethod != "" - {$methods[methods].descmethod<br /><br /> - {/if *} -{if $methods[methods].method_overrides}Overrides {$methods[methods].method_overrides.link} ({$methods[methods].method_overrides.sdesc|default:"parent method not documented"})<br /><br />{/if} -{* original {if $methods[methods].method_overrides != "" - {$methods[methods].method_overrides<br /><br /> - {/if *} - - {if count($methods[methods].params) > 0} - <h4>Parameters:</h4> - <div class="tags"> - <table border="0" cellspacing="0" cellpadding="0"> - {section name=params loop=$methods[methods].params} - <tr> - <td class="type">{$methods[methods].params[params].datatype} </td> - <td><b>{$methods[methods].params[params].var}</b> </td> - <td>{$methods[methods].params[params].data}</td> - </tr> - {/section} - </table> - </div><br /> - {/if} - <div class="top">[ <a href="#top">Top</a> ]</div> - </div> -{/if} -{/if} -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/packages.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/packages.tpl deleted file mode 100755 index 0967e6e7..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/packages.tpl +++ /dev/null @@ -1,3 +0,0 @@ -{section name=packages loop=$packages} -<a href="{$packages[packages].link}">{$packages[packages].title}</a> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/page.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/page.tpl deleted file mode 100755 index db2cd607..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/page.tpl +++ /dev/null @@ -1,31 +0,0 @@ -{include file="header.tpl" eltype="Procedural file" class_name=$name hasel=true contents=$pagecontents} - -<br> -<br> - -{if $classes} -<div class="contents"> -{if $tutorial} -<span class="maintutorial">Main Tutorial: {$tutorial}</span> -{/if} -<h2>Classes:</h2> -{section name=classes loop=$classes} -<dt>{$classes[classes].link}</dt> - <dd>{$classes[classes].sdesc}</dd> -{/section} -</div><br /><br /> -{/if} - -<h2>Page Details:</h2> -{include file="docblock.tpl" type="page"} -<br /><br /> -{include file="include.tpl"} -<br /><br /> -{include file="global.tpl"} -<br /><br /> -{include file="define.tpl"} -<br /> -{include file="function.tpl"} - -{include file="footer.tpl"} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/pkgelementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/pkgelementindex.tpl deleted file mode 100755 index 0dabfdb7..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/pkgelementindex.tpl +++ /dev/null @@ -1,5 +0,0 @@ -{include file="header.tpl"} -<a name="top"></a> -<h1>Element index for package {$package}</h1> -{include file="basicindex.tpl" indexname=elementindex_$package} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/ric.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/ric.tpl deleted file mode 100755 index eff734c1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/ric.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl"} -<h1 align="center">{$name}</h1> -<pre> -{$contents|htmlentities} -</pre> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/todolist.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/todolist.tpl deleted file mode 100755 index f929ccdb..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/todolist.tpl +++ /dev/null @@ -1,14 +0,0 @@ -{include file="header.tpl" title="Todo List"} -<div align="center"><h1>Todo List</h1></div> -{foreach from=$todos key=todopackage item=todo} -<h2>{$todopackage}</h2> -{section name=todo loop=$todo} -<h3>{$todo[todo].link}</h3> -<ul> -{section name=t loop=$todo[todo].todos} - <li>{$todo[todo].todos[t]}</li> -{/section} -</ul> -{/section} -{/foreach} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/tutorial.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/tutorial.tpl deleted file mode 100755 index a943522c..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/tutorial.tpl +++ /dev/null @@ -1,32 +0,0 @@ -{include file="header.tpl" title=$title} -{if $nav} -<table width="100%" border="0" cellpadding="0" cellspacing="0"> -<tr> -<td width="10%" align="left" valign="bottom">{if $prev}<a href= -"{$prev}">{/if}Prev{if $prev}</a>{/if}</td> -<td width="80%" align="center" valign="bottom"></td> -<td width="10%" align="right" valign="bottom">{if $next}<a href= -"{$next}">{/if}Next{if $next}</a>{/if}</td> -</tr> -</table> -{/if} -{$contents} -{if $nav} -<table width="100%" border="0" cellpadding="0" cellspacing="0"> -<tr> -<td width="33%" align="left" valign="top">{if $prev}<a href="{$prev}">{/if} -Prev{if $prev}</a>{/if}</td> -<td width="34%" align="center" valign="top">{if $up}<a href= -"{$up}">Up</a>{else} {/if}</td> -<td width="33%" align="right" valign="top">{if $next}<a href= -"{$next}">{/if}Next{if $next}</a>{/if}</td> -</tr> - -<tr> -<td width="33%" align="left" valign="top">{if $prevtitle}{$prevtitle}{/if}</td> -<td width="34%" align="center" valign="top">{if $uptitle}{$uptitle}{/if}</td> -<td width="33%" align="right" valign="top">{if $nexttitle}{$nexttitle}{/if}</td> -</tr> -</table> -{/if} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/tutorial_toc.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/tutorial_toc.tpl deleted file mode 100755 index 3d22d403..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/tutorial_toc.tpl +++ /dev/null @@ -1,29 +0,0 @@ -{if count($toc)} -<h1 align="center">Table of Contents</h1> -<ul> -{section name=toc loop=$toc} -{if $toc[toc].tagname == 'refsect1'} -{assign var="context" value="refsect1"} -{$toc[toc].link}<br /> -{/if} -{if $toc[toc].tagname == 'refsect2'} -{assign var="context" value="refsect2"} - {$toc[toc].link}<br /> -{/if} -{if $toc[toc].tagname == 'refsect3'} -{assign var="context" value="refsect3"} - {$toc[toc].link}<br /> -{/if} -{if $toc[toc].tagname == 'table'} -{if $context == 'refsect2'} {/if} -{if $context == 'refsect3'} {/if} -Table: {$toc[toc].link} -{/if} -{if $toc[toc].tagname == 'example'} -{if $context == 'refsect2'} {/if} -{if $context == 'refsect3'} {/if} -Table: {$toc[toc].link} -{/if} -{/section} -</ul> -{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/tutorial_tree.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/tutorial_tree.tpl deleted file mode 100755 index dd2e5811..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/tutorial_tree.tpl +++ /dev/null @@ -1,5 +0,0 @@ -<ul> - <li type="square"><a href="{$main.link}">{$main.title|strip_tags}</a> -{if $kids}{$kids}</li>{/if} -</ul> - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/var.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/var.tpl deleted file mode 100755 index e36c61fd..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PHP/templates/var.tpl +++ /dev/null @@ -1,60 +0,0 @@ -{section name=vars loop=$vars} -{if $vars[vars].static} -{if $show == 'summary'} - static var {$vars[vars].var_name}, {$vars[vars].sdesc}<br> -{else} - <a name="{$vars[vars].var_dest}"></a> - <p></p> - <h4>static {$vars[vars].var_name} = <span class="value">{$vars[vars].var_default|replace:"\n":"<br>\n"|replace:" ":" "|replace:"\t":" "}</span></h4> - <p>[line {if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}]</p> - {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} - - <br /> - <div class="tags"> - <table border="0" cellspacing="0" cellpadding="0"> - <tr> - <td><b>Type:</b> </td> - <td>{$vars[vars].var_type}</td> - </tr> - {if $vars[vars].var_overrides != ""} - <tr> - <td><b>Overrides:</b> </td> - <td>{$vars[vars].var_overrides}</td> - </tr> - {/if} - </table> - </div><br /><br /> - <div class="top">[ <a href="#top">Top</a> ]</div><br /> -{/if} -{/if} -{/section} -{section name=vars loop=$vars} -{if !$vars[vars].static} -{if $show == 'summary'} - var {$vars[vars].var_name}, {$vars[vars].sdesc}<br> -{else} - <a name="{$vars[vars].var_dest}"></a> - <p></p> - <h4>{$vars[vars].var_name} = <span class="value">{$vars[vars].var_default|replace:"\n":"<br>\n"|replace:" ":" "|replace:"\t":" "}</span></h4> - <p>[line {if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}]</p> - {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} - - <br /> - <div class="tags"> - <table border="0" cellspacing="0" cellpadding="0"> - <tr> - <td><b>Type:</b> </td> - <td>{$vars[vars].var_type}</td> - </tr> - {if $vars[vars].var_overrides != ""} - <tr> - <td><b>Overrides:</b> </td> - <td>{$vars[vars].var_overrides}</td> - </tr> - {/if} - </table> - </div><br /><br /> - <div class="top">[ <a href="#top">Top</a> ]</div><br /> -{/if} -{/if} -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/options.ini b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/options.ini deleted file mode 100644 index 4566db60..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/options.ini +++ /dev/null @@ -1,577 +0,0 @@ -preservedocbooktags = false
-
-;; used to highlight the {@source} inline tag, @filesource tag, and @example tag
-[highlightSourceTokens]
-;; format:
-;; T_CONSTANTNAME = open
-;; /T_CONSTANTNAME = close
-
-T_INCLUDE = <span class="src-inc">
-/T_INCLUDE = </span>
-T_INCLUDE_ONCE = <span class="src-inc">
-/T_INCLUDE_ONCE = </span>
-T_REQUIRE_ONCE = <span class="src-inc">
-/T_REQUIRE_ONCE = </span>
-T_REQUIRE_ONCE = <span class="src-inc">
-/T_REQUIRE_ONCE = </span>
-
-T_CONSTANT_ENCAPSED_STRING = <span class="src-str">
-/T_CONSTANT_ENCAPSED_STRING = </span>
-T_STRING_VARNAME = <span class="src-str">
-/T_STRING_VARNAME = </span>
-
-T_STRING = <span class="src-id">
-/T_STRING = </span>
-
-T_DNUMBER = <span class="src-num">
-/T_DNUMBER = </span>
-T_LNUMBER = <span class="src-num">
-/T_LNUMBER = </span>
-
-T_VARIABLE = <span class="src-var">
-/T_VARIABLE = </span>
-
-T_COMMENT = <span class="src-comm">
-/T_COMMENT = </span>
-T_ML_COMMENT = <span class="src-comm">
-/T_ML_COMMENT = </span>
-
-T_OBJECT_OPERATOR = <span class="src-sym">
-/T_OBJECT_OPERATOR = </span>
-
-T_ABSTRACT = <span class="src-key">
-/T_ABSTRACT = </span>
-T_CLONE = <span class="src-key">
-/T_CLONE = </span>
-T_HALT_COMPILER = <span class="src-key">
-/T_HALT_COMPILER = </span>
-T_ARRAY = <span class="src-key">
-/T_ARRAY = </span>
-T_AS = <span class="src-key">
-/T_AS = </span>
-T_BREAK = <span class="src-key">
-/T_BREAK = </span>
-T_CLASS = <span class="src-key">
-/T_CLASS = </span>
-T_CASE = <span class="src-key">
-/T_CASE = </span>
-T_CONST = <span class="src-key">
-/T_CONST = </span>
-T_CONTINUE = <span class="src-key">
-/T_CONTINUE = </span>
-T_DECLARE = <span class="src-key">
-/T_DECLARE = </span>
-T_DEFAULT = <span class="src-key">
-/T_DEFAULT = </span>
-T_ELSE = <span class="src-key">
-/T_ELSE = </span>
-T_ELSEIF = <span class="src-key">
-/T_ELSEIF = </span>
-T_EMPTY = <span class="src-key">
-/T_EMPTY = </span>
-T_ENDDECLARE = <span class="src-key">
-/T_ENDDECLARE = </span>
-T_ENDFOR = <span class="src-key">
-/T_ENDFOR = </span>
-T_ENDSWITCH = <span class="src-key">
-/T_ENDSWITCH = </span>
-T_ENDFOREACH = <span class="src-key">
-/T_ENDFOREACH = </span>
-T_ENDIF = <span class="src-key">
-/T_ENDIF = </span>
-T_ENDWHILE = <span class="src-key">
-/T_ENDWHILE = </span>
-T_EXIT = <span class="src-key">
-/T_EXIT = </span>
-T_EXTENDS = <span class="src-key">
-/T_EXTENDS = </span>
-T_FINAL = <span class="src-key">
-/T_FINAL = </span>
-T_FOR = <span class="src-key">
-/T_FOR = </span>
-T_FOREACH = <span class="src-key">
-/T_FOREACH = </span>
-T_FUNCTION = <span class="src-key">
-/T_FUNCTION = </span>
-T_GLOBAL = <span class="src-key">
-/T_GLOBAL = </span>
-T_IF = <span class="src-key">
-/T_IF = </span>
-T_IMPLEMENTS = <span class="src-key">
-/T_IMPLEMENTS = </span>
-T_INTERFACE = <span class="src-key">
-/T_INTERFACE = </span>
-T_LOGICAL_AND = <span class="src-key">
-/T_LOGICAL_AND = </span>
-T_LOGICAL_OR = <span class="src-key">
-/T_LOGICAL_OR = </span>
-T_LOGICAL_XOR = <span class="src-key">
-/T_LOGICAL_XOR = </span>
-T_NEW = <span class="src-key">
-/T_NEW = </span>
-T_PRIVATE = <span class="src-key">
-/T_PRIVATE = </span>
-T_PROTECTED = <span class="src-key">
-/T_PROTECTED = </span>
-T_PUBLIC = <span class="src-key">
-/T_PUBLIC = </span>
-T_RETURN = <span class="src-key">
-/T_RETURN = </span>
-T_STATIC = <span class="src-key">
-/T_STATIC = </span>
-T_SWITCH = <span class="src-key">
-/T_SWITCH = </span>
-T_VAR = <span class="src-key">
-/T_VAR = </span>
-T_WHILE = <span class="src-key">
-/T_WHILE = </span>
-
-T_DOUBLE_COLON = <span class="src-sym">
-/T_DOUBLE_COLON = </span>
-
-T_OPEN_TAG = <span class="src-php">
-/T_OPEN_TAG = </span>
-T_OPEN_TAG_WITH_ECHO = <span class="src-php">
-/T_OPEN_TAG_WITH_ECHO = </span>
-T_CLOSE_TAG = <span class="src-php">
-/T_CLOSE_TAG = </span>
-
-
-[highlightSource]
-;; this is for highlighting things that aren't tokens like "&"
-;; format:
-;; word = open
-;; /word = close
-@ = <span class="src-sym">
-/@ = </span>
-& = <span class="src-sym">
-/& = </span>
-[ = <span class="src-sym">
-/[ = </span>
-] = <span class="src-sym">
-/] = </span>
-! = <span class="src-sym">
-/! = </span>
-";" = <span class="src-sym">
-/; = </span>
-( = <span class="src-sym">
-/( = </span>
-) = <span class="src-sym">
-/) = </span>
-, = <span class="src-sym">
-/, = </span>
-{ = <span class="src-sym">
-/{ = </span>
-} = <span class="src-sym">
-/} = </span>
-""" = <span class="src-str">
-/" = </span>
-
-[highlightDocBlockSourceTokens]
-;; this is for docblock tokens, using by phpDocumentor_HighlightParser
-;; tagphptype is for "string" in @param string description, for example
-docblock = <span class="src-doc">
-/docblock = </span>
-tagphptype = <span class="src-doc-type">
-/tagphptype = </span>
-tagvarname = <span class="src-doc-var">
-/tagvarname = </span>
-coretag = <span class="src-doc-coretag">
-/coretag = </span>
-tag = <span class="src-doc-tag">
-/tag = </span>
-inlinetag = <span class="src-doc-inlinetag">
-/inlinetag = </span>
-internal = <span class="src-doc-internal">
-/internal = </span>
-closetemplate = <span class="src-doc-close-template">
-/closetemplate = </span>
-docblocktemplate = <span class="src-doc-template">
-/docblocktemplate = </span>
-
-[highlightTutorialSourceTokens]
-;; this is for XML DocBook-based tutorials, highlighted by phpDocumentor_TutorialHighlightParser
-;; <tag>
-opentag = <span class="tute-tag">
-/opentag = </span>
-;; </tag>
-closetag = <span class="tute-tag">
-/closetag = </span>
-;; <tag attribute="value">
-attribute = <span class="tute-attribute-name">
-/attribute = </span>
-;; <tag attribute="value">
-attributevalue = <span class="tute-attribute-value">
-/attributevalue = </span>
-;; &entity;
-entity = <span class="tute-entity">
-/entity = </span>
-;; <!-- comment -->
-comment = <span class="tute-comment">
-/comment = </span>
-;; {@inline tag}
-itag = <span class="tute-inline-tag">
-/itag = </span>
-
-;; used for translation of html in DocBlocks
-[desctranslate]
-ul = <ul>
-/ul = </ul>
-ol = <ol>
-/ol = </ol>
-li = <li>
-/li = </li>
-code = <div class="listing"><pre>
-/code = </pre></div>
-var = <var>
-/var = </var>
-samp = <samp>
-/samp = </samp>
-kbd = <kbd>
-/kbd = </kbd>
-pre = <pre>
-/pre = </pre>
-p = <p>
-/p = </p>
-b = <strong>
-/b = </strong>
-i = <em>
-/i = </em>
-br = <br />
-
-[ppage]
-;; this is the DocBook package page translation section. All DocBook tags
-;; that have a corresponding html tag must be listed here. Entities should
-;; also be listed here
-;;
-;; examples:
-;; 1)
-;; tagname = newtagname
-;;
-;; This is the simplest case, where all attributes will be added into the
-;; starting tag and the ending tag will be html/xml style </tranlatedtagname>
-;; <tagname></tagname> becomes <newtagname></newtagname> and
-;; <tagname attr="value"></tagname> becomes
-;; <newtagname attr="value"></newtagname>
-;;
-;; 2)
-;; tagname = newtagname
-;; tagname->attr = newattrname
-;;
-;; in this case, everything will be like the first case, except tags like:
-;; <tagname attr="value"></tagname> will become
-;; <newtagname newattrname="value"></newtagname>
-;;
-;; 3)
-;; tagname = newtagname
-;; tagname->attr = newattrname
-;; tagname->attr+value = newvalue
-;;
-;; in this case, the value is also translated to another. This can be useful
-;; for instances such as focus="middle" changing to align="center" or something
-;; of that nature.
-;; <tagname attr="value"></tagname> will become
-;; <newtagname newattrname="newvalue"></newtagname>
-;;
-;; 4)
-;; tagname = newtagname
-;; tagname->attr1 = newattrname
-;; tagname->attr2 = newattrname
-;; tagname->attr1+value|attr2+value = newvalue
-;;
-;; in this case, two attributes combine to make one new attribute, and the combined
-;; value is translated into a new value
-;; <tagname attr1="value1" attr2="value2"></tagname> will become
-;; <newtagname newattrname="newvalue"></newtagname>
-;;
-;; 5)
-;; tagname = newtagname
-;; tagname!attr = dummy
-;;
-;; here, the attribute will be ignored. dummy is not used and may be any value
-;; <tagname attr="value"></tagname> will become
-;; <newtagname></newtagname>
-;;
-;; 6)
-;; tagname = newtagname
-;; tagname! = dummy
-;;
-;; here, all attributes will be ignored. dummy is not used and may be any value
-;; <tagname attr1="value" attr2="foo"></tagname> will become
-;; <newtagname></newtagname>
-;;
-;; 7)
-;; tagname = newtagname
-;; tagname/ = 1
-;;
-;; here, the tag will be translated as a single tag with no closing tag, and all
-;; attributes
-;; <tagname attr="val">{text text}</tagname> will become
-;; <newtagname attr="val" />
-;;
-;; 8)
-;; tagname = <starttaginfo />
-;; /tagname = closetagtext
-;;
-;; in this case, the text <starttaginfo> will be inserted exactly as entered for
-;; <tagname> and closetagtext for </tagname>
-;; <tagname attr="val"></tagname> will become
-;; <starttaginfo />closetagtext
-;;
-;; 9)
-;; $attr$my_attribute = newattrname
-;;
-;; tagname = newtagname
-;;
-;; in this case, all occurences of my_attribute in any tag will be changed to
-;; newattrname. This is useful for changing things like role="php" to
-;; class="php," for example. Note that the text "$attr$" MUST be on the line
-;; start for phpDocumentor to recognize it.
-;;
-;; 10)
-;; &entity; = translation text
-;; " = "
-;; " = """
-;; < = <
-;;
-;; Use this to control translation of entities to their appropriate values
-
- =
-" = "
-” = ”
-“ = “
-& = &
-< = <
-> = >
-© = ©
-
-$attr$role = class
-
-abbrev = abbr
-
-blockquote = blockquote
-
-arg = span
-arg->choice = class
-
-author = <span class="author">
-/author = </span>
-author! = 0
-
-authorblurb = <div class="author-blurb">
-/authorblurb = </div>
-
-authorgroup = <div class="authors"><h2 class="title">Authors</h2>
-/authorgroup = </div>
-authorgroup! = 0
-
-caution = <span class="warning">
-/caution = </span>
-caution! = 0
-
-cmdsynopsis = <div class="cmd-synopsis">
-/cmdsynopsis = </div>
-
-command = <span class="cmd-title">
-/command = </span>
-
-copyright = <div class="notes">
-/copyright = </div>
-
-emphasis = strong
-
-example = <pre class="example">
-/example = </pre>
-example! = 0
-
-function =
-/function = ()
-
-formalpara = p
-
-graphic = img
-graphic->fileref = src
-graphic/ =
-
-important = strong
-
-informalequation = blockquote
-
-informalexample = div
-
-inlineequation = em
-
-itemizedlist = ul
-
-listitem = li
-
-literal = code
-
-literallayout = span
-
-option = " "
-/option =
-
-orderedlist = ol
-
-para = p
-
-programlisting = <pre class="listing">
-/programlisting = </pre>
-programlisting! = 0
-
-refentry = div
-
-refnamediv = <div class="ref-title-box">
-/refnamediv = </div>
-refnamediv! = 0
-
-refname = <h1 class="ref-title">
-/refname = </h1>
-
-refpurpose = <h2 class="ref-purpose">
-/refpurpose = </h2>
-
-refsynopsisdiv = <div class="ref-synopsis">
-/refsynopsisdiv = </div>
-refsynopsisdiv! = 0
-
-refsect1 = span
-
-refsect2 =
-/refsect2 = <hr />
-
-refsect3 =
-/refsect3 = <br />
-
-releaseinfo = <div class="release-info">(
-/releaseinfo = )</div>
-
-simpara =
-/simpara = <br />
-simpara! = 0
-
-subscript = sub
-
-superscript = super
-
-table = table
-
-table->colsep = rules
-table->rowsep = rules
-table->colsep+1|rowsep+1 = all
-table->colsep+1|rowsep+0 = cols
-table->colsep+0|rowsep+1 = rows
-
-table->frame = frame
-table->frame+all = border
-table->frame+none = void
-table->frame+sides = vsides
-table->frame+top = above
-table->frame+topbot = hsides
-
-thead = thead
-
-tfoot = tfoot
-
-tbody = tbody
-
-colspec = col
-
-tgroup = colgroup
-tgroup/ = 1
-tgroup->cols = span
-
-row = tr
-
-entry = td
-entry->morerows = colspan
-entry->morerows+1 = 2
-entry->morerows+2 = 3
-entry->morerows+3 = 4
-entry->morerows+4 = 5
-entry->morerows+5 = 6
-entry->morerows+6 = 7
-entry->morerows+7 = 8
-entry->morerows+8 = 9
-entry->morerows+9 = 10
-entry->morerows+10 = 11
-;; add more if you need more colspans
-
-warning = <span class="warning">
-/warning = </span>
-warning! = 0
-
-;; now begins the attributes that should be tags in cdata
-[$attr$id]
-open = a
-;close = /a
-cdata! = true
-quotevalues = true
-separator = "="
-;separateall = true
-$id = name
-
-;; now begins the sections that deal with <title>
-[refsynopsisdiv_title]
-;tag_attr = true
-;attr_name = title
-cdata_start = true
-;cdata_end = true
-open = <h1 class="title">
-close = </h1>
-
-[refsect1_title]
-;tag_attr = true
-;attr_name = title
-cdata_start = true
-;cdata_end = true
-open = <h2 class="title">
-close = </h2>
-
-[refsect2_title]
-;tag_attr = true
-;attr_name = title
-cdata_start = true
-;cdata_end = true
-open = <h3 class="title">
-close = </h3>
-
-[refsect3_title]
-;tag_attr = true
-;attr_name = title
-cdata_start = true
-;cdata_end = true
-open = <h4 class="title">
-close = </h4>
-
-[para_title]
-;tag_attr = true
-;attr_name = title
-cdata_start = true
-;cdata_end = true
-open = <div class="title">
-close = </div>
-
-[formalpara_title]
-;tag_attr = true
-;attr_name = title
-cdata_start = true
-;cdata_end = true
-open = <div class="title">
-close = </div>
-
-[example_title]
-;tag_attr = true
-;attr_name = title
-;cdata_start = true
-cdata_end = true
-open = </td></tr><tr><td><strong>
-close = </strong>
-
-[table_title]
-;tag_attr = true
-;attr_name = true
-cdata_start = true
-open = <caption>
-close = </caption>
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/__tags.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/__tags.tpl deleted file mode 100644 index 221830c4..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/__tags.tpl +++ /dev/null @@ -1,13 +0,0 @@ -<div class="tag-list">
- {section name=tag loop=$tags}
- {if $tags[tag].keyword != "abstract" &&
- $tags[tag].keyword != "access" &&
- $tags[tag].keyword != "static" &&
- $tags[tag].keyword != "version"
- }
-
- <strong>{$tags[tag].keyword|capitalize}:</strong>
- {$tags[tag].data}<br />
- {/if}
- {/section}
-</div>
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_class_declaration.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_class_declaration.tpl deleted file mode 100644 index d7fe2f82..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_class_declaration.tpl +++ /dev/null @@ -1,38 +0,0 @@ -<hr size="1" noshade="noshade"/>
-<div class="class-declaration">
- {if count($tags) > 0}
- {section name=tag loop=$tags}
- {if $tags[tag].keyword == "abstract"}
- abstract
- {/if}
- {/section}
- {/if}
-
- {if $is_interface}
- interface
- {else}
- class
- {/if}
-
- <strong>{$class_name}</strong>
-
- {if count($class_tree) > 1}
- {section name=tree loop=$class_tree.classes}
- {if $smarty.section.tree.last}
- extends {$class_tree.classes[$smarty.section.tree.index_prev]}
- {/if}
- {/section}
- {/if}
-
- {if $implements}
- <br/>
- implements
- {foreach item="interface" from=$implements}
- {if !$smarty.foreach.interface.first}
- , {$interface}
- {else}
- {$interface}
- {/if}
- {/foreach}
- {/if}
-</div>
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_class_description.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_class_description.tpl deleted file mode 100644 index 12025c1c..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_class_description.tpl +++ /dev/null @@ -1,7 +0,0 @@ -<div class="class-description">
- <p>{$sdesc}</p>
-
- {if $desc != ""}{$desc}{/if}
-</div>
-
-{include file="_tags.tpl" tags=$tags}
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_class_list.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_class_list.tpl deleted file mode 100644 index d6a1d398..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_class_list.tpl +++ /dev/null @@ -1 +0,0 @@ -{eval var=$compiledclassindex}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_constant_details.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_constant_details.tpl deleted file mode 100644 index bca71e17..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_constant_details.tpl +++ /dev/null @@ -1,33 +0,0 @@ -{if $consts}
- <hr size="1" noshade="noshade"/>
- <a name="constant-details"></a>
- <table class="constant-details" cellspacing="1">
- <tr>
- <th>Constant Details</th>
- </tr>
- {section name=const loop=$consts}
- <tr>
- <td>
- <a name="{$consts[const].const_dest}"></a>
-
- <h3>{$consts[const].const_name}</h3>
-
- <p>{$consts[const].sdesc}</p>
-
- {if $consts[const].desc}
- {$consts[const].desc}
- {/if}
-
- <div class="tag-list">
- <h4 class="tag">Type:</h4>
- <div class="tag-data">{include file="_get_constant_type.tpl" const=$consts[const].const_value}</div>
- <h4 class="tag">Value:</h4>
- <div class="tag-data">{$consts[const].const_value}</div>
- </div>
- {include file="_tags.tpl" tags=$consts[const].tags}
- <p/>
- </td>
- </tr>
- {/section}
- </table>
-{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_constant_summary.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_constant_summary.tpl deleted file mode 100644 index 8049c4b0..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_constant_summary.tpl +++ /dev/null @@ -1,22 +0,0 @@ -{if $consts || $iconsts}
- <hr size="1" noshade="noshade"/>
- <a name="constant-summary"></a>
- <table class="constant-summary" cellspacing="1">
- <tr>
- <th colspan="3">Constant Summary</th>
- </tr>
- {section name=const loop=$consts}
- <tr>
- <td class="type" nowrap="nowrap">{strip}{include file="_get_constant_type.tpl" const=$consts[const].const_value}{/strip}</td>
- <td class="name"><a href="{$consts[const].id}">{$consts[const].const_name}</a></td>
- <td class="description" width="100%">
- {$consts[const].sdesc}
-
- {if $consts[const].desc}
- {$consts[const].desc}
- {/if}
- </td>
- </tr>
- {/section}
- </table>
-{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_constructor_details.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_constructor_details.tpl deleted file mode 100644 index ec4fd0a2..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_constructor_details.tpl +++ /dev/null @@ -1,55 +0,0 @@ -{if $methods}
- {section name=method loop=$methods}
- {if $methods[method].function_name == "__construct"}
- <hr size="1" noshade="noshade"/>
- <a name="sec-method"></a>
- <table class="method-details" cellspacing="1">
- <tr>
- <th colspan="3">Constructor Details</th>
- </tr>
- <tr>
- <td class="method-data">
- <a name="{$methods[method].method_dest}"></a>
-
- <h2>{$methods[method].function_name}</h2>
-
- <table class="method-detail" cellspacing="0">
- <tr>
- <td nowrap="nowrap">{strip}
- {if $methods[method].access == "protected"}
- protected
- {/if}
-
- {if $methods[method].access == "public"}
- public
- {/if}
-
- {if $methods[method].abstract == "1"}
- abstract
- {/if}
-
- {if $methods[method].static == "1"}
- static
- {/if}
-
- <strong>{$methods[method].function_name}</strong>
- {/strip}</td>
- <td nowrap="nowrap">{strip}
- {$methods[method].ifunction_call.params}
- {/strip}</td>
- </tr>
- </table>
-
- <p>{$methods[method].sdesc}</p>
-
- {if $methods[method].desc}
- {$methods[method].desc}
- {/if}
-
- {include file="_tags.tpl" tags=$methods[method].tags}
- </td>
- </tr>
- </table>
- {/if}
- {/section}
-{/if}
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_constructor_summary.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_constructor_summary.tpl deleted file mode 100644 index 8819f63e..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_constructor_summary.tpl +++ /dev/null @@ -1,25 +0,0 @@ -{if $methods}
- {section name=method loop=$methods}
- {if $methods[method].function_name == "__construct"}
- <hr size="1" noshade="noshade"/>
- <a name="constructor-summary"></a>
- <table class="method-summary" cellspacing="1">
- <tr>
- <th colspan="2">Constructor Summary</th>
- </tr>
- <tr>
- <td class="type" nowrap="nowrap" width="1%">{$methods[method].access}</td>
- <td>
- <div class="declaration">
- <a href="{$methods[method].id}">{$methods[method].function_name}</a>
- {$methods[method].ifunction_call.params}
- </div>
- <div class="description">
- {$methods[method].sdesc}
- </div>
- </td>
- </tr>
- </table>
- {/if}
- {/section}
-{/if}
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_destructor_details.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_destructor_details.tpl deleted file mode 100644 index 3cb5534a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_destructor_details.tpl +++ /dev/null @@ -1,55 +0,0 @@ -{if $methods}
- {section name=method loop=$methods}
- {if $methods[method].function_name == "__destruct"}
- <hr size="1" noshade="noshade"/>
- <a name="sec-method"></a>
- <table class="method-details" cellspacing="1">
- <tr>
- <th colspan="3">Destructor Details</th>
- </tr>
- <tr>
- <td class="method-data">
- <a name="{$methods[method].method_dest}"></a>
-
- <h2>{$methods[method].function_name}</h2>
-
- <table class="method-detail" cellspacing="0">
- <tr>
- <td nowrap="nowrap">{strip}
- {if $methods[method].access == "protected"}
- protected
- {/if}
-
- {if $methods[method].access == "public"}
- public
- {/if}
-
- {if $methods[method].abstract == "1"}
- abstract
- {/if}
-
- {if $methods[method].static == "1"}
- static
- {/if}
-
- <strong>{$methods[method].function_name}</strong>
- {/strip}</td>
- <td nowrap="nowrap">{strip}
- {build_argument_list args=$methods[method].ifunction_call.params style="vertical"}
- {/strip}</td>
- </tr>
- </table>
-
- <p>{$methods[method].sdesc}</p>
-
- {if $methods[method].desc}
- {$methods[method].desc}
- {/if}
-
- {include file="_tags.tpl" tags=$methods[method].tags}
- </td>
- </tr>
- </table>
- {/if}
- {/section}
-{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_destructor_summary.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_destructor_summary.tpl deleted file mode 100644 index 53e8f1d2..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_destructor_summary.tpl +++ /dev/null @@ -1,27 +0,0 @@ -{if $methods}
- {section name=method loop=$methods}
- {if $methods[method].function_name == "__destruct"}
- <hr size="1" noshade="noshade"/>
- <a name="desructor-summary"></a>
- <table class="method-summary" cellspacing="1">
- <tr>
- <th colspan="2">Destructor Summary</th>
- </tr>
- <tr>
- <td class="type" nowrap="nowrap" width="1%">{strip}
- {$methods[method].access}
- {/strip}</td>
- <td>
- <div class="declaration">{strip}
- <a href="{$methods[method].id}">{$methods[method].function_name}</a>
- {$methods[method].ifunction_call.params}
- {/strip}</div>
- <div class="description">
- {$methods[method].sdesc}
- </div>
- </td>
- </tr>
- </table>
- {/if}
- {/section}
-{/if}
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_footer.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_footer.tpl deleted file mode 100644 index 0c2eddc2..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_footer.tpl +++ /dev/null @@ -1 +0,0 @@ -</div>
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_get_constant_type.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_get_constant_type.tpl deleted file mode 100644 index 48301da4..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_get_constant_type.tpl +++ /dev/null @@ -1,10 +0,0 @@ -{if is_numeric(strtolower(trim($const)))}
- int
-{elseif strtolower(trim($const)) == "true" ||
- strtolower(trim($const)) == "false"}
- bool
-{elseif strtolower(trim($const)) == "null"}
- null
-{else}
- string
-{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_header.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_header.tpl deleted file mode 100644 index f92571a4..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_header.tpl +++ /dev/null @@ -1,4 +0,0 @@ -<div id="bar" nowrap="nowrap">
- {include file="_class_list.tpl"}
-</div>
-<div id="content1">
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_inherited_constants.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_inherited_constants.tpl deleted file mode 100644 index 66c37633..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_inherited_constants.tpl +++ /dev/null @@ -1,34 +0,0 @@ -{if $iconsts}
- {section name=iconst loop=$iconsts}
- <table class="inherited-constants" cellspacing="1">
- <tr>
- <th>Constants Inherited From {$iconsts[iconst].parent_class}</th>
- </tr>
- <tr>
- <td>
- {assign var="_consts" value=""}
-
- {section name=_const loop=$iconsts[iconst].iconsts}
- {if $_consts != ""},
- {* append var="_consts" value=", "*}
- {/if}
- <a href="{$href}">{$iconsts[iconst].iconsts[_const].name}</a>{if !$smarty.section.name.last},{/if}
- {*
- {extract_attribute attribute="href"
- element=$iconsts[iconst].iconsts[_const].link
- var="href" append="no"}
-
- {append var="_consts" value="<a href=\""}
- {append var="_consts" value=$href}
- {append var="_consts" value="\">"}
- {append var="_consts" value=$iconsts[iconst].iconsts[_const].name}
- {append var="_consts" value="</a>"}
- *}
-{/section}
-
- {*$_consts*}
- </td>
- </tr>
- </table>
- {/section}
-{/if}
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_inherited_methods.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_inherited_methods.tpl deleted file mode 100644 index 55aafb17..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_inherited_methods.tpl +++ /dev/null @@ -1,42 +0,0 @@ -{if $imethods}
- {section name=imethod loop=$imethods}
- {if count($imethods[imethod].imethods) > 1 ||
- ($imethods[imethod].imethods[0].name != "__construct" &&
- $imethods[imethod].imethods[0].name != "__destruct" &&
- $imethods[imethod].imethods[0].abstract != "1")}
- <table class="inherited-methods" cellspacing="1">
- <tr>
- <th>Methods Inherited From {$imethods[imethod].parent_class}</th>
- </tr>
- <tr>
- <td>
- {* assign var="_methods" value="" *}
-
- {section name=_method loop=$imethods[imethod].imethods}
- {if $imethods[imethod].imethods[_method].name != "__construct" &&
- $imethods[imethod].imethods[_method].abstract != "1"}
- {*
- {if $_methods != ""}
- {append var="_methods" value=", "}
- {/if}
-
- {extract_attribute attribute="href"
- element=$imethods[imethod].imethods[_method].link
- var="href" append="no"}
-
- {append var="_methods" value="<a href=\""}
- {append var="_methods" value=$href}
- {append var="_methods" value="\">"}
- {append var="_methods" value=$imethods[imethod].imethods[_method].name}
- {append var="_methods" value="</a>"}
- *}
- {$imethods[imethod].imethods[_method].link}{if !$smarty.section._method.last},{/if}
- {/if}
- {/section}
-
- </td>
- </tr>
- </table>
- {/if}
- {/section}
-{/if}
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_inheritence_tree.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_inheritence_tree.tpl deleted file mode 100644 index 471c7972..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_inheritence_tree.tpl +++ /dev/null @@ -1,3 +0,0 @@ -<div class="inheritence-tree">
- <pre>{section name=tree loop=$class_tree.classes}{if $smarty.section.tree.last}<strong>{$class_tree.classes[tree]}</strong>{else}{$class_tree.classes[tree]}{/if}{$class_tree.distance[tree]}{/section}</pre>
-</div>
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_method_details.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_method_details.tpl deleted file mode 100644 index b5ddfb10..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_method_details.tpl +++ /dev/null @@ -1,101 +0,0 @@ -{if $methods && (count($methods) > 1 ||
- ($methods[0].function_name != "__construct" &&
- $methods[0].function_name != "__destruct"))}
-
- <hr size="1" noshade="noshade"/>
- <a name="method-details"></a>
- <table class="method-details" cellspacing="1">
- <tr>
- <th>Method Details</th>
- </tr>
- {section name=method loop=$methods}
- {if $methods[method].function_name != "__construct" &&
- $methods[method].function_name != "__destruct"}
-
- <tr>
- <td class="method-data">
-
- <a name="{$methods[method].method_dest}"></a>
-
- <h2>{$methods[method].function_name}</h2>
-
- <table class="method-detail" cellspacing="0">
- <tr>
- <td nowrap="nowrap">{strip}
- {if $methods[method].access == "protected"}
- protected
- {/if}
-
- {if $methods[method].access == "public"}
- public
- {/if}
-
- {if $methods[method].abstract == 1}
- abstract
- {/if}
-
- {if $methods[method].static == 1}
- static
- {/if}
-
- {$methods[method].function_return}
-
-
- <strong>{$methods[method].function_name}</strong>
- {/strip}</td>
- <td width="100%">{strip}
- (
- {if $methods[method].ifunction_call.params}
- {foreach item=param name="method" from=$methods[method].ifunction_call.params}
- {$param.type} {$param.name} {if !$smarty.foreach.method.last}, {/if}
- {/foreach}
-
- {/if}
- )
- {/strip}</td>
- </tr>
- </table>
-
- <p>{$methods[method].sdesc}</p>
-
- {if $methods[method].desc}
- {$methods[method].desc}
- {/if}
- {* $methods[method]|print_r *}
- <div class="tag-list"><table class="method-summary" cellspacing="1">
- {if $methods[method].ifunction_call.params}
- <tr><th colspan="3" class="small">Input</th></tr>
- {foreach item=param name="method" from=$methods[method].ifunction_call.params}
- <tr><td valign="top">{$param.type}</td><td valign="top"><strong>{$param.name}</strong><td valign="top">{$param.description}</td></tr>
- {/foreach}
- {/if}
- {if $methods[method].tags}
- <tr><th colspan="3" class="small">Output</th></tr>
-
- {foreach item=param name="method" from=$methods[method].tags}
- {if $param.keyword == "return"}
- <tr><td valign="top">
- {$methods[method].function_return}
- </td><td valign="top" colspan="2">{$param.data}</td></tr>
- {/if}
- {/foreach}
- {/if}
- {if $methods[method].tags}
- <tr><th colspan="3" class="small">Exception</th></tr>
-
- {foreach item=param name="method" from=$methods[method].tags}
- {if $param.keyword == "throws"}
- <tr><td valign="top">{$param.keyword}</td><td valign="top" colspan="2">{$param.data}</td></tr>
- {/if}
- {/foreach}
- {/if}
- </table></div>
-
- {* include file="_tags.tpl" tags=$methods[method].tags *}
- <p/>
- </td>
- </tr>
- {/if}
- {/section}
- </table>
-{/if}
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_method_summary.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_method_summary.tpl deleted file mode 100644 index 8fefd671..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_method_summary.tpl +++ /dev/null @@ -1,61 +0,0 @@ -{if $methods || $imethods}
- <hr size="1" noshade="noshade"/>
- <a name="method-summary"></a>
- <table class="method-summary" cellspacing="1">
- <tr>
- <th colspan="2">Method Summary</th>
- </tr>
- {section name=method loop=$methods}
- {if $methods[method].function_name != "__construct" &&
- $methods[method].function_name != "__destruct"}
- {*
- {if trim(substr($methods[method].function_call, 0, 1)) == "&"}
- {assign var="ref" value="true"}
- {assign var="css" value=" class=\"reference\""}
- {else}
- {assign var="ref" value="false"}
- {assign var="css" value=""}
- {/if}
- *}
- <tr>
- <td class="type" nowrap="nowrap" width="1%">
- {if $methods[method].access == "protected"}
- protected
- {/if}
-
- {if $methods[method].abstract == 1}
- abstract
- {/if}
-
- {if $methods[method].static == 1}
- static
- {/if}
-
- {$methods[method].function_return}
-{*
- {if $ref == "true"}
- &
- {/if}
-*}
- </td>
- <td>
- <div class="declaration">
- <a href="{$methods[method].id}">{$methods[method].function_name}</a>
- ({strip}
- {if $methods[method].ifunction_call.params}
- {foreach item=param name="method" from=$methods[method].ifunction_call.params}
- {$param.type} {$param.name}{if !$smarty.foreach.method.last}, {/if}
- {/foreach}
-
- {/if}
- {/strip})
- </div>
- <div class="description">
- {$methods[method].sdesc}
- </div>
- </td>
- </tr>
- {/if}
- {/section}
- </table>
-{/if}
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_sub_classes.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_sub_classes.tpl deleted file mode 100644 index e605b314..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_sub_classes.tpl +++ /dev/null @@ -1,19 +0,0 @@ -{if $children}
- <div class="sub-classes">
- {if $is_interface}
- <h4>Direct Known Sub-interfaces:</h4>
- {else}
- <h4>Direct Known Sub-classes:</h4>
- {/if}
-
- <div><small>
- {section name=child loop=$children}
- {if !$smarty.section.child.first}
- , {$children[child].link}
- {else}
- {$children[child].link}
- {/if}
- {/section}
- </small></div>
- </div>
-{/if}
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_tags.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_tags.tpl deleted file mode 100644 index 221830c4..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/_tags.tpl +++ /dev/null @@ -1,13 +0,0 @@ -<div class="tag-list">
- {section name=tag loop=$tags}
- {if $tags[tag].keyword != "abstract" &&
- $tags[tag].keyword != "access" &&
- $tags[tag].keyword != "static" &&
- $tags[tag].keyword != "version"
- }
-
- <strong>{$tags[tag].keyword|capitalize}:</strong>
- {$tags[tag].data}<br />
- {/if}
- {/section}
-</div>
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/basicindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/basicindex.tpl deleted file mode 100644 index 37e94343..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/basicindex.tpl +++ /dev/null @@ -1,18 +0,0 @@ -{section name=letter loop=$letters}
- [ <a href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> ]
-{/section}
-
-{section name=index loop=$index}
- <hr />
- <a name="{$index[index].letter}"></a>
- <div>
- <h2>{$index[index].letter}</h2>
- <dl>
- {section name=contents loop=$index[index].index}
- <dt><b>{$index[index].index[contents].name}</b></dt>
- <dd>{$index[index].index[contents].listing}</dd>
- {/section}
- </dl>
- </div>
- <a href="{$indexname}.html#top">top</a><br>
-{/section}
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/blank.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/blank.tpl deleted file mode 100644 index b503c142..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/blank.tpl +++ /dev/null @@ -1,5 +0,0 @@ -<div align="center"><h1>{$maintitle}</h1></div>
-<b>Welcome to {$package}!</b><br />
-<br />
-This documentation was generated by <a href="{$phpdocwebsite}">phpDocumentor v{$phpdocversion}</a><br />
-
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/class.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/class.tpl deleted file mode 100644 index e791bbba..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/class.tpl +++ /dev/null @@ -1,29 +0,0 @@ -{include file="header.tpl" eltype="class" hasel=true contents=$classcontents}
-
-<h1>{if $is_interface}Interface{else}Class{/if} {$class_name}</h1>
-
-{*inheritence tree*}
-<div class="inheritence-tree">
- <pre>{section name=tree loop=$class_tree.classes}{if $smarty.section.tree.last}<strong>{$class_tree.classes[tree]}</strong>{else}{$class_tree.classes[tree]}{/if}{$class_tree.distance[tree]}{/section}</pre>
-</div>
-
-{include file="_sub_classes.tpl"}
-{include file="_class_description.tpl"}
-{include file="_inherited_constants.tpl"}
-
-{include file="_constructor_summary.tpl"}
-{* include file="_destructor_summary.tpl" *}
-
-{include file="_method_summary.tpl"}
-
-{include file="_inherited_methods.tpl"}
-{include file="_constant_summary.tpl"}
-{include file="_constructor_details.tpl"}
-
-{* include file="_destructor_details.tpl" *}
-
-{include file="_method_details.tpl"}
-
-{include file="_constant_details.tpl"}
-
-{include file="footer.tpl"}
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/classleft.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/classleft.tpl deleted file mode 100644 index c07fc33a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/classleft.tpl +++ /dev/null @@ -1,9 +0,0 @@ -{foreach key=subpackage item=files from=$classleftindex}
- <div class="package">
- {if $subpackage != ""}{$subpackage}<br />{/if}
- {section name=files loop=$files}
- {if $subpackage != ""} {/if}
- {if $files[files].link != ''}<a href="{$files[files].link}">{/if}{$files[files].title}{if $files[files].link != ''}</a>{/if}<br />
- {/section}
- </div>
-{/foreach}
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/classtrees.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/classtrees.tpl deleted file mode 100644 index 4020e3a8..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/classtrees.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{include file="header.tpl" noleftindex=true}
-<h1>{$title}</h1>
-{section name=classtrees loop=$classtrees}
-<hr />
-<div class="classtree">Root class {$classtrees[classtrees].class}</div><br>
-{$classtrees[classtrees].class_tree}
-{/section}
-{include file="footer.tpl"}
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/const.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/const.tpl deleted file mode 100644 index 88856c4b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/const.tpl +++ /dev/null @@ -1,14 +0,0 @@ -{section name=consts loop=$consts}
-{if $show == 'summary'}
- var {$consts[consts].const_name}, {$consts[consts].sdesc}<br>
-{else}
- <a name="{$consts[consts].const_dest}"></a>
- <p></p>
- <h4>{$consts[consts].const_name} = <span class="value">{$consts[consts].const_value|replace:"\n":"<br>\n"|replace:" ":" "|replace:"\t":" "}</span></h4>
- <p>[line {if $consts[consts].slink}{$consts[consts].slink}{else}{$consts[consts].line_number}{/if}]</p>
- {include file="docblock.tpl" sdesc=$consts[consts].sdesc desc=$consts[consts].desc tags=$consts[consts].tags}
-
- <br />
- <div class="top">[ <a href="#top">Top</a> ]</div><br />
-{/if}
-{/section}
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/define.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/define.tpl deleted file mode 100644 index 04ce5b48..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/define.tpl +++ /dev/null @@ -1,32 +0,0 @@ -{if count($defines) > 0}
-{section name=def loop=$defines}
-{if $show == 'summary'}
-define constant <a href="{$defines[def].id}">{$defines[def].define_name}</a> = {$defines[def].define_value}, {$defines[def].sdesc}<br>
-{else}
- <hr />
- <a name="{$defines[def].define_link}"></a>
- <h3>{$defines[def].define_name} <span class="smalllinenumber">[line {if $defines[def].slink}{$defines[def].slink}{else}{$defines[def].line_number}{/if}]</span></h3>
- <div class="tags">
- <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
- <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
- <code>{$defines[def].define_name} = {$defines[def].define_value}</code>
- </td></tr></table>
- </td></tr></table>
-
- {include file="docblock.tpl" sdesc=$defines[def].sdesc desc=$defines[def].desc tags=$defines[def].tags}
- <br />
- {if $defines[def].define_conflicts.conflict_type}
- <p><b>Conflicts with defines:</b>
- {section name=me loop=$defines[def].define_conflicts.conflicts}
- {$defines[def].define_conflicts.conflicts[me]}<br />
- {/section}
- </p>
- {/if}
-{* original {if $defines[def].define_conflicts != ""
- <b>Conflicts:</b> {$defines[def].define_conflicts<br /><br />
- {/if *}
- </div>
- <div class="top">[ <a href="#top">Top</a> ]</div><br /><br />
-{/if}
-{/section}
-{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/docblock.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/docblock.tpl deleted file mode 100644 index 09a603f8..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/docblock.tpl +++ /dev/null @@ -1,15 +0,0 @@ -{if $sdesc != ''}{$sdesc|default:''}<br /><br />{/if}
-{if $desc != ''}{$desc|default:''}<br />{/if}
-{if count($tags) > 0}
-<br /><br />
-<h4>Tags:</h4>
-<div class="tags">
-<table border="0" cellspacing="0" cellpadding="0">
-{section name=tag loop=$tags}
- <tr>
- <td><b>{$tags[tag].keyword}:</b> </td><td>{$tags[tag].data}</td>
- </tr>
-{/section}
-</table>
-</div>
-{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/elementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/elementindex.tpl deleted file mode 100644 index 175a5136..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/elementindex.tpl +++ /dev/null @@ -1,5 +0,0 @@ -{include file="header.tpl" noleftindex=true}
-<a name="top"></a>
-<h1>Index of all elements</h1>
-{include file="basicindex.tpl" indexname="elementindex"}
-{include file="footer.tpl"}
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/errors.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/errors.tpl deleted file mode 100644 index 1576a822..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/errors.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{include file="header.tpl" noleftindex=true}
-{section name=files loop=$files}
-<a href="#{$files[files].file}">{$files[files].file}</a><br>
-{/section}
-{foreach key=file item=issues from=$all}
-<a name="{$file}"></a>
-<h1>{$file}</h1>
-{if count($issues.warnings)}
-<h2>Warnings:</h2><br>
-{section name=warnings loop=$issues.warnings}
-<b>{$issues.warnings[warnings].name}</b> - {$issues.warnings[warnings].listing}<br>
-{/section}
-{/if}
-{if count($issues.errors)}
-<h2>Errors:</h2><br>
-{section name=errors loop=$issues.errors}
-<b>{$issues.errors[errors].name}</b> - {$issues.errors[errors].listing}<br>
-{/section}
-{/if}
-{/foreach}
-{include file="footer.tpl"}
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/examplesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/examplesource.tpl deleted file mode 100644 index fb85654b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/examplesource.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl" title=$title}
-<h1 align="center">{$title}</h1>
-<div class="php">
-{$source}
-</div>
-{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/fileleft.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/fileleft.tpl deleted file mode 100644 index 50f108d7..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/fileleft.tpl +++ /dev/null @@ -1,10 +0,0 @@ -{foreach key=subpackage item=files from=$fileleftindex}
- {if $subpackage != ""}subpackage <b>{$subpackage}</b><br>{/if}
- <div class="package">
- {section name=files loop=$files}
- {if $files[files].link != ''}<a href="{$files[files].link}">{/if}
- {$files[files].title}
- {if $files[files].link != ''}</a>{/if}<br>
- {/section}
- </div><br />
-{/foreach}
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/filesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/filesource.tpl deleted file mode 100644 index b23076a0..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/filesource.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{capture name="tutle"}File Source for {$name}{/capture}
-{include file="header.tpl" title=$smarty.capture.tutle}
-<h1 align="center">Source for file {$name}</h1>
-<p>Documentation is available at {$docs}</p>
-<div class="php">
-{$source}
-</div>
-{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/footer.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/footer.tpl deleted file mode 100644 index 68135cd6..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/footer.tpl +++ /dev/null @@ -1,25 +0,0 @@ - <!-- content end --></td></tr></table>
- </td>
- </tr>
-</table>
-
-</div><!-- main -->
-
-<div id="footer">
- <a href="/tos/">Terms of Service</a> |
- <a href="/support/">Contact Us</a>
- <br/>
- Copyright © 2006-2007 by the PRADO Group.<br/>
- <a title="Powered by PRADO" href="http://www.pradosoft.com/"><img src="http://www.pradosoft.com/images/powered2.gif" style="border-width:0px;" alt="Powered by PRADO" /></a>
-</div>
-
-</div><!-- page -->
-<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
-</script>
-<script type="text/javascript">
-_uacct = "UA-186303-3";
-urchinTracker();
-</script>
-
-</body>
-</html>
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/function.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/function.tpl deleted file mode 100644 index 098aeb17..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/function.tpl +++ /dev/null @@ -1,48 +0,0 @@ -{section name=func loop=$functions}
-{if $show == 'summary'}
-function {$functions[func].id}, {$functions[func].sdesc}<br />
-{else}
- <hr />
- <a name="{$functions[func].function_dest}"></a>
- <h3>{$functions[func].function_name} <span class="smalllinenumber">[line {if $functions[func].slink}{$functions[func].slink}{else}{$functions[func].line_number}{/if}]</span></h3>
- <div class="function">
- <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
- <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
- <code>{$functions[func].function_return} {if $functions[func].ifunction_call.returnsref}&{/if}{$functions[func].function_name}(
-{if count($functions[func].ifunction_call.params)}
-{section name=params loop=$functions[func].ifunction_call.params}
-{if $smarty.section.params.iteration != 1}, {/if}{if $functions[func].ifunction_call.params[params].default != ''}[{/if}{$functions[func].ifunction_call.params[params].type} {$functions[func].ifunction_call.params[params].name}{if $functions[func].ifunction_call.params[params].default != ''} = {$functions[func].ifunction_call.params[params].default|escape:"html"}]{/if}
-{/section}
-{/if})</code>
- </td></tr></table>
- </td></tr></table><br />
-
- {include file="docblock.tpl" sdesc=$functions[func].sdesc desc=$functions[func].desc tags=$functions[func].tags}
- <br /><br />
- {if $functions[func].function_conflicts.conflict_type}
- <p><b>Conflicts with functions:</b>
- {section name=me loop=$functions[func].function_conflicts.conflicts}
- {$functions[func].function_conflicts.conflicts[me]}<br />
- {/section}
- </p>
- {/if}
-{* original {if $functions[func].function_conflicts != ""
- <b>Conflicts:</b> {$functions[func].function_conflicts<br /><br />
- {/if *}
-
- {if count($functions[func].params) > 0}
- <h4>Parameters</h4>
- <table border="0" cellspacing="0" cellpadding="0">
- {section name=params loop=$functions[func].params}
- <tr>
- <td class="type">{$functions[func].params[params].datatype} </td>
- <td><b>{$functions[func].params[params].var}</b> </td>
- <td>{$functions[func].params[params].data}</td>
- </tr>
- {/section}
- </table>
- {/if}
- <div class="top">[ <a href="#top">Top</a> ]</div><br /><br />
- </div>
-{/if}
-{/section}
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/global.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/global.tpl deleted file mode 100644 index 1053f748..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/global.tpl +++ /dev/null @@ -1,40 +0,0 @@ -{if count($globals) > 0}
-{section name=glob loop=$globals}
-{if $show == 'summary'}
-global variable <a href="{$globals[glob].id}">{$globals[glob].global_name}</a> = {$globals[glob].global_value}, {$globals[glob].sdesc}<br>
-{else}
- <hr />
- <a name="{$globals[glob].global_link}"></a>
- <h4><i>{$globals[glob].global_type}</i> {$globals[glob].global_name} <span class="smalllinenumber">[line {if $globals[glob].slink}{$globals[glob].slink}{else}{$globals[glob].line_number}{/if}]</span></h4>
- <div class="tags">
- {if $globals[glob].sdesc != ""}
- {include file="docblock.tpl" sdesc=$globals[glob].sdesc desc=$globals[glob].desc tags=$globals[glob].tags}
- {/if}
-
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><b>Default value:</b> </td>
- <td>{$globals[glob].global_value|replace:" ":" "|replace:"\n":"<br />\n"|replace:"\t":" "}</td>
- </tr>
- {if $globals[glob].global_conflicts.conflict_type}
- <tr>
- <td><b>Conflicts with globals:</b> </td>
- <td>
- {section name=me loop=$globals[glob].global_conflicts.conflicts}
- {$globals[glob].global_conflicts.conflicts[me]}<br />
- {/section}
- </td>
- </tr>
- {/if}
-{* original {if $globals[glob].global_conflicts != ""
- <tr>
- <td><b>Conflicts:</b> </td>
- <td>{$globals[glob].global_conflicts</td>
- </tr>
- {/if *}
- </table>
- </div><br /><br />
- <div class="top">[ <a href="#top">Top</a> ]</div><br /><br />
-{/if}
-{/section}
-{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/header.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/header.tpl deleted file mode 100644 index 659168cf..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/header.tpl +++ /dev/null @@ -1,113 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" > - <head> - <title>PRADO API Manual: {$title}</title> - <meta http-equiv="Expires" content="Fri, Jan 01 1900 00:00:00 GMT"/> - <meta http-equiv="Pragma" content="no-cache"/> - <meta http-equiv="Cache-Control" content="no-cache"/> - <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> - <meta http-equiv="content-language" content="en"/> - <meta name="Keywords" content="PRADO PHP framework component template delphi asp.net event property OOP PHP5 object oriented programming Web programming development" /> - <meta name="Description" content="PRADO is a component-based and event-driven framework for Web application development in PHP 5." /> - <meta name="Author" content="Qiang Xue" /> - <meta name="Subject" content="Web programming, PHP framework" /> - <meta name="Language" content="en" /> - <link rel="Shortcut Icon" href="/favicon.ico" /> - <link rel="stylesheet" type="text/css" href="/css/style.css" /> - <link rel="stylesheet" type="text/css" href="/css/manual.css" /> - </head> - <body> - <div id="page"> - <div id="header"> - <div id="logo"><img src="/css/pradoheader.gif" alt="PRADO Component Framework for PHP 5" /></div> - <div id="mainmenu"> - <ul> - <li><a href="/">Home</a></li> - <li><a href="/about/" >About</a></li> - <li><a href="/testimonials/" >Testimonials</a></li> - <li><a href="/demos/" >Demos</a></li> - <li><a href="/download/" >Download</a></li> - <li><a href="/documentation/" class="active">Documentation</a></li> - <li><a href="/forum/" >Forum</a></li> - <li><a href="http://code.google.com/p/prado3/updates/list">Development</a></li> - </ul> - </div><!-- mainmenu --> - </div><!-- header --> - <div id="main"> - <div id="navbar"> - <ul> - <li><a href="/tutorials/">Tutorials</a></li> - <li><a href="/docs/classdoc/">Class Docs</a></li> - <li><a href="/docs/manual/" class="active">API Manual</a></li> - <li><a href="/wiki/">Wiki</a></li> - </ul> - </div> - <table width="100%" border="0" cellpadding="0" cellspacing="0"> - <tr valign="top"> - <td width="200" id="infobar"> -{if count($ric) >= 1} - <div id="ric"> -{section name=ric loop=$ric} - <p><a href="{$subdir}{$ric[ric].file}">{$ric[ric].name}</a></p> -{/section} - </div> -{/if} - <b>Packages:</b><br /> -{section name=packagelist loop=$packageindex} - <a href="{$subdir}{$packageindex[packagelist].link}">{$packageindex[packagelist].title}</a><br /> -{/section} - <br /><br /> -{if $tutorials} - <b>Tutorials/Manuals:</b><br /> -{if $tutorials.pkg} - <strong>Package-level:</strong> -{section name=ext loop=$tutorials.pkg} - {$tutorials.pkg[ext]} -{/section} -{/if} -{if $tutorials.cls} - <strong>Class-level:</strong> -{section name=ext loop=$tutorials.cls} - {$tutorials.cls[ext]} -{/section} -{/if} -{if $tutorials.proc} - <strong>Procedural-level:</strong> -{section name=ext loop=$tutorials.proc} - {$tutorials.proc[ext]} -{/section} -{/if} -{/if} -{if !$noleftindex}{assign var="noleftindex" value=false}{/if} -{if !$noleftindex} -{* -{if $compiledfileindex} - <b>Files:</b><br /> - {eval var=$compiledfileindex} -{/if} -*} -{if $compiledclassindex} - <b>Classes:</b><br /> - {eval var=$compiledclassindex} -{/if} -{/if} - </td> - <td> - <table cellpadding="10" cellspacing="0" width="100%" border="0"> - <tr> - <td valign="top" align="center"> - <form type="get" action="/docs/manual/search.php"> - Keyword <input type="text" name="keyword" size="50" /> - <input type="submit" value="Search" /> - </form> - </td> - </tr> - <tr> - <td valign="top"><!-- content begin --> -{* -{if !$hasel}{assign var="hasel" value=false}{/if} -{if $hasel} - <h1>{$eltype|capitalize}: {$class_name}</h1> - Source Location: {$source_location}<br /><br /> -{/if} -*} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/include.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/include.tpl deleted file mode 100644 index cff067db..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/include.tpl +++ /dev/null @@ -1,9 +0,0 @@ -{if count($includes) > 0}
-<h4>Includes:</h4>
-<div class="tags">
-{section name=includes loop=$includes}
-{$includes[includes].include_name}({$includes[includes].include_value}) [line {if $includes[includes].slink}{$includes[includes].slink}{else}{$includes[includes].line_number}{/if}]<br />
-{include file="docblock.tpl" sdesc=$includes[includes].sdesc desc=$includes[includes].desc tags=$includes[includes].tags}
-{/section}
-</div>
-{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/index.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/index.tpl deleted file mode 100644 index 60c74b47..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/index.tpl +++ /dev/null @@ -1,7 +0,0 @@ -{include file="header.tpl"}
-{if $contents}
-{$contents}
-{else}
-{include file="blank.tpl"}
-{/if}
-{include file="footer.tpl"}
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/media/background.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/media/background.png Binary files differdeleted file mode 100644 index d6f36f60..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/media/background.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/media/bg_left.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/media/bg_left.png Binary files differdeleted file mode 100644 index 19fdf05d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/media/bg_left.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/media/empty.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/media/empty.png Binary files differdeleted file mode 100644 index a9f29bb1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/media/empty.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/media/manual.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/media/manual.css deleted file mode 100644 index 8aaa937d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/media/manual.css +++ /dev/null @@ -1,260 +0,0 @@ -/* thanks to symfony for a great base template for phpdoc */
-/* symfony-project.com */
-
-#page
-{
- width: 99%;
-}
-
-div.credit
-{
- font-size: 10px;
- color: #888;
-}
-
-.inherited-methods
-{
- background-color: #ddd;
- font-size: 1.0em;
- margin-top: 10px;
- width: 100%;
-}
-
-.inherited-methods td
-{
- background-color: #FFFFFF;
- font-family: "courier new", courier;
- font-size: 1.1em;
- padding: 5px;
-}
-
-.inherited-methods th
-{
- background-color: #F0F0F0;
- font-weight: bold;
- padding: 5px;
- text-align: left;
-}
-
-.method-detail
-{
- font-size: 1.0em;
-}
-
-.method-detail a
-{
- font-weight: bold;
-}
-
-.method-detail td
-{
- font-family: "courier new", courier;
- font-size: 1.1em;
- padding-top: 10px;
- vertical-align: top;
-}
-
-.method-details
-{
- background-color: #ddd;
- font-size: 1.0em;
- width: 100%;
-}
-
-.method-details td
-{
- background-color: #FFFFFF;
-}
-
-.method-details td.method-data
-{
- padding: 5px;
-}
-
-.method-details h2
-{
- color: #750000;
-}
-
-.method-details th
-{
- background-color: #F0F0F0;
- font-weight: bold;
- font-size: 1.2em;
- padding: 5px;
- text-align: left;
-}
-
-.method-summary
-{
- background-color: #aaa;
- font-size: 1.0em;
- width: 100%;
-}
-
-.method-summary td
-{
- background-color: #FFFFFF;
- padding: 5px;
-}
-
-.method-summary td a
-{
- font-weight: bold;
-}
-
-.method-summary td.type
-{
- font-family: "courier new", courier;
- font-size: 1.0em;
- text-align: right;
- vertical-align: top;
-}
-
-.method-summary div.declaration
-{
- font-family: "courier new", courier;
- font-size: 1.1em;
-}
-
-.method-summary th
-{
- background-color: #F0F0F0;
- font-weight: bold;
- font-size: 1.2em;
- padding: 5px;
- text-align: left;
-}
-
-.method-summary th.small
-{
- font-size: 1.0em;
-}
-
-.method-summary tr.reference td {
- background-color: #FFEDED;
-}
-
-
-.constant-details
-{
- background-color: #ddd;
- font-size: 1.0em;
- width: 100%;
-}
-
-.constant-details h3
-{
- color: #750000;
-}
-
-.constant-details td
-{
- background-color: #FFFFFF;
- padding: 5px;
-}
-
-.constant-details th
-{
- background-color: #F0F0F0;
- font-weight: bold;
- font-size: 1.2em;
- padding: 5px;
- text-align: left;
-}
-
-.constant-summary
-{
- background-color: #ddd;
- font-size: 1.0em;
- width: 100%;
-}
-
-.constant-summary td
-{
- background-color: #FFFFFF;
- padding: 5px;
-}
-
-.constant-summary td.name a
-{
- font-family: "courier new", courier;
- font-size: 1.0em;
- font-weight: bold;
-}
-
-.constant-summary td.type
-{
- font-family: "courier new", courier;
- font-size: 1.0em;
-}
-
-.constant-summary th
-{
- background-color: #F0F0F0;
- font-weight: bold;
- font-size: 1.2em;
- padding: 5px;
- text-align: left;
-}
-
-.inherited-constants
-{
- background-color: #eee;
- font-size: 1.0em;
- margin-top: 10px;
- width: 100%;
-}
-
-.inherited-constants td
-{
- background-color: #FFFFFF;
- font-family: "courier new", courier;
- font-size: 1.1em;
- padding: 5px;
-}
-
-.inherited-constants th
-{
- background-color: #F0F0F0;
- font-weight: bold;
- padding: 5px;
- text-align: left;
-}
-
-.class-declaration
-{
- font-family: "courier new", courier;
- font-size: 1.1em;
-}
-
-.class-description
-{
- background-color: #F0F0F0;
- margin-top: 10px;
- padding: 1px 8px 1px 8px;
- margin-bottom: 5px;
-}
-
-.inheritence-tree pre
-{
- margin-bottom: 0;
-}
-
-.sub-classes h4
-{
- margin: 10px 0 0 0;
-}
-
-.sub-classes div
-{
- font-family: "courier new", courier;
- font-size: 1.1em;
- margin: 5px 0 0 40px;
-}
-
-.sub-classes div small
-{
- font-size: 1.0em;
-}
-
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/media/style.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/media/style.css deleted file mode 100644 index 918d43e4..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/media/style.css +++ /dev/null @@ -1,598 +0,0 @@ -/**
- * PradoSoft profile by Carl G. Mathisen and Stefan A. Petrov
- * http://decart.no
- */
-
-body
-{
- text-align: center;
-}
-
-body, div, span, p, input
-{
- font-family: Verdana, sans-serif, Arial;
- font-size: 10pt;
- color: #333333;
-}
-
-h1, h2, h3, h4
-{
- font-family: Verdana, Helvetica, Arial, Lucida Grande, Trebuchet MS;
- padding: 0px;
- margin: 0px;
- margin-bottom: 10px;
- color: #821B18;
- font-weight: normal;
-}
-
-h2
-{
- font-size: 18px;
-}
-
-h3
-{
- font-size: 16px;
-}
-
-div
-{
- text-align: left;
-}
-
-.instructions
-{
- background-color: #EEEEEE;
-}
-
-img
-{
- border: none;
-}
-
-a
-{
- color: #CD2C27;
- text-decoration: none;
-}
-
-a:hover
-{
- color: #821B18;
- text-decoration: underline;
-}
-
-#page
-{
- margin: 0 auto;
- padding: 0;
- position: relative;
-}
-
-#header
-{
- position: relative;
- height: 98px;
-}
-
-#logo
-{
- height: 99px;
-}
-
-/* main page */
-
-div.intro
-{
- height: 190px;
- background-image: url('bigmantis.jpg');
- background-repeat: no-repeat;
- background-position: top right;
- background-color: #fff;
-}
-
-div.statements
-{
- height: 135px;
- background-image: url('statementsbg.gif');
- background-repeat: repeat-x;
- position: relative;
- border-bottom : 1px solid #EEE;
-}
-
-div.statements div
-{
- position: absolute;
- width: 250px;
- top: 20px;
-}
-
-div.statements div p
-{
- font-size: 13px;
- color: #818181;
-}
-
-div.statements div.whatis
-{
- left: 20px;
-}
-
-div.statements div.whatreq
-{
- left: 290px;
-}
-
-div.statements div.cani
-{
- left: 600px;
- width: 210px;
-}
-
-/* navbar */
-#navbar
-{
- border-bottom: 2px solid #E9EEEF;
- height: 30px;
- margin-bottom: 20px;
-}
-
-#navbar ul
-{
- margin-left: 0;
- padding-left: 0;
- display: inline;
-}
-
-#navbar ul li
-{
- margin-left: 0px;
- list-style: none;
- display: inline;
-}
-
-#navbar ul li a
-{
- display: block;
- float: left;
- font-size: 14px;
- font-weight: bold;
- padding-right: 14px;
- padding-top: 5px;
- color: #CD2B26;
- text-decoration: none;
- height: 29px;
-}
-
-#navbar ul li a.active, #navbar ul li a.hover
-{
- color: #821B18;
-}
-
-/* infobar */
-div#infobar
-{
- float: right;
- width: 200px;
- padding-left: 20px;
- border-left: 2px solid #E9EEEF;
-}
-
-div#infobar div
-{
- margin-bottom: 20px;
-}
-
-div#infobar div#featured img
-{
- margin-top: 10px;
-}
-
-/* articles */
-
-div#articles
-{
- width: 560px;
- float: left;
-}
-
-/* article */
-
-div.article
-{
- margin-bottom: 40px;
-}
-
-div.article .date
-{
- color: #9F9291;
-}
-
-div.article .more
-{
- margin-right: 10px;
- display: block;
- text-align: right;
-}
-
-.logo
-{
- position: absolute;
- margin-left: 15px;
- margin-top: 0px;
- z-index: 1;
-}
-
-#main
-{
- padding: 20px;
- padding-top: 20px;
- background-color: #fff;
-}
-
-div.mantis
-{
- height: 190px;
- background-color: #fff;
- border-bottom: 1px solid #DCDCDC;
-}
-
-div.releases
-{
- float: left;
- width: 240px;
- height: 190px;
-}
-
-div.releases div.official
-{
- width: 190px;
- position: relative;
- left: 52px;
- top: 128px;
- font-size: 8pt;
- color: #6D6D6D;
-}
-
-div.releases div.official a
-{
- display: block;
-}
-
-div.whyprado
-{
- display: block;
- float: left;
-}
-
-div.whyprado ul.list
-{
- margin-top: 40px;
- margin-left: 40px;
-}
-
-div.whyprado ul.list li
-{
- display: block;
- margin: 5px;
- padding: 0px;
- font-size: 18px;
- background-repeat: no-repeat;
- background-position: bottom left;
- padding-left: 30px;
- list-style: none;
-}
-
-
-#footer
-{
- border-top: 1px solid #e9eeef;
- background-color: #fff;
- clear: both;
- color: #A7A7A7;
- font-size: 8pt;
- text-align: center;
- padding-top: 10px;
- padding-bottom: 30px;
- background-repeat: repeat-x;
- background-position: bottom;
-}
-
-#features
-{
- margin-left: 610px;
- padding: 10px;
- padding-left: 10px;
- padding-right: 10px;
- background-color: #BEDD75;
- color: #344A1E;
- font-size: 9pt;
-}
-
-#features ul
-{
- margin: 10px;
- padding: 0px;
-}
-
-#features ul li
-{
- font-size: 8pt;
- padding: 0px;
- margin: 0px;
- margin-top: 8px;
-}
-
-#features h3
-{
- margin: 0px;
- padding: 0px;
- font-size: 10pt;
- color: #292E1D;
- text-align: center;
- border-bottom: 1px solid silver;
-}
-
-#news
-{
- float: left;
- width: 590px;
-}
-
-.newstitle
-{
- font-size: 12pt;
- font-weight: bold;
- color: #555;
- margin-top: 10px;
- margin-bottom: 0px;
- border-bottom: 1px solid silver;
-}
-
-.newscontentmore
-{
- margin-right: 10px;
- display: block;
- color: #50811A;
- text-align: right;
-}
-
-.newscontentmore:hover
-{
- color: red;
-}
-
-.newstime
-{
- margin: 0px;
- font-size:0.8em;
- color:#aaa;
- padding-left:10px;
- text-align: right;
-}
-
-.newscontent
-{
- margin-top: 5px;
-}
-
-#leftpanel
-{
- float: left;
- width: 550px;
-}
-
-#topics
-{
- border: 1px solid #804040;
- margin-left: 610px;
- padding-bottom: 10px;
-}
-
-#topicsheader
-{
- text-align:center;
- font-weight:bold;
- background-color:#804040;
- color:#FFFFBC;
- padding: 3px;
- margin-bottom:0px;
-}
-
-.topicitem
-{
- padding: 5px;
-}
-
-.topicitem a:hover
-{
- text-decoration: underline;
-}
-
-.topicitem p
-{
- margin: 0px;
- font-size:0.8em;
- color:#aaa;
- padding-left:10px;
- white-space:nowrap;
-}
-
-.reference
-{
-}
-
-.reference img
-{
- margin: 10px;
-}
-
-.reference h3
-{
-}
-
-
-.download
-{
- width: 100%;
- background-color: #aaa;
-}
-
-.download td
-{
- background-color: #FFFFFF;
- padding: 5px;
- font-size: 9pt;
-}
-
-.download td a
-{
- font-weight: bold;
-}
-
-.download td.type
-{
- font-family: "courier new", courier;
- text-align: right;
- vertical-align: top;
-}
-
-.download div.declaration
-{
- font-family: "courier new", courier;
-}
-
-
-.download th
-{
- background-color: #F0F0F0;
- font-weight: bold;
- padding: 5px;
- text-align: left;
-}
-
-.download th.small
-{
- font-size: 1.0em;
-}
-
-.download tr.reference td {
- background-color: #FFEDED;
-}
-
-
-.doc-title
-{
- font-size: 14pt;
- font-weight: bold;
- margin-top: 10px;
- margin-bottom: 10px;
-}
-
-.doc-subtitle
-{
- font-size: 11pt;
- font-weight: bold;
- background-color: #EEE;
- padding: 5px;
- margin-top: 20px;
-}
-
-.doc-namespace
-{
- font-size: 8pt;
-}
-
-
-.doc-menu
-{
-}
-
-.doc-classes
-{
-}
-
-.doc-ancestors
-{
- font-size: 8pt;
-}
-
-.doc-properties
-{
- font-size: 9pt;
-}
-
-.doc-properties table
-{
- border-collapse: collapse;
- background-color: silver;
- width: 100%;
-}
-
-.doc-properties td, .doc-properties th
-{
- padding: 3px;
- vertical-align: top;
- background-color: white;
- border: 1px solid silver;
-}
-
-.doc-events
-{
- font-size: 9pt;
-}
-
-.doc-events table
-{
- border-collapse: collapse;
- background-color: silver;
- width: 100%;
-}
-
-.doc-events td, .doc-events th
-{
- padding: 3px;
- vertical-align: top;
- background-color: white;
- border: 1px solid silver;
-}
-
-.doc-methods
-{
- font-size: 9pt;
-}
-
-.doc-methods table
-{
- border-collapse: collapse;
- background-color: silver;
- width: 100%;
-}
-
-.doc-methods td, .doc-methods th
-{
- padding: 3px;
- vertical-align: top;
- background-color: white;
- border: 1px solid silver;
-}
-
-.doc-derived
-{
-}
-
-.doc-inherited
-{
-}
-
-.doc-native td
-{
- background-color: lightyellow;
-}
-
-.forum-topic
-{
- padding: 10px;
- border:1px solid silver;
- margin-bottom: 10px;
-}
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/media/stylesheet.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/media/stylesheet.css deleted file mode 100644 index 2c08f94f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/media/stylesheet.css +++ /dev/null @@ -1,129 +0,0 @@ -BODY, DIV, SPAN, PRE, CODE, TD, TH {
- line-height: 140%;
- font-size: 10pt;
- font-family: verdana,arial,sans-serif;
-}
-
-H1 {
- font-size: 12pt;
-}
-
-H4 {
- font-size: 10pt;
- font-weight: bold;
-}
-
-P.label {
- margin-bottom: 5px;
-}
-P.dt {
- margin-top: 0px;
- margin-bottom: 0px;
-}
-P.indent {
- margin-top: 0px;
- margin-left: 20px;
- margin-bottom: 0px;
-}
-P.method {
- background-color: #f0f0f0;
- padding: 2px;
- border: 1px #cccccc solid;
-}
-
-A {
- text-decoration: none;
-}
-
-A:link{
- color: #336699;
-}
-
-A:visited {
- color: #003366;
-}
-
-A:active, A:hover {
- color: #6699CC;
-}
-
-A:hover{
- text-decoration: underline;
-}
-
-SPAN.type {
- color: #336699;
- font-size: xx-small;
- font-weight: normal;
- }
-
-PRE {
- background-color: #EEEEEE;
- padding: 10px;
- border-width: 1px;
- border-color: #336699;
- border-style: solid;
-}
-
-HR {
- color: #336699;
- background-color: #336699;
- border-width: 0px;
- height: 1px;
- filter: Alpha (opacity=100,finishopacity=0,style=1);
-}
-
-DIV.sdesc {
- font-weight: bold;
- background-color: #EEEEEE;
- padding: 10px;
- border-width: 1px;
- border-color: #336699;
- border-style: solid;
-}
-
-DIV.desc {
- font-family: monospace;
- background-color: #EEEEEE;
- padding: 10px;
- border-width: 1px;
- border-color: #336699;
- border-style: solid;
-}
-
-SPAN.code {
- font-family: monospace;
-}
-
-CODE.varsummarydefault{
- padding: 1px;
- border-width: 1px;
- border-style: dashed;
- border-color: #336699;
-}
-
-UL.tute {
- margin: 0px;
- padding: 0px;
- padding-left: 5px;
- }
-
-LI.tute {
- line-height: 140%;
- font-size: 10pt;
- text-indent: -15px;
- padding-bottom: 2px;
- padding-left: 14px;
-}
-
-.small{
- font-size: 9pt;
-}
-
-
-.tute-tag { color: #009999 }
-.tute-attribute-name { color: #0000FF }
-.tute-attribute-value { color: #0099FF }
-.tute-entity { font-weight: bold; }
-.tute-comment { font-style: italic }
-.tute-inline-tag { color: #636311; font-weight: bold }
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/method.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/method.tpl deleted file mode 100644 index 07cb76e5..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/method.tpl +++ /dev/null @@ -1,58 +0,0 @@ -{section name=methods loop=$methods}
-{if $show == 'summary'}
-method {$methods[methods].function_call}, {$methods[methods].sdesc}<br />
-{else}
- <hr />
- <a name="{$methods[methods].method_dest}"></a>
- <h3>{if $methods[methods].ifunction_call.constructor}constructor {elseif $methods[methods].ifunction_call.destructor}destructor {else}method {/if}{$methods[methods].function_name} <span class="smalllinenumber">[line {if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}]</span></h3>
- <div class="function">
- <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code_border">
- <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">
- <code>{$methods[methods].function_return} {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}(
-{if count($methods[methods].ifunction_call.params)}
-{section name=params loop=$methods[methods].ifunction_call.params}
-{if $smarty.section.params.iteration != 1}, {/if}
-{if $methods[methods].ifunction_call.params[params].default != ''}[{/if}{$methods[methods].ifunction_call.params[params].type}
-{$methods[methods].ifunction_call.params[params].name}{if $methods[methods].ifunction_call.params[params].default != ''} = {$methods[methods].ifunction_call.params[params].default}]{/if}
-{/section}
-{/if})</code>
- </td></tr></table>
- </td></tr></table><br />
-
- {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags}<br /><br />
-
-{if $methods[methods].descmethod}
- <p>Overridden in child classes as:<br />
- {section name=dm loop=$methods[methods].descmethod}
- <dl>
- <dt>{$methods[methods].descmethod[dm].link}</dt>
- <dd>{$methods[methods].descmethod[dm].sdesc}</dd>
- </dl>
- {/section}</p>
-{/if}
-{* original {if $methods[methods].descmethod != ""
- {$methods[methods].descmethod<br /><br />
- {/if *}
-{if $methods[methods].method_overrides}Overrides {$methods[methods].method_overrides.link} ({$methods[methods].method_overrides.sdesc|default:"parent method not documented"})<br /><br />{/if}
-{* original {if $methods[methods].method_overrides != ""
- {$methods[methods].method_overrides<br /><br />
- {/if *}
-
- {if count($methods[methods].params) > 0}
- <h4>Parameters:</h4>
- <div class="tags">
- <table border="0" cellspacing="0" cellpadding="0">
- {section name=params loop=$methods[methods].params}
- <tr>
- <td class="type">{$methods[methods].params[params].datatype} </td>
- <td><b>{$methods[methods].params[params].var}</b> </td>
- <td>{$methods[methods].params[params].data}</td>
- </tr>
- {/section}
- </table>
- </div><br />
- {/if}
- <div class="top">[ <a href="#top">Top</a> ]</div>
- </div>
-{/if}
-{/section}
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/packages.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/packages.tpl deleted file mode 100644 index b48b6719..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/packages.tpl +++ /dev/null @@ -1,3 +0,0 @@ -{section name=packages loop=$packages}
-<a href="{$packages[packages].link}">{$packages[packages].title}</a>
-{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/page.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/page.tpl deleted file mode 100644 index 6dd8683d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/page.tpl +++ /dev/null @@ -1,31 +0,0 @@ -{include file="header.tpl" eltype="Procedural file" class_name=$name hasel=true contents=$pagecontents}
-
-<br>
-<br>
-
-{if $classes}
-<div class="contents">
-{if $tutorial}
-<span class="maintutorial">Main Tutorial: {$tutorial}</span>
-{/if}
-<h2>Classes:</h2>
-{section name=classes loop=$classes}
-<dt>{$classes[classes].link}</dt>
- <dd>{$classes[classes].sdesc}</dd>
-{/section}
-</div><br /><br />
-{/if}
-
-<h2>Page Details:</h2>
-{include file="docblock.tpl" type="page"}
-<br /><br />
-{include file="include.tpl"}
-<br /><br />
-{include file="global.tpl"}
-<br /><br />
-{include file="define.tpl"}
-<br />
-{include file="function.tpl"}
-
-{include file="footer.tpl"}
-
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/pkgelementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/pkgelementindex.tpl deleted file mode 100644 index 753ad7cf..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/pkgelementindex.tpl +++ /dev/null @@ -1,5 +0,0 @@ -{include file="header.tpl"}
-<a name="top"></a>
-<h1>Element index for package {$package}</h1>
-{include file="basicindex.tpl" indexname=elementindex_$package}
-{include file="footer.tpl"}
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/ric.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/ric.tpl deleted file mode 100644 index c4cb83f9..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/ric.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl"}
-<h1 align="center">{$name}</h1>
-<pre>
-{$contents|htmlentities}
-</pre>
-{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/todolist.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/todolist.tpl deleted file mode 100644 index 5ab0bca2..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/todolist.tpl +++ /dev/null @@ -1,14 +0,0 @@ -{include file="header.tpl" title="Todo List"}
-<div align="center"><h1>Todo List</h1></div>
-{foreach from=$todos key=todopackage item=todo}
-<h2>{$todopackage}</h2>
-{section name=todo loop=$todo}
-<h3>{$todo[todo].link}</h3>
-<ul>
-{section name=t loop=$todo[todo].todos}
- <li>{$todo[todo].todos[t]}</li>
-{/section}
-</ul>
-{/section}
-{/foreach}
-{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/tutorial.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/tutorial.tpl deleted file mode 100644 index 22c71c3b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/tutorial.tpl +++ /dev/null @@ -1,32 +0,0 @@ -{include file="header.tpl" title=$title}
-{if $nav}
-<table width="100%" border="0" cellpadding="0" cellspacing="0">
-<tr>
-<td width="10%" align="left" valign="bottom">{if $prev}<a href=
-"{$prev}">{/if}Prev{if $prev}</a>{/if}</td>
-<td width="80%" align="center" valign="bottom"></td>
-<td width="10%" align="right" valign="bottom">{if $next}<a href=
-"{$next}">{/if}Next{if $next}</a>{/if}</td>
-</tr>
-</table>
-{/if}
-{$contents}
-{if $nav}
-<table width="100%" border="0" cellpadding="0" cellspacing="0">
-<tr>
-<td width="33%" align="left" valign="top">{if $prev}<a href="{$prev}">{/if}
-Prev{if $prev}</a>{/if}</td>
-<td width="34%" align="center" valign="top">{if $up}<a href=
-"{$up}">Up</a>{else} {/if}</td>
-<td width="33%" align="right" valign="top">{if $next}<a href=
-"{$next}">{/if}Next{if $next}</a>{/if}</td>
-</tr>
-
-<tr>
-<td width="33%" align="left" valign="top">{if $prevtitle}{$prevtitle}{/if}</td>
-<td width="34%" align="center" valign="top">{if $uptitle}{$uptitle}{/if}</td>
-<td width="33%" align="right" valign="top">{if $nexttitle}{$nexttitle}{/if}</td>
-</tr>
-</table>
-{/if}
-{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/tutorial_toc.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/tutorial_toc.tpl deleted file mode 100644 index 1db34438..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/tutorial_toc.tpl +++ /dev/null @@ -1,29 +0,0 @@ -{if count($toc)}
-<h1 align="center">Table of Contents</h1>
-<ul>
-{section name=toc loop=$toc}
-{if $toc[toc].tagname == 'refsect1'}
-{assign var="context" value="refsect1"}
-{$toc[toc].link}<br />
-{/if}
-{if $toc[toc].tagname == 'refsect2'}
-{assign var="context" value="refsect2"}
- {$toc[toc].link}<br />
-{/if}
-{if $toc[toc].tagname == 'refsect3'}
-{assign var="context" value="refsect3"}
- {$toc[toc].link}<br />
-{/if}
-{if $toc[toc].tagname == 'table'}
-{if $context == 'refsect2'} {/if}
-{if $context == 'refsect3'} {/if}
-Table: {$toc[toc].link}
-{/if}
-{if $toc[toc].tagname == 'example'}
-{if $context == 'refsect2'} {/if}
-{if $context == 'refsect3'} {/if}
-Table: {$toc[toc].link}
-{/if}
-{/section}
-</ul>
-{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/tutorial_tree.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/tutorial_tree.tpl deleted file mode 100644 index faf7bcef..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/tutorial_tree.tpl +++ /dev/null @@ -1,5 +0,0 @@ -<ul>
- <li type="square"><a href="{$main.link}">{$main.title|strip_tags}</a>
-{if $kids}{$kids}</li>{/if}
-</ul>
-
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/var.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/var.tpl deleted file mode 100644 index c76929fe..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/PradoSoft/templates/var.tpl +++ /dev/null @@ -1,28 +0,0 @@ -{section name=vars loop=$vars}
-{if $show == 'summary'}
- var {$vars[vars].var_name}, {$vars[vars].sdesc}<br>
-{else}
- <a name="{$vars[vars].var_dest}"></a>
- <p></p>
- <h4>{$vars[vars].var_name} = <span class="value">{$vars[vars].var_default|replace:"\n":"<br>\n"|replace:" ":" "|replace:"\t":" "}</span></h4>
- <p>[line {if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}]</p>
- {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags}
-
- <br />
- <div class="tags">
- <table border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><b>Type:</b> </td>
- <td>{$vars[vars].var_type}</td>
- </tr>
- {if $vars[vars].var_overrides != ""}
- <tr>
- <td><b>Overrides:</b> </td>
- <td>{$vars[vars].var_overrides}</td>
- </tr>
- {/if}
- </table>
- </div><br /><br />
- <div class="top">[ <a href="#top">Top</a> ]</div><br />
-{/if}
-{/section}
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/options.ini b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/options.ini deleted file mode 100755 index e61aeba8..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/options.ini +++ /dev/null @@ -1,577 +0,0 @@ -preservedocbooktags = false - -;; used to highlight the {@source} inline tag, @filesource tag, and @example tag -[highlightSourceTokens] -;; format: -;; T_CONSTANTNAME = open -;; /T_CONSTANTNAME = close - -T_INCLUDE = <span class="src-inc"> -/T_INCLUDE = </span> -T_INCLUDE_ONCE = <span class="src-inc"> -/T_INCLUDE_ONCE = </span> -T_REQUIRE_ONCE = <span class="src-inc"> -/T_REQUIRE_ONCE = </span> -T_REQUIRE_ONCE = <span class="src-inc"> -/T_REQUIRE_ONCE = </span> - -T_CONSTANT_ENCAPSED_STRING = <span class="src-str"> -/T_CONSTANT_ENCAPSED_STRING = </span> -T_STRING_VARNAME = <span class="src-str"> -/T_STRING_VARNAME = </span> - -T_STRING = <span class="src-id"> -/T_STRING = </span> - -T_DNUMBER = <span class="src-num"> -/T_DNUMBER = </span> -T_LNUMBER = <span class="src-num"> -/T_LNUMBER = </span> - -T_VARIABLE = <span class="src-var"> -/T_VARIABLE = </span> - -T_COMMENT = <span class="src-comm"> -/T_COMMENT = </span> -T_ML_COMMENT = <span class="src-comm"> -/T_ML_COMMENT = </span> - -T_OBJECT_OPERATOR = <span class="src-sym"> -/T_OBJECT_OPERATOR = </span> - -T_ABSTRACT = <span class="src-key"> -/T_ABSTRACT = </span> -T_CLONE = <span class="src-key"> -/T_CLONE = </span> -T_HALT_COMPILER = <span class="src-key"> -/T_HALT_COMPILER = </span> -T_ARRAY = <span class="src-key"> -/T_ARRAY = </span> -T_AS = <span class="src-key"> -/T_AS = </span> -T_BREAK = <span class="src-key"> -/T_BREAK = </span> -T_CLASS = <span class="src-key"> -/T_CLASS = </span> -T_CASE = <span class="src-key"> -/T_CASE = </span> -T_CONST = <span class="src-key"> -/T_CONST = </span> -T_CONTINUE = <span class="src-key"> -/T_CONTINUE = </span> -T_DECLARE = <span class="src-key"> -/T_DECLARE = </span> -T_DEFAULT = <span class="src-key"> -/T_DEFAULT = </span> -T_ELSE = <span class="src-key"> -/T_ELSE = </span> -T_ELSEIF = <span class="src-key"> -/T_ELSEIF = </span> -T_EMPTY = <span class="src-key"> -/T_EMPTY = </span> -T_ENDDECLARE = <span class="src-key"> -/T_ENDDECLARE = </span> -T_ENDFOR = <span class="src-key"> -/T_ENDFOR = </span> -T_ENDSWITCH = <span class="src-key"> -/T_ENDSWITCH = </span> -T_ENDFOREACH = <span class="src-key"> -/T_ENDFOREACH = </span> -T_ENDIF = <span class="src-key"> -/T_ENDIF = </span> -T_ENDWHILE = <span class="src-key"> -/T_ENDWHILE = </span> -T_EXIT = <span class="src-key"> -/T_EXIT = </span> -T_EXTENDS = <span class="src-key"> -/T_EXTENDS = </span> -T_FINAL = <span class="src-key"> -/T_FINAL = </span> -T_FOR = <span class="src-key"> -/T_FOR = </span> -T_FOREACH = <span class="src-key"> -/T_FOREACH = </span> -T_FUNCTION = <span class="src-key"> -/T_FUNCTION = </span> -T_GLOBAL = <span class="src-key"> -/T_GLOBAL = </span> -T_IF = <span class="src-key"> -/T_IF = </span> -T_IMPLEMENTS = <span class="src-key"> -/T_IMPLEMENTS = </span> -T_INTERFACE = <span class="src-key"> -/T_INTERFACE = </span> -T_LOGICAL_AND = <span class="src-key"> -/T_LOGICAL_AND = </span> -T_LOGICAL_OR = <span class="src-key"> -/T_LOGICAL_OR = </span> -T_LOGICAL_XOR = <span class="src-key"> -/T_LOGICAL_XOR = </span> -T_NEW = <span class="src-key"> -/T_NEW = </span> -T_PRIVATE = <span class="src-key"> -/T_PRIVATE = </span> -T_PROTECTED = <span class="src-key"> -/T_PROTECTED = </span> -T_PUBLIC = <span class="src-key"> -/T_PUBLIC = </span> -T_RETURN = <span class="src-key"> -/T_RETURN = </span> -T_STATIC = <span class="src-key"> -/T_STATIC = </span> -T_SWITCH = <span class="src-key"> -/T_SWITCH = </span> -T_VAR = <span class="src-key"> -/T_VAR = </span> -T_WHILE = <span class="src-key"> -/T_WHILE = </span> - -T_DOUBLE_COLON = <span class="src-sym"> -/T_DOUBLE_COLON = </span> - -T_OPEN_TAG = <span class="src-php"> -/T_OPEN_TAG = </span> -T_OPEN_TAG_WITH_ECHO = <span class="src-php"> -/T_OPEN_TAG_WITH_ECHO = </span> -T_CLOSE_TAG = <span class="src-php"> -/T_CLOSE_TAG = </span> - - -[highlightSource] -;; this is for highlighting things that aren't tokens like "&" -;; format: -;; word = open -;; /word = close -@ = <span class="src-sym"> -/@ = </span> -& = <span class="src-sym"> -/& = </span> -[ = <span class="src-sym"> -/[ = </span> -] = <span class="src-sym"> -/] = </span> -! = <span class="src-sym"> -/! = </span> -";" = <span class="src-sym"> -/; = </span> -( = <span class="src-sym"> -/( = </span> -) = <span class="src-sym"> -/) = </span> -, = <span class="src-sym"> -/, = </span> -{ = <span class="src-sym"> -/{ = </span> -} = <span class="src-sym"> -/} = </span> -""" = <span class="src-str"> -/" = </span> - -[highlightDocBlockSourceTokens] -;; this is for docblock tokens, using by phpDocumentor_HighlightParser -;; tagphptype is for "string" in @param string description, for example -docblock = <span class="src-doc"> -/docblock = </span> -tagphptype = <span class="src-doc-type"> -/tagphptype = </span> -tagvarname = <span class="src-doc-var"> -/tagvarname = </span> -coretag = <span class="src-doc-coretag"> -/coretag = </span> -tag = <span class="src-doc-tag"> -/tag = </span> -inlinetag = <span class="src-doc-inlinetag"> -/inlinetag = </span> -internal = <span class="src-doc-internal"> -/internal = </span> -closetemplate = <span class="src-doc-close-template"> -/closetemplate = </span> -docblocktemplate = <span class="src-doc-template"> -/docblocktemplate = </span> - -[highlightTutorialSourceTokens] -;; this is for XML DocBook-based tutorials, highlighted by phpDocumentor_TutorialHighlightParser -;; <tag> -opentag = <span class="tute-tag"> -/opentag = </span> -;; </tag> -closetag = <span class="tute-tag"> -/closetag = </span> -;; <tag attribute="value"> -attribute = <span class="tute-attribute-name"> -/attribute = </span> -;; <tag attribute="value"> -attributevalue = <span class="tute-attribute-value"> -/attributevalue = </span> -;; &entity; -entity = <span class="tute-entity"> -/entity = </span> -;; <!-- comment --> -comment = <span class="tute-comment"> -/comment = </span> -;; {@inline tag} -itag = <span class="tute-inline-tag"> -/itag = </span> - -;; used for translation of html in DocBlocks -[desctranslate] -ul = <ul> -/ul = </ul> -ol = <ol> -/ol = </ol> -li = <li> -/li = </li> -code = -/code = -var = <var> -/var = </var> -samp = <samp> -/samp = </samp> -kbd = <kbd> -/kbd = </kbd> -pre = <pre> -/pre = </pre> -p = <p> -/p = </p> -b = <strong> -/b = </strong> -i = <em> -/i = </em> -br = <br /> - -[ppage] -;; this is the DocBook package page translation section. All DocBook tags -;; that have a corresponding html tag must be listed here. Entities should -;; also be listed here -;; -;; examples: -;; 1) -;; tagname = newtagname -;; -;; This is the simplest case, where all attributes will be added into the -;; starting tag and the ending tag will be html/xml style </tranlatedtagname> -;; <tagname></tagname> becomes <newtagname></newtagname> and -;; <tagname attr="value"></tagname> becomes -;; <newtagname attr="value"></newtagname> -;; -;; 2) -;; tagname = newtagname -;; tagname->attr = newattrname -;; -;; in this case, everything will be like the first case, except tags like: -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="value"></newtagname> -;; -;; 3) -;; tagname = newtagname -;; tagname->attr = newattrname -;; tagname->attr+value = newvalue -;; -;; in this case, the value is also translated to another. This can be useful -;; for instances such as focus="middle" changing to align="center" or something -;; of that nature. -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 4) -;; tagname = newtagname -;; tagname->attr1 = newattrname -;; tagname->attr2 = newattrname -;; tagname->attr1+value|attr2+value = newvalue -;; -;; in this case, two attributes combine to make one new attribute, and the combined -;; value is translated into a new value -;; <tagname attr1="value1" attr2="value2"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 5) -;; tagname = newtagname -;; tagname!attr = dummy -;; -;; here, the attribute will be ignored. dummy is not used and may be any value -;; <tagname attr="value"></tagname> will become -;; <newtagname></newtagname> -;; -;; 6) -;; tagname = newtagname -;; tagname! = dummy -;; -;; here, all attributes will be ignored. dummy is not used and may be any value -;; <tagname attr1="value" attr2="foo"></tagname> will become -;; <newtagname></newtagname> -;; -;; 7) -;; tagname = newtagname -;; tagname/ = 1 -;; -;; here, the tag will be translated as a single tag with no closing tag, and all -;; attributes -;; <tagname attr="val">{text text}</tagname> will become -;; <newtagname attr="val" /> -;; -;; 8) -;; tagname = <starttaginfo /> -;; /tagname = closetagtext -;; -;; in this case, the text <starttaginfo> will be inserted exactly as entered for -;; <tagname> and closetagtext for </tagname> -;; <tagname attr="val"></tagname> will become -;; <starttaginfo />closetagtext -;; -;; 9) -;; $attr$my_attribute = newattrname -;; -;; tagname = newtagname -;; -;; in this case, all occurences of my_attribute in any tag will be changed to -;; newattrname. This is useful for changing things like role="php" to -;; class="php," for example. Note that the text "$attr$" MUST be on the line -;; start for phpDocumentor to recognize it. -;; -;; 10) -;; &entity; = translation text -;; " = " -;; " = """ -;; < = < -;; -;; Use this to control translation of entities to their appropriate values - - = -" = " -” = ” -“ = “ -& = & -< = < -> = > -© = © - -$attr$role = class - -abbrev = abbr - -blockquote = blockquote - -arg = span -arg->choice = class - -author = <span class="author"> -/author = </span> -author! = 0 - -authorblurb = <div class="author-blurb"> -/authorblurb = </div> - -authorgroup = <div class="authors"><h2 class="title">Authors</h2> -/authorgroup = </div> -authorgroup! = 0 - -caution = <span class="warning"> -/caution = </span> -caution! = 0 - -cmdsynopsis = <div class="cmd-synopsis"> -/cmdsynopsis = </div> - -command = <span class="cmd-title"> -/command = </span> - -copyright = <div class="notes"> -/copyright = </div> - -emphasis = em - -example = <div class="src-code"> -/example = </div> -example! = 0 - -function = -/function = () - -formalpara = p - -graphic = img -graphic->fileref = src -graphic/ = - -important = strong - -informalequation = blockquote - -informalexample = div - -inlineequation = em - -itemizedlist = ul - -listitem = li - -literal = code - -literallayout = span - -option = " " -/option = - -orderedlist = ol - -para = p - -programlisting = <div class="src-code"> -/programlisting = </div> -programlisting! = 0 - -refentry = div - -refnamediv = <div class="ref-title-box"> -/refnamediv = </div> -refnamediv! = 0 - -refname = <h1 class="ref-title"> -/refname = </h1> - -refpurpose = <h2 class="ref-purpose"> -/refpurpose = </h2> - -refsynopsisdiv = <div class="ref-synopsis"> -/refsynopsisdiv = </div> -refsynopsisdiv! = 0 - -refsect1 = span - -refsect2 = -/refsect2 = <hr /> - -refsect3 = -/refsect3 = <br /> - -releaseinfo = <div class="release-info">( -/releaseinfo = )</div> - -simpara = -/simpara = <br /> -simpara! = 0 - -subscript = sub - -superscript = super - -table = table - -table->colsep = rules -table->rowsep = rules -table->colsep+1|rowsep+1 = all -table->colsep+1|rowsep+0 = cols -table->colsep+0|rowsep+1 = rows - -table->frame = frame -table->frame+all = border -table->frame+none = void -table->frame+sides = vsides -table->frame+top = above -table->frame+topbot = hsides - -thead = thead - -tfoot = tfoot - -tbody = tbody - -colspec = col - -tgroup = colgroup -tgroup/ = 1 -tgroup->cols = span - -row = tr - -entry = td -entry->morerows = colspan -entry->morerows+1 = 2 -entry->morerows+2 = 3 -entry->morerows+3 = 4 -entry->morerows+4 = 5 -entry->morerows+5 = 6 -entry->morerows+6 = 7 -entry->morerows+7 = 8 -entry->morerows+8 = 9 -entry->morerows+9 = 10 -entry->morerows+10 = 11 -;; add more if you need more colspans - -warning = <span class="warning"> -/warning = </span> -warning! = 0 - -;; now begins the attributes that should be tags in cdata -[$attr$id] -open = a -;close = /a -cdata! = true -quotevalues = true -separator = "=" -;separateall = true -$id = name - -;; now begins the sections that deal with <title> -[refsynopsisdiv_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h1 class="title" align="center"> -close = </h1> - -[refsect1_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h2 class="title"> -close = </h2> - -[refsect2_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h3 class="title"> -close = </h3> - -[refsect3_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h4 class="title"> -close = </h4> - -[para_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <div class="title"> -close = </div> - -[formalpara_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <div class="title"> -close = </div> - -[example_title] -;tag_attr = true -;attr_name = title -;cdata_start = true -cdata_end = true -open = </td></tr><tr><td><strong> -close = </strong> - -[table_title] -;tag_attr = true -;attr_name = true -cdata_start = true -open = <caption> -close = </caption> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/basicindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/basicindex.tpl deleted file mode 100755 index b3f0c4a4..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/basicindex.tpl +++ /dev/null @@ -1,17 +0,0 @@ -{section name=letter loop=$letters} - <a href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> -{/section} - -{section name=index loop=$index} - <a name="{$index[index].letter}"></a> - <a href="{$indexname}.html#top">top</a><br> - <div> - <h2>{$index[index].letter}</h2> - <dl class="lettercontents"> - {section name=contents loop=$index[index].index} - <dt>{$index[index].index[contents].name}</dt> - <dd>{$index[index].index[contents].listing}</dd> - {/section} - </dl> - </div> -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/blank.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/blank.tpl deleted file mode 100755 index aae59975..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/blank.tpl +++ /dev/null @@ -1,5 +0,0 @@ -<div align="center"><h1>{$maintitle}</h1></div> -<b>Welcome to {$package}!</b><br /> -<br /> -This documentation was generated by <a href="{$phpdocwebsite}">phpDocumentor v{$phpdocversion}</a><br /> - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/class.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/class.tpl deleted file mode 100755 index 399116ad..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/class.tpl +++ /dev/null @@ -1,173 +0,0 @@ -{include file="header.tpl" eltype="class" hasel=true contents=$classcontents} - -{if $conflicts.conflict_type}<p class="warning">Conflicts with classes:<br /> - {section name=me loop=$conflicts.conflicts} - {$conflicts.conflicts[me]}<br /> - {/section} -<p> - {/if} - -<div class="leftcol"> - <h3><a href="#class_details">{if $is_interface}Interface{else}Class{/if} Overview</a> <span class="smalllinenumber">[line {if $class_slink}{$class_slink}{else}{$line_number}{/if}]</span></h3> - <div id="classTree"><pre>{section name=tree loop=$class_tree.classes}{$class_tree.classes[tree]}{$class_tree.distance[tree]}{/section}</pre> -</div> - <div class="small"> - <p>{$sdesc|default:''}</p> - {if $tutorial} - <h4 class="classtutorial">{if $is_interface}Interface{else}Class{/if} Tutorial:</h4> - <ul> - <li>{$tutorial}</li> - </ul> - {/if} - <h4>Author(s):</h4> - <ul> - {section name=tag loop=$tags} - {if $tags[tag].keyword eq "author"} - <li>{$tags[tag].data}</li> - {/if} - {/section} - </ul> - <h4>Version:</h4> - <ul> - {section name=tag loop=$tags} - {if $tags[tag].keyword eq "version"} - <li>{$tags[tag].data}</li> - {/if} - {/section} - </ul> - - <h4>Copyright:</h4> - <ul> - {section name=tag loop=$tags} - {if $tags[tag].keyword eq "copyright"} - <li>{$tags[tag].data}</li> - {/if} - {/section} - </li> - </div> -</div> - -<div class="middlecol"> - <h3><a href="#class_vars">Variables</a></h3> - <ul class="small"> - {section name=contents loop=$contents.var} - <li>{$contents.var[contents]}</li> - {/section} - </ul> - <h3><a href="#class_consts">Constants</a></h3> - <ul class="small"> - {section name=contents loop=$contents.const} - <li>{$contents.const[contents]}</li> - {/section} - </ul> -</div> -<div class="rightcol"> - <h3><a href="#class_methods">Methods</a></h3> - <ul class="small"> - {section name=contents loop=$contents.method} - <li>{$contents.method[contents]}</li> - {/section} - </ul> -</div> - -<div id="content"> -<hr> - <div class="contents"> -{if $children} - <h2>Child classes:</h2> - {section name=kids loop=$children} - <dl> - <dt>{$children[kids].link}</dt> - <dd>{$children[kids].sdesc}</dd> - </dl> - {/section}</p> -{/if} - </div> - - <div class="leftCol"> - {if $implements} - <h2>Implements interfaces</h2> - <ul> - {foreach item="int" from=$implements}<li>{$int}</li>{/foreach} - </ul> - {/if} - <h2>Inherited Variables</h2> - {section name=ivars loop=$ivars} - <div class="indent"> - <h3>Class: {$ivars[ivars].parent_class}</h3> - <div class="small"> - <dl> - {section name=ivars2 loop=$ivars[ivars].ivars} - <dt> - {$ivars[ivars].ivars[ivars2].link} - </dt> - <dd> - {$ivars[ivars].ivars[ivars2].ivars_sdesc} - </dd> - {/section} - </dl> - </div> - </div> - {/section} - <h2>Inherited Constants</h2> - {section name=iconsts loop=$iconsts} - <div class="indent"> - <h3>Class: {$iconsts[iconsts].parent_class}</h3> - <div class="small"> - <dl> - {section name=iconsts2 loop=$iconsts[iconsts].iconsts} - <dt> - {$iconsts[iconsts].iconsts[iconsts2].link} - </dt> - <dd> - {$iconsts[iconsts].iconsts[iconsts2].iconsts_sdesc} - </dd> - {/section} - </dl> - </div> - </div> - {/section} - </div> - - <div class="rightCol"> - <h2>Inherited Methods</h2> - {section name=imethods loop=$imethods} - <div class="indent"> - <h3>Class: {$imethods[imethods].parent_class}</h3> - <dl class="small"> - {section name=im2 loop=$imethods[imethods].imethods} - <dt> - {$imethods[imethods].imethods[im2].link} - </dt> - <dd> - {$imethods[imethods].imethods[im2].sdesc} - </dd> - {/section} - </dl> - </div> - {/section} - </div> - <br clear="all"> - <hr> - - <a name="class_details"></a> - <h2>Class Details</h2> - {include file="docblock.tpl" type="class" sdesc=$sdesc desc=$desc} - <p class="small" style="color: #334B66;">[ <a href="#top">Top</a> ]</p> - - <hr> - <a name="class_vars"></a> - <h2>Class Variables</h2> - {include file="var.tpl"} - - <hr> - <a name="class_methods"></a> - <h2>Class Methods</h2> - {include file="method.tpl"} - - <hr> - <a name="class_consts"></a> - <h2>Class Constants</h2> - {include file="const.tpl"} -</div> -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/classleft.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/classleft.tpl deleted file mode 100755 index 7d7de89a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/classleft.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{foreach key=subpackage item=files from=$classleftindex} - {if $subpackage != ""}<b>{$subpackage}</b><br>{/if} - {section name=files loop=$files} - {if $files[files].link != ''}<a href="{$files[files].link}">{/if} - {$files[files].title} - {if $files[files].link != ''}</a>{/if}<br> - {/section} -{/foreach} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/classtrees.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/classtrees.tpl deleted file mode 100755 index 0c0e974a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/classtrees.tpl +++ /dev/null @@ -1,17 +0,0 @@ -{include file="header.tpl" noleftindex=true} -<h1>{$title}</h1> -{if $interfaces} -{section name=classtrees loop=$interfaces} -<hr /> -<div class="classtree">Root interface {$interfaces[classtrees].class}</div><br /> -{$interfaces[classtrees].class_tree} -{/section} -{/if} -{if $classtrees} -{section name=classtrees loop=$classtrees} -<hr /> -<div class="classtree">Root class {$classtrees[classtrees].class}</div><br /> -{$classtrees[classtrees].class_tree} -{/section} -{/if} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/const.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/const.tpl deleted file mode 100644 index aeab7293..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/const.tpl +++ /dev/null @@ -1,14 +0,0 @@ -{section name=consts loop=$consts} -{if $show == 'summary'} - var {$consts[consts].const_name}, {$consts[consts].sdesc}<br> -{else} - <a name="{$consts[consts].const_dest}"></a> - <p></p> - <h4>{$consts[consts].const_name} = <span class="value">{$consts[consts].const_value|replace:"\n":"<br>\n"|replace:" ":" "|replace:"\t":" "}</span></h4> - <div class="indent"> - <p class="linenumber">[line {if $consts[consts].slink}{$consts[consts].slink}{else}{$consts[consts].line_number}{/if}]</p> - {include file="docblock.tpl" sdesc=$consts[consts].sdesc desc=$consts[consts].desc tags=$consts[consts].tags} - </div> - <p class="top">[ <a href="#top">Top</a> ]</p> -{/if} -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/define.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/define.tpl deleted file mode 100755 index 0aa7ef76..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/define.tpl +++ /dev/null @@ -1,23 +0,0 @@ -<div id="define{if $show == 'summary'}_summary{/if}"> -{section name=def loop=$defines} -{if $show == 'summary'} -define constant <a href="{$defines[def].id}">{$defines[def].define_name}</a> = {$defines[def].define_value}, {$defines[def].sdesc}<br> -{else} - <a name="{$defines[def].define_link}"></a> - <h3>{$defines[def].define_name}</h3> - <div class="indent"> - <p class="linenumber">[line {if $defines[def].slink}{$defines[def].slink}{else}{$defines[def].line_number}{/if}]</p> - <p><code>{$defines[def].define_name} = {$defines[def].define_value}</code></p> - {include file="docblock.tpl" sdesc=$defines[def].sdesc desc=$defines[def].desc tags=$defines[def].tags} - {if $defines[def].define_conflicts.conflict_type} - <p><b>Conflicts with defines:</b> - {section name=me loop=$defines[def].define_conflicts.conflicts} - {$defines[def].define_conflicts.conflicts[me]}<br /> - {/section} - </p> - {/if} - </div> - <p class="top">[ <a href="#top">Top</a> ]</p> -{/if} -{/section} -</div> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/docblock.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/docblock.tpl deleted file mode 100755 index 9ea60cf2..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/docblock.tpl +++ /dev/null @@ -1,13 +0,0 @@ -{if $sdesc != ''} -<p align="center"><strong>{$sdesc|default:''} -</strong></p> -{/if} -{if $desc != ''}{$desc|default:''}{/if} -{if count($tags)} -<h4>Tags:</h4> -<ul> -{section name=tag loop=$tags} - <li><b>{$tags[tag].keyword}</b> - {$tags[tag].data}</li> -{/section} -</ul> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/elementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/elementindex.tpl deleted file mode 100755 index 0ff4a79e..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/elementindex.tpl +++ /dev/null @@ -1,5 +0,0 @@ -{include file="header.tpl" noleftindex=true} -<a name="top"></a> -<h1>Index of All Elements</h1> -{include file="basicindex.tpl" indexname="elementindex"} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/errors.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/errors.tpl deleted file mode 100755 index 0f526584..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/errors.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{include file="header.tpl" noleftindex=true} -{section name=files loop=$files} -<a href="#{$files[files].file}">{$files[files].file}</a><br> -{/section} -{foreach key=file item=issues from=$all} -<a name="{$file}"></a> -<h1>{$file}</h1> -{if count($issues.warnings)} -<h2>Warnings:</h2><br> -{section name=warnings loop=$issues.warnings} -<b>{$issues.warnings[warnings].name}</b> - {$issues.warnings[warnings].listing}<br> -{/section} -{/if} -{if count($issues.errors)} -<h2>Errors:</h2><br> -{section name=errors loop=$issues.errors} -<b>{$issues.errors[errors].name}</b> - {$issues.errors[errors].listing}<br> -{/section} -{/if} -{/foreach} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/examplesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/examplesource.tpl deleted file mode 100755 index 1bf1f882..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/examplesource.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl" title=$title} -<h1 align="center">{$title}</h1> -<div class="php-src"> -{$source} -</div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/fileleft.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/fileleft.tpl deleted file mode 100755 index 9e141dc5..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/fileleft.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{foreach key=subpackage item=files from=$fileleftindex} - {if $subpackage != ""}subpackage <b>{$subpackage}</b><br>{/if} - {section name=files loop=$files} - {if $files[files].link != ''}<a href="{$files[files].link}">{/if} - {$files[files].title} - {if $files[files].link != ''}</a>{/if}<br> - {/section} -{/foreach} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/filesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/filesource.tpl deleted file mode 100755 index 15f7fbfe..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/filesource.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{capture name="tutle"}File Source for {$name}{/capture} -{include file="header.tpl" title=$smarty.capture.tutle} -<h1 align="center">Source for file {$name}</h1> -<p>Documentation is available at {$docs}</p> -<div class="php-src"> -{$source} -</div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/footer.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/footer.tpl deleted file mode 100755 index 0bdda65c..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/footer.tpl +++ /dev/null @@ -1,7 +0,0 @@ - <div id="credit"> - <hr> - Documentation generated on {$date} by <a href="{$phpdocwebsite}">phpDocumentor {$phpdocversion}</a> - </div> -</div> -</body> -</html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/function.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/function.tpl deleted file mode 100755 index 14fd78eb..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/function.tpl +++ /dev/null @@ -1,39 +0,0 @@ -<div id="function{if $show == 'summary'}_summary{/if}"> -{section name=func loop=$functions} -{if $show == 'summary'} -function {$functions[func].id}, {$functions[func].sdesc}<br> -{else} - <a name="{$functions[func].function_dest}"></a> - <h3>{$functions[func].function_name}</h3> - <div class="indent"> - <code>{$functions[func].function_return} {if $functions[func].ifunction_call.returnsref}&{/if}{$functions[func].function_name}( -{if count($functions[func].ifunction_call.params)} -{section name=params loop=$functions[func].ifunction_call.params} -{if $smarty.section.params.iteration != 1}, {/if}{if $functions[func].ifunction_call.params[params].hasdefault}[{/if}{$functions[func].ifunction_call.params[params].type} {$functions[func].ifunction_call.params[params].name}{if $functions[func].ifunction_call.params[params].hasdefault} = {$functions[func].ifunction_call.params[params].default|escape:"html"}]{/if} -{/section} -{/if})</code> - <p class="linenumber">[line {if $functions[func].slink}{$functions[func].slink}{else}{$functions[func].line_number}{/if}]</p> - {include file="docblock.tpl" sdesc=$functions[func].sdesc desc=$functions[func].desc tags=$functions[func].tags} - {if $functions[func].function_conflicts.conflict_type} - <p><b>Conflicts with functions:</b> - {section name=me loop=$functions[func].function_conflicts.conflicts} - {$functions[func].function_conflicts.conflicts[me]}<br /> - {/section} - </p> - {/if} - - <h4>Parameters</h4> - <ul> - {section name=params loop=$functions[func].params} - <li> - <span class="type">{$functions[func].params[params].datatype}</span> - <b>{$functions[func].params[params].var}</b> - - - {$functions[func].params[params].data}</li> - {/section} - </ul> - </div> - <p class="top">[ <a href="#top">Top</a> ]</p> -{/if} -{/section} -</div> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/global.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/global.tpl deleted file mode 100755 index 9fa52bce..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/global.tpl +++ /dev/null @@ -1,24 +0,0 @@ -<div id="global{if $show == 'summary'}_summary{/if}"> -{section name=glob loop=$globals} -{if $show == 'summary'} -global variable <a href="{$globals[glob].id}">{$globals[glob].global_name}</a> = {$globals[glob].global_value}, {$globals[glob].sdesc}<br> -{else} - <a name="{$globals[glob].global_link}"></a> - <h3><i>{$globals[glob].global_type}</i> {$globals[glob].global_name}</h3> - <div class="indent"> - <p class="linenumber">[line {if $globals[glob].slink}{$globals[glob].slink}{else}{$globals[glob].line_number}{/if}]</p> - {include file="docblock.tpl" sdesc=$globals[glob].sdesc desc=$globals[glob].desc tags=$globals[glob].tags} - - <p><b>Default Value:</b>{$globals[glob].global_value|replace:"\n":"<br>\n"|replace:" ":" "|replace:"\t":" "}</p> - {if $globals[glob].global_conflicts.conflict_type} - <p><b>Conflicts with globals:</b> - {section name=me loop=$globals[glob].global_conflicts.conflicts} - {$globals[glob].global_conflicts.conflicts[me]}<br /> - {/section} - </p> - {/if} - </div> - <p class="top">[ <a href="#top">Top</a> ]</p> -{/if} -{/section} -</div> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/header.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/header.tpl deleted file mode 100755 index f23687eb..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/header.tpl +++ /dev/null @@ -1,101 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> -<html> -<head> - <title>{$title}</title> - <link rel="stylesheet" type="text/css" id="layout" href="{$subdir}media/layout.css" media="screen"> - <link rel="stylesheet" type="text/css" href="{$subdir}media/style.css" media="all"> - <link rel="stylesheet" type="text/css" href="{$subdir}media/print.css" media="print"> -</head> - -<body> -<div id="header"> - <div id="navLinks"> - {assign var="packagehaselements" value=false} - {foreach from=$packageindex item=thispackage} - {if in_array($package, $thispackage)} - {assign var="packagehaselements" value=true} - {/if} - {/foreach} - {if $packagehaselements} - [ <a href="{$subdir}classtrees_{$package}.html">Class Tree: {$package}</a> ] - [ <a href="{$subdir}elementindex_{$package}.html">Index: {$package}</a> ] - {/if} - [ <a href="{$subdir}elementindex.html">All elements</a> ] - </div> - <div id="packagePosition"> - <div id="packageTitle2">{$package}</div> - <div id="packageTitle">{$package}</div> - <div id="elementPath">{$subpackage} · {$current}</div> - </div> -</div> - -<div id="nav" class="small"> -{if count($ric) >= 1} - <div id="ric"> - {section name=ric loop=$ric} - <p><a href="{$subdir}{$ric[ric].file}">{$ric[ric].name}</a></p> - {/section} - </div> -{/if} -{if $hastodos} - <div id="todolist"> - <p><a href="{$subdir}{$todolink}">Todo List</a></p> - </div> -{/if} - <div id="packages"> - Packages: - {section name=packagelist loop=$packageindex} - <p><a href="{$subdir}{$packageindex[packagelist].link}">{$packageindex[packagelist].title}</a></p> - {/section} - </div> -{if $tutorials} - <div id="tutorials"> - Tutorials/Manuals:<br /> - {if $tutorials.pkg} - <strong>Package-level:</strong> - {section name=ext loop=$tutorials.pkg} - {$tutorials.pkg[ext]} - {/section} - {/if} - {if $tutorials.cls} - <strong>Class-level:</strong> - {section name=ext loop=$tutorials.cls} - {$tutorials.cls[ext]} - {/section} - {/if} - {if $tutorials.proc} - <strong>Procedural-level:</strong> - {section name=ext loop=$tutorials.proc} - {$tutorials.proc[ext]} - {/section} - {/if} - </div> -{/if} - - {if !$noleftindex}{assign var="noleftindex" value=false}{/if} - {if !$noleftindex} - <div id="index"> - <div id="files"> - {if $compiledfileindex} - Files:<br> - {eval var=$compiledfileindex}{/if} - </div> - <div id="interfaces"> - {if $compiledinterfaceindex}Interfaces:<br> - {eval var=$compiledinterfaceindex}{/if} - </div> - <div id="classes"> - {if $compiledclassindex}Classes:<br> - {eval var=$compiledclassindex}{/if} - </div> - </div> - {/if} -</div> - -<div id="body"> - {if !$hasel}{assign var="hasel" value=false}{/if} - {if $eltype == 'class' && $is_interface}{assign var="eltype" value="interface"}{/if} - {if $hasel} - <h1>{$eltype|capitalize}: {$class_name}</h1> - <p style="margin: 0px;">Source Location: {$source_location}</p> - {/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/include.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/include.tpl deleted file mode 100755 index f2f5625d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/include.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{if count($includes) > 0} -Includes:<br> -{section name=includes loop=$includes} -{$includes[includes].include_name}({$includes[includes].include_value}) <span class="linenumber">[line {if $includes[includes].slink}{$includes[includes].slink}{else}{$includes[includes].line_number}{/if}]</span> -<br /> -{include file="docblock.tpl" sdesc=$includes[includes].sdesc desc=$includes[includes].desc tags=$includes[includes].tags} -{/section} -{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/index.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/index.tpl deleted file mode 100755 index a493f70e..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/index.tpl +++ /dev/null @@ -1,7 +0,0 @@ -{include file="header.tpl"} -{if $contents} -{$contents} -{else} -{include file="blank.tpl"} -{/if} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/layout.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/layout.css deleted file mode 100755 index 1184cf1f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/layout.css +++ /dev/null @@ -1,81 +0,0 @@ -#header { - z-index: 100; - position: absolute; - top: 0px; - left: 0px; - width: 100%; - height: 5%; -} -#nav { - z-index: 200; - position: absolute; - top: 5%; - left: 0px; - width: 15%; - height: 1600px; - clip: auto; - overflow: auto; -} -#body { - position: absolute; - top: 6%; - left: 17%; - width: 82%; -} -#content { - clear: both; - top: -1px; -} -#packagePosition { - position: absolute; - right: 5px; - top: 0px; - width: 35%; - height: 100%; -} -#packageTitle { - position: absolute; - right: 0px; -} -#packageTitle2 { - position: absolute; - right: -3px; - top: -2px; -} -#elementPath { - position: absolute; - right: 0px; - bottom: 0px; -} -#navLinks { - position: absolute; - top: 0px; - left: 10px; - height: 100%; - -} -.leftCol { - width: auto; - float: left; -} -.middleCol { - width: auto; - float: left; -} -.rightCol { - width: auto; - float: left; -} -#credit { - margin-top: 20px; - margin-bottom: 50px; -} - -/** Fixed layout for nav on mozilla */ -head:first-child+body div#header { - position: fixed; -} -head:first-child+body div#nav { - position: fixed; - height: 94% -} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/media/layout.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/media/layout.css deleted file mode 100755 index 1184cf1f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/media/layout.css +++ /dev/null @@ -1,81 +0,0 @@ -#header { - z-index: 100; - position: absolute; - top: 0px; - left: 0px; - width: 100%; - height: 5%; -} -#nav { - z-index: 200; - position: absolute; - top: 5%; - left: 0px; - width: 15%; - height: 1600px; - clip: auto; - overflow: auto; -} -#body { - position: absolute; - top: 6%; - left: 17%; - width: 82%; -} -#content { - clear: both; - top: -1px; -} -#packagePosition { - position: absolute; - right: 5px; - top: 0px; - width: 35%; - height: 100%; -} -#packageTitle { - position: absolute; - right: 0px; -} -#packageTitle2 { - position: absolute; - right: -3px; - top: -2px; -} -#elementPath { - position: absolute; - right: 0px; - bottom: 0px; -} -#navLinks { - position: absolute; - top: 0px; - left: 10px; - height: 100%; - -} -.leftCol { - width: auto; - float: left; -} -.middleCol { - width: auto; - float: left; -} -.rightCol { - width: auto; - float: left; -} -#credit { - margin-top: 20px; - margin-bottom: 50px; -} - -/** Fixed layout for nav on mozilla */ -head:first-child+body div#header { - position: fixed; -} -head:first-child+body div#nav { - position: fixed; - height: 94% -} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/media/print.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/media/print.css deleted file mode 100755 index 3fcc2baa..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/media/print.css +++ /dev/null @@ -1,25 +0,0 @@ -BODY { - margin: 1em; -} -#header { -} -#nav { - display: none; -} -#packagePosition { - text-align: right; -} -#packageTitle { - display: inline; - margin: 5px; -} -#packageTitle2 { - display: none; -} -#elementPath { - display: inline; - margin: 5px; -} -#navLinks { - display: none; -} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/media/style.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/media/style.css deleted file mode 100755 index 041c489a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/media/style.css +++ /dev/null @@ -1,236 +0,0 @@ -BODY { - background: #FFFFFF; - font-family: Arial; - margin: 0px; - padding: 0px; -} -A { - color: #CC4400; - font-weight: bold; -} -A:Hover { - color: white; - background-color: #334B66; - font-weight: bold; - text-decoration: none; -} - -#packageTitle { - font-size: 160%; - font-weight: bold; - text-align: right; - color: #CC6633; -} -#packageTitle2 { - font-size: 160%; - font-weight: bold; - text-align: right; - color: #334B66; - background-color: #6699CC; -} -#packageLinks { - background-color: #6699CC; -} -#header { - background-color: #6699CC; - border-bottom: solid #334B66 4px; -} -#nav { - background-color: #6699CC; - padding: 4px; - border-right: solid #334B66 4px; -} -#index { - padding: 18px; -} -hr { - width: 80%; - background-color: #6699CC; - color: #6699CC; - margin-top: 15px; - margin-bottom: 15px; - clear: both; -} -.links { - text-align: left; - width: 98%; - margin: auto; -} -UL { - margin: 0px; - padding: 0px; - padding-left: 5px; - list-style-type: none; -} -li { - text-indent: -15px; - padding-bottom: 2px; - padding-left: 14px; -} -dd { - margin-bottom: .5em; -} -.small { - font-size: 80%; -} -h3 { -} -.middleCol { - margin-left: -1px; - border-right: dotted gray 1px; - border-left: dotted gray 1px; - padding: 5px; -} -.leftCol { - border-right: dotted gray 1px; - padding: 5px; -} -.rightCol { - margin-left: -1px; - border-left: dotted gray 1px; - padding: 5px; -} -#elementPath { - font-size: 14px; - font-weight: bold; - color: #334B66; -} -.constructor { - /*border: dashed #334B66 1px;*/ - font-weight: bold; -} -#credit { - text-align: center; - color: #334B66; - font-weight: bold; -} -div.contents { - border: solid #334B66 1px; - padding: 3px; - margin-bottom: 5px; - clear: all; -} -H1 { - margin: 0px; -} -H2 { - margin: 0px; - margin-bottom: 2px; -} -H3 { - margin: 0px; -} -H4 { - margin: 0px; -} -#classTree { - padding: 0px; - margin: 0px; -} -div.indent { - margin-left: 15px; -} -.warning { - color: red; - background-color: #334B66; - font-weight: bold; -} -code { - font-family: fixed; - padding: 3px; - color: #334B66; - background-color: #dddddd; -} -.type { - color: #334B66; -} -.value { - color: #334B66; - border: dotted #334B66 1px; -} -.top { - color: #334B66; - border-bottom: dotted #334B66 1px; - padding-bottom: 4px; -} -.php-src, .php, .listing { - font-family: fixed; - padding: 3px; - color: #334B66; - background-color: #dddddd; - font-family: 'Courier New', Courier, monospace; font-weight: normal; -} -DIV#nav DL { - margin: 0px; - padding: 0px; - list-style-type: none; -} -div.classtree { - font-size: 130%; - font-weight: bold; - background-color: #CC6633; - border: dotted #334B66 2px; -} -span.linenumber,p.linenumber { - font-weight: bold,italic; -} -span.smalllinenumber { - font-weight: bold,italic; - font-size: 9pt; -} -ul { - margin-left: 0px; - padding-left: 8px; -} -/* Syntax highlighting */ - -.src-code { background-color: #f5f5f5; border: 1px solid #ccc9a4; padding: 0px; margin : 0px} -.src-line { font-family: 'Courier New', Courier, monospace; font-weight: normal; } -/*.src-code pre { }*/ - -.src-comm { color: green; } -.src-id { } -.src-inc { color: #0000FF; } -.src-key { color: #0000FF; } -.src-num { color: #CC0000; } -.src-str { color: #66cccc; } -.src-sym { font-weight: bold; } -.src-var { } - -.src-php { font-weight: bold; } - -.src-doc { color: #009999 } -.src-doc-close-template { color: #0000FF } -.src-doc-coretag { color: #0099FF; font-weight: bold } -.src-doc-inlinetag { color: #0099FF } -.src-doc-internal { color: #6699cc } -.src-doc-tag { color: #0080CC } -.src-doc-template { color: #0000FF } -.src-doc-type { font-style: italic } -.src-doc-var { font-style: italic } - -.tute-tag { color: #009999 } -.tute-attribute-name { color: #0000FF } -.tute-attribute-value { color: #0099FF } -.tute-entity { font-weight: bold; } -.tute-comment { font-style: italic } -.tute-inline-tag { color: #636311; font-weight: bold } - -/* tutorial */ - -.authors { } -.author { font-style: italic; font-weight: bold } -.author-blurb { margin: .5em 0em .5em 2em; font-size: 85%; font-weight: normal; font-style: normal } -.example { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; } -.listing { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; white-space: nowrap; } -.release-info { font-size: 85%; font-style: italic; margin: 1em 0em } -.ref-title-box { } -.ref-title { } -.ref-purpose { font-style: italic; color: #666666 } -.ref-synopsis { } -.title { font-weight: bold; margin: 1em 0em 0em 0em; padding: .25em; - border: 2px solid #CC6633; background-color: #6699CC } -.cmd-synopsis { margin: 1em 0em } -.cmd-title { font-weight: bold } -.toc { margin-left: 2em; padding-left: 0em } - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/method.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/method.tpl deleted file mode 100755 index f9bcdd38..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/method.tpl +++ /dev/null @@ -1,123 +0,0 @@ -{section name=methods loop=$methods} -{if $methods[methods].static} -{if $show == 'summary'} - <p>static method {$methods[methods].function_call}, {$methods[methods].sdesc}</p> -{else} - <a name="{$methods[methods].method_dest}"></a> - <p></p> - <h3>static {$methods[methods].function_name}</h3> - <div class="indent"> - <p> - <code>static {$methods[methods].function_return} {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}( -{if count($methods[methods].ifunction_call.params)} -{section name=params loop=$methods[methods].ifunction_call.params} -{if $smarty.section.params.iteration != 1}, {/if} -{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}{$methods[methods].ifunction_call.params[params].type} -{$methods[methods].ifunction_call.params[params].name}{if $methods[methods].ifunction_call.params[params].hasdefault} = {$methods[methods].ifunction_call.params[params].default}]{/if} -{/section} -{/if})</code> - </p> - - <p class="linenumber">[line {if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}]</p> - {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags} - -{if $methods[methods].descmethod} - <p>Overridden in child classes as:<br /> - {section name=dm loop=$methods[methods].descmethod} - <dl> - <dt>{$methods[methods].descmethod[dm].link}</dt> - <dd>{$methods[methods].descmethod[dm].sdesc}</dd> - </dl> - {/section}</p> -{/if} -{if $methods[methods].method_overrides}<p>Overrides {$methods[methods].method_overrides.link} ({$methods[methods].method_overrides.sdesc|default:"parent method not documented"})</p>{/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} - - <h4>Parameters:</h4> - <ul> - {section name=params loop=$methods[methods].params} - <li> - <span class="type">{$methods[methods].params[params].datatype}</span> - <b>{$methods[methods].params[params].var}</b> - - - {$methods[methods].params[params].data}</li> - {/section} - </ul> - </div> - <p class="top">[ <a href="#top">Top</a> ]</p> -{/if} -{/if} -{/section} - -{section name=methods loop=$methods} -{if !$methods[methods].static} -{if $show == 'summary'} - <p>{if $methods[methods].ifunction_call.constructor}constructor {elseif $methods[methods].ifunction_call.destructor}destructor {else}method {/if}{$methods[methods].function_call}, {$methods[methods].sdesc}</p> -{else} - <a name="{$methods[methods].method_dest}"></a> - <p></p> - <h3>{$methods[methods].function_name}</h3> - <div class="indent"> - <p> - <code>{$methods[methods].function_return} {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}( -{if count($methods[methods].ifunction_call.params)} -{section name=params loop=$methods[methods].ifunction_call.params} -{if $smarty.section.params.iteration != 1}, {/if} -{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}{$methods[methods].ifunction_call.params[params].type} -{$methods[methods].ifunction_call.params[params].name}{if $methods[methods].ifunction_call.params[params].hasdefault} = {$methods[methods].ifunction_call.params[params].default}]{/if} -{/section} -{/if})</code> - </p> - - <p class="linenumber">[line {if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}]</p> - {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags} - -{if $methods[methods].descmethod} - <p>Overridden in child classes as:<br /> - {section name=dm loop=$methods[methods].descmethod} - <dl> - <dt>{$methods[methods].descmethod[dm].link}</dt> - <dd>{$methods[methods].descmethod[dm].sdesc}</dd> - </dl> - {/section}</p> -{/if} -{if $methods[methods].method_overrides}<p>Overrides {$methods[methods].method_overrides.link} ({$methods[methods].method_overrides.sdesc|default:"parent method not documented"})</p>{/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} - - <h4>Parameters:</h4> - <ul> - {section name=params loop=$methods[methods].params} - <li> - <span class="type">{$methods[methods].params[params].datatype}</span> - <b>{$methods[methods].params[params].var}</b> - - - {$methods[methods].params[params].data}</li> - {/section} - </ul> - </div> - <p class="top">[ <a href="#top">Top</a> ]</p> -{/if} -{/if} -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/packages.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/packages.tpl deleted file mode 100755 index 0967e6e7..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/packages.tpl +++ /dev/null @@ -1,3 +0,0 @@ -{section name=packages loop=$packages} -<a href="{$packages[packages].link}">{$packages[packages].title}</a> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/page.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/page.tpl deleted file mode 100755 index c3cb9fd1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/page.tpl +++ /dev/null @@ -1,31 +0,0 @@ -{include file="header.tpl" eltype="Procedural file" class_name=$name hasel=true contents=$pagecontents} - -<br> -<br> - -<div class="contents"> -{if $tutorial} -<span class="maintutorial">Main Tutorial: {$tutorial}</span> -{/if} -<h2>Classes:</h2> -<dl> -{section name=classes loop=$classes} -<dt>{$classes[classes].link}</dt> - <dd>{$classes[classes].sdesc}</dd> -{/section} -</dl> -</div> - -<h2>Page Details:</h2> -{include file="docblock.tpl" type="page"} -<hr> -{include file="include.tpl"} -<hr> -{include file="global.tpl"} -<hr> -{include file="define.tpl"} -<hr> -{include file="function.tpl"} - -{include file="footer.tpl"} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/pkgelementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/pkgelementindex.tpl deleted file mode 100755 index 0dabfdb7..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/pkgelementindex.tpl +++ /dev/null @@ -1,5 +0,0 @@ -{include file="header.tpl"} -<a name="top"></a> -<h1>Element index for package {$package}</h1> -{include file="basicindex.tpl" indexname=elementindex_$package} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/ric.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/ric.tpl deleted file mode 100755 index eff734c1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/ric.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl"} -<h1 align="center">{$name}</h1> -<pre> -{$contents|htmlentities} -</pre> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/style.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/style.css deleted file mode 100755 index 993997ae..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/style.css +++ /dev/null @@ -1,172 +0,0 @@ -BODY { - font-family: Arial; - margin: 0px; - padding: 0px; -} -A { - color: #CC4400; - font-weight: bold; -} -A:Hover { - color: white; - background-color: #334B66; - font-weight: bold; - text-decoration: none; -} - -#packageTitle { - font-size: 160%; - font-weight: bold; - text-align: right; - color: #CC6633; -} -#packageTitle2 { - font-size: 160%; - font-weight: bold; - text-align: right; - color: #334B66; - background-color: #6699CC; -} -#packageLinks { - background-color: #6699CC; -} -#header { - background-color: #6699CC; - border-bottom: solid #334B66 4px; -} -#nav { - background-color: #6699CC; - padding: 4px; - border-right: solid #334B66 4px; -} -#index { - padding: 18px; -} -hr { - width: 80%; - background-color: #6699CC; - color: #6699CC; - margin-top: 15px; - margin-bottom: 15px; - clear: both; -} -.links { - text-align: left; - width: 98%; - margin: auto; -} -UL { - margin: 0px; - padding: 0px; - padding-left: 5px; - list-style-type: none; -} -li { - text-indent: -15px; - padding-bottom: 2px; - padding-left: 14px; -} -dd { - margin-bottom: .5em; -} -.small { - font-size: 80%; -} -h3 { -} -.middleCol { - margin-left: -1px; - border-right: dotted gray 1px; - border-left: dotted gray 1px; - padding: 5px; -} -.leftCol { - border-right: dotted gray 1px; - padding: 5px; -} -.rightCol { - margin-left: -1px; - border-left: dotted gray 1px; - padding: 5px; -} -#elementPath { - font-size: 14px; - font-weight: bold; - color: #334B66; -} -.constructor { - /*border: dashed #334B66 1px;*/ - font-weight: bold; -} -#credit { - text-align: center; - color: #334B66; - font-weight: bold; -} -div.contents { - border: solid #334B66 1px; - padding: 3px; - margin-bottom: 5px; - clear: all; -} -H1 { - margin: 0px; -} -H2 { - margin: 0px; - margin-bottom: 2px; -} -H3 { - margin: 0px; -} -H4 { - margin: 0px; -} -#classTree { - padding: 0px; - margin: 0px; -} -div.indent { - margin-left: 15px; -} -.warning { - color: red; - background-color: #334B66; - font-weight: bold; -} -code { - font-family: fixed; - padding: 3px; - color: #334B66; - background-color: #dddddd; -} -.type { - color: #334B66; -} -.value { - color: #334B66; - border: dotted #334B66 1px; -} -.top { - color: #334B66; - border-bottom: dotted #334B66 1px; - padding-bottom: 4px; -} -DIV#nav DL { - margin: 0px; - padding: 0px; - list-style-type: none; -} -div.classtree { - font-size: 130%; - font-weight: bold; - background-color: #CC6633; - border: dotted #334B66 2px; -} -span.linenumber,p.linenumber { - font-weight: bold,italic; -} -span.smalllinenumber { - font-weight: bold,italic; - font-size: 9pt; -} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/todolist.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/todolist.tpl deleted file mode 100755 index f929ccdb..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/todolist.tpl +++ /dev/null @@ -1,14 +0,0 @@ -{include file="header.tpl" title="Todo List"} -<div align="center"><h1>Todo List</h1></div> -{foreach from=$todos key=todopackage item=todo} -<h2>{$todopackage}</h2> -{section name=todo loop=$todo} -<h3>{$todo[todo].link}</h3> -<ul> -{section name=t loop=$todo[todo].todos} - <li>{$todo[todo].todos[t]}</li> -{/section} -</ul> -{/section} -{/foreach} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/tutorial.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/tutorial.tpl deleted file mode 100755 index 71fbb4fe..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/tutorial.tpl +++ /dev/null @@ -1,32 +0,0 @@ -{include file="header.tpl" title=$title} -{if $nav} -<table width="100%" border="0" cellpadding="0" cellspacing="0"> -<tr> -<td width="10%" align="left" valign="bottom">{if $prev}<a href= -"{$prev}">{/if}Prev{if $prev}</a>{/if}</td> -<td width="80%" align="center" valign="bottom"></td> -<td width="10%" align="right" valign="bottom">{if $next}<a href= -"{$next}">{/if}Next{if $next}</a>{/if}</td> -</tr> -</table> -{/if} -{$contents} -{if $nav} -<table width="100%" border="0" cellpadding="0" cellspacing="0"> -<tr> -<td width="33%" align="left" valign="top">{if $prev}<a href="{$prev}">{/if} -Prev{if $prev}</a>{/if}</td> -<td width="34%" align="center" valign="top">{if $up}<a href= -"{$up}">Up</a>{else} {/if}</td> -<td width="33%" align="right" valign="top">{if $next}<a href= -"{$next}">{/if}Next{if $next}</a>{/if}</td> -</tr> - -<tr> -<td width="33%" align="left" valign="top">{if $prevtitle}{$prevtitle}{/if}</td> -<td width="34%" align="center" valign="top">{if $uptitle}{$uptitle}{/if}</td> -<td width="33%" align="right" valign="top">{if $nexttitle}{$nexttitle}{/if}</td> -</tr> -</table> -{/if} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/tutorial_toc.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/tutorial_toc.tpl deleted file mode 100755 index 3d22d403..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/tutorial_toc.tpl +++ /dev/null @@ -1,29 +0,0 @@ -{if count($toc)} -<h1 align="center">Table of Contents</h1> -<ul> -{section name=toc loop=$toc} -{if $toc[toc].tagname == 'refsect1'} -{assign var="context" value="refsect1"} -{$toc[toc].link}<br /> -{/if} -{if $toc[toc].tagname == 'refsect2'} -{assign var="context" value="refsect2"} - {$toc[toc].link}<br /> -{/if} -{if $toc[toc].tagname == 'refsect3'} -{assign var="context" value="refsect3"} - {$toc[toc].link}<br /> -{/if} -{if $toc[toc].tagname == 'table'} -{if $context == 'refsect2'} {/if} -{if $context == 'refsect3'} {/if} -Table: {$toc[toc].link} -{/if} -{if $toc[toc].tagname == 'example'} -{if $context == 'refsect2'} {/if} -{if $context == 'refsect3'} {/if} -Table: {$toc[toc].link} -{/if} -{/section} -</ul> -{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/tutorial_tree.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/tutorial_tree.tpl deleted file mode 100755 index ccb0289e..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/tutorial_tree.tpl +++ /dev/null @@ -1,5 +0,0 @@ -<ul> - <li><a href="{$main.link}">{$main.title|strip_tags}</a> -{if $kids}{$kids}</li>{/if} -</ul> - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/var.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/var.tpl deleted file mode 100755 index 262f427a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/Smarty/templates/default/templates/var.tpl +++ /dev/null @@ -1,36 +0,0 @@ -{section name=vars loop=$vars} -{if $vars[vars].static} -{if $show == 'summary'} - static var {$vars[vars].var_name}, {$vars[vars].sdesc}<br> -{else} - <a name="{$vars[vars].var_dest}"></a> - <p></p> - <h4>static {$vars[vars].var_name}{if $vars[vars].has_default} = <span class="value">{$vars[vars].var_default|replace:"\n":"<br>\n"|replace:" ":" "|replace:"\t":" "}</span>{/if}</h4> - <div class="indent"> - <p class="linenumber">[line {if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}]</p> - {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} - <p><b>Type:</b> {$vars[vars].var_type}</p> - <p><b>Overrides:</b> {$vars[vars].var_overrides}</p> - </div> - <p class="top">[ <a href="#top">Top</a> ]</p> -{/if} -{/if} -{/section} -{section name=vars loop=$vars} -{if !$vars[vars].static} -{if $show == 'summary'} - var {$vars[vars].var_name}, {$vars[vars].sdesc}<br> -{else} - <a name="{$vars[vars].var_dest}"></a> - <p></p> - <h4>{$vars[vars].var_name}{if $vars[vars].has_default} = <span class="value">{$vars[vars].var_default|replace:"\n":"<br>\n"|replace:" ":" "|replace:"\t":" "}</span>{/if}</h4> - <div class="indent"> - <p class="linenumber">[line {if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}]</p> - {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} - <p><b>Type:</b> {$vars[vars].var_type}</p> - <p><b>Overrides:</b> {$vars[vars].var_overrides}</p> - </div> - <p class="top">[ <a href="#top">Top</a> ]</p> -{/if} -{/if} -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/HTMLframesConverter.inc b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/HTMLframesConverter.inc deleted file mode 100755 index 8bab7d99..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/HTMLframesConverter.inc +++ /dev/null @@ -1,1914 +0,0 @@ -<?php -/** - * HTML original framed output converter, modified to use Smarty Template. - * This Converter takes output from the {@link Parser} and converts it to HTML-ready output for use with {@link Smarty}. - * - * phpDocumentor :: automatic documentation generator - * - * PHP versions 4 and 5 - * - * Copyright (c) 2002-2006 Gregory Beaver - * - * LICENSE: - * - * This library is free software; you can redistribute it - * and/or modify it under the terms of the GNU Lesser General - * Public License as published by the Free Software Foundation; - * either version 2.1 of the License, or (at your option) any - * later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * - * @package Converters - * @subpackage HTMLframes - * @author Gregory Beaver <cellog@php.net> - * @copyright 2002-2006 Gregory Beaver - * @license http://www.opensource.org/licenses/lgpl-license.php LGPL - * @version CVS: $Id: HTMLframesConverter.inc 234145 2007-04-19 20:20:57Z ashnazg $ - * @filesource - * @link http://www.phpdoc.org - * @link http://pear.php.net/PhpDocumentor - * @see parserDocBlock, parserInclude, parserPage, parserClass - * @see parserDefine, parserFunction, parserMethod, parserVar - * @since 1.2 - */ -/** - * HTML output converter. - * This Converter takes output from the {@link Parser} and converts it to HTML-ready output for use with {@link Smarty}. - * - * @package Converters - * @subpackage HTMLframes - * @see parserDocBlock, parserInclude, parserPage, parserClass, parserDefine, parserFunction, parserMethod, parserVar - * @author Greg Beaver <cellog@php.net> - * @since 1.2 - * @version $Id: HTMLframesConverter.inc 234145 2007-04-19 20:20:57Z ashnazg $ - */ -class HTMLframesConverter extends Converter -{ - /** - * This converter knows about the new root tree processing - * In order to fix PEAR Bug #6389 - * @var boolean - */ - var $processSpecialRoots = true; - /** - * Smarty Converter wants elements sorted by type as well as alphabetically - * @see Converter::$sort_page_contents_by_type - * @var boolean - */ - var $sort_page_contents_by_type = true; - /** @var string */ - var $outputformat = 'HTML'; - /** @var string */ - var $name = 'frames'; - /** - * indexes of elements by package that need to be generated - * @var array - */ - var $leftindex = array('classes' => true, 'pages' => true, 'functions' => true, 'defines' => false, 'globals' => false); - - /** - * output directory for the current procedural page being processed - * @var string - */ - var $page_dir; - - /** - * target directory passed on the command-line. - * {@link $targetDir} is malleable, always adding package/ and package/subpackage/ subdirectories onto it. - * @var string - */ - var $base_dir; - - /** - * output directory for the current class being processed - * @var string - */ - var $class_dir; - - /** - * array of converted package page names. - * Used to link to the package page in the left index - * @var array Format: array(package => 1) - */ - var $package_pages = array(); - - /** - * controls formatting of parser informative output - * - * Converter prints: - * "Converting /path/to/file.php... Procedural Page Elements... Classes..." - * Since HTMLdefaultConverter outputs files while converting, it needs to send a \n to start a new line. However, if there - * is more than one class, output is messy, with multiple \n's just between class file output. This variable prevents that - * and is purely cosmetic - * @var boolean - */ - var $juststarted = false; - - /** - * contains all of the template procedural page element loop data needed for the current template - * @var array - */ - var $current; - - /** - * contains all of the template class element loop data needed for the current template - * @var array - */ - var $currentclass; - var $wrote = false; - var $ric_set = array(); - - /** - * sets {@link $base_dir} to $targetDir - * @see Converter() - */ - function HTMLframesConverter(&$allp, &$packp, &$classes, &$procpages, $po, $pp, $qm, $targetDir, $templateDir, $title) - { - Converter::Converter($allp, $packp, $classes, $procpages,$po, $pp, $qm, $targetDir, $templateDir, $title); - $this->base_dir = $targetDir; - } - - /** - * @deprecated in favor of PHP 4.3.0+ tokenizer-based source highlighting - */ - function unmangle($sourcecode) - { - $sourcecode = str_replace('<code>','<pre>',$sourcecode); - $sourcecode = str_replace('</code>','</pre>',$sourcecode); - $sourcecode = str_replace('<br />',"\n",$sourcecode); - $sourcecode = str_replace(' ',' ',$sourcecode); - $sourcecode = str_replace('<','<',$sourcecode); - $sourcecode = str_replace('>','>',$sourcecode); - $sourcecode = str_replace('&','&',$sourcecode); - return $sourcecode; - } - - /** - * @param string full path to the source file - * @param string fully highlighted source code - */ - function writeSource($path, $value) - { - $templ = &$this->newSmarty(); - $pathinfo = $this->proceduralpages->getPathInfo($path, $this); - $templ->assign('source',$value); - $templ->assign('package',$pathinfo['package']); - $templ->assign('subpackage',$pathinfo['subpackage']); - $templ->assign('name',$pathinfo['name']); - $templ->assign('source_loc',$pathinfo['source_loc']); - $templ->assign('docs',$pathinfo['docs']); - $templ->assign("subdir",'../'); - $templ->register_outputfilter('HTMLframes_outputfilter'); - $this->setTargetDir($this->getFileSourcePath($this->base_dir)); - phpDocumentor_out("\n"); - $this->setSourcePaths($path); - $this->writefile($this->getFileSourceName($path).'.html',$templ->fetch('filesource.tpl')); - } - - function writeExample($title, $path, $source) - { - $templ = &$this->newSmarty(); - $templ->assign('source',$source); - if (empty($title)) - { - $title = 'example'; - addWarning(PDERROR_EMPTY_EXAMPLE_TITLE, $path, $title); - } - $templ->assign('title',$title); - $templ->assign('file',$path); - $templ->assign("subdir",'../'); - $templ->register_outputfilter('HTMLframes_outputfilter'); - $this->setTargetDir($this->base_dir . PATH_DELIMITER . '__examplesource'); - phpDocumentor_out("\n"); - $this->writefile('exsource_'.$path.'.html',$templ->fetch('examplesource.tpl')); - } - - function getExampleLink($path, $title) - { - return $this->returnLink('{$subdir}__examplesource' . PATH_DELIMITER . 'exsource_'.$path.'.html',$title); - } - - function getSourceLink($path) - { - return $this->returnLink('{$subdir}__filesource/' . - $this->getFileSourceName($path).'.html','Source Code for this file'); - } - - /** - * Retrieve a Converter-specific anchor to a segment of a source code file - * parsed via a {@tutorial tags.filesource.pkg} tag. - * @param string full path to source file - * @param string name of anchor - * @param string link text, if this is a link - * @param boolean returns either a link or a destination based on this - * parameter - * @return string link to an anchor, or the anchor - */ - function getSourceAnchor($sourcefile,$anchor,$text = '',$link = false) - { - if ($link) { - return $this->returnLink('{$subdir}__filesource/' . - $this->getFileSourceName($sourcefile) . '.html#a' . $anchor, $text); - } else { - return '<a name="a'.$anchor.'"></a>'; - } - } - - /** - * Return a line of highlighted source code with formatted line number - * - * If the $path is a full path, then an anchor to the line number will be - * added as well - * @param integer line number - * @param string highlighted source code line - * @param false|string full path to @filesource file this line is a part of, - * if this is a single line from a complete file. - * @return string formatted source code line with line number - */ - function sourceLine($linenumber, $line, $path = false) - { - $extra = ''; - if (strlen(str_replace("\n", '', $line)) == 0) { - $extra = ' '; - } - if ($path) - { - return '<li><div class="src-line">' . $this->getSourceAnchor($path, $linenumber) . - str_replace("\n",'',$line) . $extra . - "</div></li>\n"; - } else - { - return '<li><div class="src-line">' . str_replace("\n",'',$line) . - "$extra</div></li>\n"; - } - } - - /** - * Used to convert the <<code>> tag in a docblock - * @param string - * @param boolean - * @return string - */ - function ProgramExample($example, $tutorial = false, $inlinesourceparse = null/*false*/, - $class = null/*false*/, $linenum = null/*false*/, $filesourcepath = null/*false*/) - { - return '<div class="src-code"><ol>' . parent::ProgramExample($example, $tutorial, $inlinesourceparse, $class, $linenum, $filesourcepath) - .'</ol></div>'; - } - - /** - * @param string - */ - function TutorialExample($example) - { - $trans = $this->template_options['desctranslate']; - $this->template_options['desctranslate'] = array(); - $example = '<ol>' . parent::TutorialExample($example) - .'</ol>'; - $this->template_options['desctranslate'] = $trans; - if (!isset($this->template_options['desctranslate'])) return $example; - if (!isset($this->template_options['desctranslate']['code'])) return $example; - $example = $this->template_options['desctranslate']['code'] . $example; - if (!isset($this->template_options['desctranslate']['/code'])) return $example; - return $example . $this->template_options['desctranslate']['/code']; - } - - function getCurrentPageLink() - { - return $this->curname . '.html'; - } - - /** - * Uses htmlspecialchars() on the input - */ - function postProcess($text) - { - if ($this->highlightingSource) { - return str_replace(array(' ',"\t"), array(' ', ' '), - htmlspecialchars($text)); - } - return htmlspecialchars($text); - } - - /** - * Use the template tutorial_toc.tpl to generate a table of contents for HTML - * @return string table of contents formatted for use in the current output format - * @param array format: array(array('tagname' => section, 'link' => returnsee link, 'id' => anchor name, 'title' => from title tag),...) - */ - function formatTutorialTOC($toc) - { - $template = &$this->newSmarty(); - $template->assign('toc',$toc); - return $template->fetch('tutorial_toc.tpl'); - } - - function &SmartyInit(&$templ) - { - if (!isset($this->package_index)) - foreach($this->all_packages as $key => $val) - { - if (isset($this->pkg_elements[$key])) - { - if (!isset($start)) $start = $key; - $this->package_index[] = array('link' => "li_$key.html", 'title' => $key); - } - } - $templ->assign("packageindex",$this->package_index); - $templ->assign("subdir",''); - return $templ; - } - - /** - * Writes out the template file of {@link $class_data} and unsets the template to save memory - * @see registerCurrentClass() - * @see parent::endClass() - */ - function endClass() - { - $a = '../'; - if (!empty($this->subpackage)) $a .= '../'; - if ($this->juststarted) - { - $this->juststarted = false; - phpDocumentor_out("\n"); - flush(); - } - $this->setTargetDir($this->base_dir . PATH_DELIMITER . $this->class_dir); - $this->class_data->assign("subdir",$a); - $this->class_data->register_outputfilter('HTMLframes_outputfilter'); - $this->writefile($this->class . '.html',$this->class_data->fetch('class.tpl')); - unset($this->class_data); - } - - /** - * Writes out the template file of {@link $page_data} and unsets the template to save memory - * @see registerCurrent() - * @see parent::endPage() - */ - function endPage() - { - $this->package = $this->curpage->package; - $this->subpackage = $this->curpage->subpackage; - $a = '../'; - if (!empty($this->subpackage)) $a .= '../'; - $this->setTargetDir($this->base_dir . PATH_DELIMITER . $this->page_dir); - $this->page_data->assign("package",$this->package); - $this->page_data->assign("subdir",$a); - $this->page_data->register_outputfilter('HTMLframes_outputfilter'); - $this->writefile($this->page . '.html',$this->page_data->fetch('page.tpl')); - unset($this->page_data); - } - - /** - * @param string - * @param string - * @return string <a href="'.$link.'">'.$text.'</a> - */ - function returnLink($link,$text) - { - return '<a href="'.$link.'">'.$text.'</a>'; - } - - function makeLeft() - { - foreach($this->page_elements as $package => $o1) - { - foreach($o1 as $subpackage => $links) - { - for($i=0;$i<count($links);$i++) - { - $left[$package][$subpackage]['files'][] = - array("link" => $this->getId($links[$i]), "title" => $links[$i]->name); - } - } - } - $interfaces = $classes = false; - foreach($this->class_elements as $package => $o1) - { - foreach($o1 as $subpackage => $links) - { - for($i=0;$i<count($links);$i++) - { - $class = $this->classes->getClassByPackage($links[$i]->name, $links[$i]->package); - $isinterface = $isclass = false; - if ($class->isInterface()) { - $isinterface = true; - $interfaces = true; - } else { - $isclass = true; - $classes = true; - } - if ($class && isset($class->docblock) && $class->docblock->hasaccess) { - $left[$package][$subpackage]['classes'][] = - array("link" => $this->getId($links[$i]), - "title" => $links[$i]->name, - 'is_interface' => $isinterface, - 'is_class' => $isclass, - "access" => $class->docblock->tags['access'][0]->value, - "abstract" => isset ($class->docblock->tags['abstract'][0])); - } else { - $left[$package][$subpackage]['classes'][] = - array("link" => $this->getId($links[$i]), - "title" => $links[$i]->name, - 'is_interface' => $isinterface, - 'is_class' => $isclass, - "access" => 'public', - "abstract" => isset ($class->docblock->tags['abstract'][0])); - } - } - } - } - foreach($this->function_elements as $package => $o1) - { - foreach($o1 as $subpackage => $links) - { - for($i=0;$i<count($links);$i++) - { - $left[$package][$subpackage]['functions'][] = - array("link" => $this->getId($links[$i]), "title" => $links[$i]->name); - } - } - } - $ret = array(); - foreach($left as $package => $r) - { - $pd = 'blank'; - if (isset($this->package_pages[$package])) $pd = $package.'/package_'.$package.'.html'; - if (!isset($r[''])) - { - $pt = false; - $ptnoa = false; - $ptt = $package; - if ($t = $this->hasTutorial('pkg',$package,$package,'')) - { - $pt = $t->getLink($this); - $ptnoa = $this->getId($t->getLink($this,true)); - $ptt = $t->getTitle($this); - } - $tutes = array(); - foreach($this->tutorial_tree as $root => $tr) - { - if ($tr['tutorial']->package == $package && $tr['tutorial']->subpackage == '') { - $tutes[$tr['tutorial']->tutorial_type][] = - $this->getTutorialTree($tr['tutorial']); - } - } - if (isset($this->childless_tutorials[$package][$subpackage])) - { - foreach($this->childless_tutorials[$package][$subpackage] as $ext => $other) - { - foreach($other as $tutorial) - { - $tutes[$tutorial->tutorial_type][] = $this->getTutorialTree($tutorial); - } - } - } - $ret[$package][] = - array( - 'package' => $package, - 'subpackage' => '', - 'packagedoc' => $pd, - 'packagetutorial' => $pt, - 'packagetutorialnoa' => $ptnoa, - 'packagetutorialtitle' => $ptt, - 'files' => array(), - 'functions' => array(), - 'classes' => array(), - 'tutorials' => $tutes, - ); - } - foreach($r as $subpackage => $info) - { - $my = array(); - $my['package'] = $package; - if (isset($this->package_pages[$package])) - $my['packagedoc'] = $pd; - else - $my['packagedoc'] = 'blank'; - $my['subpackage'] = $subpackage; - if (empty($subpackage)) - { - if ($t = $this->hasTutorial('pkg',$package,$package,$subpackage)) - { - $my['packagetutorial'] = $t->getLink($this); - $my['packagetutorialnoa'] = $this->getId($t->getLink($this,true)); - $my['packagetutorialtitle'] = $t->getTitle($this); - } else - { - $my['packagetutorial'] = '<a href="blank.html">No Package-Level Tutorial</a>'; - $my['packagetutorialnoa'] = 'blank.html'; - $my['packagetutorialtitle'] = $package; - } - } else - { - if ($t = $this->hasTutorial('pkg',$subpackage,$package,$subpackage)) - { - $my['subpackagetutorial'] = $this->returnSee($this->getTutorialLink($t)); - $my['subpackagetutorialnoa'] = $this->getId($t->getLink($this,true)); - $my['subpackagetutorialtitle'] = $t->getTitle($this); - } else - { - $my['subpackagetutorial'] = false; - $my['subpackagetutorialnoa'] = false; - $my['subpackagetutorialtitle'] = $subpackage; - } - } - $tutes = array(); - foreach($this->tutorial_tree as $root => $tr) - { - if ($tr['tutorial']->package == $package && $tr['tutorial']->subpackage == $subpackage) - { - $tutes[$tr['tutorial']->tutorial_type][] = $this->getTutorialTree($tr['tutorial']); - } - } - $my['tutorials'] = $tutes; - $my['files'] = $my['classes'] = $my['functions'] = array(); - if (isset($info['files'])) - $my['files'] = $info['files']; - if (isset($info['classes'])) - $my['classes'] = $info['classes']; - $my['hasclasses'] = $classes; - $my['hasinterfaces'] = $interfaces; - if (isset($info['functions'])) - $my['functions'] = $info['functions']; - $ret[$package][] = $my; - } - } - return $ret; - } - - function getTutorialTree($tutorial,$k = false) - { - $ret = ''; - if (is_object($tutorial)) $tree = parent::getTutorialTree($tutorial); else $tree = $tutorial; -// debug($this->vardump_tree($tree));exit; - if (!$tree) - { - $template = &$this->newSmarty(); - $template->assign('subtree',false); - $template->assign('name',str_replace('.','',$tutorial->name)); - $template->assign('parent',false); - $template->assign('haskids',false); - $template->assign('kids',''); - $link = new tutorialLink; - $t = $tutorial; - $link->addLink('',$t->path,$t->name,$t->package,$t->subpackage,$t->getTitle($this)); - $main = array('link' => $this->getId($link), 'title' => $link->title); - $template->assign('main',$main); - return $template->fetch('tutorial_tree.tpl'); - } - if (isset($tree['kids'])) - { - foreach($tree['kids'] as $subtree) - { - $ret .= $this->getTutorialTree($subtree, true); - } - } - $template = &$this->newSmarty(); - $template->assign('subtree',$k); - $template->assign('name',str_replace('.','',$tree['tutorial']->name)); - $template->assign('parent',($k ? str_replace('.','',$tree['tutorial']->parent->name) : false)); - $template->assign('haskids',strlen($ret)); - $template->assign('kids',$ret); - $link = new tutorialLink; - $t = $tree['tutorial']; - $link->addLink('',$t->path,$t->name,$t->package,$t->subpackage,$t->getTitle($this)); - $main = array('link' => $this->getId($link), 'title' => $link->title); - $template->assign('main',$main); - $ret = $template->fetch('tutorial_tree.tpl'); - return $ret; - } - - /** - * HTMLdefaultConverter chooses to format both package indexes and the complete index here - * - * This function formats output for the elementindex.html and pkgelementindex.html template files. It then - * writes them to the target directory - * @see generateElementIndex(), generatePkgElementIndex() - */ - function formatPkgIndex() - { - list($package_indexes,$packages,$mletters) = $this->generatePkgElementIndexes(); - for($i=0;$i<count($package_indexes);$i++) - { - $template = &$this->newSmarty(); - $this->package = $package_indexes[$i]['package']; - $this->subpackage = ''; - $template->assign("index",$package_indexes[$i]['pindex']); - $template->assign("package",$package_indexes[$i]['package']); - $template->assign("letters",$mletters[$package_indexes[$i]['package']]); - $template->register_outputfilter('HTMLframes_outputfilter'); - $this->setTargetDir($this->base_dir); - $this->writefile('elementindex_'.$package_indexes[$i]['package'].'.html',$template->fetch('pkgelementindex.tpl')); - } - phpDocumentor_out("\n"); - flush(); - } - - /** - * HTMLdefaultConverter uses this function to format template index.html and packages.html - * - * This function generates the package list from {@link $all_packages}, eliminating any - * packages that don't have any entries in their package index (no files at all, due to @ignore - * or other factors). Then it uses the default package name as the first package index to display. - * It sets the right pane to be either a blank file with instructions on making package-level docs, - * or the package-level docs for the default package. - * @global string Used to set the starting package to display - */ - function formatIndex() - { - global $phpDocumentor_DefaultPackageName; - list($elindex,$mletters) = $this->generateElementIndex(); - $template = &$this->newSmarty(); - $template->assign("index",$elindex); - $template->assign("letters",$mletters); - $template->register_outputfilter('HTMLframes_outputfilter'); - phpDocumentor_out("\n"); - flush(); - $this->setTargetDir($this->base_dir); - $this->writefile('elementindex.html',$template->fetch('elementindex.tpl')); - usort($this->package_index,"HTMLframes_pindexcmp"); - $index = &$this->newSmarty(); - foreach($this->all_packages as $key => $val) - { - if (isset($this->pkg_elements[$key])) - { - if (!isset($start)) $start = $key; - if (!isset($this->package_pages[$key])) $this->writeNewPPage($key); - } - } - // Created index.html - if (isset($this->pkg_elements[$phpDocumentor_DefaultPackageName])) $start = $phpDocumentor_DefaultPackageName; - $this->package = $start; - $this->subpackage = ''; - $index->assign("package_count",count($this->pkg_elements)); - if (count($this->ric_set)) - $index->assign("package_count",2); - $index->assign("date",date("r",time())); - $index->assign("title",$this->title); - $index->assign("start","li_$start.html"); - $index->register_outputfilter('HTMLframes_outputfilter'); - if (isset($this->tutorials[$start]['']['pkg'][$start . '.pkg'])) - { - $index->assign("blank",$start.'/tutorial_'.$start.'.pkg'); - } elseif (isset($this->package_pages[$start])) - { - $index->assign("blank",$start.'/package_'.$start); - } - else - { - $index->assign("blank","blank"); - $blank = &$this->newSmarty(); - $blank->assign('package',$this->package); - $this->setTargetDir($this->base_dir); - $this->writefile("blank.html",$blank->fetch('blank.tpl')); - } - phpDocumentor_out("\n"); - flush(); - $this->setTargetDir($this->base_dir); - $this->writefile("index.html",$index->fetch('index.tpl')); - - // Create package index - $package = &$this->newSmarty(); - $package->assign('ric',array()); - if (isset($this->ric_set)) - { - foreach($this->ric_set as $name => $u) - { - $package->append('ric',array('file' => 'ric_'.$name.'.html','name' => $name)); - } - } - $package->assign("packages",$this->package_index); - $package->register_outputfilter('HTMLframes_outputfilter'); - $this->writefile("packages.html",$package->fetch('top_frame.tpl')); - unset($index); - } - - function writeNewPPage($key) - { - return; - $template = &$this->newSmarty(); - $this->package = $key; - $this->subpackage = ''; - $template->assign("date",date("r",time())); - $template->assign("title",$this->title); - $template->assign("package",$key); - $template->register_outputfilter('HTMLframes_outputfilter'); - phpDocumentor_out("\n"); - flush(); - $this->setTargetDir($this->base_dir); - - $this->writefile("li_$key.html",$template->fetch('index.tpl')); - unset($template); - } - - /** - * Generate indexes for li_package.html and classtree output files - * - * This function generates the li_package.html files from the template file left.html. It does this by - * iterating through each of the $page_elements, $class_elements and $function_elements arrays to retrieve - * the pre-sorted {@link abstractLink} descendants needed for index generation. Conversion of these links to - * text is done by {@link returnSee()}. The {@link $local} parameter is set to false to ensure that paths are correct. - * - * Then it uses {@link generateFormattedClassTrees()} to create class trees from the template file classtrees.html. Output - * filename is classtrees_packagename.html. This function also unsets {@link $elements} and {@link $pkg_elements} to free - * up the considerable memory these two class vars use - * @see $page_elements, $class_elements, $function_elements - */ - function formatLeftIndex() - { - phpDocumentor_out("\n"); - flush(); - $this->setTargetDir($this->base_dir); - if (0)//!isset($this->left)) - { - debug("Nothing parsed, check the command-line"); - die(); - } - $x = $this->makeLeft(); - foreach($this->all_packages as $package => $rest) - { - if (!isset($this->pkg_elements[$package])) continue; - $template = &$this->newSmarty(); - $template->assign("info",$x[$package]); - $template->assign('package',$package); - $template->assign("hastutorials",isset($this->tutorials[$package])); - $template->assign('hastodos',count($this->todoList)); - $template->assign('todolink','todolist.html'); - $template->assign("classtreepage","classtrees_$package"); - $template->assign("elementindex","elementindex_$package"); - $template->register_outputfilter('HTMLframes_outputfilter'); - if (isset($this->package_pages[$package])) - { - $template->assign("packagedoc",$package.'/package_' . $package . '.html'); - } else - { - $template->assign("packagedoc",false); - } - $this->writefile("li_$package.html",$template->fetch('left_frame.tpl')); - - // Create class tree page - $template = &$this->newSmarty(); - $template->assign("classtrees",$this->generateFormattedClassTrees($package)); - $template->assign("interfaces",$this->generateFormattedInterfaceTrees($package)); - $template->assign("package",$package); - $template->register_outputfilter('HTMLframes_outputfilter'); - $this->writefile("classtrees_$package.html",$template->fetch('classtrees.tpl')); - phpDocumentor_out("\n"); - flush(); - } - // free up considerable memory - unset($this->elements); - unset($this->pkg_elements); - } - - /** - * This function takes an {@link abstractLink} descendant and returns an html link - * - * @param abstractLink a descendant of abstractlink should be passed, and never text - * @param string text to display in the link - * @param boolean this parameter is not used, and is deprecated - * @param boolean determines whether the returned text is enclosed in an <a> tag - */ - function returnSee(&$element, $eltext = false, $with_a = true) - { - if (!is_object($element) || !$element) return false; - if (!$with_a) return $this->getId($element, false); - if (!$eltext) - { - $eltext = ''; - switch($element->type) - { - case 'tutorial' : - $eltext = strip_tags($element->title); - break; - case 'method' : - case 'var' : - case 'const' : - $eltext .= $element->class.'::'; - case 'page' : - case 'define' : - case 'class' : - case 'function' : - case 'global' : - default : - $eltext .= $element->name; - if ($element->type == 'function' || $element->type == 'method') $eltext .= '()'; - break; - } - } - return '<a href="'.$this->getId($element).'">'.$eltext.'</a>'; - } - - function getId($element, $fullpath = true) - { - if (phpDocumentor_get_class($element) == 'parserdata') - { - $element = $this->addLink($element->parent); - $elp = $element->parent; - } elseif (is_a($element, 'parserbase')) - { - $elp = $element; - $element = $this->addLink($element); - } - $c = ''; - if (!empty($element->subpackage)) - { - $c = '/'.$element->subpackage; - } - $b = '{$subdir}'; - switch ($element->type) - { - case 'page' : - if ($fullpath) - return $b.$element->package.$c.'/'.$element->fileAlias.'.html'; - return 'top'; - break; - case 'define' : - case 'global' : - case 'function' : - if ($fullpath) - return $b.$element->package.$c.'/'.$element->fileAlias.'.html#'.$element->type.$element->name; - return $element->type.$element->name; - break; - case 'class' : - if ($fullpath) - return $b.$element->package.$c.'/'.$element->name.'.html'; - return 'top'; - break; - case 'method' : - case 'var' : - case 'const' : - if ($fullpath) - return $b.$element->package.$c.'/'.$element->class.'.html#'.$element->type.$element->name; - return $element->type.$element->name; - break; - case 'tutorial' : - $d = ''; - if ($element->section) - { - $d = '#'.$element->section; - } - return $b.$element->package.$c.'/tutorial_'.$element->name.'.html'.$d; - } - } - - /** - * Convert README/INSTALL/CHANGELOG file contents to output format - * @param README|INSTALL|CHANGELOG - * @param string contents of the file - */ - function Convert_RIC($name, $contents) - { - $template = &$this->newSmarty(); - $template->assign('contents',$contents); - $template->assign('name',$name); - $this->setTargetDir($this->base_dir); - $this->writefile('ric_'.$name . '.html',$template->fetch('ric.tpl')); - $this->ric_set[$name] = true; - } - - function ConvertTodoList() - { - $todolist = array(); - foreach($this->todoList as $package => $alltodos) - { - foreach($alltodos as $todos) - { - $converted = array(); - $converted['link'] = $this->returnSee($todos[0]); - if (!is_array($todos[1])) - { - $converted['todos'][] = $todos[1]->Convert($this); - } else - { - foreach($todos[1] as $todo) - { - $converted['todos'][] = $todo->Convert($this); - } - } - $todolist[$package][] = $converted; - } - } - $templ = &$this->newSmarty(); - $templ->assign('todos',$todolist); - $templ->register_outputfilter('HTMLframes_outputfilter'); - $this->setTargetDir($this->base_dir); - $this->writefile('todolist.html',$templ->fetch('todolist.tpl')); - } - - /** - * Create errors.html template file output - * - * This method takes all parsing errors and warnings and spits them out ordered by file and line number. - * @global ErrorTracker We'll be using it's output facility - */ - function ConvertErrorLog() - { - global $phpDocumentor_errors; - $allfiles = array(); - $files = array(); - $warnings = $phpDocumentor_errors->returnWarnings(); - $errors = $phpDocumentor_errors->returnErrors(); - $template = &$this->newSmarty(); - foreach($warnings as $warning) - { - $file = '##none'; - $linenum = 'Warning'; - if ($warning->file) - { - $file = $warning->file; - $allfiles[$file] = 1; - $linenum .= ' on line '.$warning->linenum; - } - $files[$file]['warnings'][] = array('name' => $linenum, 'listing' => $warning->data); - } - foreach($errors as $error) - { - $file = '##none'; - $linenum = 'Error'; - if ($error->file) - { - $file = $error->file; - $allfiles[$file] = 1; - $linenum .= ' on line '.$error->linenum; - } - $files[$file]['errors'][] = array('name' => $linenum, 'listing' => $error->data); - } - $i=1; - $af = array(); - foreach($allfiles as $file => $num) - { - $af[$i++] = $file; - } - $allfiles = $af; - usort($allfiles,'strnatcasecmp'); - $allfiles[0] = "Post-parsing"; - foreach($allfiles as $i => $a) - { - $allfiles[$i] = array('file' => $a); - } - $out = array(); - foreach($files as $file => $data) - { - if ($file == '##none') $file = 'Post-parsing'; - $out[$file] = $data; - } - $template->assign("files",$allfiles); - $template->assign("all",$out); - $template->assign("title","phpDocumentor Parser Errors and Warnings"); - $this->setTargetDir($this->base_dir); - $this->writefile("errors.html",$template->fetch('errors.tpl')); - unset($template); - phpDocumentor_out("\n\nTo view errors and warnings, look at ".$this->base_dir. PATH_DELIMITER . "errors.html\n"); - flush(); - } - - function getTutorialId($package,$subpackage,$tutorial,$id) - { - return $id; - } - - function getCData($value) - { - return '<pre>'.htmlentities($value).'</pre>'; - } - - /** - * Converts package page and sets its package as used in {@link $package_pages} - * @param parserPackagePage - */ - function convertPackagepage(&$element) - { - phpDocumentor_out("\n"); - flush(); - $this->package = $element->package; - $this->subpackage = ''; - $contents = $element->Convert($this); - $this->package_pages[$element->package] = str_replace('{$subdir}','../',$contents); - phpDocumentor_out("\n"); - flush(); - $this->setTargetDir($this->base_dir . PATH_DELIMITER . $element->package); - $this->writeFile('package_'.$element->package.'.html',str_replace('{$subdir}','../',$contents)); - } - - /** - * @param parserTutorial - */ - function convertTutorial(&$element) - { - phpDocumentor_out("\n"); - flush(); - $template = &parent::convertTutorial($element); - $a = '../'; - if ($element->subpackage) $a .= '../'; - $template->assign('subdir',$a); - $template->register_outputfilter('HTMLframes_outputfilter'); - $contents = $template->fetch('tutorial.tpl'); - $a = ''; - if ($element->subpackage) $a = PATH_DELIMITER . $element->subpackage; - phpDocumentor_out("\n"); - flush(); - $this->setTargetDir($this->base_dir . PATH_DELIMITER . $element->package . $a); - $this->writeFile('tutorial_'.$element->name.'.html',$contents); - } - - /** - * Converts class for template output - * @see prepareDocBlock(), generateChildClassList(), generateFormattedClassTree(), getFormattedConflicts() - * @see getFormattedInheritedMethods(), getFormattedInheritedVars() - * @param parserClass - */ - function convertClass(&$element) - { - parent::convertClass($element); - $this->class_dir = $element->docblock->package; - if (!empty($element->docblock->subpackage)) $this->class_dir .= PATH_DELIMITER . $element->docblock->subpackage; - $a = '../'; - if ($element->docblock->subpackage != '') $a = "../$a"; - - $this->class_data->assign('subdir',$a); - $this->class_data->assign("title","Docs For Class " . $element->getName()); - $this->class_data->assign("page",$element->getName() . '.html'); - } - - /** - * Converts class variables for template output - * @see prepareDocBlock(), getFormattedConflicts() - * @param parserDefine - */ - function convertVar(&$element) - { - parent::convertVar($element, array('var_dest' => $this->getId($element,false))); - } - - /** - * Converts class variables for template output - * @see prepareDocBlock(), getFormattedConflicts() - * @param parserDefine - */ - function convertConst(&$element) - { - parent::convertConst($element, array('const_dest' => $this->getId($element,false))); - } - - /** - * Converts class methods for template output - * @see prepareDocBlock(), getFormattedConflicts() - * @param parserDefine - */ - function convertMethod(&$element) - { - parent::convertMethod($element, array('method_dest' => $this->getId($element,false))); - } - - /** - * Converts function for template output - * @see prepareDocBlock(), parserFunction::getFunctionCall(), getFormattedConflicts() - * @param parserFunction - */ - function convertFunction(&$element) - { - $funcloc = $this->getId($this->addLink($element)); - parent::convertFunction($element,array('function_dest' => $this->getId($element,false))); - } - - /** - * Converts include elements for template output - * @see prepareDocBlock() - * @param parserInclude - */ - function convertInclude(&$element) - { - parent::convertInclude($element, array('include_file' => '_'.strtr($element->getValue(),array('"' => '', "'" => '','.' => '_')))); - } - - /** - * Converts defines for template output - * @see prepareDocBlock(), getFormattedConflicts() - * @param parserDefine - */ - function convertDefine(&$element) - { - parent::convertDefine($element, array('define_link' => $this->getId($element,false))); - } - - /** - * Converts global variables for template output - * @param parserGlobal - */ - function convertGlobal(&$element) - { - parent::convertGlobal($element, array('global_link' => $this->getId($element,false))); - } - - /** - * converts procedural pages for template output - * @see prepareDocBlock(), getClassesOnPage() - * @param parserData - */ - function convertPage(&$element) - { - parent::convertPage($element); - $this->juststarted = true; - $this->page_dir = $element->parent->package; - if (!empty($element->parent->subpackage)) $this->page_dir .= PATH_DELIMITER . $element->parent->subpackage; - // registering stuff on the template - $this->page_data->assign("page",$this->getPageName($element) . '.html'); - $this->page_data->assign("title","Docs for page ".$element->parent->getFile()); - } - - function getPageName(&$element) - { - if (phpDocumentor_get_class($element) == 'parserpage') return '_'.$element->getName(); - return '_'.$element->parent->getName(); - } - - /** - * returns an array containing the class inheritance tree from the root object to the class - * - * @param parserClass class variable - * @return array Format: array(root,child,child,child,...,$class) - * @uses parserClass::getParentClassTree() - */ - - function generateFormattedClassTree($class) - { - $tree = $class->getParentClassTree($this); - $out = ''; - if (count($tree) - 1) - { - $result = array($class->getName()); - $parent = $tree[$class->getName()]; - $distance[] = ''; - while ($parent) - { - $x = $parent; - if (is_object($parent)) - { - $subpackage = $parent->docblock->subpackage; - $package = $parent->docblock->package; - $x = $parent; - $x = $parent->getLink($this); - if (!$x) $x = $parent->getName(); - } - $result[] = - $x; - $distance[] = - "\n%s|\n" . - "%s--"; - if (is_object($parent)) - $parent = $tree[$parent->getName()]; - elseif (isset($tree[$parent])) - $parent = $tree[$parent]; - } - $nbsp = ' '; - for($i=count($result) - 1;$i>=0;$i--) - { - $my_nbsp = ''; - for($j=0;$j<count($result) - $i;$j++) $my_nbsp .= $nbsp; - $distance[$i] = sprintf($distance[$i],$my_nbsp,$my_nbsp); - } - return array('classes'=>array_reverse($result),'distance'=>array_reverse($distance)); - } else - { - return array('classes'=>$class->getName(),'distance'=>array('')); - } - } - - /** @access private */ - function sortVar($a, $b) - { - return strnatcasecmp($a->getName(),$b->getName()); - } - - /** @access private */ - function sortMethod($a, $b) - { - if ($a->isConstructor) return -1; - if ($b->isConstructor) return 1; - return strnatcasecmp($a->getName(),$b->getName()); - } - - /** - * returns a template-enabled array of class trees - * - * @param string $package package to generate a class tree for - * @see $roots, HTMLConverter::getRootTree() - */ - function generateFormattedClassTrees($package) - { - if (!isset($this->roots['normal'][$package]) && - !isset($this->roots['special'][$package])) { - return array(); - } - $trees = array(); - if (isset($this->roots['normal'][$package])) { - $roots = $this->roots['normal'][$package]; - for($i=0;$i<count($roots);$i++) - { - $root = $this->classes->getClassByPackage($roots[$i], $package); - if ($root && $root->isInterface()) { - continue; - } - $trees[] = array('class' => $roots[$i],'class_tree' => "<ul>\n".$this->getRootTree($this->getSortedClassTreeFromClass($roots[$i],$package,''),$package)."</ul>\n"); - } - } - if (isset($this->roots['special'][$package])) { - $roots = $this->roots['special'][$package]; - foreach ($roots as $parent => $classes) { - $thistree = ''; - foreach ($classes as $classinfo) { - $root = $this->classes->getClassByPackage($classinfo, $package); - if ($root && $root->isInterface()) { - continue; - } - $thistree .= - $this->getRootTree( - $this->getSortedClassTreeFromClass( - $classinfo, - $package, - ''), - $package, - true); - } - if (!$thistree) { - continue; - } - $trees[] = array( - 'class' => $parent, - 'class_tree' => "<ul>\n" . $thistree . "</ul>\n" - ); - } - } - return $trees; - } - - /** - * returns a template-enabled array of interface inheritance trees - * - * @param string $package package to generate a class tree for - * @see $roots, HTMLConverter::getRootTree() - */ - function generateFormattedInterfaceTrees($package) - { - if (!isset($this->roots['normal'][$package]) && - !isset($this->roots['special'][$package])) { - return array(); - } - $trees = array(); - if (isset($this->roots['normal'][$package])) { - $roots = $this->roots['normal'][$package]; - for($i=0;$i<count($roots);$i++) - { - $root = $this->classes->getClassByPackage($roots[$i], $package); - if ($root && !$root->isInterface()) { - continue; - } - $trees[] = array('class' => $roots[$i],'class_tree' => "<ul>\n".$this->getRootTree($this->getSortedClassTreeFromClass($roots[$i],$package,''),$package)."</ul>\n"); - } - } - if (isset($this->roots['special'][$package])) { - $roots = $this->roots['special'][$package]; - foreach ($roots as $parent => $classes) { - $thistree = ''; - foreach ($classes as $classinfo) { - $root = $this->classes->getClassByPackage($classinfo, $package); - if ($root && !$root->isInterface()) { - continue; - } - $thistree .= - $this->getRootTree( - $this->getSortedClassTreeFromClass( - $classinfo, - $package, - ''), - $package, - true); - } - if (!$thistree) { - continue; - } - $trees[] = array( - 'class' => $parent, - 'class_tree' => "<ul>\n" . $thistree . "</ul>\n" - ); - } - } - return $trees; - } - - /** - * return formatted class tree for the Class Trees page - * - * @param array $tree output from {@link getSortedClassTreeFromClass()} - * @param string $package package - * @param boolean $nounknownparent if true, an object's parent will not be checked - * @see Classes::$definitechild, generateFormattedClassTrees() - * @return string - */ - function getRootTree($tree, $package, $noparent = false) - { - if (!$tree) return ''; - $my_tree = ''; - $cur = '#root'; - $lastcur = array(false); - $kids = array(); - $dopar = false; - if (!$noparent && $tree[$cur]['parent']) - { - $dopar = true; - if (!is_object($tree[$cur]['parent'])) - { -// debug("parent ".$tree[$cur]['parent']." not found"); - $my_tree .= '<li>' . $tree[$cur]['parent'] .'<ul>'; - } - else - { -// debug("parent ".$this->returnSee($tree[$cur]['parent'])." in other package"); - $root = $this->classes->getClassByPackage($tree[$cur]['parent']->name, - $package); - $my_tree .= '<li>' . $this->returnSee($tree[$cur]['parent']); - if ($tree[$cur]['parent']->package != $package) $my_tree .= ' <b>(Different package)</b><ul>'; - } - } - do - { -// fancy_debug($cur,$lastcur,$kids); - if (count($tree[$cur]['children'])) - { -// debug("$cur has children"); - if (!isset($kids[$cur])) - { -// debug("set $cur kids"); - $kids[$cur] = 1; - $root = $this->classes->getClassByPackage( - $tree[$cur]['link']->name, - $tree[$cur]['link']->package); - if ($implements = $root->getImplements()) { - $my_tree .= '<li>'.$this->returnSee($tree[$cur]['link']) . - ' (implements '; - foreach ($implements as $i => $interface) { - if ($i && $i != count($implements) - 1) $my_tree .= ', '; - if ($link = $this->getLink('object ' . $interface)) { - $my_tree .= $this->returnSee($link); - } else { - $my_tree .= $interface; - } - } - $my_tree .= ')'; - } else { - $my_tree .= '<li>'.$this->returnSee($tree[$cur]['link']); - } - $my_tree .= '<ul>'."\n"; - } - array_push($lastcur,$cur); - list(,$cur) = each($tree[$cur]['children']); -// var_dump('listed',$cur); - if ($cur) - { - $cur = $cur['package'] . '#' . $cur['class']; -// debug("set cur to child $cur"); -// $my_tree .= '<li>'.$this->returnSee($tree[$cur]['link']); - continue; - } else - { -// debug("end of children for $cur"); - $cur = array_pop($lastcur); - $cur = array_pop($lastcur); - $my_tree .= '</ul></li>'."\n"; - if ($dopar && ($cur == '#root' || !$cur)) $my_tree .= '</ul></li>'; - } - } else - { -// debug("$cur has no children"); - $my_tree .= '<li>'.$this->returnSee($tree[$cur]['link'])."</li>"; - if ($dopar && $cur == '#root') $my_tree .= '</ul></li>'; - $cur = array_pop($lastcur); - } - } while ($cur); - return $my_tree; - } - - /** - * Generate indexing information for given element - * - * @param parserElement descendant of parserElement - * @see generateElementIndex() - * @return array - */ - function getIndexInformation($elt) - { - $Result['type'] = $elt->type; - $Result['file_name'] = $elt->file; - $Result['path'] = $elt->getPath(); - - if (isset($elt->docblock)) - { - $Result['description'] = $elt->docblock->getSDesc($this); - - if ($elt->docblock->hasaccess) - $Result['access'] = $elt->docblock->tags['access'][0]->value; - else - $Result['access'] = 'public'; - - $Result['abstract'] = isset ($elt->docblock->tags['abstract'][0]); - } - else - $Result['description'] = ''; - - $aa = $Result['description']; - if (!empty($aa)) $aa = "<br> $aa"; - - switch($elt->type) - { - case 'class': - $Result['name'] = $elt->getName(); - $Result['title'] = 'Class'; - $Result['link'] = $this->getClassLink($elt->getName(), - $elt->docblock->package, - $elt->getPath(), - $elt->getName()); - $Result['listing'] = 'in file '.$elt->file.', class '.$Result['link']."$aa"; - break; - case 'define': - $Result['name'] = $elt->getName(); - $Result['title'] = 'Constant'; - $Result['link'] = $this->getDefineLink($elt->getName(), - $elt->docblock->package, - $elt->getPath(), - $elt->getName()); - $Result['listing'] = 'in file '.$elt->file.', constant '.$Result['link']."$aa"; - break; - case 'global': - $Result['name'] = $elt->getName(); - $Result['title'] = 'Global'; - $Result['link'] = $this->getGlobalLink($elt->getName(), - $elt->docblock->package, - $elt->getPath(), - $elt->getName()); - $Result['listing'] = 'in file '.$elt->file.', global variable '.$Result['link']."$aa"; - break; - case 'function': - $Result['name'] = $elt->getName(); - $Result['title'] = 'Function'; - $Result['link'] = $this->getFunctionLink($elt->getName(), - $elt->docblock->package, - $elt->getPath(), - $elt->getName().'()'); - $Result['listing'] = 'in file '.$elt->file.', function '.$Result['link']."$aa"; - break; - case 'method': - $Result['name'] = $elt->getName(); - $Result['title'] = 'Method'; - $Result['link'] = $this->getMethodLink($elt->getName(), - $elt->class, - $elt->docblock->package, - $elt->getPath(), - $elt->class.'::'.$elt->getName().'()' - ); - if ($elt->isConstructor) $Result['constructor'] = 1; - $Result['listing'] = 'in file '.$elt->file.', method '.$Result['link']."$aa"; - break; - case 'var': - $Result['name'] = $elt->getName(); - $Result['title'] = 'Variable'; - $Result['link'] = $this->getVarLink($elt->getName(), - $elt->class, - $elt->docblock->package, - $elt->getPath(), - $elt->class.'::'.$elt->getName()); - $Result['listing'] = 'in file '.$elt->file.', variable '.$Result['link']."$aa"; - break; - case 'const': - $Result['name'] = $elt->getName(); - $Result['title'] = 'Class Constant'; - $Result['link'] = $this->getConstLink($elt->getName(), - $elt->class, - $elt->docblock->package, - $elt->getPath(), - $elt->class.'::'.$elt->getName()); - $Result['listing'] = 'in file '.$elt->file.', class constant '.$Result['link']."$aa"; - break; - case 'page': - $Result['name'] = $elt->getFile(); - $Result['title'] = 'Page'; - $Result['link'] = $this->getPageLink($elt->getFile(), - $elt->package, - $elt->getPath(), - $elt->getFile()); - $Result['listing'] = 'procedural page '.$Result['link']; - break; - case 'include': - $Result['name'] = $elt->getName(); - $Result['title'] = 'Include'; - $Result['link'] = $elt->getValue(); - $Result['listing'] = 'include '.$Result['name']; - break; - } - - return $Result; - } - /** - * Generate alphabetical index of all elements - * - * @see $elements, walk() - */ - function generateElementIndex() - { - $elementindex = array(); - $letters = array(); - $used = array(); - foreach($this->elements as $letter => $nutoh) - { - foreach($this->elements[$letter] as $i => $yuh) - { - if ($this->elements[$letter][$i]->type != 'include') - { - if (!isset($used[$letter])) - { - $letters[]['letter'] = $letter; - $elindex['letter'] = $letter; - $used[$letter] = 1; - } - - $elindex['index'][] = $this->getIndexInformation($this->elements[$letter][$i]); - } - } - if (isset($elindex['index'])) - { - $elementindex[] = $elindex; - } else - { - unset($letters[count($letters) - 1]); - } - $elindex = array(); - } - return array($elementindex,$letters); - } - - function copyMediaRecursively($media,$targetdir,$subdir = '') - { - $versionControlDirectories = array ('CVS', 'media/CVS', 'media\\CVS', '.svn', 'media/.svn', 'media\\.svn'); - if (!is_array($media)) { - return; - } - foreach($media as $dir => $files) - { - if ($dir === '/') - { - $this->copyMediaRecursively($files,$targetdir); - } else - { - if (!is_numeric($dir)) - { - if (in_array($dir, $versionControlDirectories)) - { - // skip it entirely - } - else - { - // create the subdir - phpDocumentor_out("creating $targetdir" . PATH_DELIMITER . "$dir\n"); - Converter::setTargetDir($targetdir . PATH_DELIMITER . $dir); - if (!empty($subdir)) - { - $subdir .= PATH_DELIMITER; - } - $this->copyMediaRecursively($files,"$targetdir/$dir",$subdir . $dir); - } - } - else - { - // copy the file - phpDocumentor_out("copying $targetdir" . PATH_DELIMITER . $files['file']."\n"); - $this->copyFile($files['file'],$subdir); - } - } - } - } - - /** - * calls the converter setTargetDir, and then copies any template images and the stylesheet if they haven't been copied - * @see Converter::setTargetDir() - */ - function setTargetDir($dir) - { - Converter::setTargetDir($dir); - if ($this->wrote) return; - $this->wrote = true; - $template_images = array(); - $stylesheets = array(); - $tdir = $dir; - $dir = $this->templateDir; - $this->templateDir = $this->templateDir.'templates/'; - $info = new Io; - $this->copyMediaRecursively($info->getDirTree($this->templateDir.'media',$this->templateDir),$tdir); - } - - /** - * Generate alphabetical index of all elements by package and subpackage - * - * @param string $package name of a package - * @see $pkg_elements, walk(), generatePkgElementIndexes() - */ - function generatePkgElementIndex($package) - { -// var_dump($this->pkg_elements[$package]); - $elementindex = array(); - $letters = array(); - $letterind = array(); - $used = array(); - $subp = ''; - foreach($this->pkg_elements[$package] as $subpackage => $els) - { - if (empty($els)) continue; - if (!empty($subpackage)) $subp = " (<b>subpackage:</b> $subpackage)"; else $subp = ''; - foreach($els as $letter => $yuh) - { - foreach($els[$letter] as $i => $yuh) - { - if ($els[$letter][$i]->type != 'include') - { - if (!isset($used[$letter])) - { - $letters[]['letter'] = $letter; - $letterind[$letter] = count($letters) - 1; - $used[$letter] = 1; - } - $elindex[$letter]['letter'] = $letter; - - $elindex[$letter]['index'][] = $this->getIndexInformation($els[$letter][$i]); - } - } - } - } - ksort($elindex); - usort($letters,'HTMLframes_lettersort'); - if (isset($elindex)) - { - while(list($letter,$tempel) = each($elindex)) - { - if (!isset($tempel)) - { - unset($letters[$letterind[$tempel['letter']]]); - } else - $elementindex[] = $tempel; - } - } else $letters = array(); - return array($elementindex,$letters); - } - - /** - * - * @see generatePkgElementIndex() - */ - function generatePkgElementIndexes() - { - $packages = array(); - $package_names = array(); - $pkg = array(); - $letters = array(); - foreach($this->pkg_elements as $package => $trash) - { - $pkgs['package'] = $package; - $pkg['package'] = $package; - list($pkg['pindex'],$letters[$package]) = $this->generatePkgElementIndex($package); - if (count($pkg['pindex'])) - { - $packages[] = $pkg; - $package_names[] = $pkgs; - } - unset($pkgs); - unset($pkg); - } - foreach($packages as $i => $package) - { - $pnames = array(); - for($j=0;$j<count($package_names);$j++) - { - if ($package_names[$j]['package'] != $package['package']) $pnames[] = $package_names[$j]; - } - $packages[$i]['packageindexes'] = $pnames; - } - return array($packages,$package_names,$letters); - } - - /** - * @param string name of class - * @param string package name - * @param string full path to look in (used in index generation) - * @param boolean deprecated - * @param boolean return just the URL, or enclose it in an html a tag - * @return mixed false if not found, or an html a link to the class's documentation - * @see parent::getClassLink() - */ - function getClassLink($expr,$package, $file = false,$text = false, $with_a = true) - { - $a = Converter::getClassLink($expr,$package,$file); - if (!$a) return false; - return $this->returnSee($a, $text, $with_a); - } - - /** - * @param string name of function - * @param string package name - * @param string full path to look in (used in index generation) - * @param boolean deprecated - * @param boolean return just the URL, or enclose it in an html a tag - * @return mixed false if not found, or an html a link to the function's documentation - * @see parent::getFunctionLink() - */ - function getFunctionLink($expr,$package, $file = false,$text = false) - { - $a = Converter::getFunctionLink($expr,$package,$file); - if (!$a) return false; - return $this->returnSee($a, $text); - } - - /** - * @param string name of define - * @param string package name - * @param string full path to look in (used in index generation) - * @param boolean deprecated - * @param boolean return just the URL, or enclose it in an html a tag - * @return mixed false if not found, or an html a link to the define's documentation - * @see parent::getDefineLink() - */ - function getDefineLink($expr,$package, $file = false,$text = false) - { - $a = Converter::getDefineLink($expr,$package,$file); - if (!$a) return false; - return $this->returnSee($a, $text); - } - - /** - * @param string name of global variable - * @param string package name - * @param string full path to look in (used in index generation) - * @param boolean deprecated - * @param boolean return just the URL, or enclose it in an html a tag - * @return mixed false if not found, or an html a link to the global variable's documentation - * @see parent::getGlobalLink() - */ - function getGlobalLink($expr,$package, $file = false,$text = false) - { - $a = Converter::getGlobalLink($expr,$package,$file); - if (!$a) return false; - return $this->returnSee($a, $text); - } - - /** - * @param string name of procedural page - * @param string package name - * @param string full path to look in (used in index generation) - * @param boolean deprecated - * @param boolean return just the URL, or enclose it in an html a tag - * @return mixed false if not found, or an html a link to the procedural page's documentation - * @see parent::getPageLink() - */ - function getPageLink($expr,$package, $path = false,$text = false) - { - $a = Converter::getPageLink($expr,$package,$path); - if (!$a) return false; - return $this->returnSee($a, $text); - } - - /** - * @param string name of method - * @param string class containing method - * @param string package name - * @param string full path to look in (used in index generation) - * @param boolean deprecated - * @param boolean return just the URL, or enclose it in an html a tag - * @return mixed false if not found, or an html a link to the method's documentation - * @see parent::getMethodLink() - */ - function getMethodLink($expr,$class,$package, $file = false,$text = false) - { - $a = Converter::getMethodLink($expr,$class,$package,$file); - if (!$a) return false; - return $this->returnSee($a, $text); - } - - /** - * @param string name of var - * @param string class containing var - * @param string package name - * @param string full path to look in (used in index generation) - * @param boolean deprecated - * @param boolean return just the URL, or enclose it in an html a tag - * @return mixed false if not found, or an html a link to the var's documentation - * @see parent::getVarLink() - */ - function getVarLink($expr,$class,$package, $file = false,$text = false) - { - $a = Converter::getVarLink($expr,$class,$package,$file); - if (!$a) return false; - return $this->returnSee($a, $text); - } - - /** - * @param string name of class constant - * @param string class containing class constant - * @param string package name - * @param string full path to look in (used in index generation) - * @param boolean deprecated - * @param boolean return just the URL, or enclose it in an html a tag - * @return mixed false if not found, or an html a link to the var's documentation - * @see parent::getVarLink() - */ - function getConstLink($expr,$class,$package, $file = false,$text = false) - { - $a = Converter::getConstLink($expr,$class,$package,$file); - if (!$a) return false; - return $this->returnSee($a, $text); - } - - /** - * does a nat case sort on the specified second level value of the array - * - * @param mixed $a - * @param mixed $b - * @return int - */ - function rcNatCmp ($a, $b) - { - $aa = strtoupper($a[$this->rcnatcmpkey]); - $bb = strtoupper($b[$this->rcnatcmpkey]); - - return strnatcasecmp($aa, $bb); - } - - /** - * does a nat case sort on the specified second level value of the array. - * this one puts constructors first - * - * @param mixed $a - * @param mixed $b - * @return int - */ - function rcNatCmp1 ($a, $b) - { - $aa = strtoupper($a[$this->rcnatcmpkey]); - $bb = strtoupper($b[$this->rcnatcmpkey]); - - if (strpos($aa,'CONSTRUCTOR') === 0) - { - return -1; - } - if (strpos($bb,'CONSTRUCTOR') === 0) - { - return 1; - } - if (strpos($aa,strtoupper($this->class)) === 0) - { - return -1; - } - if (strpos($bb,strtoupper($this->class)) === 0) - { - return -1; - } - return strnatcasecmp($aa, $bb); - } - - /** - * This function is not used by HTMLdefaultConverter, but is required by Converter - */ - function Output() - { - } -} - -/** - * @access private - * @global string name of the package to set as the first package - */ -function HTMLframes_pindexcmp($a, $b) -{ - global $phpDocumentor_DefaultPackageName; - if ($a['title'] == $phpDocumentor_DefaultPackageName) return -1; - if ($b['title'] == $phpDocumentor_DefaultPackageName) return 1; - return strnatcasecmp($a['title'],$b['title']); -} - -/** @access private */ -function HTMLframes_lettersort($a, $b) -{ - return strnatcasecmp($a['letter'],$b['letter']); -} - -/** @access private */ -function HTMLframes_outputfilter($src, &$smarty) -{ - return str_replace('{$subdir}',$smarty->_tpl_vars['subdir'],$src); -} -?> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/options.ini b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/options.ini deleted file mode 100755 index 084809be..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/options.ini +++ /dev/null @@ -1,577 +0,0 @@ -preservedocbooktags = false - -;; used to highlight the {@source} inline tag, @filesource tag, and @example tag -[highlightSourceTokens] -;; format: -;; T_CONSTANTNAME = open -;; /T_CONSTANTNAME = close - -T_INCLUDE = <span class="src-inc"> -/T_INCLUDE = </span> -T_INCLUDE_ONCE = <span class="src-inc"> -/T_INCLUDE_ONCE = </span> -T_REQUIRE_ONCE = <span class="src-inc"> -/T_REQUIRE_ONCE = </span> -T_REQUIRE_ONCE = <span class="src-inc"> -/T_REQUIRE_ONCE = </span> - -T_CONSTANT_ENCAPSED_STRING = <span class="src-str"> -/T_CONSTANT_ENCAPSED_STRING = </span> -T_STRING_VARNAME = <span class="src-str"> -/T_STRING_VARNAME = </span> - -T_STRING = <span class="src-id"> -/T_STRING = </span> - -T_DNUMBER = <span class="src-num"> -/T_DNUMBER = </span> -T_LNUMBER = <span class="src-num"> -/T_LNUMBER = </span> - -T_VARIABLE = <span class="src-var"> -/T_VARIABLE = </span> - -T_COMMENT = <span class="src-comm"> -/T_COMMENT = </span> -T_ML_COMMENT = <span class="src-comm"> -/T_ML_COMMENT = </span> - -T_OBJECT_OPERATOR = <span class="src-sym"> -/T_OBJECT_OPERATOR = </span> - -T_ABSTRACT = <span class="src-key"> -/T_ABSTRACT = </span> -T_CLONE = <span class="src-key"> -/T_CLONE = </span> -T_HALT_COMPILER = <span class="src-key"> -/T_HALT_COMPILER = </span> -T_ARRAY = <span class="src-key"> -/T_ARRAY = </span> -T_AS = <span class="src-key"> -/T_AS = </span> -T_BREAK = <span class="src-key"> -/T_BREAK = </span> -T_CLASS = <span class="src-key"> -/T_CLASS = </span> -T_CASE = <span class="src-key"> -/T_CASE = </span> -T_CONST = <span class="src-key"> -/T_CONST = </span> -T_CONTINUE = <span class="src-key"> -/T_CONTINUE = </span> -T_DECLARE = <span class="src-key"> -/T_DECLARE = </span> -T_DEFAULT = <span class="src-key"> -/T_DEFAULT = </span> -T_ELSE = <span class="src-key"> -/T_ELSE = </span> -T_ELSEIF = <span class="src-key"> -/T_ELSEIF = </span> -T_EMPTY = <span class="src-key"> -/T_EMPTY = </span> -T_ENDDECLARE = <span class="src-key"> -/T_ENDDECLARE = </span> -T_ENDFOR = <span class="src-key"> -/T_ENDFOR = </span> -T_ENDSWITCH = <span class="src-key"> -/T_ENDSWITCH = </span> -T_ENDFOREACH = <span class="src-key"> -/T_ENDFOREACH = </span> -T_ENDIF = <span class="src-key"> -/T_ENDIF = </span> -T_ENDWHILE = <span class="src-key"> -/T_ENDWHILE = </span> -T_EXIT = <span class="src-key"> -/T_EXIT = </span> -T_EXTENDS = <span class="src-key"> -/T_EXTENDS = </span> -T_FINAL = <span class="src-key"> -/T_FINAL = </span> -T_FOR = <span class="src-key"> -/T_FOR = </span> -T_FOREACH = <span class="src-key"> -/T_FOREACH = </span> -T_FUNCTION = <span class="src-key"> -/T_FUNCTION = </span> -T_GLOBAL = <span class="src-key"> -/T_GLOBAL = </span> -T_IF = <span class="src-key"> -/T_IF = </span> -T_IMPLEMENTS = <span class="src-key"> -/T_IMPLEMENTS = </span> -T_INTERFACE = <span class="src-key"> -/T_INTERFACE = </span> -T_LOGICAL_AND = <span class="src-key"> -/T_LOGICAL_AND = </span> -T_LOGICAL_OR = <span class="src-key"> -/T_LOGICAL_OR = </span> -T_LOGICAL_XOR = <span class="src-key"> -/T_LOGICAL_XOR = </span> -T_NEW = <span class="src-key"> -/T_NEW = </span> -T_PRIVATE = <span class="src-key"> -/T_PRIVATE = </span> -T_PROTECTED = <span class="src-key"> -/T_PROTECTED = </span> -T_PUBLIC = <span class="src-key"> -/T_PUBLIC = </span> -T_RETURN = <span class="src-key"> -/T_RETURN = </span> -T_STATIC = <span class="src-key"> -/T_STATIC = </span> -T_SWITCH = <span class="src-key"> -/T_SWITCH = </span> -T_VAR = <span class="src-key"> -/T_VAR = </span> -T_WHILE = <span class="src-key"> -/T_WHILE = </span> - -T_DOUBLE_COLON = <span class="src-sym"> -/T_DOUBLE_COLON = </span> - -T_OPEN_TAG = <span class="src-php"> -/T_OPEN_TAG = </span> -T_OPEN_TAG_WITH_ECHO = <span class="src-php"> -/T_OPEN_TAG_WITH_ECHO = </span> -T_CLOSE_TAG = <span class="src-php"> -/T_CLOSE_TAG = </span> - - -[highlightSource] -;; this is for highlighting things that aren't tokens like "&" -;; format: -;; word = open -;; /word = close -@ = <span class="src-sym"> -/@ = </span> -& = <span class="src-sym"> -/& = </span> -[ = <span class="src-sym"> -/[ = </span> -] = <span class="src-sym"> -/] = </span> -! = <span class="src-sym"> -/! = </span> -";" = <span class="src-sym"> -/; = </span> -( = <span class="src-sym"> -/( = </span> -) = <span class="src-sym"> -/) = </span> -, = <span class="src-sym"> -/, = </span> -{ = <span class="src-sym"> -/{ = </span> -} = <span class="src-sym"> -/} = </span> -""" = <span class="src-str"> -/" = </span> - -[highlightDocBlockSourceTokens] -;; this is for docblock tokens, using by phpDocumentor_HighlightParser -;; tagphptype is for "string" in @param string description, for example -docblock = <span class="src-doc"> -/docblock = </span> -tagphptype = <span class="src-doc-type"> -/tagphptype = </span> -tagvarname = <span class="src-doc-var"> -/tagvarname = </span> -coretag = <span class="src-doc-coretag"> -/coretag = </span> -tag = <span class="src-doc-tag"> -/tag = </span> -inlinetag = <span class="src-doc-inlinetag"> -/inlinetag = </span> -internal = <span class="src-doc-internal"> -/internal = </span> -closetemplate = <span class="src-doc-close-template"> -/closetemplate = </span> -docblocktemplate = <span class="src-doc-template"> -/docblocktemplate = </span> - -[highlightTutorialSourceTokens] -;; this is for XML DocBook-based tutorials, highlighted by phpDocumentor_TutorialHighlightParser -;; <tag> -opentag = <span class="tute-tag"> -/opentag = </span> -;; </tag> -closetag = <span class="tute-tag"> -/closetag = </span> -;; <tag attribute="value"> -attribute = <span class="tute-attribute-name"> -/attribute = </span> -;; <tag attribute="value"> -attributevalue = <span class="tute-attribute-value"> -/attributevalue = </span> -;; &entity; -entity = <span class="tute-entity"> -/entity = </span> -;; <!-- comment --> -comment = <span class="tute-comment"> -/comment = </span> -;; {@inline tag} -itag = <span class="tute-inline-tag"> -/itag = </span> - -;; used for translation of html in DocBlocks -[desctranslate] -ul = <ul> -/ul = </ul> -ol = <ol> -/ol = </ol> -li = <li> -/li = </li> -code = -/code = -var = <var> -/var = </var> -samp = <samp> -/samp = </samp> -kbd = <kbd> -/kbd = </kbd> -pre = <pre> -/pre = </pre> -p = <p> -/p = </p> -b = <strong> -/b = </strong> -i = <em> -/i = </em> -br = <br /> - -[ppage] -;; this is the DocBook package page translation section. All DocBook tags -;; that have a corresponding html tag must be listed here. Entities should -;; also be listed here -;; -;; examples: -;; 1) -;; tagname = newtagname -;; -;; This is the simplest case, where all attributes will be added into the -;; starting tag and the ending tag will be html/xml style </tranlatedtagname> -;; <tagname></tagname> becomes <newtagname></newtagname> and -;; <tagname attr="value"></tagname> becomes -;; <newtagname attr="value"></newtagname> -;; -;; 2) -;; tagname = newtagname -;; tagname->attr = newattrname -;; -;; in this case, everything will be like the first case, except tags like: -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="value"></newtagname> -;; -;; 3) -;; tagname = newtagname -;; tagname->attr = newattrname -;; tagname->attr+value = newvalue -;; -;; in this case, the value is also translated to another. This can be useful -;; for instances such as focus="middle" changing to align="center" or something -;; of that nature. -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 4) -;; tagname = newtagname -;; tagname->attr1 = newattrname -;; tagname->attr2 = newattrname -;; tagname->attr1+value|attr2+value = newvalue -;; -;; in this case, two attributes combine to make one new attribute, and the combined -;; value is translated into a new value -;; <tagname attr1="value1" attr2="value2"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 5) -;; tagname = newtagname -;; tagname!attr = dummy -;; -;; here, the attribute will be ignored. dummy is not used and may be any value -;; <tagname attr="value"></tagname> will become -;; <newtagname></newtagname> -;; -;; 6) -;; tagname = newtagname -;; tagname! = dummy -;; -;; here, all attributes will be ignored. dummy is not used and may be any value -;; <tagname attr1="value" attr2="foo"></tagname> will become -;; <newtagname></newtagname> -;; -;; 7) -;; tagname = newtagname -;; tagname/ = 1 -;; -;; here, the tag will be translated as a single tag with no closing tag, and all -;; attributes -;; <tagname attr="val">{text text}</tagname> will become -;; <newtagname attr="val" /> -;; -;; 8) -;; tagname = <starttaginfo /> -;; /tagname = closetagtext -;; -;; in this case, the text <starttaginfo> will be inserted exactly as entered for -;; <tagname> and closetagtext for </tagname> -;; <tagname attr="val"></tagname> will become -;; <starttaginfo />closetagtext -;; -;; 9) -;; $attr$my_attribute = newattrname -;; -;; tagname = newtagname -;; -;; in this case, all occurences of my_attribute in any tag will be changed to -;; newattrname. This is useful for changing things like role="php" to -;; class="php," for example. Note that the text "$attr$" MUST be on the line -;; start for phpDocumentor to recognize it. -;; -;; 10) -;; &entity; = translation text -;; " = " -;; " = """ -;; < = < -;; -;; Use this to control translation of entities to their appropriate values - - = -" = " -” = ” -“ = “ -& = & -< = < -> = > -© = © - - -$attr$role = class - -abbrev = abbr - -blockquote = blockquote - -arg = span -arg->choice = class - -author = <span class="author"> -/author = </span> -author! = 0 - -authorblurb = <div class="author-blurb"> -/authorblurb = </div> - -authorgroup = <div class="authors"><h2 class="title">Authors</h2> -/authorgroup = </div> -authorgroup! = 0 - -caution = <span class="warning"> -/caution = </span> -caution! = 0 - -cmdsynopsis = <div class="cmd-synopsis"> -/cmdsynopsis = </div> - -command = <span class="cmd-title"> -/command = </span> - -copyright = <div class="notes"> -/copyright = </div> - -emphasis = em - -example = <div class="src-code"> -/example = </div> -example! = 0 - -function = -/function = () - -formalpara = p - -graphic = img -graphic->fileref = src -graphic/ = - -important = strong - -informalequation = blockquote - -informalexample = div - -inlineequation = em - -itemizedlist = ul - -listitem = li - -literal = code - -literallayout = span - -option = " " -/option = - -orderedlist = ol - -para = p - -programlisting = <div class="src-code"> -/programlisting = </div> -programlisting! = 0 - -refentry = div - -refnamediv = <div class="ref-title-box"> -/refnamediv = </div> -refnamediv! = 0 - -refname = <h1 class="ref-title"> -/refname = </h1> - -refpurpose = <h2 class="ref-purpose"> -/refpurpose = </h2> - -refsynopsisdiv = <div class="ref-synopsis"> -/refsynopsisdiv = </div> -refsynopsisdiv! = 0 - -refsect1 = span - -refsect2 = span - -refsect3 = -/refsect3 = <br /> - -releaseinfo = <div class="release-info">( -/releaseinfo = )</div> - -simpara = -/simpara = <br /> -simpara! = 0 - -subscript = sub - -superscript = super - -table = table - -table->colsep = rules -table->rowsep = rules -table->colsep+1|rowsep+1 =all -table->colsep+1|rowsep+0 =cols -table->colsep+0|rowsep+1 =rows - -table->frame =frame -table->frame+all =border -table->frame+none =void -table->frame+sides =vsides -table->frame+top =above -table->frame+topbot =hsides - -thead = thead - -tfoot = tfoot - -tbody = tbody - -colspec = col - -tgroup = colgroup -tgroup/ = 1 -tgroup->cols = span - -row = tr - -entry = td -entry->morerows = colspan -entry->morerows+1 =2 -entry->morerows+2 =3 -entry->morerows+3 =4 -entry->morerows+4 =5 -entry->morerows+5 =6 -entry->morerows+6 =7 -entry->morerows+7 =8 -entry->morerows+8 =9 -entry->morerows+9 =10 -entry->morerows+10 =11 -;; add more if you need more colspans - -warning = <span class="warning"> -/warning = </span> -warning! = 0 - -;; now begins the attributes that should be tags in cdata -[$attr$id] -open = a -;close = /a -cdata! = true -quotevalues = true -separator = "=" -;separateall = true -$id = name - -;; now begins the sections that deal with <title> -[refsynopsisdiv_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h1 class="title"> -close = </h1> - -[refsect1_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h2 class="title"> -close = </h2> - -[refsect2_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h3 class="title"> -close = </h3> - -[refsect3_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h4 class="title"> -close = </h4> - -[para_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <div class="title"> -close = </div> - -[formalpara_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <div class="title"> -close = </div> - -[example_title] -;tag_attr = true -;attr_name = title -;cdata_start = true -cdata_end = true -open = </td></tr><tr><td><strong> -close = </strong> - -[table_title] -;tag_attr = true -;attr_name = true -cdata_start = true -open = <caption> -close = </caption> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/basicindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/basicindex.tpl deleted file mode 100755 index 951ee264..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/basicindex.tpl +++ /dev/null @@ -1,47 +0,0 @@ -<div class="index-letter-menu"> -{section name=letter loop=$letters} - <a class="index-letter" href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> -{/section} -</div> - -{section name=index loop=$index} - <a name="{$index[index].letter}"></a> - <div class="index-letter-section"> - <div style="float: left" class="index-letter-title">{$index[index].letter}</div> - <div style="float: right"><a href="#top">top</a></div> - <div style="clear: both"></div> - </div> - <dl> - {section name=contents loop=$index[index].index} - <dt class="field"> - {if ($index[index].index[contents].title == "Variable")} - <span class="var-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Global")} - <span class="var-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Method")} - <span class="method-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Function")} - <span class="method-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Constant")} - <span class="const-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Page") || ($index[index].index[contents].title == "Include")} - <span class="include-title">{$index[index].index[contents].name}</span> - {else} - {$index[index].index[contents].name} - {/if} - </dt> - <dd class="index-item-body"> - <div class="index-item-details">{$index[index].index[contents].link} in {$index[index].index[contents].file_name}</div> - {if $index[index].index[contents].description} - <div class="index-item-description">{$index[index].index[contents].description}</div> - {/if} - </dd> - {/section} - </dl> -{/section} - -<div class="index-letter-menu"> -{section name=letter loop=$letters} - <a class="index-letter" href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> -{/section} -</div> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/blank.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/blank.tpl deleted file mode 100755 index 6a05f27e..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/blank.tpl +++ /dev/null @@ -1,13 +0,0 @@ -<html> -<head> - <title>{$maintitle}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> -</head> -<body> -<div align="center"><h1>{$maintitle}</h1></div> -<b>Welcome to {$package}!</b><br /> -<br /> -This documentation was generated by <a href="{$phpdocwebsite}">phpDocumentor v{$phpdocversion}</a><br /> -</body> -</html>
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/class.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/class.tpl deleted file mode 100755 index 9ab7c455..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/class.tpl +++ /dev/null @@ -1,429 +0,0 @@ -{include file="header.tpl" top3=true} - -<h2 class="class-name">{if $is_interface}Interface{else}Class{/if} {$class_name}</h2> - -<a name="sec-description"></a> -<div class="info-box"> - <div class="info-box-title">Description</div> - <div class="nav-bar"> - {if $children || $vars || $ivars || $methods || $imethods || $consts || $iconsts } - <span class="disabled">Description</span> | - {/if} - {if $children} - <a href="#sec-descendents">Descendents</a> - {if $vars || $ivars || $methods || $imethods || $consts || $iconsts}|{/if} - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {if $methods || $imethods}|{/if} - {/if} - {if $methods || $imethods} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {if $implements} - <p class="implements"> - Implements interfaces: - <ul> - {foreach item="int" from=$implements}<li>{$int}</li>{/foreach} - </ul> - </p> - {/if} - {include file="docblock.tpl" type="class" sdesc=$sdesc desc=$desc} - <p class="notes"> - Located in <a class="field" href="{$page_link}">{$source_location}</a> (line <span class="field">{if $class_slink}{$class_slink}{else}{$line_number}{/if}</span>) - </p> - - {if $tutorial} - <hr class="separator" /> - <div class="notes">Tutorial: <span class="tutorial">{$tutorial}</span></div> - {/if} - - <pre>{section name=tree loop=$class_tree.classes}{$class_tree.classes[tree]}{$class_tree.distance[tree]}{/section}</pre> - - {if $conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with classes:</span><br /> - {section name=me loop=$conflicts.conflicts} - {$conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - </div> -</div> - -{if $children} - <a name="sec-descendents"></a> - <div class="info-box"> - <div class="info-box-title">Direct descendents</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - <span class="disabled">Descendents</span> - {if $vars || $ivars || $methods || $imethods}|{/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {if $methods || $imethods}|{/if} - {/if} - {if $methods || $imethods} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <table cellpadding="2" cellspacing="0" class="class-table"> - <tr> - <th class="class-table-header">Class</th> - <th class="class-table-header">Description</th> - </tr> - {section name=kids loop=$children} - <tr> - <td style="padding-right: 2em">{$children[kids].link}</td> - <td> - {if $children[kids].sdesc} - {$children[kids].sdesc} - {else} - {$children[kids].desc} - {/if} - </td> - </tr> - {/section} - </table> - </div> - </div> -{/if} - -{if $consts} - <a name="sec-const-summary"></a> - <div class="info-box"> - <div class="info-box-title">Class Constant Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendants</a> | - {/if} - <span class="disabled">Constants</span> (<a href="#sec-consts">details</a>) - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - | - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <div class="const-summary"> - {section name=consts loop=$consts} - <div class="const-title"> - <img src="{$subdir}media/images/Constant.png" alt=" " /> - <a href="#{$consts[consts].const_name}" title="details" class="const-name">{$consts[consts].const_name}</a> = <span class="var-type">{$consts[consts].const_value}</span> - - </div> - {/section} - </div> - </div> - </div> -{/if} - -{if $vars} - <a name="sec-var-summary"></a> - <div class="info-box"> - <div class="info-box-title">Variable Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - <span class="disabled">Vars</span> (<a href="#sec-vars">details</a>) - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <div class="var-summary"> - {section name=vars loop=$vars} - {if $vars[vars].static} - <div class="var-title"> - static <span class="var-type">{$vars[vars].var_type}</span> - <a href="#{$vars[vars].var_name}" title="details" class="var-name">{$vars[vars].var_name}</a> - </div> - {/if} - {/section} - {section name=vars loop=$vars} - {if !$vars[vars].static} - <div class="var-title"> - <span class="var-type">{$vars[vars].var_type}</span> - <a href="#{$vars[vars].var_name}" title="details" class="var-name">{$vars[vars].var_name}</a> - </div> - {/if} - {/section} - </div> - </div> - </div> -{/if} - -{if $methods} - <a name="sec-method-summary"></a> - <div class="info-box"> - <div class="info-box-title">Method Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - | - {/if} - <span class="disabled">Methods</span> (<a href="#sec-methods">details</a>) - </div> - <div class="info-box-body"> - <div class="method-summary"> - {section name=methods loop=$methods} - {if $methods[methods].static} - <div class="method-definition"> - static {if $methods[methods].function_return} - <span class="method-result">{$methods[methods].function_return}</span> - {/if} - <a href="#{$methods[methods].function_name}" title="details" class="method-name">{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}</a> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - {/if} - {/section} - {section name=methods loop=$methods} - {if !$methods[methods].static} - <div class="method-definition"> - {if $methods[methods].function_return} - <span class="method-result">{$methods[methods].function_return}</span> - {/if} - <a href="#{$methods[methods].function_name}" title="details" class="method-name">{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}</a> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - {/if} - {/section} - </div> - </div> - </div> -{/if} - -{if $vars || $ivars} - <a name="sec-vars"></a> - <div class="info-box"> - <div class="info-box-title">Variables</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $methods} - <a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Vars</span> - {/if} - - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {include file="var.tpl"} - {if $ivars} - <h4>Inherited Variables</h4> - <A NAME='inherited_vars'><!-- --></A> - {section name=ivars loop=$ivars} - <p>Inherited from <span class="classname">{$ivars[ivars].parent_class}</span></p> - <blockquote> - {section name=ivars2 loop=$ivars[ivars].ivars} - <span class="var-title"> - <span class="var-name">{$ivars[ivars].ivars[ivars2].link}</span>{if $ivars[ivars].ivars[ivars2].ivar_sdesc}: {$ivars[ivars].ivars[ivars2].ivar_sdesc}{/if}<br> - </span> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{if $methods || $imethods} - <a name="sec-methods"></a> - <div class="info-box"> - <div class="info-box-title">Methods</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Methods</span> - {/if} - </div> - <div class="info-box-body"> - {include file="method.tpl"} - {if $imethods} - <h4>Inherited Methods</h4> - <a name='inherited_methods'><!-- --></a> - {section name=imethods loop=$imethods} - <!-- =========== Summary =========== --> - <p>Inherited From <span class="classname">{$imethods[imethods].parent_class}</span></p> - <blockquote> - {section name=im2 loop=$imethods[imethods].imethods} - <span class="method-name">{$imethods[imethods].imethods[im2].link}</span>{if $imethods[imethods].imethods[im2].ifunction_sdesc}: {$imethods[imethods].imethods[im2].ifunction_sdesc}{/if}<br> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{if $consts || $iconsts} - <a name="sec-consts"></a> - <div class="info-box"> - <div class="info-box-title">Class Constants</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendants</a> | - {/if} - {if $methods} - <a href="#sec-var-summary">Constants</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Constants</span> - {/if} - - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {include file="const.tpl"} - {if $iconsts} - <h4>Inherited Constants</h4> - <A NAME='inherited_vars'><!-- --></A> - {section name=iconsts loop=$iconsts} - <p>Inherited from <span class="classname">{$iconsts[iconsts].parent_class}</span></p> - <blockquote> - {section name=iconsts2 loop=$iconsts[iconsts].iconsts} - <img src="{$subdir}media/images/{if $iconsts[iconsts].iconsts[iconsts2].access == 'private'}PrivateVariable{else}Variable{/if}.png" /> - <span class="const-title"> - <span class="const-name">{$iconsts[iconsts].iconsts[iconsts2].link}</span>{if $iconsts[iconsts].iconsts[iconsts2].iconst_sdesc}: {$iconsts[iconsts].iconsts[iconsts2].iconst_sdesc}{/if}<br> - </span> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{include file="footer.tpl" top3=true} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/classtrees.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/classtrees.tpl deleted file mode 100755 index 952e6d50..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/classtrees.tpl +++ /dev/null @@ -1,19 +0,0 @@ -{include file="header.tpl" top1=true} - -<!-- Start of Class Data --> -<H2> - {$smarty.capture.title} -</H2> -{if $interfaces} -{section name=classtrees loop=$interfaces} -<h2>Root interface {$interfaces[classtrees].class}</h2> -{$interfaces[classtrees].class_tree} -{/section} -{/if} -{if $classtrees} -{section name=classtrees loop=$classtrees} -<h2>Root class {$classtrees[classtrees].class}</h2> -{$classtrees[classtrees].class_tree} -{/section} -{/if} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/const.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/const.tpl deleted file mode 100644 index c26ff92d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/const.tpl +++ /dev/null @@ -1,18 +0,0 @@ -{section name=consts loop=$consts} -<a name="const{$consts[consts].const_name}" id="{$consts[consts].const_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="const-header"> - <img src="{$subdir}media/images/{if $consts[consts].access == 'private'}PrivateVariable{else}Variable{/if}.png" /> - <span class="const-title"> - <span class="const-name">{$consts[consts].const_name}</span> - = <span class="const-default">{$consts[consts].const_value|replace:"\n":"<br />"}</span> - (line <span class="line-number">{if $consts[consts].slink}{$consts[consts].slink}{else}{$consts[consts].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$consts[consts].sdesc desc=$consts[consts].desc tags=$consts[consts].tags} - -</div> -{/section} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/define.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/define.tpl deleted file mode 100755 index 0da5d864..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/define.tpl +++ /dev/null @@ -1,24 +0,0 @@ -{section name=def loop=$defines} -<a name="{$defines[def].define_link}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="const-title"> - <span class="const-name">{$defines[def].define_name}</span> = {$defines[def].define_value|replace:"\n":"<br />"} - (line <span class="line-number">{if $defines[def].slink}{$defines[def].slink}{else}{$defines[def].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$defines[def].sdesc desc=$defines[def].desc tags=$defines[def].tags} - - {if $globals[glob].global_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with constants:</span><br /> - {section name=me loop=$defines[def].define_conflicts.conflicts} - {$defines[def].define_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/docblock.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/docblock.tpl deleted file mode 100755 index 783d5271..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/docblock.tpl +++ /dev/null @@ -1,14 +0,0 @@ -<!-- ========== Info from phpDoc block ========= --> -{if $sdesc} -<p class="short-description">{$sdesc}</p> -{/if} -{if $desc} -<p class="description">{$desc}</p> -{/if} -{if $tags} - <ul class="tags"> - {section name=tags loop=$tags} - <li><span class="field">{$tags[tags].keyword}:</span> {$tags[tags].data}</li> - {/section} - </ul> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/elementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/elementindex.tpl deleted file mode 100755 index d5964f99..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/elementindex.tpl +++ /dev/null @@ -1,12 +0,0 @@ -{include file="header.tpl" noleftindex=true} -<a name="top"></a> -<h2>Full index</h2> -<h3>Package indexes</h3> -<ul> -{section name=p loop=$packageindex} - <li><a href="elementindex_{$packageindex[p].title}.html">{$packageindex[p].title}</a></li> -{/section} -</ul> -<br /> -{include file="basicindex.tpl" indexname="elementindex"} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/errors.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/errors.tpl deleted file mode 100755 index 0f526584..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/errors.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{include file="header.tpl" noleftindex=true} -{section name=files loop=$files} -<a href="#{$files[files].file}">{$files[files].file}</a><br> -{/section} -{foreach key=file item=issues from=$all} -<a name="{$file}"></a> -<h1>{$file}</h1> -{if count($issues.warnings)} -<h2>Warnings:</h2><br> -{section name=warnings loop=$issues.warnings} -<b>{$issues.warnings[warnings].name}</b> - {$issues.warnings[warnings].listing}<br> -{/section} -{/if} -{if count($issues.errors)} -<h2>Errors:</h2><br> -{section name=errors loop=$issues.errors} -<b>{$issues.errors[errors].name}</b> - {$issues.errors[errors].listing}<br> -{/section} -{/if} -{/foreach} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/examplesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/examplesource.tpl deleted file mode 100755 index 8abf74ce..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/examplesource.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl" title=$title} -<h1>{$title}</h1> -<div class="listing"> -{$source} -</div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/filesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/filesource.tpl deleted file mode 100755 index 239f7b41..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/filesource.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{capture name="tutle"}File Source for {$name}{/capture} -{include file="header.tpl" title=$smarty.capture.tutle} -<h1>Source for file {$name}</h1> -<p>Documentation is available at {$docs}</p> -<div class="src-code"> -{$source} -</div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/footer.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/footer.tpl deleted file mode 100755 index 8d0f79db..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/footer.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{if !$index} - <p class="notes" id="credit"> - Documentation generated on {$date} by <a href="{$phpdocwebsite}" target="_blank">phpDocumentor {$phpdocversion}</a> - </p> -{/if} - {if $top3}</div>{/if} -</body> -</html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/function.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/function.tpl deleted file mode 100755 index b6880059..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/function.tpl +++ /dev/null @@ -1,44 +0,0 @@ -{section name=func loop=$functions} -<a name="{$functions[func].function_dest}" id="{$functions[func].function_dest}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="method-title">{$functions[func].function_name}</span> (line <span class="line-number">{if $functions[func].slink}{$functions[func].slink}{else}{$functions[func].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$functions[func].sdesc desc=$functions[func].desc tags=$functions[func].tags params=$functions[func].params function=false} - - <div class="method-signature"> - <span class="method-result">{$functions[func].function_return}</span> - <span class="method-name"> - {if $functions[func].ifunction_call.returnsref}&{/if}{$functions[func].function_name} - </span> - {if count($functions[func].ifunction_call.params)} - ({section name=params loop=$functions[func].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $functions[func].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$functions[func].ifunction_call.params[params].type}</span> <span class="var-name">{$functions[func].ifunction_call.params[params].name}</span>{if $functions[func].ifunction_call.params[params].hasdefault} = <span class="var-default">{$functions[func].ifunction_call.params[params].default|escape:"html"}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $functions[func].params} - <ul class="parameters"> - {section name=params loop=$functions[func].params} - <li> - <span class="var-type">{$functions[func].params[params].datatype}</span> - <span class="var-name">{$functions[func].params[params].var}</span>{if $functions[func].params[params].data}<span class="var-description">: {$functions[func].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $functions[func].function_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with functions:</span><br /> - {section name=me loop=$functions[func].function_conflicts.conflicts} - {$functions[func].function_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/global.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/global.tpl deleted file mode 100755 index eab7e0b0..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/global.tpl +++ /dev/null @@ -1,26 +0,0 @@ -{section name=glob loop=$globals} -<a name="{$globals[glob].global_link}" id="{$globals[glob].global_link}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="var-title"> - <span class="var-type">{$globals[glob].global_type}</span> - <span class="var-name">{$globals[glob].global_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$globals[glob].global_value|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $globals[glob].slink}{$globals[glob].slink}{else}{$globals[glob].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$globals[glob].sdesc desc=$globals[glob].desc tags=$globals[glob].tags} - - {if $globals[glob].global_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with global variables:</span><br /> - {section name=me loop=$globals[glob].global_conflicts.conflicts} - {$globals[glob].global_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/header.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/header.tpl deleted file mode 100755 index 0d626190..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/header.tpl +++ /dev/null @@ -1,95 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <!-- template designed by Marco Von Ballmoos --> - <title>{$title}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - {if $top2 || $top3} - <script src="{$subdir}media/lib/classTree.js"></script> - {/if} - {if $top2} - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> - {/if} - {if $top3 || $top2} - <script language="javascript" type="text/javascript"> - var imgPlus = new Image(); - var imgMinus = new Image(); - imgPlus.src = "{$subdir}media/images/plus.png"; - imgMinus.src = "{$subdir}media/images/minus.png"; - - function showNode(Node){ldelim} - switch(navigator.family){ldelim} - case 'nn4': - // Nav 4.x code fork... - var oTable = document.layers["span" + Node]; - var oImg = document.layers["img" + Node]; - break; - case 'ie4': - // IE 4/5 code fork... - var oTable = document.all["span" + Node]; - var oImg = document.all["img" + Node]; - break; - case 'gecko': - // Standards Compliant code fork... - var oTable = document.getElementById("span" + Node); - var oImg = document.getElementById("img" + Node); - break; - {rdelim} - oImg.src = imgMinus.src; - oTable.style.display = "block"; - {rdelim} - - function hideNode(Node){ldelim} - switch(navigator.family){ldelim} - case 'nn4': - // Nav 4.x code fork... - var oTable = document.layers["span" + Node]; - var oImg = document.layers["img" + Node]; - break; - case 'ie4': - // IE 4/5 code fork... - var oTable = document.all["span" + Node]; - var oImg = document.all["img" + Node]; - break; - case 'gecko': - // Standards Compliant code fork... - var oTable = document.getElementById("span" + Node); - var oImg = document.getElementById("img" + Node); - break; - {rdelim} - oImg.src = imgPlus.src; - oTable.style.display = "none"; - {rdelim} - - function nodeIsVisible(Node){ldelim} - switch(navigator.family){ldelim} - case 'nn4': - // Nav 4.x code fork... - var oTable = document.layers["span" + Node]; - break; - case 'ie4': - // IE 4/5 code fork... - var oTable = document.all["span" + Node]; - break; - case 'gecko': - // Standards Compliant code fork... - var oTable = document.getElementById("span" + Node); - break; - {rdelim} - return (oTable && oTable.style.display == "block"); - {rdelim} - - function toggleNodeVisibility(Node){ldelim} - if (nodeIsVisible(Node)){ldelim} - hideNode(Node); - {rdelim}else{ldelim} - showNode(Node); - {rdelim} - {rdelim} - </script> - {/if} - </head> - <body> - {if $top3}<div class="page-body">{/if} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/include.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/include.tpl deleted file mode 100755 index c2419e5f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/include.tpl +++ /dev/null @@ -1,16 +0,0 @@ -{section name=includes loop=$includes} -<a name="{$includes[includes].include_file}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="include-title"> - <span class="include-type">{$includes[includes].include_name}</span> - (<span class="include-name">{$includes[includes].include_value}</span>) - (line <span class="line-number">{if $includes[includes].slink}{$includes[includes].slink}{else}{$includes[includes].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$includes[includes].sdesc desc=$includes[includes].desc tags=$includes[includes].tags} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/index.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/index.tpl deleted file mode 100755 index 7cd61094..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/index.tpl +++ /dev/null @@ -1,24 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html - PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//FR" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> -<head> - <!-- Generated by phpDocumentor on {$date} --> - <title>{$title}</title> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> -</head> - -<FRAMESET rows='120,*'> - <FRAME src='packages.html' name='left_top' frameborder="1" bordercolor="#999999"> - <FRAMESET cols='25%,*'> - <FRAME src='{$start}' name='left_bottom' frameborder="1" bordercolor="#999999"> - <FRAME src='{$blank}.html' name='right' frameborder="1" bordercolor="#999999"> - </FRAMESET> - <NOFRAMES> - <H2>Frame Alert</H2> - <P>This document is designed to be viewed using the frames feature. - If you see this message, you are using a non-frame-capable web client.</P> - </NOFRAMES> -</FRAMESET> -</HTML> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/left_frame.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/left_frame.tpl deleted file mode 100755 index 35178d87..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/left_frame.tpl +++ /dev/null @@ -1,197 +0,0 @@ -{include file="header.tpl" top2=true} -<h3 class="package-title">{$info.0.package}</h3> -<div class="tree"> -<script language="Javascript"> -if (document.getElementById) {ldelim} -{section name=p loop=$info} - {if $info[p].subpackage == ""} - var tree = new WebFXTree('<span class="package">{$info.0.package|escape:"quotes"}</span>'); - tree.setBehavior('classic'); - - {if $hastodos} - var todos = new WebFXTreeItem('To-do List', '{$todolink}'); - tree.add(todos); - {/if} - - var class_trees = new WebFXTreeItem('Class trees', '{$classtreepage}.html'); - tree.add(class_trees); - - var elements = new WebFXTreeItem('Index of elements', '{$elementindex}.html'); - tree.add(elements); - - var parent_node; - - {if $info[p].tutorials} - var tree_tutorial = new WebFXTreeItem('Tutorial(s)/Manual(s)', ''); - tree.add(tree_tutorial); - - {if $info[p].tutorials.pkg} - var tree_inner_tutorial = new WebFXTreeItem('Package-level', ''); - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.pkg} - {$info[p].tutorials.pkg[ext]} - {/section} - {/if} - - {if $info[p].tutorials.cls} - var tree_inner_tutorial = new WebFXTreeItem('Class-level', ''); - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.cls} - {$info[p].tutorials.cls[ext]} - {/section} - {/if} - - {if $info[p].tutorials.proc} - var tree_inner_tutorial = new WebFXTreeItem('Function-level', ''); - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.proc} - {$info[p].tutorials.proc[ext]} - {/section} - {/if} - {/if} - {if $info[p].hasinterfaces} - {if $info[p].classes} - var tree_classe = new WebFXTreeItem('Interface(s)', '{$packagedoc}'); - - {section name=class loop=$info[p].classes} - {if $info[p].classes[class].is_interface} - var classe = new WebFXTreeItem('{$info[p].classes[class].title|escape:"quotes"}', '{$info[p].classes[class].link|escape:"quotes"}'); - tree_classe.add(classe); - {/if} - {/section} - - tree.add(tree_classe); - {/if} - {/if} - {if $info[p].hasclasses} - {if $info[p].classes} - var tree_classe = new WebFXTreeItem('Class(es)', '{$packagedoc}'); - - {section name=class loop=$info[p].classes} - {if $info[p].classes[class].is_class} - var classe = new WebFXTreeItem('{$info[p].classes[class].title|escape:"quotes"}', '{$info[p].classes[class].link|escape:"quotes"}'); - tree_classe.add(classe); - {/if} - {/section} - - tree.add(tree_classe); - {/if} - {/if} - - {if $info[p].functions} - var tree_function = new WebFXTreeItem('Function(s)', '{$packagedoc|escape:"quotes"}'); - - {section name=nonclass loop=$info[p].functions} - var fic = new WebFXTreeItem('{$info[p].functions[nonclass].title|escape:"quotes"}', '{$info[p].functions[nonclass].link}'); - tree_function.add(fic); - {/section} - - tree.add(tree_function); - {/if} - - {if $info[p].files} - var tree_file = new WebFXTreeItem('File(s)', '{$packagedoc|escape:"quotes"}'); - - {section name=nonclass loop=$info[p].files} - var file = new WebFXTreeItem('{$info[p].files[nonclass].title|escape:"quotes"}', '{$info[p].files[nonclass].link|escape:"quotes"}'); - tree_file.add(file); - {/section} - - tree.add(tree_file); - {/if} - - {else} - {if $info[p].subpackagetutorial} - var subpackagetree = new WebFXTreeItem('<span class="sub-package">{$info[p].subpackagetutorialtitle|strip_tags|escape:"quotes"}</span>', '{$info[p].subpackagetutorialnoa|escape:"quotes"}'); - {else} - var subpackagetree = new WebFXTreeItem('<span class="sub-package">{$info[p].subpackage|escape:"quotes"}</span>', '{$packagedoc|escape:"quotes"}'); - {/if} - - {if $info[p].tutorials} - var tree_tutorial = new WebFXTreeItem('Tutorial(s)/Manual(s)', ''); - tree.add(tree_tutorial); - - {if $info[p].tutorials.pkg} - var tree_inner_tutorial = new WebFXTreeItem('Package-level', ''); - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.pkg} - {$info[p].tutorials.pkg[ext]} - {/section} - {/if} - - {if $info[p].tutorials.cls} - var tree_inner_tutorial = new WebFXTreeItem('Class-level', ''); - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.cls} - {$info[p].tutorials.cls[ext]} - {/section} - {/if} - - {if $info[p].tutorials.proc} - var tree_inner_tutorial = new WebFXTreeItem('Function-level', ''); - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.proc} - {$info[p].tutorials.proc[ext]} - {/section} - {/if} - {/if} - - {if $info[p].classes} - var subpackagetree_classe = new WebFXTreeItem('Class(es)', '{$packagedoc|escape:"quotes"}'); - - {section name=class loop=$info[p].classes} - var classe = new WebFXTreeItem('{$info[p].classes[class].title|escape:"quotes"}', '{$info[p].classes[class].link|escape:"quotes"}'); - subpackagetree_classe.add(classe); - {/section} - - subpackagetree.add(subpackagetree_classe); - {/if} - - {if $info[p].functions} - var subpackagetree_function = new WebFXTreeItem('Function(s)', '{$packagedoc}'); - - {section name=nonclass loop=$info[p].functions} - var fic = new WebFXTreeItem('{$info[p].functions[nonclass].title|escape:"quotes"}', '{$info[p].functions[nonclass].link|escape:"quotes"}'); - subpackagetree_function.add(fic); - {/section} - - subpackagetree.add(subpackagetree_function); - {/if} - - {if $info[p].files} - var subpackagetree_file = new WebFXTreeItem('File(s)', '{$packagedoc|escape:"quotes"}'); - - {section name=nonclass loop=$info[p].files} - var file = new WebFXTreeItem('{$info[p].files[nonclass].title|escape:"quotes"}', '{$info[p].files[nonclass].link|escape:"quotes"}'); - subpackagetree_file.add(file); - {/section} - - subpackagetree.add(subpackagetree_file); - {/if} - - tree.add(subpackagetree); - {/if} -{/section} - -document.write(tree); -{rdelim} -</script> -</div> -<p class="notes"> - Generated by - <a href="{$phpdocwebsite}" target="_blank">phpDocumentor <span class="field">{$phpdocversion}</span></a> -</p> -</body> -</html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/banner.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/banner.css deleted file mode 100755 index f2149ebb..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/banner.css +++ /dev/null @@ -1,32 +0,0 @@ -body -{ - background-color: #CCCCFF; - margin: 0px; - padding: 0px; -} - -/* Banner (top bar) classes */ - -.banner { } - -.banner-menu -{ - clear: both; - padding: .5em; - border-top: 2px solid #6666AA; -} - -.banner-title -{ - text-align: right; - font-size: 20pt; - font-weight: bold; - margin: .2em; -} - -.package-selector -{ - background-color: #AAAADD; - border: 1px solid black; - color: yellow; -} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/I.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/I.png Binary files differdeleted file mode 100755 index e8512fb9..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/I.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/L.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/L.png Binary files differdeleted file mode 100755 index eb334eda..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/L.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/Lminus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/Lminus.png Binary files differdeleted file mode 100755 index f7c43c0a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/Lminus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/Lplus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/Lplus.png Binary files differdeleted file mode 100755 index 848ec2fc..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/Lplus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/T.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/T.png Binary files differdeleted file mode 100755 index 30173254..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/T.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/Tminus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/Tminus.png Binary files differdeleted file mode 100755 index 2260e424..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/Tminus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/Tplus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/Tplus.png Binary files differdeleted file mode 100755 index 2c8d8f4f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/Tplus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/blank.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/blank.png Binary files differdeleted file mode 100755 index cee9cd37..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/blank.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/empty.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/empty.png Binary files differdeleted file mode 100755 index d5683865..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/empty.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/minus.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/minus.gif Binary files differdeleted file mode 100644 index f502662b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/minus.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/plus.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/plus.gif Binary files differdeleted file mode 100644 index eeca02ce..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/images/plus.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/lib/classTree.js b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/lib/classTree.js deleted file mode 100755 index ebb3fb4a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/lib/classTree.js +++ /dev/null @@ -1,454 +0,0 @@ -/*----------------------------------------\ -| Cross Browser Tree Widget 1.1 | -|-----------------------------------------| -| Created by Emil A. Eklund (eae@eae.net) | -| For WebFX (http://webfx.eae.net/) | -|-----------------------------------------| -| This script is provided as is without | -| any warranty whatsoever. It may be used | -| free of charge for non commerical sites | -| For commerical use contact the author | -| of this script for further details. | -|-----------------------------------------| -| Created 2000-12-11 | Updated 2001-09-06 | -\----------------------------------------*/ - -var webFXTreeConfig = { - rootIcon : 'media/images/empty.png', - openRootIcon : 'media/images/empty.png', - folderIcon : 'media/images/empty.png', - openFolderIcon : 'media/images/empty.png', - fileIcon : 'media/images/empty.png', - iIcon : 'media/images/I.png', - lIcon : 'media/images/L.png', - lMinusIcon : 'media/images/Lminus.png', - lPlusIcon : 'media/images/Lplus.png', - tIcon : 'media/images/T.png', - tMinusIcon : 'media/images/Tminus.png', - tPlusIcon : 'media/images/Tplus.png', - blankIcon : 'media/images/blank.png', - defaultText : 'Tree Item', - defaultAction : 'javascript:void(0);', - defaultTarget : 'right', - defaultBehavior : 'classic' -}; - -var webFXTreeHandler = { - idCounter : 0, - idPrefix : "webfx-tree-object-", - all : {}, - behavior : null, - selected : null, - getId : function() { return this.idPrefix + this.idCounter++; }, - toggle : function (oItem) { this.all[oItem.id.replace('-plus','')].toggle(); }, - select : function (oItem) { this.all[oItem.id.replace('-icon','')].select(); }, - focus : function (oItem) { this.all[oItem.id.replace('-anchor','')].focus(); }, - blur : function (oItem) { this.all[oItem.id.replace('-anchor','')].blur(); }, - keydown : function (oItem) { return this.all[oItem.id].keydown(window.event.keyCode); }, - cookies : new WebFXCookie() -}; - -/* - * WebFXCookie class - */ - -function WebFXCookie() { - if (document.cookie.length) { this.cookies = ' ' + document.cookie; } -} - -WebFXCookie.prototype.setCookie = function (key, value) { - document.cookie = key + "=" + escape(value); -} - -WebFXCookie.prototype.getCookie = function (key) { - if (this.cookies) { - var start = this.cookies.indexOf(' ' + key + '='); - if (start == -1) { return null; } - var end = this.cookies.indexOf(";", start); - if (end == -1) { end = this.cookies.length; } - end -= start; - var cookie = this.cookies.substr(start,end); - return unescape(cookie.substr(cookie.indexOf('=') + 1, cookie.length - cookie.indexOf('=') + 1)); - } - else { return null; } -} - -/* - * WebFXTreeAbstractNode class - */ - -function WebFXTreeAbstractNode(sText, sAction, sTarget) { - this.childNodes = []; - this.id = webFXTreeHandler.getId(); - this.text = sText || webFXTreeConfig.defaultText; - this.action = sAction || webFXTreeConfig.defaultAction; - this.targetWindow = sTarget || webFXTreeConfig.defaultTarget; - this._last = false; - webFXTreeHandler.all[this.id] = this; -} - -WebFXTreeAbstractNode.prototype.add = function (node) { - node.parentNode = this; - this.childNodes[this.childNodes.length] = node; - var root = this; - if (this.childNodes.length >=2) { - this.childNodes[this.childNodes.length -2]._last = false; - } - while (root.parentNode) { root = root.parentNode; } - if (root.rendered) { - if (this.childNodes.length >= 2) { - document.getElementById(this.childNodes[this.childNodes.length -2].id + '-plus').src = ((this.childNodes[this.childNodes.length -2].folder)?webFXTreeConfig.tMinusIcon:webFXTreeConfig.tIcon); - if (this.childNodes[this.childNodes.length -2].folder) { - this.childNodes[this.childNodes.length -2].plusIcon = webFXTreeConfig.tPlusIcon; - this.childNodes[this.childNodes.length -2].minusIcon = webFXTreeConfig.tMinusIcon; - } - this.childNodes[this.childNodes.length -2]._last = false; - } - this._last = true; - var foo = this; - while (foo.parentNode) { - for (var i = 0; i < foo.parentNode.childNodes.length; i++) { - if (foo.id == foo.parentNode.childNodes[i].id) { break; } - } - if (++i == foo.parentNode.childNodes.length) { foo.parentNode._last = true; } - else { foo.parentNode._last = false; } - foo = foo.parentNode; - } - document.getElementById(this.id + '-cont').insertAdjacentHTML("beforeEnd", node.toString()); - if ((!this.folder) && (!this.openIcon)) { - this.icon = webFXTreeConfig.folderIcon; - this.openIcon = webFXTreeConfig.openFolderIcon; - } - this.folder = true; - this.indent(); - this.expand(); - } - return node; -} - -WebFXTreeAbstractNode.prototype.toggle = function() { - if (this.folder) { - if (this.open) { this.collapse(); } - else { this.expand(); } - } -} - -WebFXTreeAbstractNode.prototype.select = function() { - document.getElementById(this.id + '-anchor').focus(); -} - -WebFXTreeAbstractNode.prototype.focus = function() { - webFXTreeHandler.selected = this; - if ((this.openIcon) && (webFXTreeHandler.behavior != 'classic')) { document.getElementById(this.id + '-icon').src = this.openIcon; } - document.getElementById(this.id + '-anchor').style.backgroundColor = 'highlight'; - document.getElementById(this.id + '-anchor').style.color = 'highlighttext'; - document.getElementById(this.id + '-anchor').focus(); -} - -WebFXTreeAbstractNode.prototype.blur = function() { - if ((this.openIcon) && (webFXTreeHandler.behavior != 'classic')) { document.getElementById(this.id + '-icon').src = this.icon; } - document.getElementById(this.id + '-anchor').style.backgroundColor = 'transparent'; - document.getElementById(this.id + '-anchor').style.color = 'menutext'; -} - -WebFXTreeAbstractNode.prototype.doExpand = function() { - if (webFXTreeHandler.behavior == 'classic') { document.getElementById(this.id + '-icon').src = this.openIcon; } - if (this.childNodes.length) { document.getElementById(this.id + '-cont').style.display = 'block'; } - this.open = true; - webFXTreeHandler.cookies.setCookie(this.id.substr(18,this.id.length - 18), '1'); -} - -WebFXTreeAbstractNode.prototype.doCollapse = function() { - if (webFXTreeHandler.behavior == 'classic') { document.getElementById(this.id + '-icon').src = this.icon; } - if (this.childNodes.length) { document.getElementById(this.id + '-cont').style.display = 'none'; } - this.open = false; - webFXTreeHandler.cookies.setCookie(this.id.substr(18,this.id.length - 18), '0'); -} - -WebFXTreeAbstractNode.prototype.expandAll = function() { - this.expandChildren(); - if ((this.folder) && (!this.open)) { this.expand(); } -} - -WebFXTreeAbstractNode.prototype.expandChildren = function() { - for (var i = 0; i < this.childNodes.length; i++) { - this.childNodes[i].expandAll(); -} } - -WebFXTreeAbstractNode.prototype.collapseAll = function() { - if ((this.folder) && (this.open)) { this.collapse(); } - this.collapseChildren(); -} - -WebFXTreeAbstractNode.prototype.collapseChildren = function() { - for (var i = 0; i < this.childNodes.length; i++) { - this.childNodes[i].collapseAll(); -} } - -WebFXTreeAbstractNode.prototype.indent = function(lvl, del, last, level) { - /* - * Since we only want to modify items one level below ourself, - * and since the rightmost indentation position is occupied by - * the plus icon we set this to -2 - */ - if (lvl == null) { lvl = -2; } - var state = 0; - for (var i = this.childNodes.length - 1; i >= 0 ; i--) { - state = this.childNodes[i].indent(lvl + 1, del, last, level); - if (state) { return; } - } - if (del) { - if (level >= this._level) { - if (this.folder) { - document.getElementById(this.id + '-plus').src = (this.open)?webFXTreeConfig.lMinusIcon:webFXTreeConfig.lPlusIcon; - this.plusIcon = webFXTreeConfig.lPlusIcon; - this.minusIcon = webFXTreeConfig.lMinusIcon; - } - else { document.getElementById(this.id + '-plus').src = webFXTreeConfig.lIcon; } - return 1; - } - } - var foo = document.getElementById(this.id + '-indent-' + lvl); - if (foo) { - if ((del) && (last)) { foo._last = true; } - if (foo._last) { foo.src = webFXTreeConfig.blankIcon; } - else { foo.src = webFXTreeConfig.iIcon; } - } - return 0; -} - -/* - * WebFXTree class - */ - -function WebFXTree(sText, sAction, sBehavior, sIcon, sOpenIcon) { - this.base = WebFXTreeAbstractNode; - this.base(sText, sAction); - this.icon = sIcon || webFXTreeConfig.rootIcon; - this.openIcon = sOpenIcon || webFXTreeConfig.openRootIcon; - /* Defaults to open */ - this.open = (webFXTreeHandler.cookies.getCookie(this.id.substr(18,this.id.length - 18)) == '0')?false:true; - this.folder = true; - this.rendered = false; - if (!webFXTreeHandler.behavior) { webFXTreeHandler.behavior = sBehavior || webFXTreeConfig.defaultBehavior; } - this.targetWindow = 'right'; -} - -WebFXTree.prototype = new WebFXTreeAbstractNode; - -WebFXTree.prototype.setBehavior = function (sBehavior) { - webFXTreeHandler.behavior = sBehavior; -}; - -WebFXTree.prototype.getBehavior = function (sBehavior) { - return webFXTreeHandler.behavior; -}; - -WebFXTree.prototype.getSelected = function() { - if (webFXTreeHandler.selected) { return webFXTreeHandler.selected; } - else { return null; } -} - -WebFXTree.prototype.remove = function() { } - -WebFXTree.prototype.expand = function() { - this.doExpand(); -} - -WebFXTree.prototype.collapse = function() { - this.focus(); - this.doCollapse(); -} - -WebFXTree.prototype.getFirst = function() { - return null; -} - -WebFXTree.prototype.getLast = function() { - return null; -} - -WebFXTree.prototype.getNextSibling = function() { - return null; -} - -WebFXTree.prototype.getPreviousSibling = function() { - return null; -} - -WebFXTree.prototype.keydown = function(key) { - if (key == 39) { this.expand(); return false; } - if (key == 37) { this.collapse(); return false; } - if ((key == 40) && (this.open)) { this.childNodes[0].select(); return false; } - return true; -} - -WebFXTree.prototype.toString = function() { - var str = "<div id=\"" + this.id + "\" ondblclick=\"webFXTreeHandler.toggle(this);\" class=\"webfx-tree-item\" onkeydown=\"return webFXTreeHandler.keydown(this)\">"; - str += "<img id=\"" + this.id + "-icon\" class=\"webfx-tree-icon\" src=\"" + ((webFXTreeHandler.behavior == 'classic' && this.open)?this.openIcon:this.icon) + "\" onclick=\"webFXTreeHandler.select(this);\"><a href=\"" + this.action + "\" id=\"" + this.id + "-anchor\" target=\"" + this.targetWindow + "\" onfocus=\"webFXTreeHandler.focus(this);\" onblur=\"webFXTreeHandler.blur(this);\">" + this.text + "</a></div>"; - str += "<div id=\"" + this.id + "-cont\" class=\"webfx-tree-container\" style=\"display: " + ((this.open)?'block':'none') + ";\">"; - for (var i = 0; i < this.childNodes.length; i++) { - str += this.childNodes[i].toString(i, this.childNodes.length); - } - str += "</div>"; - this.rendered = true; - return str; -}; - -/* - * WebFXTreeItem class - */ - -function WebFXTreeItem(sText, sAction, eParent, sIcon, sOpenIcon) { - this.base = WebFXTreeAbstractNode; - this.base(sText, sAction); - /* Defaults to close */ - this.open = (webFXTreeHandler.cookies.getCookie(this.id.substr(18,this.id.length - 18)) == '1')?true:false; - if (eParent) { eParent.add(this); } - if (sIcon) { this.icon = sIcon; } - if (sOpenIcon) { this.openIcon = sOpenIcon; } -} - -WebFXTreeItem.prototype = new WebFXTreeAbstractNode; - -WebFXTreeItem.prototype.remove = function() { - var parentNode = this.parentNode; - var prevSibling = this.getPreviousSibling(true); - var nextSibling = this.getNextSibling(true); - var folder = this.parentNode.folder; - var last = ((nextSibling) && (nextSibling.parentNode) && (nextSibling.parentNode.id == parentNode.id))?false:true; - this.getPreviousSibling().focus(); - this._remove(); - if (parentNode.childNodes.length == 0) { - parentNode.folder = false; - parentNode.open = false; - } - if (last) { - if (parentNode.id == prevSibling.id) { - document.getElementById(parentNode.id + '-icon').src = webFXTreeConfig.fileIcon; - } - else { } - } - if ((!prevSibling.parentNode) || (prevSibling.parentNode != parentNode)) { - parentNode.indent(null, true, last, this._level); - } - if (document.getElementById(prevSibling.id + '-plus')) { - if (nextSibling) { - if ((parentNode == prevSibling) && (parentNode.getNextSibling)) { document.getElementById(prevSibling.id + '-plus').src = webFXTreeConfig.tIcon; } - else if (nextSibling.parentNode != prevSibling) { document.getElementById(prevSibling.id + '-plus').src = webFXTreeConfig.lIcon; } - } - else { document.getElementById(prevSibling.id + '-plus').src = webFXTreeConfig.lIcon; } - } -} - -WebFXTreeItem.prototype._remove = function() { - for (var i = this.childNodes.length - 1; i >= 0; i--) { - this.childNodes[i]._remove(); - } - for (var i = 0; i < this.parentNode.childNodes.length; i++) { - if (this.id == this.parentNode.childNodes[i].id) { - for (var j = i; j < this.parentNode.childNodes.length; j++) { - this.parentNode.childNodes[i] = this.parentNode.childNodes[i+1] - } - this.parentNode.childNodes.length = this.parentNode.childNodes.length - 1; - if (i + 1 == this.parentNode.childNodes.length) { this.parentNode._last = true; } - } - } - webFXTreeHandler.all[this.id] = null; - if (document.getElementById(this.id)) { - document.getElementById(this.id).innerHTML = ""; - document.getElementById(this.id).removeNode(); - } -} - -WebFXTreeItem.prototype.expand = function() { - this.doExpand(); - document.getElementById(this.id + '-plus').src = this.minusIcon; -} - -WebFXTreeItem.prototype.collapse = function() { - this.focus(); - this.doCollapse(); - document.getElementById(this.id + '-plus').src = this.plusIcon; -} - -WebFXTreeItem.prototype.getFirst = function() { - return this.childNodes[0]; -} - -WebFXTreeItem.prototype.getLast = function() { - if (this.childNodes[this.childNodes.length - 1].open) { return this.childNodes[this.childNodes.length - 1].getLast(); } - else { return this.childNodes[this.childNodes.length - 1]; } -} - -WebFXTreeItem.prototype.getNextSibling = function() { - for (var i = 0; i < this.parentNode.childNodes.length; i++) { - if (this == this.parentNode.childNodes[i]) { break; } - } - if (++i == this.parentNode.childNodes.length) { return this.parentNode.getNextSibling(); } - else { return this.parentNode.childNodes[i]; } -} - -WebFXTreeItem.prototype.getPreviousSibling = function(b) { - for (var i = 0; i < this.parentNode.childNodes.length; i++) { - if (this == this.parentNode.childNodes[i]) { break; } - } - if (i == 0) { return this.parentNode; } - else { - if ((this.parentNode.childNodes[--i].open) || (b && this.parentNode.childNodes[i].folder)) { return this.parentNode.childNodes[i].getLast(); } - else { return this.parentNode.childNodes[i]; } -} } - -WebFXTreeItem.prototype.keydown = function(key) { - if ((key == 39) && (this.folder)) { - if (!this.open) { this.expand(); return false; } - else { this.getFirst().select(); return false; } - } - else if (key == 37) { - if (this.open) { this.collapse(); return false; } - else { this.parentNode.select(); return false; } - } - else if (key == 40) { - if (this.open) { this.getFirst().select(); return false; } - else { - var sib = this.getNextSibling(); - if (sib) { sib.select(); return false; } - } } - else if (key == 38) { this.getPreviousSibling().select(); return false; } - return true; -} - -WebFXTreeItem.prototype.toString = function (nItem, nItemCount) { - var foo = this.parentNode; - var indent = ''; - if (nItem + 1 == nItemCount) { this.parentNode._last = true; } - var i = 0; - while (foo.parentNode) { - foo = foo.parentNode; - indent = "<img id=\"" + this.id + "-indent-" + i + "\" src=\"" + ((foo._last)?webFXTreeConfig.blankIcon:webFXTreeConfig.iIcon) + "\">" + indent; - i++; - } - this._level = i; - if (this.childNodes.length) { this.folder = 1; } - else { this.open = false; } - if ((this.folder) || (webFXTreeHandler.behavior != 'classic')) { - if (!this.icon) { this.icon = webFXTreeConfig.folderIcon; } - if (!this.openIcon) { this.openIcon = webFXTreeConfig.openFolderIcon; } - } - else if (!this.icon) { this.icon = webFXTreeConfig.fileIcon; } - var label = this.text; - label = label.replace('<', '<'); - label = label.replace('>', '>'); - var str = "<div id=\"" + this.id + "\" ondblclick=\"webFXTreeHandler.toggle(this);\" class=\"webfx-tree-item\" onkeydown=\"return webFXTreeHandler.keydown(this)\">"; - str += indent; - str += "<img id=\"" + this.id + "-plus\" src=\"" + ((this.folder)?((this.open)?((this.parentNode._last)?webFXTreeConfig.lMinusIcon:webFXTreeConfig.tMinusIcon):((this.parentNode._last)?webFXTreeConfig.lPlusIcon:webFXTreeConfig.tPlusIcon)):((this.parentNode._last)?webFXTreeConfig.lIcon:webFXTreeConfig.tIcon)) + "\" onclick=\"webFXTreeHandler.toggle(this);\">" - str += "<img id=\"" + this.id + "-icon\" src=\"" + ((webFXTreeHandler.behavior == 'classic' && this.open)?this.openIcon:this.icon) + "\" onclick=\"webFXTreeHandler.select(this);\"><a href=\"" + this.action + "\" id=\"" + this.id + "-anchor\" target=\"" + this.targetWindow + "\" onfocus=\"webFXTreeHandler.focus(this);\" onblur=\"webFXTreeHandler.blur(this);\">" + label + "</a></div>"; - str += "<div id=\"" + this.id + "-cont\" class=\"webfx-tree-container\" style=\"display: " + ((this.open)?'block':'none') + ";\">"; - for (var i = 0; i < this.childNodes.length; i++) { - str += this.childNodes[i].toString(i,this.childNodes.length); - } - str += "</div>"; - this.plusIcon = ((this.parentNode._last)?webFXTreeConfig.lPlusIcon:webFXTreeConfig.tPlusIcon); - this.minusIcon = ((this.parentNode._last)?webFXTreeConfig.lMinusIcon:webFXTreeConfig.tMinusIcon); - return str; -}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/stylesheet.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/stylesheet.css deleted file mode 100755 index 72d3141d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/media/stylesheet.css +++ /dev/null @@ -1,184 +0,0 @@ -a { color: #336699; text-decoration: none; } -a:hover { color: #6699CC; text-decoration: underline; } -a:active { color: #6699CC; text-decoration: underline; } - -body { background : #FFFFFF; } -body, table { font-family: Georgia, Times New Roman, Times, serif; font-size: 10pt } -p, li { line-height: 140% } -a img { border: 0px; } -dd { margin-left: 0px; padding-left: 1em; } - -/* Page layout/boxes */ - -.info-box {} -.info-box-title { margin: 1em 0em 0em 0em; padding: .25em; font-weight: normal; font-size: 14pt; border: 2px solid #999999; background-color: #CCCCFF } -.info-box-body { border: 1px solid #999999; padding: .5em; } -.nav-bar { font-size: 8pt; white-space: nowrap; text-align: right; padding: .2em; margin: 0em 0em 1em 0em; } - -.oddrow { background-color: #F8F8F8; border: 1px solid #AAAAAA; padding: .5em; margin-bottom: 1em} -.evenrow { border: 1px solid #AAAAAA; padding: .5em; margin-bottom: 1em} - -.page-body { max-width: 800px; margin: auto; } -.tree { } - -/* Index formatting classes */ - -.index-item-body { margin-top: .5em; margin-bottom: .5em} -.index-item-description { margin-top: .25em } -.index-item-details { font-weight: normal; font-style: italic; font-size: 8pt } -.index-letter-section { background-color: #EEEEEE; border: 1px dotted #999999; padding: .5em; margin-bottom: 1em} -.index-letter-title { font-size: 12pt; font-weight: bold } -.index-letter-menu { text-align: center; margin: 1em } -.index-letter { font-size: 12pt } - -/* Docbook classes */ - -.description {} -.short-description { font-weight: bold; color: #666666; } -.tags { padding-left: 0em; margin-left: 3em; color: #666666; list-style-type: square; } -.parameters { padding-left: 0em; margin-left: 3em; font-style: italic; list-style-type: square; } -.redefinitions { font-size: 8pt; padding-left: 0em; margin-left: 2em; } -.package { } -.package-title { font-weight: bold; font-size: 14pt; border-bottom: 1px solid black } -.package-details { font-size: 85%; } -.sub-package { font-weight: bold; font-size: 120% } -.tutorial { border-width: thin; border-color: #0066ff } -.tutorial-nav-box { width: 100%; border: 1px solid #999999; background-color: #F8F8F8; } -.nav-button-disabled { color: #999999; } -.nav-button:active, -.nav-button:focus, -.nav-button:hover { background-color: #DDDDDD; outline: 1px solid #999999; text-decoration: none } -.folder-title { font-style: italic } - -/* Generic formatting */ - -.field { font-weight: bold; } -.detail { font-size: 8pt; } -.notes { font-style: italic; font-size: 8pt; } -.separator { background-color: #999999; height: 2px; } -.warning { color: #FF6600; } -.disabled { font-style: italic; color: #999999; } - -/* Code elements */ - -.line-number { } - -.class-table { width: 100%; } -.class-table-header { border-bottom: 1px dotted #666666; text-align: left} -.class-name { color: #000000; font-weight: bold; } - -.method-summary { padding-left: 1em; font-size: 8pt } -.method-header { } -.method-definition { margin-bottom: .3em } -.method-title { font-weight: bold; } -.method-name { font-weight: bold; } -.method-signature { font-size: 85%; color: #666666; margin: .5em 0em } -.method-result { font-style: italic; } - -.var-summary { padding-left: 1em; font-size: 8pt; } -.var-header { } -.var-title { margin-bottom: .3em } -.var-type { font-style: italic; } -.var-name { font-weight: bold; } -.var-default {} -.var-description { font-weight: normal; color: #000000; } - -.include-title { } -.include-type { font-style: italic; } -.include-name { font-weight: bold; } - -.const-title { } -.const-name { font-weight: bold; } - -/* Syntax highlighting */ - -.src-code { border: 1px solid #336699; padding: 1em; background-color: #EEEEEE; } -.src-line { font-family: 'Courier New', Courier, monospace; font-weight: normal; } - -.src-comm { color: green; } -.src-id { } -.src-inc { color: #0000FF; } -.src-key { color: #0000FF; } -.src-num { color: #CC0000; } -.src-str { color: #66cccc; } -.src-sym { font-weight: bold; } -.src-var { } - -.src-php { font-weight: bold; } - -.src-doc { color: #009999 } -.src-doc-close-template { color: #0000FF } -.src-doc-coretag { color: #0099FF; font-weight: bold } -.src-doc-inlinetag { color: #0099FF } -.src-doc-internal { color: #6699cc } -.src-doc-tag { color: #0080CC } -.src-doc-template { color: #0000FF } -.src-doc-type { font-style: italic } -.src-doc-var { font-style: italic } - -.tute-tag { color: #009999 } -.tute-attribute-name { color: #0000FF } -.tute-attribute-value { color: #0099FF } -.tute-entity { font-weight: bold; } -.tute-comment { font-style: italic } -.tute-inline-tag { color: #636311; font-weight: bold } - -/* tutorial */ - -.authors { } -.author { font-style: italic; font-weight: bold } -.author-blurb { margin: .5em 0em .5em 2em; font-size: 85%; font-weight: normal; font-style: normal } -.example { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; } -.listing { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; white-space: nowrap; } -.release-info { font-size: 85%; font-style: italic; margin: 1em 0em } -.ref-title-box { } -.ref-title { } -.ref-purpose { font-style: italic; color: #666666 } -.ref-synopsis { } -.title { font-weight: bold; margin: 1em 0em 0em 0em; padding: .25em; border: 2px solid #999999; background-color: #CCCCFF } -.cmd-synopsis { margin: 1em 0em } -.cmd-title { font-weight: bold } -.toc { margin-left: 2em; padding-left: 0em } - -/*------------------------------------------------------------------------------ - webfx-tree -------------------------------------------------------------------------------*/ - -.webfx-tree-container { - margin: 0px; - padding: 0px; - white-space: nowrap; - font: icon; -} - -.webfx-tree-item { - padding: 0px; - margin: 0px; - color: black; - white-space: nowrap; - font: icon; -} - -.webfx-tree-item a { - margin-left: 3px; - padding: 1px 2px 1px 2px; - color: black; - text-decoration: none; -} - -.webfx-tree-item a:hover, .webfx-tree-item a:active, .webfx-tree-item a:focus { - color: black; - background: #CCCCFF; - text-decoration: none -} - -.webfx-tree-item img { - vertical-align: middle; - border: 0px; -} - -.webfx-tree-icon { - width: 16px; - height: 16px; -} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/method.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/method.tpl deleted file mode 100755 index 06d57a12..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/method.tpl +++ /dev/null @@ -1,149 +0,0 @@ -<A NAME='method_detail'></A> -{section name=methods loop=$methods} -{if $methods[methods].static} -<a name="method{$methods[methods].function_name}" id="{$methods[methods].function_name}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="method-header"> - <span class="method-title">static {$methods[methods].function_name}</span> (line <span class="line-number">{if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags params=$methods[methods].params function=false} - - <div class="method-signature"> - static <span class="method-result">{$methods[methods].function_return}</span> - <span class="method-name"> - {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name} - </span> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $methods[methods].params} - <ul class="parameters"> - {section name=params loop=$methods[methods].params} - <li> - <span class="var-type">{$methods[methods].params[params].datatype}</span> - <span class="var-name">{$methods[methods].params[params].var}</span>{if $methods[methods].params[params].data}<span class="var-description">: {$methods[methods].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $methods[methods].method_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$methods[methods].method_overrides.link}</dt> - {if $methods[methods].method_overrides.sdesc} - <dd>{$methods[methods].method_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} - - {if $methods[methods].descmethod} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=dm loop=$methods[methods].descmethod} - <li> - {$methods[methods].descmethod[dm].link} - {if $methods[methods].descmethod[dm].sdesc} - : {$methods[methods].descmethod[dm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} -</div> -{/if} -{/section} -{section name=methods loop=$methods} -{if !$methods[methods].static} -<a name="method{$methods[methods].function_name}" id="{$methods[methods].function_name}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="method-header"> - <span class="method-title">{if $methods[methods].ifunction_call.constructor}Constructor {elseif $methods[methods].ifunction_call.destructor}Destructor {/if}{$methods[methods].function_name}</span> (line <span class="line-number">{if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags params=$methods[methods].params function=false} - - <div class="method-signature"> - <span class="method-result">{$methods[methods].function_return}</span> - <span class="method-name"> - {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name} - </span> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $methods[methods].params} - <ul class="parameters"> - {section name=params loop=$methods[methods].params} - <li> - <span class="var-type">{$methods[methods].params[params].datatype}</span> - <span class="var-name">{$methods[methods].params[params].var}</span>{if $methods[methods].params[params].data}<span class="var-description">: {$methods[methods].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $methods[methods].method_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$methods[methods].method_overrides.link}</dt> - {if $methods[methods].method_overrides.sdesc} - <dd>{$methods[methods].method_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} - - {if $methods[methods].descmethod} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=dm loop=$methods[methods].descmethod} - <li> - {$methods[methods].descmethod[dm].link} - {if $methods[methods].descmethod[dm].sdesc} - : {$methods[methods].descmethod[dm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} -</div> -{/if} -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/page.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/page.tpl deleted file mode 100755 index b5980236..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/page.tpl +++ /dev/null @@ -1,211 +0,0 @@ -{include file="header.tpl" top3=true} - -<h2 class="file-name">{$source_location}</h2> - -<a name="sec-description"></a> -<div class="info-box"> - <div class="info-box-title">Description</div> - <div class="nav-bar"> - {if $classes || $includes || $defines || $globals || $functions} - <span class="disabled">Description</span> | - {/if} - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="docblock.tpl" desc=$desc sdesc=$sdesc tags=$tags} - - {if $tutorial} - <hr class="separator" /> - <div class="notes">Tutorial: <span class="tutorial">{$tutorial}</div> - {/if} - </div> -</div> - -{if $classes} - <a name="sec-classes"></a> - <div class="info-box"> - <div class="info-box-title">Classes</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - <span class="disabled">Classes</span> - {if $includes || $defines || $globals || $functions}|{/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - <table cellpadding="2" cellspacing="0" class="class-table"> - <tr> - <th class="class-table-header">Class</th> - <th class="class-table-header">Description</th> - </tr> - {section name=classes loop=$classes} - <tr> - <td style="padding-right: 2em; vertical-align: top"> - {$classes[classes].link} - </td> - <td> - {if $classes[classes].sdesc} - {$classes[classes].sdesc} - {else} - {$classes[classes].desc} - {/if} - </td> - </tr> - {/section} - </table> - </div> - </div> -{/if} - -{if $includes} - <a name="sec-includes"></a> - <div class="info-box"> - <div class="info-box-title">Includes</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - <span class="disabled">Includes</span> - {if $defines || $globals || $functions}|{/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="include.tpl"} - </div> - </div> -{/if} - -{if $defines} - <a name="sec-constants"></a> - <div class="info-box"> - <div class="info-box-title">Constants</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - <span class="disabled">Constants</span> - {if $globals || $functions}|{/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="define.tpl"} - </div> - </div> -{/if} - -{if $globals} - <a name="sec-variables"></a> - <div class="info-box"> - <div class="info-box-title">Variables</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - <span class="disabled">Variables</span> - {if $functions}|{/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="global.tpl"} - </div> - </div> -{/if} - -{if $functions} - <a name="sec-functions"></a> - <div class="info-box"> - <div class="info-box-title">Functions</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - <span class="disabled">Functions</span> - </div> - <div class="info-box-body"> - {include file="function.tpl"} - </div> - </div> -{/if} - -{include file="footer.tpl" top3=true} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/pkgelementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/pkgelementindex.tpl deleted file mode 100755 index dc283ad0..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/pkgelementindex.tpl +++ /dev/null @@ -1,17 +0,0 @@ -{include file="header.tpl"} -<a name="top"></a> -<h2>[{$package}] element index</h2> -{if count($packageindex) > 1} - <h3>Package indexes</h3> - <ul> - {section name=p loop=$packageindex} - {if $packageindex[p].title != $package} - <li><a href="elementindex_{$packageindex[p].title}.html">{$packageindex[p].title}</a></li> - {/if} - {/section} - </ul> -{/if} -<a href="elementindex.html">All elements</a> -<br /> -{include file="basicindex.tpl" indexname=elementindex_$package} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/ric.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/ric.tpl deleted file mode 100755 index ad792475..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/ric.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl"} -<div align="center"><h1>{$name}</h1></div> -<pre> -{$contents|htmlentities} -</pre> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/todolist.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/todolist.tpl deleted file mode 100755 index f929ccdb..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/todolist.tpl +++ /dev/null @@ -1,14 +0,0 @@ -{include file="header.tpl" title="Todo List"} -<div align="center"><h1>Todo List</h1></div> -{foreach from=$todos key=todopackage item=todo} -<h2>{$todopackage}</h2> -{section name=todo loop=$todo} -<h3>{$todo[todo].link}</h3> -<ul> -{section name=t loop=$todo[todo].todos} - <li>{$todo[todo].todos[t]}</li> -{/section} -</ul> -{/section} -{/foreach} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/top_frame.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/top_frame.tpl deleted file mode 100755 index 36d1e5a1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/top_frame.tpl +++ /dev/null @@ -1,45 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <!-- template designed by Marco Von Ballmoos --> - <title>{$title}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - <link rel="stylesheet" href="{$subdir}media/banner.css" /> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> - </head> - <body> - <div class="banner"> - <div class="banner-title">{$package}</div> - <div class="banner-menu"> - <form> - <table cellpadding="0" cellspacing="0" style="width: 100%"> - <tr> - <td> - {if count($ric) >= 1} - {assign var="last_ric_name" value=""} - {section name=ric loop=$ric} - {if $last_ric_name != ""} | {/if} - <a href="{$ric[ric].file}" target="right">{$ric[ric].name}</a> - {assign var="last_ric_name" value=$ric[ric].name} - {/section} - {/if} - </td> - <td style="width: 2em"> </td> - <td style="text-align: right"> - {if count($packages) > 1} - <span class="field">Packages</span> - <select class="package-selector" onchange="window.parent.left_bottom.location=this[selectedIndex].value"> - {section name=p loop=$packages} - <option value="{$packages[p].link}">{$packages[p].title}</option> - {/section} - </select> - {/if} - </td> - </tr> - </table> - </form> - </div> - </div> - </body> - </html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/tutorial.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/tutorial.tpl deleted file mode 100755 index 3b9109d1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/tutorial.tpl +++ /dev/null @@ -1,13 +0,0 @@ -{include file="header.tpl" title=$title top3=true} - -{if $nav} - {include file="tutorial_nav.tpl" prev=$prev next=$next up=$up prevtitle=$prevtitle nexttitle=$nexttitle uptitle=$uptitle} -{/if} - -{$contents} - -{if $nav} - {include file="tutorial_nav.tpl" prev=$prev next=$next up=$up prevtitle=$prevtitle nexttitle=$nexttitle uptitle=$uptitle} -{/if} - -{include file="footer.tpl" top3=true}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/tutorial_nav.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/tutorial_nav.tpl deleted file mode 100755 index 89952301..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/tutorial_nav.tpl +++ /dev/null @@ -1,41 +0,0 @@ -<table class="tutorial-nav-box"> - <tr> - <td style="width: 30%"> - {if $prev} - <a href="{$prev}" class="nav-button">Previous</a> - {else} - <span class="nav-button-disabled">Previous</span> - {/if} - </td> - <td style="text-align: center"> - {if $up} - <a href="{$up}" class="nav-button">Up</a> - {/if} - </td> - <td style="text-align: right; width: 30%"> - {if $next} - <a href="{$next}" class="nav-button">Next</a> - {else} - <span class="nav-button-disabled">Next</span> - {/if} - </td> - </tr> - <tr> - <td style="width: 30%"> - {if $prevtitle} - <span class="detail">{$prevtitle}</span> - {/if} - </td> - <td style="text-align: center"> - {if $uptitle} - <span class="detail">{$uptitle}</span> - {/if} - </td> - <td style="text-align: right; width: 30%"> - {if $nexttitle} - <span class="detail">{$nexttitle}</span> - {/if} - </td> - </tr> -</table> -
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/tutorial_toc.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/tutorial_toc.tpl deleted file mode 100755 index 3482249b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/tutorial_toc.tpl +++ /dev/null @@ -1,40 +0,0 @@ -{if count($toc)} -<h1 class="title">Table of Contents</h1> -<ul class="toc"> - {assign var="lastcontext" value='refsect1'} - {section name=toc loop=$toc} - - {if $toc[toc].tagname != $lastcontext} - {if $lastcontext == 'refsect1'} - <ul class="toc"> - <li>{$toc[toc].link}</li> - {else} - {if $lastcontext == 'refsect2'} - {if $toc[toc].tagname == 'refsect1'} - </ul> - <li>{$toc[toc].link}</li> - {/if} - {if $toc[toc].tagname == 'refsect3'} - <ul class="toc"> - <li>{$toc[toc].link}</li> - {/if} - {else} - </ul> - </ul> - <li>{$toc[toc].link}</li> - {/if} - {/if} - {assign var="lastcontext" value=$toc[toc].tagname} - {else} - <li>{$toc[toc].link}</li> - {/if} - {/section} - {if $lastcontext == 'refsect2'} - </ul> - {/if} - {if $lastcontext == 'refsect3'} - </ul> - </ul> - {/if} -</ul> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/tutorial_tree.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/tutorial_tree.tpl deleted file mode 100755 index 40d9a4ff..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/tutorial_tree.tpl +++ /dev/null @@ -1,8 +0,0 @@ - var a{$name|replace:"-":"_"}node = new WebFXTreeItem('{$main.title|strip_tags|escape:"quotes"}','{$main.link}', parent_node); - -{if $haskids} - var a{$name|replace:"-":"_"}_old_parent_node = parent_node; - parent_node = a{$name|replace:"-":"_"}node; - {$kids} - parent_node = a{$name|replace:"-":"_"}_old_parent_node; -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/var.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/var.tpl deleted file mode 100755 index 1b3ca2ff..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/default/templates/var.tpl +++ /dev/null @@ -1,90 +0,0 @@ -{section name=vars loop=$vars} -{if $vars[vars].static} -<a name="var{$vars[vars].var_name}" id="{$vars[vars].var_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="var-header"> - <span class="var-title"> - static <span class="var-type">{$vars[vars].var_type}</span> - <span class="var-name">{$vars[vars].var_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$vars[vars].var_default|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} - - {if $vars[vars].var_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$vars[vars].var_overrides.link}</dt> - {if $vars[vars].var_overrides.sdesc} - <dd>{$vars[vars].var_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - - {if $vars[vars].descvar} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=vm loop=$vars[vars].descvar} - <li> - {$vars[vars].descvar[vm].link} - {if $vars[vars].descvar[vm].sdesc} - : {$vars[vars].descvar[vm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} - -</div> -{/if} -{/section} -{section name=vars loop=$vars} -{if !$vars[vars].static} -<a name="var{$vars[vars].var_name}" id="{$vars[vars].var_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="var-header"> - <span class="var-title"> - <span class="var-type">{$vars[vars].var_type}</span> - <span class="var-name">{$vars[vars].var_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$vars[vars].var_default|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} - - {if $vars[vars].var_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$vars[vars].var_overrides.link}</dt> - {if $vars[vars].var_overrides.sdesc} - <dd>{$vars[vars].var_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - - {if $vars[vars].descvar} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=vm loop=$vars[vars].descvar} - <li> - {$vars[vars].descvar[vm].link} - {if $vars[vars].descvar[vm].sdesc} - : {$vars[vars].descvar[vm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} - -</div> -{/if} -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/options.ini b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/options.ini deleted file mode 100755 index 084809be..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/options.ini +++ /dev/null @@ -1,577 +0,0 @@ -preservedocbooktags = false - -;; used to highlight the {@source} inline tag, @filesource tag, and @example tag -[highlightSourceTokens] -;; format: -;; T_CONSTANTNAME = open -;; /T_CONSTANTNAME = close - -T_INCLUDE = <span class="src-inc"> -/T_INCLUDE = </span> -T_INCLUDE_ONCE = <span class="src-inc"> -/T_INCLUDE_ONCE = </span> -T_REQUIRE_ONCE = <span class="src-inc"> -/T_REQUIRE_ONCE = </span> -T_REQUIRE_ONCE = <span class="src-inc"> -/T_REQUIRE_ONCE = </span> - -T_CONSTANT_ENCAPSED_STRING = <span class="src-str"> -/T_CONSTANT_ENCAPSED_STRING = </span> -T_STRING_VARNAME = <span class="src-str"> -/T_STRING_VARNAME = </span> - -T_STRING = <span class="src-id"> -/T_STRING = </span> - -T_DNUMBER = <span class="src-num"> -/T_DNUMBER = </span> -T_LNUMBER = <span class="src-num"> -/T_LNUMBER = </span> - -T_VARIABLE = <span class="src-var"> -/T_VARIABLE = </span> - -T_COMMENT = <span class="src-comm"> -/T_COMMENT = </span> -T_ML_COMMENT = <span class="src-comm"> -/T_ML_COMMENT = </span> - -T_OBJECT_OPERATOR = <span class="src-sym"> -/T_OBJECT_OPERATOR = </span> - -T_ABSTRACT = <span class="src-key"> -/T_ABSTRACT = </span> -T_CLONE = <span class="src-key"> -/T_CLONE = </span> -T_HALT_COMPILER = <span class="src-key"> -/T_HALT_COMPILER = </span> -T_ARRAY = <span class="src-key"> -/T_ARRAY = </span> -T_AS = <span class="src-key"> -/T_AS = </span> -T_BREAK = <span class="src-key"> -/T_BREAK = </span> -T_CLASS = <span class="src-key"> -/T_CLASS = </span> -T_CASE = <span class="src-key"> -/T_CASE = </span> -T_CONST = <span class="src-key"> -/T_CONST = </span> -T_CONTINUE = <span class="src-key"> -/T_CONTINUE = </span> -T_DECLARE = <span class="src-key"> -/T_DECLARE = </span> -T_DEFAULT = <span class="src-key"> -/T_DEFAULT = </span> -T_ELSE = <span class="src-key"> -/T_ELSE = </span> -T_ELSEIF = <span class="src-key"> -/T_ELSEIF = </span> -T_EMPTY = <span class="src-key"> -/T_EMPTY = </span> -T_ENDDECLARE = <span class="src-key"> -/T_ENDDECLARE = </span> -T_ENDFOR = <span class="src-key"> -/T_ENDFOR = </span> -T_ENDSWITCH = <span class="src-key"> -/T_ENDSWITCH = </span> -T_ENDFOREACH = <span class="src-key"> -/T_ENDFOREACH = </span> -T_ENDIF = <span class="src-key"> -/T_ENDIF = </span> -T_ENDWHILE = <span class="src-key"> -/T_ENDWHILE = </span> -T_EXIT = <span class="src-key"> -/T_EXIT = </span> -T_EXTENDS = <span class="src-key"> -/T_EXTENDS = </span> -T_FINAL = <span class="src-key"> -/T_FINAL = </span> -T_FOR = <span class="src-key"> -/T_FOR = </span> -T_FOREACH = <span class="src-key"> -/T_FOREACH = </span> -T_FUNCTION = <span class="src-key"> -/T_FUNCTION = </span> -T_GLOBAL = <span class="src-key"> -/T_GLOBAL = </span> -T_IF = <span class="src-key"> -/T_IF = </span> -T_IMPLEMENTS = <span class="src-key"> -/T_IMPLEMENTS = </span> -T_INTERFACE = <span class="src-key"> -/T_INTERFACE = </span> -T_LOGICAL_AND = <span class="src-key"> -/T_LOGICAL_AND = </span> -T_LOGICAL_OR = <span class="src-key"> -/T_LOGICAL_OR = </span> -T_LOGICAL_XOR = <span class="src-key"> -/T_LOGICAL_XOR = </span> -T_NEW = <span class="src-key"> -/T_NEW = </span> -T_PRIVATE = <span class="src-key"> -/T_PRIVATE = </span> -T_PROTECTED = <span class="src-key"> -/T_PROTECTED = </span> -T_PUBLIC = <span class="src-key"> -/T_PUBLIC = </span> -T_RETURN = <span class="src-key"> -/T_RETURN = </span> -T_STATIC = <span class="src-key"> -/T_STATIC = </span> -T_SWITCH = <span class="src-key"> -/T_SWITCH = </span> -T_VAR = <span class="src-key"> -/T_VAR = </span> -T_WHILE = <span class="src-key"> -/T_WHILE = </span> - -T_DOUBLE_COLON = <span class="src-sym"> -/T_DOUBLE_COLON = </span> - -T_OPEN_TAG = <span class="src-php"> -/T_OPEN_TAG = </span> -T_OPEN_TAG_WITH_ECHO = <span class="src-php"> -/T_OPEN_TAG_WITH_ECHO = </span> -T_CLOSE_TAG = <span class="src-php"> -/T_CLOSE_TAG = </span> - - -[highlightSource] -;; this is for highlighting things that aren't tokens like "&" -;; format: -;; word = open -;; /word = close -@ = <span class="src-sym"> -/@ = </span> -& = <span class="src-sym"> -/& = </span> -[ = <span class="src-sym"> -/[ = </span> -] = <span class="src-sym"> -/] = </span> -! = <span class="src-sym"> -/! = </span> -";" = <span class="src-sym"> -/; = </span> -( = <span class="src-sym"> -/( = </span> -) = <span class="src-sym"> -/) = </span> -, = <span class="src-sym"> -/, = </span> -{ = <span class="src-sym"> -/{ = </span> -} = <span class="src-sym"> -/} = </span> -""" = <span class="src-str"> -/" = </span> - -[highlightDocBlockSourceTokens] -;; this is for docblock tokens, using by phpDocumentor_HighlightParser -;; tagphptype is for "string" in @param string description, for example -docblock = <span class="src-doc"> -/docblock = </span> -tagphptype = <span class="src-doc-type"> -/tagphptype = </span> -tagvarname = <span class="src-doc-var"> -/tagvarname = </span> -coretag = <span class="src-doc-coretag"> -/coretag = </span> -tag = <span class="src-doc-tag"> -/tag = </span> -inlinetag = <span class="src-doc-inlinetag"> -/inlinetag = </span> -internal = <span class="src-doc-internal"> -/internal = </span> -closetemplate = <span class="src-doc-close-template"> -/closetemplate = </span> -docblocktemplate = <span class="src-doc-template"> -/docblocktemplate = </span> - -[highlightTutorialSourceTokens] -;; this is for XML DocBook-based tutorials, highlighted by phpDocumentor_TutorialHighlightParser -;; <tag> -opentag = <span class="tute-tag"> -/opentag = </span> -;; </tag> -closetag = <span class="tute-tag"> -/closetag = </span> -;; <tag attribute="value"> -attribute = <span class="tute-attribute-name"> -/attribute = </span> -;; <tag attribute="value"> -attributevalue = <span class="tute-attribute-value"> -/attributevalue = </span> -;; &entity; -entity = <span class="tute-entity"> -/entity = </span> -;; <!-- comment --> -comment = <span class="tute-comment"> -/comment = </span> -;; {@inline tag} -itag = <span class="tute-inline-tag"> -/itag = </span> - -;; used for translation of html in DocBlocks -[desctranslate] -ul = <ul> -/ul = </ul> -ol = <ol> -/ol = </ol> -li = <li> -/li = </li> -code = -/code = -var = <var> -/var = </var> -samp = <samp> -/samp = </samp> -kbd = <kbd> -/kbd = </kbd> -pre = <pre> -/pre = </pre> -p = <p> -/p = </p> -b = <strong> -/b = </strong> -i = <em> -/i = </em> -br = <br /> - -[ppage] -;; this is the DocBook package page translation section. All DocBook tags -;; that have a corresponding html tag must be listed here. Entities should -;; also be listed here -;; -;; examples: -;; 1) -;; tagname = newtagname -;; -;; This is the simplest case, where all attributes will be added into the -;; starting tag and the ending tag will be html/xml style </tranlatedtagname> -;; <tagname></tagname> becomes <newtagname></newtagname> and -;; <tagname attr="value"></tagname> becomes -;; <newtagname attr="value"></newtagname> -;; -;; 2) -;; tagname = newtagname -;; tagname->attr = newattrname -;; -;; in this case, everything will be like the first case, except tags like: -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="value"></newtagname> -;; -;; 3) -;; tagname = newtagname -;; tagname->attr = newattrname -;; tagname->attr+value = newvalue -;; -;; in this case, the value is also translated to another. This can be useful -;; for instances such as focus="middle" changing to align="center" or something -;; of that nature. -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 4) -;; tagname = newtagname -;; tagname->attr1 = newattrname -;; tagname->attr2 = newattrname -;; tagname->attr1+value|attr2+value = newvalue -;; -;; in this case, two attributes combine to make one new attribute, and the combined -;; value is translated into a new value -;; <tagname attr1="value1" attr2="value2"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 5) -;; tagname = newtagname -;; tagname!attr = dummy -;; -;; here, the attribute will be ignored. dummy is not used and may be any value -;; <tagname attr="value"></tagname> will become -;; <newtagname></newtagname> -;; -;; 6) -;; tagname = newtagname -;; tagname! = dummy -;; -;; here, all attributes will be ignored. dummy is not used and may be any value -;; <tagname attr1="value" attr2="foo"></tagname> will become -;; <newtagname></newtagname> -;; -;; 7) -;; tagname = newtagname -;; tagname/ = 1 -;; -;; here, the tag will be translated as a single tag with no closing tag, and all -;; attributes -;; <tagname attr="val">{text text}</tagname> will become -;; <newtagname attr="val" /> -;; -;; 8) -;; tagname = <starttaginfo /> -;; /tagname = closetagtext -;; -;; in this case, the text <starttaginfo> will be inserted exactly as entered for -;; <tagname> and closetagtext for </tagname> -;; <tagname attr="val"></tagname> will become -;; <starttaginfo />closetagtext -;; -;; 9) -;; $attr$my_attribute = newattrname -;; -;; tagname = newtagname -;; -;; in this case, all occurences of my_attribute in any tag will be changed to -;; newattrname. This is useful for changing things like role="php" to -;; class="php," for example. Note that the text "$attr$" MUST be on the line -;; start for phpDocumentor to recognize it. -;; -;; 10) -;; &entity; = translation text -;; " = " -;; " = """ -;; < = < -;; -;; Use this to control translation of entities to their appropriate values - - = -" = " -” = ” -“ = “ -& = & -< = < -> = > -© = © - - -$attr$role = class - -abbrev = abbr - -blockquote = blockquote - -arg = span -arg->choice = class - -author = <span class="author"> -/author = </span> -author! = 0 - -authorblurb = <div class="author-blurb"> -/authorblurb = </div> - -authorgroup = <div class="authors"><h2 class="title">Authors</h2> -/authorgroup = </div> -authorgroup! = 0 - -caution = <span class="warning"> -/caution = </span> -caution! = 0 - -cmdsynopsis = <div class="cmd-synopsis"> -/cmdsynopsis = </div> - -command = <span class="cmd-title"> -/command = </span> - -copyright = <div class="notes"> -/copyright = </div> - -emphasis = em - -example = <div class="src-code"> -/example = </div> -example! = 0 - -function = -/function = () - -formalpara = p - -graphic = img -graphic->fileref = src -graphic/ = - -important = strong - -informalequation = blockquote - -informalexample = div - -inlineequation = em - -itemizedlist = ul - -listitem = li - -literal = code - -literallayout = span - -option = " " -/option = - -orderedlist = ol - -para = p - -programlisting = <div class="src-code"> -/programlisting = </div> -programlisting! = 0 - -refentry = div - -refnamediv = <div class="ref-title-box"> -/refnamediv = </div> -refnamediv! = 0 - -refname = <h1 class="ref-title"> -/refname = </h1> - -refpurpose = <h2 class="ref-purpose"> -/refpurpose = </h2> - -refsynopsisdiv = <div class="ref-synopsis"> -/refsynopsisdiv = </div> -refsynopsisdiv! = 0 - -refsect1 = span - -refsect2 = span - -refsect3 = -/refsect3 = <br /> - -releaseinfo = <div class="release-info">( -/releaseinfo = )</div> - -simpara = -/simpara = <br /> -simpara! = 0 - -subscript = sub - -superscript = super - -table = table - -table->colsep = rules -table->rowsep = rules -table->colsep+1|rowsep+1 =all -table->colsep+1|rowsep+0 =cols -table->colsep+0|rowsep+1 =rows - -table->frame =frame -table->frame+all =border -table->frame+none =void -table->frame+sides =vsides -table->frame+top =above -table->frame+topbot =hsides - -thead = thead - -tfoot = tfoot - -tbody = tbody - -colspec = col - -tgroup = colgroup -tgroup/ = 1 -tgroup->cols = span - -row = tr - -entry = td -entry->morerows = colspan -entry->morerows+1 =2 -entry->morerows+2 =3 -entry->morerows+3 =4 -entry->morerows+4 =5 -entry->morerows+5 =6 -entry->morerows+6 =7 -entry->morerows+7 =8 -entry->morerows+8 =9 -entry->morerows+9 =10 -entry->morerows+10 =11 -;; add more if you need more colspans - -warning = <span class="warning"> -/warning = </span> -warning! = 0 - -;; now begins the attributes that should be tags in cdata -[$attr$id] -open = a -;close = /a -cdata! = true -quotevalues = true -separator = "=" -;separateall = true -$id = name - -;; now begins the sections that deal with <title> -[refsynopsisdiv_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h1 class="title"> -close = </h1> - -[refsect1_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h2 class="title"> -close = </h2> - -[refsect2_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h3 class="title"> -close = </h3> - -[refsect3_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h4 class="title"> -close = </h4> - -[para_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <div class="title"> -close = </div> - -[formalpara_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <div class="title"> -close = </div> - -[example_title] -;tag_attr = true -;attr_name = title -;cdata_start = true -cdata_end = true -open = </td></tr><tr><td><strong> -close = </strong> - -[table_title] -;tag_attr = true -;attr_name = true -cdata_start = true -open = <caption> -close = </caption> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/basicindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/basicindex.tpl deleted file mode 100755 index f90100b4..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/basicindex.tpl +++ /dev/null @@ -1,57 +0,0 @@ -<div class="index-letter-menu"> -{section name=letter loop=$letters} - <a class="index-letter" href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> -{/section} -</div> - -{section name=index loop=$index} - <a name="{$index[index].letter}"></a> - <div class="index-letter-section"> - <div style="float: left" class="index-letter-title">{$index[index].letter}</div> - <div style="float: right"><a href="#top">top</a></div> - <div style="clear: both"></div> - </div> - <dl> - {section name=contents loop=$index[index].index} - <dt class="field"> - {if ($index[index].index[contents].title == "Variable")} - <img src="{$subdir}media/images/{if $index[index].index[contents].access == 'private'}Private{/if}{$index[index].index[contents].title}.png" alt="{$index[index].index[contents].title}" title="{$index[index].index[contents].title}" /> - <span class="var-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Global")} - <img src="{$subdir}media/images/{$index[index].index[contents].title}.png" alt="{$index[index].index[contents].title}" title="{$index[index].index[contents].title}" /> - <span class="var-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Method")} - <img src="{$subdir}media/images/{if $index[index].index[contents].constructor}Constructor{elseif $index[index].index[contents].destructor}Destructor{else}{if $index[index].index[contents].abstract}Abstract{/if}{if $index[index].index[contents].access == 'private'}Private{/if}{$index[index].index[contents].title}{/if}.png" alt="{$index[index].index[contents].title}" title="{$index[index].index[contents].title}" /> - <span class="method-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Function")} - <img src="{$subdir}media/images/{$index[index].index[contents].title}.png" alt="{$index[index].index[contents].title}" title="{$index[index].index[contents].title}" /> - <span class="method-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Constant")} - <img src="{$subdir}media/images/{$index[index].index[contents].title}.png" alt="{$index[index].index[contents].title}" title="{$index[index].index[contents].title}" /> - <span class="const-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Page") || ($index[index].index[contents].title == "Include")} - <img src="{$subdir}media/images/{$index[index].index[contents].title}.png" alt="{$index[index].index[contents].title}" title="{$index[index].index[contents].title}" /> - <span class="include-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Class")} - <img src="{$subdir}media/images/{if $index[index].index[contents].abstract}Abstract{/if}{if $index[index].index[contents].access == 'private'}Private{/if}{$index[index].index[contents].title}.png" alt="{$index[index].index[contents].title}" title="{$index[index].index[contents].title}" /> - {$index[index].index[contents].name} - {else} - <img src="{$subdir}media/images/{$index[index].index[contents].title}.png" alt="{$index[index].index[contents].title}" title="{$index[index].index[contents].title}" /> - {$index[index].index[contents].name} - {/if} - </dt> - <dd class="index-item-body"> - <div class="index-item-details">{$index[index].index[contents].link} in {$index[index].index[contents].file_name}</div> - {if $index[index].index[contents].description} - <div class="index-item-description">{$index[index].index[contents].description}</div> - {/if} - </dd> - {/section} - </dl> -{/section} - -<div class="index-letter-menu"> -{section name=letter loop=$letters} - <a class="index-letter" href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> -{/section} -</div> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/blank.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/blank.tpl deleted file mode 100755 index 6a05f27e..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/blank.tpl +++ /dev/null @@ -1,13 +0,0 @@ -<html> -<head> - <title>{$maintitle}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> -</head> -<body> -<div align="center"><h1>{$maintitle}</h1></div> -<b>Welcome to {$package}!</b><br /> -<br /> -This documentation was generated by <a href="{$phpdocwebsite}">phpDocumentor v{$phpdocversion}</a><br /> -</body> -</html>
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/class.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/class.tpl deleted file mode 100755 index 1999d25d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/class.tpl +++ /dev/null @@ -1,444 +0,0 @@ -{include file="header.tpl" top3=true} - -<h2 class="class-name"><img src="{$subdir}media/images/{if $abstract}{if $access == 'private'}AbstractPrivate{else}Abstract{/if}{else}{if $access == 'private'}Private{/if}{/if}Class_logo.png" - alt="{if $abstract}{if $access == 'private'}AbstractPrivate{else}Abstract{/if}{else}{if $access == 'private'}Private{/if}{/if} Class" - title="{if $abstract}{if $access == 'private'}AbstractPrivate{else}Abstract{/if}{else}{if $access == 'private'}Private{/if}{/if} Class" - style="vertical-align: middle">{if $is_interface}Interface{/if} {$class_name}</h2> - -<a name="sec-description"></a> -<div class="info-box"> - <div class="info-box-title">Description</div> - <div class="nav-bar"> - {if $children || $vars || $ivars || $methods || $imethods || $consts || $iconsts} - <span class="disabled">Description</span> | - {/if} - {if $children} - <a href="#sec-descendents">Descendents</a> - {if $vars || $ivars || $methods || $imethods || $consts || $iconsts}|{/if} - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {if $methods || $imethods}|{/if} - {/if} - {if $methods || $imethods} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {if $implements} - <p class="implements"> - Implements interfaces: - <ul> - {foreach item="int" from=$implements}<li>{$int}</li>{/foreach} - </ul> - </p> - {/if} - {include file="docblock.tpl" type="class" sdesc=$sdesc desc=$desc} - <p class="notes"> - Located in <a class="field" href="{$page_link}">{$source_location}</a> (line <span class="field">{if $class_slink}{$class_slink}{else}{$line_number}{/if}</span>) - </p> - - {if $tutorial} - <hr class="separator" /> - <div class="notes">Tutorial: <span class="tutorial">{$tutorial}</span></div> - {/if} - - <pre>{section name=tree loop=$class_tree.classes}{$class_tree.classes[tree]}{$class_tree.distance[tree]}{/section}</pre> - - {if $conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with classes:</span><br /> - {section name=me loop=$conflicts.conflicts} - {$conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - </div> -</div> - -{if $children} - <a name="sec-descendents"></a> - <div class="info-box"> - <div class="info-box-title">Direct descendents</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - <span class="disabled">Descendents</span> - {if $vars || $ivars || $methods || $imethods || $consts || $iconsts}|{/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {if $methods || $imethods}|{/if} - {/if} - {if $methods || $imethods} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <table cellpadding="2" cellspacing="0" class="class-table"> - <tr> - <th class="class-table-header">Class</th> - <th class="class-table-header">Description</th> - </tr> - {section name=kids loop=$children} - <tr> - <td style="padding-right: 2em; white-space: nowrap"> - <img src="{$subdir}media/images/{if $children[kids].abstract}Abstract{/if}{if $children[kids].access == 'private'}Private{/if}Class.png" - alt="{if $children[kids].abstract}Abstract{/if}{if $children[kids].access == 'private'}Private{/if} class" - title="{if $children[kids].abstract}Abstract{/if}{if $children[kids].access == 'private'}Private{/if} class" - style="vertical-align: center"/> - {$children[kids].link} - </td> - <td> - {if $children[kids].sdesc} - {$children[kids].sdesc} - {else} - {$children[kids].desc} - {/if} - </td> - </tr> - {/section} - </table> - </div> - </div> -{/if} - -{if $consts} - <a name="sec-const-summary"></a> - <div class="info-box"> - <div class="info-box-title">Class Constant Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendants</a> | - {/if} - <span class="disabled">Constants</span> (<a href="#sec-consts">details</a>) - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - | - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <div class="const-summary"> - {section name=consts loop=$consts} - <div class="const-title"> - <img src="{$subdir}media/images/Constant.png" alt=" " /> - <a href="#{$consts[consts].const_name}" title="details" class="const-name">{$consts[consts].const_name}</a> = <span class="var-type">{$consts[consts].const_value}</span> - - </div> - {/section} - </div> - </div> - </div> -{/if} - -{if $vars} - <a name="sec-var-summary"></a> - <div class="info-box"> - <div class="info-box-title">Variable Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendants</a> | - {/if} - <span class="disabled">Vars</span> (<a href="#sec-vars">details</a>) - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <div class="var-summary"> - {section name=vars loop=$vars} - {if $vars[vars].static} - <div class="var-title"> - <img src="{$subdir}media/images/StaticVariable.png" alt=" " /> - static <span class="var-type">{$vars[vars].var_type}</span> - <a href="#{$vars[vars].var_name}" title="details" class="var-name">{$vars[vars].var_name}</a> - </div> - {/if} - {/section} - {section name=vars loop=$vars} - {if !$vars[vars].static} - <div class="var-title"> - <img src="{$subdir}media/images/{if $vars[vars].access == 'private'}PrivateVariable{else}Variable{/if}.png" alt=" " /> - <span class="var-type">{$vars[vars].var_type}</span> - <a href="#{$vars[vars].var_name}" title="details" class="var-name">{$vars[vars].var_name}</a> - </div> - {/if} - {/section} - </div> - </div> - </div> -{/if} - -{if $methods} - <a name="sec-method-summary"></a> - <div class="info-box"> - <div class="info-box-title">Method Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendants</a> | - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - | - {/if} - <span class="disabled">Methods</span> (<a href="#sec-methods">details</a>) - </div> - <div class="info-box-body"> - <div class="method-summary"> - {section name=methods loop=$methods} - {if $methods[methods].static} - <div class="method-definition"> - <img src="{$subdir}media/images/StaticMethod.png" alt=" "/> - static {if $methods[methods].function_return} - <span class="method-result">{$methods[methods].function_return}</span> - {/if} - <a href="#{$methods[methods].function_name}" title="details" class="method-name">{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}</a> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - {/if} - {/section} - {section name=methods loop=$methods} - {if !$methods[methods].static} - <div class="method-definition"> - <img src="{$subdir}media/images/{if $methods[methods].ifunction_call.constructor}Constructor{elseif $methods[methods].ifunction_call.destructor}Destructor{elseif $methods[methods].access == 'private'}{if $methods[methods].abstract}Abstract{/if}PrivateMethod{else}{if $methods[methods].abstract}Abstract{/if}Method{/if}.png" alt=" "/> - {if $methods[methods].function_return} - <span class="method-result">{$methods[methods].function_return}</span> - {/if} - <a href="#{$methods[methods].function_name}" title="details" class="method-name">{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}</a> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - {/if} - {/section} - </div> - </div> - </div> -{/if} - -{if $vars || $ivars} - <a name="sec-vars"></a> - <div class="info-box"> - <div class="info-box-title">Variables</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $methods} - <a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Vars</span> - {/if} - - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {include file="var.tpl"} - {if $ivars} - <h4>Inherited Variables</h4> - <A NAME='inherited_vars'><!-- --></A> - {section name=ivars loop=$ivars} - <p>Inherited from <span class="classname">{$ivars[ivars].parent_class}</span></p> - <blockquote> - {section name=ivars2 loop=$ivars[ivars].ivars} - <img src="{$subdir}media/images/{if $ivars[ivars].ivars[ivars2].access == 'private'}PrivateVariable{else}Variable{/if}.png" /> - <span class="var-title"> - <span class="var-name">{$ivars[ivars].ivars[ivars2].link}</span>{if $ivars[ivars].ivars[ivars2].ivar_sdesc}: {$ivars[ivars].ivars[ivars2].ivar_sdesc}{/if}<br> - </span> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{if $methods || $imethods} - <a name="sec-methods"></a> - <div class="info-box"> - <div class="info-box-title">Methods</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Methods</span> - {/if} - </div> - <div class="info-box-body"> - {include file="method.tpl"} - {if $imethods} - <h4>Inherited Methods</h4> - <a name='inherited_methods'><!-- --></a> - {section name=imethods loop=$imethods} - <!-- =========== Summary =========== --> - <p>Inherited From <span class="classname">{$imethods[imethods].parent_class}</span></p> - <blockquote> - {section name=im2 loop=$imethods[imethods].imethods} - <img src="{$subdir}media/images/{if $imethods[imethods].imethods[im2].constructor}Constructor{elseif $imethods[imethods].imethods[im2].destructor}Destructor{elseif $imethods[imethods].imethods[im2].access == 'private'}{if $imethods[imethods].imethods[im2].abstract}Abstract{/if}PrivateMethod{else}{if $imethods[imethods].imethods[im2].abstract}Abstract{/if}Method{/if}.png" alt=" "/> - <span class="method-name">{$imethods[imethods].imethods[im2].link}</span>{if $imethods[imethods].imethods[im2].ifunction_sdesc}: {$imethods[imethods].imethods[im2].ifunction_sdesc}{/if}<br> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{if $consts || $iconsts} - <a name="sec-consts"></a> - <div class="info-box"> - <div class="info-box-title">Class Constants</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendants</a> | - {/if} - {if $methods} - <a href="#sec-var-summary">Constants</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Constants</span> - {/if} - - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {include file="const.tpl"} - {if $iconsts} - <h4>Inherited Constants</h4> - <A NAME='inherited_vars'><!-- --></A> - {section name=iconsts loop=$iconsts} - <p>Inherited from <span class="classname">{$iconsts[iconsts].parent_class}</span></p> - <blockquote> - {section name=iconsts2 loop=$iconsts[iconsts].iconsts} - <img src="{$subdir}media/images/{if $iconsts[iconsts].iconsts[iconsts2].access == 'private'}PrivateVariable{else}Variable{/if}.png" /> - <span class="const-title"> - <span class="const-name">{$iconsts[iconsts].iconsts[iconsts2].link}</span>{if $iconsts[iconsts].iconsts[iconsts2].iconst_sdesc}: {$iconsts[iconsts].iconsts[iconsts2].iconst_sdesc}{/if}<br> - </span> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{include file="footer.tpl" top3=true} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/classtrees.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/classtrees.tpl deleted file mode 100755 index 952e6d50..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/classtrees.tpl +++ /dev/null @@ -1,19 +0,0 @@ -{include file="header.tpl" top1=true} - -<!-- Start of Class Data --> -<H2> - {$smarty.capture.title} -</H2> -{if $interfaces} -{section name=classtrees loop=$interfaces} -<h2>Root interface {$interfaces[classtrees].class}</h2> -{$interfaces[classtrees].class_tree} -{/section} -{/if} -{if $classtrees} -{section name=classtrees loop=$classtrees} -<h2>Root class {$classtrees[classtrees].class}</h2> -{$classtrees[classtrees].class_tree} -{/section} -{/if} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/const.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/const.tpl deleted file mode 100644 index c26ff92d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/const.tpl +++ /dev/null @@ -1,18 +0,0 @@ -{section name=consts loop=$consts} -<a name="const{$consts[consts].const_name}" id="{$consts[consts].const_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="const-header"> - <img src="{$subdir}media/images/{if $consts[consts].access == 'private'}PrivateVariable{else}Variable{/if}.png" /> - <span class="const-title"> - <span class="const-name">{$consts[consts].const_name}</span> - = <span class="const-default">{$consts[consts].const_value|replace:"\n":"<br />"}</span> - (line <span class="line-number">{if $consts[consts].slink}{$consts[consts].slink}{else}{$consts[consts].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$consts[consts].sdesc desc=$consts[consts].desc tags=$consts[consts].tags} - -</div> -{/section} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/define.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/define.tpl deleted file mode 100755 index 94078960..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/define.tpl +++ /dev/null @@ -1,25 +0,0 @@ -{section name=def loop=$defines} -<a name="{$defines[def].define_link}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <img src="{$subdir}media/images/Constant.png" /> - <span class="const-title"> - <span class="const-name">{$defines[def].define_name}</span> = {$defines[def].define_value|replace:"\n":"<br />"} - (line <span class="line-number">{if $defines[def].slink}{$defines[def].slink}{else}{$defines[def].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$defines[def].sdesc desc=$defines[def].desc tags=$defines[def].tags} - - {if $globals[glob].global_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with constants:</span><br /> - {section name=me loop=$defines[def].define_conflicts.conflicts} - {$defines[def].define_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/docblock.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/docblock.tpl deleted file mode 100755 index 783d5271..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/docblock.tpl +++ /dev/null @@ -1,14 +0,0 @@ -<!-- ========== Info from phpDoc block ========= --> -{if $sdesc} -<p class="short-description">{$sdesc}</p> -{/if} -{if $desc} -<p class="description">{$desc}</p> -{/if} -{if $tags} - <ul class="tags"> - {section name=tags loop=$tags} - <li><span class="field">{$tags[tags].keyword}:</span> {$tags[tags].data}</li> - {/section} - </ul> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/elementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/elementindex.tpl deleted file mode 100755 index d5964f99..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/elementindex.tpl +++ /dev/null @@ -1,12 +0,0 @@ -{include file="header.tpl" noleftindex=true} -<a name="top"></a> -<h2>Full index</h2> -<h3>Package indexes</h3> -<ul> -{section name=p loop=$packageindex} - <li><a href="elementindex_{$packageindex[p].title}.html">{$packageindex[p].title}</a></li> -{/section} -</ul> -<br /> -{include file="basicindex.tpl" indexname="elementindex"} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/errors.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/errors.tpl deleted file mode 100755 index 0f526584..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/errors.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{include file="header.tpl" noleftindex=true} -{section name=files loop=$files} -<a href="#{$files[files].file}">{$files[files].file}</a><br> -{/section} -{foreach key=file item=issues from=$all} -<a name="{$file}"></a> -<h1>{$file}</h1> -{if count($issues.warnings)} -<h2>Warnings:</h2><br> -{section name=warnings loop=$issues.warnings} -<b>{$issues.warnings[warnings].name}</b> - {$issues.warnings[warnings].listing}<br> -{/section} -{/if} -{if count($issues.errors)} -<h2>Errors:</h2><br> -{section name=errors loop=$issues.errors} -<b>{$issues.errors[errors].name}</b> - {$issues.errors[errors].listing}<br> -{/section} -{/if} -{/foreach} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/examplesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/examplesource.tpl deleted file mode 100755 index 8abf74ce..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/examplesource.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl" title=$title} -<h1>{$title}</h1> -<div class="listing"> -{$source} -</div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/filesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/filesource.tpl deleted file mode 100755 index 239f7b41..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/filesource.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{capture name="tutle"}File Source for {$name}{/capture} -{include file="header.tpl" title=$smarty.capture.tutle} -<h1>Source for file {$name}</h1> -<p>Documentation is available at {$docs}</p> -<div class="src-code"> -{$source} -</div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/footer.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/footer.tpl deleted file mode 100755 index 8d0f79db..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/footer.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{if !$index} - <p class="notes" id="credit"> - Documentation generated on {$date} by <a href="{$phpdocwebsite}" target="_blank">phpDocumentor {$phpdocversion}</a> - </p> -{/if} - {if $top3}</div>{/if} -</body> -</html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/function.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/function.tpl deleted file mode 100755 index e62a98ae..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/function.tpl +++ /dev/null @@ -1,44 +0,0 @@ -{section name=func loop=$functions} -<a name="{$functions[func].function_dest}" id="{$functions[func].function_dest}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <img src="{$subdir}media/images/Function.png" /> - <span class="method-title">{$functions[func].function_name}</span> (line <span class="line-number">{if $functions[func].slink}{$functions[func].slink}{else}{$functions[func].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$functions[func].sdesc desc=$functions[func].desc tags=$functions[func].tags params=$functions[func].params function=false} - <div class="method-signature"> - <span class="method-result">{$functions[func].function_return}</span> - <span class="method-name"> - {if $functions[func].ifunction_call.returnsref}&{/if}{$functions[func].function_name} - </span> - {if count($functions[func].ifunction_call.params)} - ({section name=params loop=$functions[func].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $functions[func].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$functions[func].ifunction_call.params[params].type}</span> <span class="var-name">{$functions[func].ifunction_call.params[params].name}</span>{if $functions[func].ifunction_call.params[params].hasdefault} = <span class="var-default">{$functions[func].ifunction_call.params[params].default|escape:"html"}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $functions[func].params} - <ul class="parameters"> - {section name=params loop=$functions[func].params} - <li> - <span class="var-type">{$functions[func].params[params].datatype}</span> - <span class="var-name">{$functions[func].params[params].var}</span>{if $functions[func].params[params].data}<span class="var-description">: {$functions[func].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $functions[func].function_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with functions:</span><br /> - {section name=me loop=$functions[func].function_conflicts.conflicts} - {$functions[func].function_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/global.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/global.tpl deleted file mode 100755 index d37bda37..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/global.tpl +++ /dev/null @@ -1,27 +0,0 @@ -{section name=glob loop=$globals} -<a name="{$globals[glob].global_link}" id="{$globals[glob].global_link}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <img src="{$subdir}media/images/Global.png" /> - <span class="var-title"> - <span class="var-type">{$globals[glob].global_type}</span> - <span class="var-name">{$globals[glob].global_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$globals[glob].global_value|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $globals[glob].slink}{$globals[glob].slink}{else}{$globals[glob].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$globals[glob].sdesc desc=$globals[glob].desc tags=$globals[glob].tags} - - {if $globals[glob].global_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with global variables:</span><br /> - {section name=me loop=$globals[glob].global_conflicts.conflicts} - {$globals[glob].global_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/header.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/header.tpl deleted file mode 100755 index 0d626190..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/header.tpl +++ /dev/null @@ -1,95 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <!-- template designed by Marco Von Ballmoos --> - <title>{$title}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - {if $top2 || $top3} - <script src="{$subdir}media/lib/classTree.js"></script> - {/if} - {if $top2} - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> - {/if} - {if $top3 || $top2} - <script language="javascript" type="text/javascript"> - var imgPlus = new Image(); - var imgMinus = new Image(); - imgPlus.src = "{$subdir}media/images/plus.png"; - imgMinus.src = "{$subdir}media/images/minus.png"; - - function showNode(Node){ldelim} - switch(navigator.family){ldelim} - case 'nn4': - // Nav 4.x code fork... - var oTable = document.layers["span" + Node]; - var oImg = document.layers["img" + Node]; - break; - case 'ie4': - // IE 4/5 code fork... - var oTable = document.all["span" + Node]; - var oImg = document.all["img" + Node]; - break; - case 'gecko': - // Standards Compliant code fork... - var oTable = document.getElementById("span" + Node); - var oImg = document.getElementById("img" + Node); - break; - {rdelim} - oImg.src = imgMinus.src; - oTable.style.display = "block"; - {rdelim} - - function hideNode(Node){ldelim} - switch(navigator.family){ldelim} - case 'nn4': - // Nav 4.x code fork... - var oTable = document.layers["span" + Node]; - var oImg = document.layers["img" + Node]; - break; - case 'ie4': - // IE 4/5 code fork... - var oTable = document.all["span" + Node]; - var oImg = document.all["img" + Node]; - break; - case 'gecko': - // Standards Compliant code fork... - var oTable = document.getElementById("span" + Node); - var oImg = document.getElementById("img" + Node); - break; - {rdelim} - oImg.src = imgPlus.src; - oTable.style.display = "none"; - {rdelim} - - function nodeIsVisible(Node){ldelim} - switch(navigator.family){ldelim} - case 'nn4': - // Nav 4.x code fork... - var oTable = document.layers["span" + Node]; - break; - case 'ie4': - // IE 4/5 code fork... - var oTable = document.all["span" + Node]; - break; - case 'gecko': - // Standards Compliant code fork... - var oTable = document.getElementById("span" + Node); - break; - {rdelim} - return (oTable && oTable.style.display == "block"); - {rdelim} - - function toggleNodeVisibility(Node){ldelim} - if (nodeIsVisible(Node)){ldelim} - hideNode(Node); - {rdelim}else{ldelim} - showNode(Node); - {rdelim} - {rdelim} - </script> - {/if} - </head> - <body> - {if $top3}<div class="page-body">{/if} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/include.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/include.tpl deleted file mode 100755 index f264afd3..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/include.tpl +++ /dev/null @@ -1,17 +0,0 @@ -{section name=includes loop=$includes} -<a name="{$includes[includes].include_file}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <img src="{$subdir}media/images/Page.png" alt=" " /> - <span class="include-title"> - <span class="include-type">{$includes[includes].include_name}</span> - (<span class="include-name">{$includes[includes].include_value}</span>) - (line <span class="line-number">{if $includes[includes].slink}{$includes[includes].slink}{else}{$includes[includes].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$includes[includes].sdesc desc=$includes[includes].desc tags=$includes[includes].tags} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/index.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/index.tpl deleted file mode 100755 index 7cd61094..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/index.tpl +++ /dev/null @@ -1,24 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html - PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//FR" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> -<head> - <!-- Generated by phpDocumentor on {$date} --> - <title>{$title}</title> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> -</head> - -<FRAMESET rows='120,*'> - <FRAME src='packages.html' name='left_top' frameborder="1" bordercolor="#999999"> - <FRAMESET cols='25%,*'> - <FRAME src='{$start}' name='left_bottom' frameborder="1" bordercolor="#999999"> - <FRAME src='{$blank}.html' name='right' frameborder="1" bordercolor="#999999"> - </FRAMESET> - <NOFRAMES> - <H2>Frame Alert</H2> - <P>This document is designed to be viewed using the frames feature. - If you see this message, you are using a non-frame-capable web client.</P> - </NOFRAMES> -</FRAMESET> -</HTML> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/left_frame.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/left_frame.tpl deleted file mode 100755 index a38cb29f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/left_frame.tpl +++ /dev/null @@ -1,250 +0,0 @@ -{include file="header.tpl" top2=true} -<h3 class="package-title">{$info.0.package}</h3> -<div class="tree"> -<script language="Javascript"> -if (document.getElementById) {ldelim} -{section name=p loop=$info} - {if $info[p].subpackage == ""} - var tree = new WebFXTree('<span class="package">{$info.0.package}</span>'); - tree.setBehavior('classic'); - tree.openIcon = 'media/images/package.png'; - tree.icon = 'media/images/package.png'; - - {if $hastodos} - var todos = new WebFXTreeItem('To-do List', '{$todolink}'); - todos.openIcon = 'media/images/Index.png'; - todos.icon = 'media/images/Index.png'; - tree.add(todos); - {/if} - - var class_trees = new WebFXTreeItem('Class trees', '{$classtreepage}.html'); - class_trees.openIcon = 'media/images/Index.png'; - class_trees.icon = 'media/images/Index.png'; - tree.add(class_trees); - - var elements = new WebFXTreeItem('Index of elements', '{$elementindex}.html'); - elements.openIcon = 'media/images/Index.png'; - elements.icon = 'media/images/Index.png'; - tree.add(elements); - - var parent_node; - - {if $info[p].tutorials} - var tree_tutorial = new WebFXTreeItem('Tutorial(s)/Manual(s)', ''); - tree_tutorial.openIcon = 'media/images/tutorial_folder.png'; - tree_tutorial.icon = 'media/images/tutorial_folder.png'; - tree.add(tree_tutorial); - - {if $info[p].tutorials.pkg} - var tree_inner_tutorial = new WebFXTreeItem('Package-level', ''); - tree_inner_tutorial.openIcon = 'media/images/package_folder.png'; - tree_inner_tutorial.icon = 'media/images/package_folder.png'; - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.pkg} - {$info[p].tutorials.pkg[ext]} - {/section} - {/if} - - {if $info[p].tutorials.cls} - var tree_inner_tutorial = new WebFXTreeItem('Class-level', ''); - tree_inner_tutorial.openIcon = 'media/images/class_folder.png'; - tree_inner_tutorial.icon = 'media/images/class_folder.png'; - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.cls} - {$info[p].tutorials.cls[ext]} - {/section} - {/if} - - {if $info[p].tutorials.proc} - var tree_inner_tutorial = new WebFXTreeItem('Function-level', ''); - tree_inner_tutorial.openIcon = 'media/images/function_folder.png'; - tree_inner_tutorial.icon = 'media/images/function_folder.png'; - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.proc} - {$info[p].tutorials.proc[ext]} - {/section} - {/if} - {/if} - - {if $info[p].hasinterfaces} - var tree_classe = new WebFXTreeItem('Interface(s)', '{$packagedoc|escape:"quotes"}'); - tree_classe.openIcon = 'media/images/class_folder.png'; - tree_classe.icon = 'media/images/class_folder.png'; - - {section name=class loop=$info[p].classes} - {if $info[p].classes[class].is_interface} - var classe = new WebFXTreeItem('{$info[p].classes[class].title|escape:"quotes"}', '{$info[p].classes[class].link|escape:"quotes"}'); - classe.openIcon = 'media/images/Interface.png'; - classe.icon = 'media/images/Interface.png'; - tree_classe.add(classe); - {/if} - {/section} - - tree.add(tree_classe); - {/if} - - {if $info[p].hasclasses} - var tree_classe = new WebFXTreeItem('Class(es)', '{$packagedoc|escape:"quotes"}'); - tree_classe.openIcon = 'media/images/class_folder.png'; - tree_classe.icon = 'media/images/class_folder.png'; - - {section name=class loop=$info[p].classes} - {if $info[p].classes[class].is_class} - var classe = new WebFXTreeItem('{$info[p].classes[class].title|escape:"quotes"}', '{$info[p].classes[class].link|escape:"quotes"}'); - classe.openIcon = 'media/images/{if $info[p].classes[class].abstract}Abstract{/if}{if $info[p].classes[class].access == 'private'}Private{/if}Class.png'; - classe.icon = 'media/images/{if $info[p].classes[class].abstract}Abstract{/if}{if $info[p].classes[class].access == 'private'}Private{/if}Class.png'; - tree_classe.add(classe); - {/if} - {/section} - - tree.add(tree_classe); - {/if} - - {if $info[p].functions} - var tree_function = new WebFXTreeItem('Function(s)', '{$packagedoc|escape:"quotes"}'); - tree_function.openIcon = 'media/images/function_folder.png'; - tree_function.icon = 'media/images/function_folder.png'; - - {section name=nonclass loop=$info[p].functions} - var fic = new WebFXTreeItem('{$info[p].functions[nonclass].title|escape:"quotes"}', '{$info[p].functions[nonclass].link|escape:"quotes"}'); - fic.openIcon = 'media/images/Function.png'; - fic.icon = 'media/images/Function.png'; - tree_function.add(fic); - {/section} - - tree.add(tree_function); - {/if} - - {if $info[p].files} - var tree_file = new WebFXTreeItem('File(s)', '{$packagedoc|escape:"quotes"}'); - tree_file.openIcon = 'media/images/folder.png'; - tree_file.icon = 'media/images/folder.png'; - - {section name=nonclass loop=$info[p].files} - var file = new WebFXTreeItem('{$info[p].files[nonclass].title|escape:"quotes"}', '{$info[p].files[nonclass].link|escape:"quotes"}'); - file.openIcon = 'media/images/Page.png'; - file.icon = 'media/images/Page.png'; - tree_file.add(file); - {/section} - - tree.add(tree_file); - {/if} - - {else} - {if $info[p].subpackagetutorial} - var subpackagetree = new WebFXTreeItem('<span class="sub-package">{$info[p].subpackagetutorialtitle|strip_tags|escape:"quotes"}</span>', '{$info[p].subpackagetutorialnoa}'); - {else} - var subpackagetree = new WebFXTreeItem('<span class="sub-package">{$info[p].subpackage}</span>', '{$packagedoc|escape:"quotes"}'); - {/if} - - subpackagetree.openIcon = 'media/images/package.png'; - subpackagetree.icon = 'media/images/package.png'; - - {if $info[p].tutorials} - var tree_tutorial = new WebFXTreeItem('Tutorial(s)/Manual(s)', ''); - tree_tutorial.openIcon = 'media/images/tutorial_folder.png'; - tree_tutorial.icon = 'media/images/tutorial_folder.png'; - tree.add(tree_tutorial); - - {if $info[p].tutorials.pkg} - var tree_inner_tutorial = new WebFXTreeItem('Package-level', ''); - tree_inner_tutorial.openIcon = 'media/images/package_folder.png'; - tree_inner_tutorial.icon = 'media/images/package_folder.png'; - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.pkg} - {$info[p].tutorials.pkg[ext]} - {/section} - {/if} - - {if $info[p].tutorials.cls} - var tree_inner_tutorial = new WebFXTreeItem('Class-level', ''); - tree_inner_tutorial.openIcon = 'media/images/class_folder.png'; - tree_inner_tutorial.icon = 'media/images/class_folder.png'; - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.cls} - {$info[p].tutorials.cls[ext]} - {/section} - {/if} - - {if $info[p].tutorials.proc} - var tree_inner_tutorial = new WebFXTreeItem('Function-level', ''); - tree_inner_tutorial.openIcon = 'media/images/function_folder.png'; - tree_inner_tutorial.icon = 'media/images/function_folder.png'; - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.proc} - {$info[p].tutorials.proc[ext]} - {/section} - {/if} - {/if} - - {if $info[p].classes} - var subpackagetree_classe = new WebFXTreeItem('Class(es)', '{$packagedoc|escape:"quotes"}'); - subpackagetree_classe.openIcon = 'media/images/class_folder.png'; - subpackagetree_classe.icon = 'media/images/class_folder.png'; - - {section name=class loop=$info[p].classes} - var classe = new WebFXTreeItem('{$info[p].classes[class].title|escape:"quotes"}', '{$info[p].classes[class].link|escape:"quotes"}'); - classe.openIcon = 'media/images/{if $info[p].classes[class].abstract}Abstract{/if}{if $info[p].classes[class].access == 'private'}Private{/if}Class.png'; - classe.icon = 'media/images/{if $info[p].classes[class].abstract}Abstract{/if}{if $info[p].classes[class].access == 'private'}Private{/if}Class.png'; - subpackagetree_classe.add(classe); - {/section} - - subpackagetree.add(subpackagetree_classe); - {/if} - - {if $info[p].functions} - var subpackagetree_function = new WebFXTreeItem('Function(s)', '{$packagedoc|escape:"quotes"}'); - subpackagetree_function.openIcon = 'media/images/function_folder.png'; - subpackagetree_function.icon = 'media/images/function_folder.png'; - - {section name=nonclass loop=$info[p].functions} - var fic = new WebFXTreeItem('{$info[p].functions[nonclass].title|escape:"quotes"}', '{$info[p].functions[nonclass].link|escape:"quotes"}'); - fic.openIcon = 'media/images/Function.png'; - fic.icon = 'media/images/Function.png'; - subpackagetree_function.add(fic); - {/section} - - subpackagetree.add(subpackagetree_function); - {/if} - - {if $info[p].files} - var subpackagetree_file = new WebFXTreeItem('File(s)', '{$packagedoc|escape:"quotes"}'); - subpackagetree_file.openIcon = 'media/images/folder.png'; - subpackagetree_file.icon = 'media/images/folder.png'; - - {section name=nonclass loop=$info[p].files} - var file = new WebFXTreeItem('{$info[p].files[nonclass].title|escape:"quotes"}', '{$info[p].files[nonclass].link|escape:"quotes"}'); - file.openIcon = 'media/images/Page.png'; - file.icon = 'media/images/Page.png'; - subpackagetree_file.add(file); - {/section} - - subpackagetree.add(subpackagetree_file); - {/if} - - tree.add(subpackagetree); - {/if} -{/section} - -document.write(tree); -{rdelim} -</script> -</div> -<p class="notes"> - Generated by - <a href="{$phpdocwebsite}" target="_blank">phpDocumentor <span class="field">{$phpdocversion}</span></a> -</p> -</body> -</html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/banner.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/banner.css deleted file mode 100755 index 19a383c3..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/banner.css +++ /dev/null @@ -1,32 +0,0 @@ -body -{ - background-color: #EEEEEE; - margin: 0px; - padding: 0px; -} - -/* Banner (top bar) classes */ - -.banner { } - -.banner-menu -{ - clear: both; - padding: .5em; - border-top: 2px solid #AAAAAA; -} - -.banner-title -{ - text-align: right; - font-size: 20pt; - font-weight: bold; - margin: .2em; -} - -.package-selector -{ - background-color: #DDDDDD; - border: 1px solid #AAAAAA; - color: #000090; -} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractClass.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractClass.png Binary files differdeleted file mode 100644 index afa9d1d9..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractClass.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractClass_logo.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractClass_logo.png Binary files differdeleted file mode 100644 index 8f65c390..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractClass_logo.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractMethod.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractMethod.png Binary files differdeleted file mode 100644 index 605ccbe5..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractMethod.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractPrivateClass.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractPrivateClass.png Binary files differdeleted file mode 100644 index 53d76c63..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractPrivateClass.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractPrivateClass_logo.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractPrivateClass_logo.png Binary files differdeleted file mode 100644 index 4e68f570..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractPrivateClass_logo.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractPrivateMethod.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractPrivateMethod.png Binary files differdeleted file mode 100644 index 41cc9f02..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/AbstractPrivateMethod.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Class.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Class.png Binary files differdeleted file mode 100755 index cf548d27..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Class.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Class_logo.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Class_logo.png Binary files differdeleted file mode 100644 index 6f223c47..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Class_logo.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Constant.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Constant.png Binary files differdeleted file mode 100755 index a9c6f28b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Constant.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Constructor.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Constructor.png Binary files differdeleted file mode 100755 index 3f16222b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Constructor.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Destructor.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Destructor.png Binary files differdeleted file mode 100755 index f28528f0..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Destructor.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Function.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Function.png Binary files differdeleted file mode 100755 index 902fe258..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Function.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Global.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Global.png Binary files differdeleted file mode 100755 index 7281bd2a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Global.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/I.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/I.png Binary files differdeleted file mode 100755 index e8512fb9..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/I.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Index.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Index.png Binary files differdeleted file mode 100755 index 6558ec39..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Index.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Interface.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Interface.png Binary files differdeleted file mode 100644 index e6cd51ed..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Interface.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Interface_logo.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Interface_logo.png Binary files differdeleted file mode 100644 index 6f223c47..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Interface_logo.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/L.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/L.png Binary files differdeleted file mode 100755 index eb334eda..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/L.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Lminus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Lminus.png Binary files differdeleted file mode 100755 index f7c43c0a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Lminus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Lplus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Lplus.png Binary files differdeleted file mode 100755 index 848ec2fc..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Lplus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Method.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Method.png Binary files differdeleted file mode 100755 index 9b215784..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Method.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Page.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Page.png Binary files differdeleted file mode 100755 index ffe7986e..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Page.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Page_logo.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Page_logo.png Binary files differdeleted file mode 100644 index 44ce0b3c..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Page_logo.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/PrivateClass.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/PrivateClass.png Binary files differdeleted file mode 100755 index 470e6d56..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/PrivateClass.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/PrivateClass_logo.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/PrivateClass_logo.png Binary files differdeleted file mode 100644 index 590e0064..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/PrivateClass_logo.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/PrivateMethod.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/PrivateMethod.png Binary files differdeleted file mode 100755 index d01f2b31..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/PrivateMethod.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/PrivateVariable.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/PrivateVariable.png Binary files differdeleted file mode 100755 index d76b21d4..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/PrivateVariable.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/StaticMethod.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/StaticMethod.png Binary files differdeleted file mode 100755 index 9b215784..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/StaticMethod.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/StaticVariable.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/StaticVariable.png Binary files differdeleted file mode 100755 index 8e820193..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/StaticVariable.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/T.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/T.png Binary files differdeleted file mode 100755 index 30173254..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/T.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Tminus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Tminus.png Binary files differdeleted file mode 100755 index 2260e424..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Tminus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Tplus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Tplus.png Binary files differdeleted file mode 100755 index 2c8d8f4f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Tplus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Variable.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Variable.png Binary files differdeleted file mode 100755 index 8e820193..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/Variable.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/blank.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/blank.png Binary files differdeleted file mode 100755 index cee9cd37..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/blank.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/class_folder.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/class_folder.png Binary files differdeleted file mode 100755 index 84e9587a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/class_folder.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/empty.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/empty.png Binary files differdeleted file mode 100755 index d5683865..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/empty.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/file.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/file.png Binary files differdeleted file mode 100755 index 0bb2427f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/file.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/folder.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/folder.png Binary files differdeleted file mode 100755 index a2d79f8d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/folder.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/function_folder.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/function_folder.png Binary files differdeleted file mode 100755 index 8b3d6e3b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/function_folder.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/minus.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/minus.gif Binary files differdeleted file mode 100644 index f502662b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/minus.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/next_button.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/next_button.png Binary files differdeleted file mode 100755 index cdbc615d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/next_button.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/next_button_disabled.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/next_button_disabled.png Binary files differdeleted file mode 100755 index 4a11780f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/next_button_disabled.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/package.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/package.png Binary files differdeleted file mode 100755 index b04cf566..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/package.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/package_folder.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/package_folder.png Binary files differdeleted file mode 100755 index 6162bafd..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/package_folder.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/plus.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/plus.gif Binary files differdeleted file mode 100644 index eeca02ce..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/plus.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/previous_button.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/previous_button.png Binary files differdeleted file mode 100755 index 327fdbc2..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/previous_button.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/previous_button_disabled.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/previous_button_disabled.png Binary files differdeleted file mode 100755 index c02ff64b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/previous_button_disabled.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/private_class_logo.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/private_class_logo.png Binary files differdeleted file mode 100644 index 590e0064..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/private_class_logo.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/tutorial.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/tutorial.png Binary files differdeleted file mode 100755 index bc197375..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/tutorial.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/tutorial_folder.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/tutorial_folder.png Binary files differdeleted file mode 100755 index 2a468b2a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/tutorial_folder.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/up_button.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/up_button.png Binary files differdeleted file mode 100755 index ff36c593..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/images/up_button.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/lib/classTree.js b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/lib/classTree.js deleted file mode 100755 index ebb3fb4a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/lib/classTree.js +++ /dev/null @@ -1,454 +0,0 @@ -/*----------------------------------------\ -| Cross Browser Tree Widget 1.1 | -|-----------------------------------------| -| Created by Emil A. Eklund (eae@eae.net) | -| For WebFX (http://webfx.eae.net/) | -|-----------------------------------------| -| This script is provided as is without | -| any warranty whatsoever. It may be used | -| free of charge for non commerical sites | -| For commerical use contact the author | -| of this script for further details. | -|-----------------------------------------| -| Created 2000-12-11 | Updated 2001-09-06 | -\----------------------------------------*/ - -var webFXTreeConfig = { - rootIcon : 'media/images/empty.png', - openRootIcon : 'media/images/empty.png', - folderIcon : 'media/images/empty.png', - openFolderIcon : 'media/images/empty.png', - fileIcon : 'media/images/empty.png', - iIcon : 'media/images/I.png', - lIcon : 'media/images/L.png', - lMinusIcon : 'media/images/Lminus.png', - lPlusIcon : 'media/images/Lplus.png', - tIcon : 'media/images/T.png', - tMinusIcon : 'media/images/Tminus.png', - tPlusIcon : 'media/images/Tplus.png', - blankIcon : 'media/images/blank.png', - defaultText : 'Tree Item', - defaultAction : 'javascript:void(0);', - defaultTarget : 'right', - defaultBehavior : 'classic' -}; - -var webFXTreeHandler = { - idCounter : 0, - idPrefix : "webfx-tree-object-", - all : {}, - behavior : null, - selected : null, - getId : function() { return this.idPrefix + this.idCounter++; }, - toggle : function (oItem) { this.all[oItem.id.replace('-plus','')].toggle(); }, - select : function (oItem) { this.all[oItem.id.replace('-icon','')].select(); }, - focus : function (oItem) { this.all[oItem.id.replace('-anchor','')].focus(); }, - blur : function (oItem) { this.all[oItem.id.replace('-anchor','')].blur(); }, - keydown : function (oItem) { return this.all[oItem.id].keydown(window.event.keyCode); }, - cookies : new WebFXCookie() -}; - -/* - * WebFXCookie class - */ - -function WebFXCookie() { - if (document.cookie.length) { this.cookies = ' ' + document.cookie; } -} - -WebFXCookie.prototype.setCookie = function (key, value) { - document.cookie = key + "=" + escape(value); -} - -WebFXCookie.prototype.getCookie = function (key) { - if (this.cookies) { - var start = this.cookies.indexOf(' ' + key + '='); - if (start == -1) { return null; } - var end = this.cookies.indexOf(";", start); - if (end == -1) { end = this.cookies.length; } - end -= start; - var cookie = this.cookies.substr(start,end); - return unescape(cookie.substr(cookie.indexOf('=') + 1, cookie.length - cookie.indexOf('=') + 1)); - } - else { return null; } -} - -/* - * WebFXTreeAbstractNode class - */ - -function WebFXTreeAbstractNode(sText, sAction, sTarget) { - this.childNodes = []; - this.id = webFXTreeHandler.getId(); - this.text = sText || webFXTreeConfig.defaultText; - this.action = sAction || webFXTreeConfig.defaultAction; - this.targetWindow = sTarget || webFXTreeConfig.defaultTarget; - this._last = false; - webFXTreeHandler.all[this.id] = this; -} - -WebFXTreeAbstractNode.prototype.add = function (node) { - node.parentNode = this; - this.childNodes[this.childNodes.length] = node; - var root = this; - if (this.childNodes.length >=2) { - this.childNodes[this.childNodes.length -2]._last = false; - } - while (root.parentNode) { root = root.parentNode; } - if (root.rendered) { - if (this.childNodes.length >= 2) { - document.getElementById(this.childNodes[this.childNodes.length -2].id + '-plus').src = ((this.childNodes[this.childNodes.length -2].folder)?webFXTreeConfig.tMinusIcon:webFXTreeConfig.tIcon); - if (this.childNodes[this.childNodes.length -2].folder) { - this.childNodes[this.childNodes.length -2].plusIcon = webFXTreeConfig.tPlusIcon; - this.childNodes[this.childNodes.length -2].minusIcon = webFXTreeConfig.tMinusIcon; - } - this.childNodes[this.childNodes.length -2]._last = false; - } - this._last = true; - var foo = this; - while (foo.parentNode) { - for (var i = 0; i < foo.parentNode.childNodes.length; i++) { - if (foo.id == foo.parentNode.childNodes[i].id) { break; } - } - if (++i == foo.parentNode.childNodes.length) { foo.parentNode._last = true; } - else { foo.parentNode._last = false; } - foo = foo.parentNode; - } - document.getElementById(this.id + '-cont').insertAdjacentHTML("beforeEnd", node.toString()); - if ((!this.folder) && (!this.openIcon)) { - this.icon = webFXTreeConfig.folderIcon; - this.openIcon = webFXTreeConfig.openFolderIcon; - } - this.folder = true; - this.indent(); - this.expand(); - } - return node; -} - -WebFXTreeAbstractNode.prototype.toggle = function() { - if (this.folder) { - if (this.open) { this.collapse(); } - else { this.expand(); } - } -} - -WebFXTreeAbstractNode.prototype.select = function() { - document.getElementById(this.id + '-anchor').focus(); -} - -WebFXTreeAbstractNode.prototype.focus = function() { - webFXTreeHandler.selected = this; - if ((this.openIcon) && (webFXTreeHandler.behavior != 'classic')) { document.getElementById(this.id + '-icon').src = this.openIcon; } - document.getElementById(this.id + '-anchor').style.backgroundColor = 'highlight'; - document.getElementById(this.id + '-anchor').style.color = 'highlighttext'; - document.getElementById(this.id + '-anchor').focus(); -} - -WebFXTreeAbstractNode.prototype.blur = function() { - if ((this.openIcon) && (webFXTreeHandler.behavior != 'classic')) { document.getElementById(this.id + '-icon').src = this.icon; } - document.getElementById(this.id + '-anchor').style.backgroundColor = 'transparent'; - document.getElementById(this.id + '-anchor').style.color = 'menutext'; -} - -WebFXTreeAbstractNode.prototype.doExpand = function() { - if (webFXTreeHandler.behavior == 'classic') { document.getElementById(this.id + '-icon').src = this.openIcon; } - if (this.childNodes.length) { document.getElementById(this.id + '-cont').style.display = 'block'; } - this.open = true; - webFXTreeHandler.cookies.setCookie(this.id.substr(18,this.id.length - 18), '1'); -} - -WebFXTreeAbstractNode.prototype.doCollapse = function() { - if (webFXTreeHandler.behavior == 'classic') { document.getElementById(this.id + '-icon').src = this.icon; } - if (this.childNodes.length) { document.getElementById(this.id + '-cont').style.display = 'none'; } - this.open = false; - webFXTreeHandler.cookies.setCookie(this.id.substr(18,this.id.length - 18), '0'); -} - -WebFXTreeAbstractNode.prototype.expandAll = function() { - this.expandChildren(); - if ((this.folder) && (!this.open)) { this.expand(); } -} - -WebFXTreeAbstractNode.prototype.expandChildren = function() { - for (var i = 0; i < this.childNodes.length; i++) { - this.childNodes[i].expandAll(); -} } - -WebFXTreeAbstractNode.prototype.collapseAll = function() { - if ((this.folder) && (this.open)) { this.collapse(); } - this.collapseChildren(); -} - -WebFXTreeAbstractNode.prototype.collapseChildren = function() { - for (var i = 0; i < this.childNodes.length; i++) { - this.childNodes[i].collapseAll(); -} } - -WebFXTreeAbstractNode.prototype.indent = function(lvl, del, last, level) { - /* - * Since we only want to modify items one level below ourself, - * and since the rightmost indentation position is occupied by - * the plus icon we set this to -2 - */ - if (lvl == null) { lvl = -2; } - var state = 0; - for (var i = this.childNodes.length - 1; i >= 0 ; i--) { - state = this.childNodes[i].indent(lvl + 1, del, last, level); - if (state) { return; } - } - if (del) { - if (level >= this._level) { - if (this.folder) { - document.getElementById(this.id + '-plus').src = (this.open)?webFXTreeConfig.lMinusIcon:webFXTreeConfig.lPlusIcon; - this.plusIcon = webFXTreeConfig.lPlusIcon; - this.minusIcon = webFXTreeConfig.lMinusIcon; - } - else { document.getElementById(this.id + '-plus').src = webFXTreeConfig.lIcon; } - return 1; - } - } - var foo = document.getElementById(this.id + '-indent-' + lvl); - if (foo) { - if ((del) && (last)) { foo._last = true; } - if (foo._last) { foo.src = webFXTreeConfig.blankIcon; } - else { foo.src = webFXTreeConfig.iIcon; } - } - return 0; -} - -/* - * WebFXTree class - */ - -function WebFXTree(sText, sAction, sBehavior, sIcon, sOpenIcon) { - this.base = WebFXTreeAbstractNode; - this.base(sText, sAction); - this.icon = sIcon || webFXTreeConfig.rootIcon; - this.openIcon = sOpenIcon || webFXTreeConfig.openRootIcon; - /* Defaults to open */ - this.open = (webFXTreeHandler.cookies.getCookie(this.id.substr(18,this.id.length - 18)) == '0')?false:true; - this.folder = true; - this.rendered = false; - if (!webFXTreeHandler.behavior) { webFXTreeHandler.behavior = sBehavior || webFXTreeConfig.defaultBehavior; } - this.targetWindow = 'right'; -} - -WebFXTree.prototype = new WebFXTreeAbstractNode; - -WebFXTree.prototype.setBehavior = function (sBehavior) { - webFXTreeHandler.behavior = sBehavior; -}; - -WebFXTree.prototype.getBehavior = function (sBehavior) { - return webFXTreeHandler.behavior; -}; - -WebFXTree.prototype.getSelected = function() { - if (webFXTreeHandler.selected) { return webFXTreeHandler.selected; } - else { return null; } -} - -WebFXTree.prototype.remove = function() { } - -WebFXTree.prototype.expand = function() { - this.doExpand(); -} - -WebFXTree.prototype.collapse = function() { - this.focus(); - this.doCollapse(); -} - -WebFXTree.prototype.getFirst = function() { - return null; -} - -WebFXTree.prototype.getLast = function() { - return null; -} - -WebFXTree.prototype.getNextSibling = function() { - return null; -} - -WebFXTree.prototype.getPreviousSibling = function() { - return null; -} - -WebFXTree.prototype.keydown = function(key) { - if (key == 39) { this.expand(); return false; } - if (key == 37) { this.collapse(); return false; } - if ((key == 40) && (this.open)) { this.childNodes[0].select(); return false; } - return true; -} - -WebFXTree.prototype.toString = function() { - var str = "<div id=\"" + this.id + "\" ondblclick=\"webFXTreeHandler.toggle(this);\" class=\"webfx-tree-item\" onkeydown=\"return webFXTreeHandler.keydown(this)\">"; - str += "<img id=\"" + this.id + "-icon\" class=\"webfx-tree-icon\" src=\"" + ((webFXTreeHandler.behavior == 'classic' && this.open)?this.openIcon:this.icon) + "\" onclick=\"webFXTreeHandler.select(this);\"><a href=\"" + this.action + "\" id=\"" + this.id + "-anchor\" target=\"" + this.targetWindow + "\" onfocus=\"webFXTreeHandler.focus(this);\" onblur=\"webFXTreeHandler.blur(this);\">" + this.text + "</a></div>"; - str += "<div id=\"" + this.id + "-cont\" class=\"webfx-tree-container\" style=\"display: " + ((this.open)?'block':'none') + ";\">"; - for (var i = 0; i < this.childNodes.length; i++) { - str += this.childNodes[i].toString(i, this.childNodes.length); - } - str += "</div>"; - this.rendered = true; - return str; -}; - -/* - * WebFXTreeItem class - */ - -function WebFXTreeItem(sText, sAction, eParent, sIcon, sOpenIcon) { - this.base = WebFXTreeAbstractNode; - this.base(sText, sAction); - /* Defaults to close */ - this.open = (webFXTreeHandler.cookies.getCookie(this.id.substr(18,this.id.length - 18)) == '1')?true:false; - if (eParent) { eParent.add(this); } - if (sIcon) { this.icon = sIcon; } - if (sOpenIcon) { this.openIcon = sOpenIcon; } -} - -WebFXTreeItem.prototype = new WebFXTreeAbstractNode; - -WebFXTreeItem.prototype.remove = function() { - var parentNode = this.parentNode; - var prevSibling = this.getPreviousSibling(true); - var nextSibling = this.getNextSibling(true); - var folder = this.parentNode.folder; - var last = ((nextSibling) && (nextSibling.parentNode) && (nextSibling.parentNode.id == parentNode.id))?false:true; - this.getPreviousSibling().focus(); - this._remove(); - if (parentNode.childNodes.length == 0) { - parentNode.folder = false; - parentNode.open = false; - } - if (last) { - if (parentNode.id == prevSibling.id) { - document.getElementById(parentNode.id + '-icon').src = webFXTreeConfig.fileIcon; - } - else { } - } - if ((!prevSibling.parentNode) || (prevSibling.parentNode != parentNode)) { - parentNode.indent(null, true, last, this._level); - } - if (document.getElementById(prevSibling.id + '-plus')) { - if (nextSibling) { - if ((parentNode == prevSibling) && (parentNode.getNextSibling)) { document.getElementById(prevSibling.id + '-plus').src = webFXTreeConfig.tIcon; } - else if (nextSibling.parentNode != prevSibling) { document.getElementById(prevSibling.id + '-plus').src = webFXTreeConfig.lIcon; } - } - else { document.getElementById(prevSibling.id + '-plus').src = webFXTreeConfig.lIcon; } - } -} - -WebFXTreeItem.prototype._remove = function() { - for (var i = this.childNodes.length - 1; i >= 0; i--) { - this.childNodes[i]._remove(); - } - for (var i = 0; i < this.parentNode.childNodes.length; i++) { - if (this.id == this.parentNode.childNodes[i].id) { - for (var j = i; j < this.parentNode.childNodes.length; j++) { - this.parentNode.childNodes[i] = this.parentNode.childNodes[i+1] - } - this.parentNode.childNodes.length = this.parentNode.childNodes.length - 1; - if (i + 1 == this.parentNode.childNodes.length) { this.parentNode._last = true; } - } - } - webFXTreeHandler.all[this.id] = null; - if (document.getElementById(this.id)) { - document.getElementById(this.id).innerHTML = ""; - document.getElementById(this.id).removeNode(); - } -} - -WebFXTreeItem.prototype.expand = function() { - this.doExpand(); - document.getElementById(this.id + '-plus').src = this.minusIcon; -} - -WebFXTreeItem.prototype.collapse = function() { - this.focus(); - this.doCollapse(); - document.getElementById(this.id + '-plus').src = this.plusIcon; -} - -WebFXTreeItem.prototype.getFirst = function() { - return this.childNodes[0]; -} - -WebFXTreeItem.prototype.getLast = function() { - if (this.childNodes[this.childNodes.length - 1].open) { return this.childNodes[this.childNodes.length - 1].getLast(); } - else { return this.childNodes[this.childNodes.length - 1]; } -} - -WebFXTreeItem.prototype.getNextSibling = function() { - for (var i = 0; i < this.parentNode.childNodes.length; i++) { - if (this == this.parentNode.childNodes[i]) { break; } - } - if (++i == this.parentNode.childNodes.length) { return this.parentNode.getNextSibling(); } - else { return this.parentNode.childNodes[i]; } -} - -WebFXTreeItem.prototype.getPreviousSibling = function(b) { - for (var i = 0; i < this.parentNode.childNodes.length; i++) { - if (this == this.parentNode.childNodes[i]) { break; } - } - if (i == 0) { return this.parentNode; } - else { - if ((this.parentNode.childNodes[--i].open) || (b && this.parentNode.childNodes[i].folder)) { return this.parentNode.childNodes[i].getLast(); } - else { return this.parentNode.childNodes[i]; } -} } - -WebFXTreeItem.prototype.keydown = function(key) { - if ((key == 39) && (this.folder)) { - if (!this.open) { this.expand(); return false; } - else { this.getFirst().select(); return false; } - } - else if (key == 37) { - if (this.open) { this.collapse(); return false; } - else { this.parentNode.select(); return false; } - } - else if (key == 40) { - if (this.open) { this.getFirst().select(); return false; } - else { - var sib = this.getNextSibling(); - if (sib) { sib.select(); return false; } - } } - else if (key == 38) { this.getPreviousSibling().select(); return false; } - return true; -} - -WebFXTreeItem.prototype.toString = function (nItem, nItemCount) { - var foo = this.parentNode; - var indent = ''; - if (nItem + 1 == nItemCount) { this.parentNode._last = true; } - var i = 0; - while (foo.parentNode) { - foo = foo.parentNode; - indent = "<img id=\"" + this.id + "-indent-" + i + "\" src=\"" + ((foo._last)?webFXTreeConfig.blankIcon:webFXTreeConfig.iIcon) + "\">" + indent; - i++; - } - this._level = i; - if (this.childNodes.length) { this.folder = 1; } - else { this.open = false; } - if ((this.folder) || (webFXTreeHandler.behavior != 'classic')) { - if (!this.icon) { this.icon = webFXTreeConfig.folderIcon; } - if (!this.openIcon) { this.openIcon = webFXTreeConfig.openFolderIcon; } - } - else if (!this.icon) { this.icon = webFXTreeConfig.fileIcon; } - var label = this.text; - label = label.replace('<', '<'); - label = label.replace('>', '>'); - var str = "<div id=\"" + this.id + "\" ondblclick=\"webFXTreeHandler.toggle(this);\" class=\"webfx-tree-item\" onkeydown=\"return webFXTreeHandler.keydown(this)\">"; - str += indent; - str += "<img id=\"" + this.id + "-plus\" src=\"" + ((this.folder)?((this.open)?((this.parentNode._last)?webFXTreeConfig.lMinusIcon:webFXTreeConfig.tMinusIcon):((this.parentNode._last)?webFXTreeConfig.lPlusIcon:webFXTreeConfig.tPlusIcon)):((this.parentNode._last)?webFXTreeConfig.lIcon:webFXTreeConfig.tIcon)) + "\" onclick=\"webFXTreeHandler.toggle(this);\">" - str += "<img id=\"" + this.id + "-icon\" src=\"" + ((webFXTreeHandler.behavior == 'classic' && this.open)?this.openIcon:this.icon) + "\" onclick=\"webFXTreeHandler.select(this);\"><a href=\"" + this.action + "\" id=\"" + this.id + "-anchor\" target=\"" + this.targetWindow + "\" onfocus=\"webFXTreeHandler.focus(this);\" onblur=\"webFXTreeHandler.blur(this);\">" + label + "</a></div>"; - str += "<div id=\"" + this.id + "-cont\" class=\"webfx-tree-container\" style=\"display: " + ((this.open)?'block':'none') + ";\">"; - for (var i = 0; i < this.childNodes.length; i++) { - str += this.childNodes[i].toString(i,this.childNodes.length); - } - str += "</div>"; - this.plusIcon = ((this.parentNode._last)?webFXTreeConfig.lPlusIcon:webFXTreeConfig.tPlusIcon); - this.minusIcon = ((this.parentNode._last)?webFXTreeConfig.lMinusIcon:webFXTreeConfig.tMinusIcon); - return str; -}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/stylesheet.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/stylesheet.css deleted file mode 100755 index 5b025a93..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/media/stylesheet.css +++ /dev/null @@ -1,181 +0,0 @@ -a { color: #000090; text-decoration: none; } -a:hover, a:active, a:focus { color: highlighttext; background-color: highlight; text-decoration: none; } - -body { background : #FFFFFF; } -body, table { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10pt; } - -a img { border: 0px; } - -/* Page layout/boxes */ - -.info-box { } -.info-box-title { margin: 1em 0em 0em 0em; font-weight: normal; font-size: 14pt; color: #999999; border-bottom: 2px solid #999999; } -.info-box-body { border: 1px solid #999999; padding: .5em; } -.nav-bar { font-size: 8pt; white-space: nowrap; text-align: right; padding: .2em; margin: 0em 0em 1em 0em; } - -.oddrow { background-color: #F8F8F8; border: 1px solid #AAAAAA; padding: .5em; margin-bottom: 1em} -.evenrow { border: 1px solid #AAAAAA; padding: .5em; margin-bottom: 1em} - -.page-body { max-width: 800px; margin: auto; } -.tree { } - -/* Index formatting classes */ - -.index-item-body { margin-top: .5em; margin-bottom: .5em} -.index-item-description { margin-top: .25em } -.index-item-details { font-weight: normal; font-style: italic; font-size: 8pt } -.index-letter-section { background-color: #EEEEEE; border: 1px dotted #999999; padding: .5em; margin-bottom: 1em} -.index-letter-title { font-size: 12pt; font-weight: bold } -.index-letter-menu { text-align: center; margin: 1em } -.index-letter { font-size: 12pt } - -/* Docbook classes */ - -.description {} -.short-description { font-weight: bold; color: #666666; } -.tags { padding-left: 0em; margin-left: 3em; color: #666666; list-style-type: square; } -.parameters { padding-left: 0em; margin-left: 3em; color: #014fbe; list-style-type: square; } -.redefinitions { font-size: 8pt; padding-left: 0em; margin-left: 2em; } -.package { font-weight: bold; } -.package-title { font-weight: bold; font-size: 14pt; border-bottom: 1px solid black } -.sub-package { font-weight: bold; } -.tutorial { border-width: thin; border-color: #0066ff; } -.tutorial-nav-box { width: 100%; border: 1px solid #999999; background-color: #F8F8F8; } - -/* Generic formatting */ - -.field { font-weight: bold; } -.detail { font-size: 8pt; } -.notes { font-style: italic; font-size: 8pt; } -.separator { background-color: #999999; height: 2px; } -.warning { color: #FF6600; } -.disabled { font-style: italic; color: #999999; } - -/* Code elements */ - -.line-number { } - -.class-table { width: 100%; } -.class-table-header { border-bottom: 1px dotted #666666; text-align: left} -.class-name { color: #0000AA; font-weight: bold; } - -.method-summary { color: #009000; padding-left: 1em; font-size: 8pt; } -.method-header { } -.method-definition { margin-bottom: .2em } -.method-title { color: #009000; font-weight: bold; } -.method-name { font-weight: bold; } -.method-signature { font-size: 85%; color: #666666; margin: .5em 0em } -.method-result { font-style: italic; } - -.var-summary { padding-left: 1em; font-size: 8pt; } -.var-header { } -.var-title { color: #014fbe; margin-bottom: .3em } -.var-type { font-style: italic; } -.var-name { font-weight: bold; } -.var-default {} -.var-description { font-weight: normal; color: #000000; } - -.include-title { color: #014fbe;} -.include-type { font-style: italic; } -.include-name { font-weight: bold; } - -.const-title { color: #FF6600; } -.const-name { font-weight: bold; } - -/* Syntax highlighting */ - -.src-code { font-family: 'Courier New', Courier, monospace; font-weight: normal; } -.src-line { font-family: 'Courier New', Courier, monospace; font-weight: normal; } - -.src-code a:link { padding: 1px; text-decoration: underline; color: #0000DD; } -.src-code a:visited { text-decoration: underline; color: #0000DD; } -.src-code a:active { background-color: #FFFF66; color: #008000; } -.src-code a:hover { background-color: #FFFF66; text-decoration: overline underline; color: #008000; } - -.src-comm { color: #666666; } -.src-id { color: #FF6600; font-style: italic; } -.src-inc { color: #0000AA; font-weight: bold; } -.src-key { color: #0000AA; font-weight: bold; } -.src-num { color: #CC0000; } -.src-str { color: #CC0000; } -.src-sym { } -.src-var { } - -.src-php { font-weight: bold; } - -.src-doc { color: #666666; } -.src-doc-close-template { color: #666666 } -.src-doc-coretag { color: #008000; } -.src-doc-inlinetag {} -.src-doc-internal {} -.src-doc-tag { color: #0080CC; } -.src-doc-template { color: #666666 } -.src-doc-type { font-style: italic; color: #444444 } -.src-doc-var { color: #444444 } - -.tute-tag { color: #009999 } -.tute-attribute-name { color: #0000FF } -.tute-attribute-value { color: #0099FF } -.tute-entity { font-weight: bold; } -.tute-comment { font-style: italic } -.tute-inline-tag { color: #636311; font-weight: bold } - -/* tutorial */ - -.authors { } -.author { font-style: italic; font-weight: bold } -.author-blurb { margin: .5em 0em .5em 2em; font-size: 85%; font-weight: normal; font-style: normal } -.example { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; } -.listing { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; white-space: nowrap; } -.release-info { font-size: 85%; font-style: italic; margin: 1em 0em } -.ref-title-box { } -.ref-title { } -.ref-purpose { font-style: italic; color: #666666 } -.ref-synopsis { } -.title { font-weight: bold; border-bottom: 1px solid #999999; color: #999999; } -.cmd-synopsis { margin: 1em 0em } -.cmd-title { font-weight: bold } -.toc { margin-left: 2em; padding-left: 0em } - -/*------------------------------------------------------------------------------ - webfx-tree -------------------------------------------------------------------------------*/ - -.webfx-tree-container { - margin: 0px; - padding: 0px; - white-space: nowrap; - font: icon; -} - -.webfx-tree-item { - padding: 0px; - margin: 0px; - color: black; - white-space: nowrap; - font: icon; -} - -.webfx-tree-item a { - margin-left: 3px; - padding: 1px 2px 1px 2px; - color: black; - text-decoration: none; -} - -.webfx-tree-item a:hover, .webfx-tree-item a:active { - color: highlighttext; - background: highlight; - text-decoration: none -} - -.webfx-tree-item img { - vertical-align: middle; - border: 0px; -} - -.webfx-tree-icon { - width: 16px; - height: 16px; -} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/method.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/method.tpl deleted file mode 100755 index 547e261d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/method.tpl +++ /dev/null @@ -1,151 +0,0 @@ -<A NAME='method_detail'></A> -{section name=methods loop=$methods} -{if $methods[methods].static} -<a name="method{$methods[methods].function_name}" id="{$methods[methods].function_name}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="method-header"> - <img src="{$subdir}media/images/StaticMethod.png" /> - <span class="method-title">static {$methods[methods].function_name}</span> (line <span class="line-number">{if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags params=$methods[methods].params function=false} - - <div class="method-signature"> - static <span class="method-result">{$methods[methods].function_return}</span> - <span class="method-name"> - {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name} - </span> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $methods[methods].params} - <ul class="parameters"> - {section name=params loop=$methods[methods].params} - <li> - <span class="var-type">{$methods[methods].params[params].datatype}</span> - <span class="var-name">{$methods[methods].params[params].var}</span>{if $methods[methods].params[params].data}<span class="var-description">: {$methods[methods].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $methods[methods].method_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$methods[methods].method_overrides.link}</dt> - {if $methods[methods].method_overrides.sdesc} - <dd>{$methods[methods].method_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} - - {if $methods[methods].descmethod} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=dm loop=$methods[methods].descmethod} - <li> - {$methods[methods].descmethod[dm].link} - {if $methods[methods].descmethod[dm].sdesc} - : {$methods[methods].descmethod[dm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} -</div> -{/if} -{/section} -{section name=methods loop=$methods} -{if !$methods[methods].static} -<a name="method{$methods[methods].function_name}" id="{$methods[methods].function_name}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="method-header"> - <img src="{$subdir}media/images/{if $methods[methods].ifunction_call.constructor}Constructor{elseif $methods[methods].ifunction_call.destructor}Destructor{else}{if $methods[methods].abstract}Abstract{/if}{if $methods[methods].access == 'private'}Private{/if}Method{/if}.png" /> - <span class="method-title">{if $methods[methods].ifunction_call.constructor}Constructor {elseif $methods[methods].ifunction_call.destructor}Destructor {/if}{$methods[methods].function_name}</span> (line <span class="line-number">{if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags params=$methods[methods].params function=false} - - <div class="method-signature"> - <span class="method-result">{$methods[methods].function_return}</span> - <span class="method-name"> - {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name} - </span> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $methods[methods].params} - <ul class="parameters"> - {section name=params loop=$methods[methods].params} - <li> - <span class="var-type">{$methods[methods].params[params].datatype}</span> - <span class="var-name">{$methods[methods].params[params].var}</span>{if $methods[methods].params[params].data}<span class="var-description">: {$methods[methods].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $methods[methods].method_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$methods[methods].method_overrides.link}</dt> - {if $methods[methods].method_overrides.sdesc} - <dd>{$methods[methods].method_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} - - {if $methods[methods].descmethod} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=dm loop=$methods[methods].descmethod} - <li> - {$methods[methods].descmethod[dm].link} - {if $methods[methods].descmethod[dm].sdesc} - : {$methods[methods].descmethod[dm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} -</div> -{/if} -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/page.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/page.tpl deleted file mode 100755 index 2cffc22d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/page.tpl +++ /dev/null @@ -1,214 +0,0 @@ -{include file="header.tpl" top3=true} - -<h2 class="file-name"><img src="{$subdir}media/images/Page_logo.png" alt="File" style="vertical-align: middle">{$source_location}</h2> - -<a name="sec-description"></a> -<div class="info-box"> - <div class="info-box-title">Description</div> - <div class="nav-bar"> - {if $classes || $includes || $defines || $globals || $functions} - <span class="disabled">Description</span> | - {/if} - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="docblock.tpl" desc=$desc sdesc=$sdesc tags=$tags} - - {if $tutorial} - <hr class="separator" /> - <div class="notes">Tutorial: <span class="tutorial">{$tutorial}</div> - {/if} - </div> -</div> - -{if $classes} - <a name="sec-classes"></a> - <div class="info-box"> - <div class="info-box-title">Classes</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - <span class="disabled">Classes</span> - {if $includes || $defines || $globals || $functions}|{/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - <table cellpadding="2" cellspacing="0" class="class-table"> - <tr> - <th class="class-table-header">Class</th> - <th class="class-table-header">Description</th> - </tr> - {section name=classes loop=$classes} - <tr> - <td style="padding-right: 2em; vertical-align: top; white-space: nowrap"> - <img src="{$subdir}media/images/{if $classes[classes].abstract}Abstract{/if}{if $classes[classes].access == 'private'}Private{/if}Class.png" - alt="{if $classes[classes].abstract}Abstract{/if}{if $classes[classes].access == 'private'}Private{/if} class" - title="{if $classes[classes].abstract}Abstract{/if}{if $classes[classes].access == 'private'}Private{/if} class"/> - {$classes[classes].link} - </td> - <td> - {if $classes[classes].sdesc} - {$classes[classes].sdesc} - {else} - {$classes[classes].desc} - {/if} - </td> - </tr> - {/section} - </table> - </div> - </div> -{/if} - -{if $includes} - <a name="sec-includes"></a> - <div class="info-box"> - <div class="info-box-title">Includes</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - <span class="disabled">Includes</span> - {if $defines || $globals || $functions}|{/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="include.tpl"} - </div> - </div> -{/if} - -{if $defines} - <a name="sec-constants"></a> - <div class="info-box"> - <div class="info-box-title">Constants</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - <span class="disabled">Constants</span> - {if $globals || $functions}|{/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="define.tpl"} - </div> - </div> -{/if} - -{if $globals} - <a name="sec-variables"></a> - <div class="info-box"> - <div class="info-box-title">Variables</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - <span class="disabled">Variables</span> - {if $functions}|{/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="global.tpl"} - </div> - </div> -{/if} - -{if $functions} - <a name="sec-functions"></a> - <div class="info-box"> - <div class="info-box-title">Functions</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - <span class="disabled">Functions</span> - </div> - <div class="info-box-body"> - {include file="function.tpl"} - </div> - </div> -{/if} - -{include file="footer.tpl" top3=true} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/pkgelementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/pkgelementindex.tpl deleted file mode 100755 index dc283ad0..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/pkgelementindex.tpl +++ /dev/null @@ -1,17 +0,0 @@ -{include file="header.tpl"} -<a name="top"></a> -<h2>[{$package}] element index</h2> -{if count($packageindex) > 1} - <h3>Package indexes</h3> - <ul> - {section name=p loop=$packageindex} - {if $packageindex[p].title != $package} - <li><a href="elementindex_{$packageindex[p].title}.html">{$packageindex[p].title}</a></li> - {/if} - {/section} - </ul> -{/if} -<a href="elementindex.html">All elements</a> -<br /> -{include file="basicindex.tpl" indexname=elementindex_$package} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/ric.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/ric.tpl deleted file mode 100755 index ad792475..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/ric.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl"} -<div align="center"><h1>{$name}</h1></div> -<pre> -{$contents|htmlentities} -</pre> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/todolist.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/todolist.tpl deleted file mode 100755 index f929ccdb..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/todolist.tpl +++ /dev/null @@ -1,14 +0,0 @@ -{include file="header.tpl" title="Todo List"} -<div align="center"><h1>Todo List</h1></div> -{foreach from=$todos key=todopackage item=todo} -<h2>{$todopackage}</h2> -{section name=todo loop=$todo} -<h3>{$todo[todo].link}</h3> -<ul> -{section name=t loop=$todo[todo].todos} - <li>{$todo[todo].todos[t]}</li> -{/section} -</ul> -{/section} -{/foreach} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/top_frame.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/top_frame.tpl deleted file mode 100755 index 36d1e5a1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/top_frame.tpl +++ /dev/null @@ -1,45 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <!-- template designed by Marco Von Ballmoos --> - <title>{$title}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - <link rel="stylesheet" href="{$subdir}media/banner.css" /> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> - </head> - <body> - <div class="banner"> - <div class="banner-title">{$package}</div> - <div class="banner-menu"> - <form> - <table cellpadding="0" cellspacing="0" style="width: 100%"> - <tr> - <td> - {if count($ric) >= 1} - {assign var="last_ric_name" value=""} - {section name=ric loop=$ric} - {if $last_ric_name != ""} | {/if} - <a href="{$ric[ric].file}" target="right">{$ric[ric].name}</a> - {assign var="last_ric_name" value=$ric[ric].name} - {/section} - {/if} - </td> - <td style="width: 2em"> </td> - <td style="text-align: right"> - {if count($packages) > 1} - <span class="field">Packages</span> - <select class="package-selector" onchange="window.parent.left_bottom.location=this[selectedIndex].value"> - {section name=p loop=$packages} - <option value="{$packages[p].link}">{$packages[p].title}</option> - {/section} - </select> - {/if} - </td> - </tr> - </table> - </form> - </div> - </div> - </body> - </html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/tutorial.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/tutorial.tpl deleted file mode 100755 index 3b9109d1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/tutorial.tpl +++ /dev/null @@ -1,13 +0,0 @@ -{include file="header.tpl" title=$title top3=true} - -{if $nav} - {include file="tutorial_nav.tpl" prev=$prev next=$next up=$up prevtitle=$prevtitle nexttitle=$nexttitle uptitle=$uptitle} -{/if} - -{$contents} - -{if $nav} - {include file="tutorial_nav.tpl" prev=$prev next=$next up=$up prevtitle=$prevtitle nexttitle=$nexttitle uptitle=$uptitle} -{/if} - -{include file="footer.tpl" top3=true}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/tutorial_nav.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/tutorial_nav.tpl deleted file mode 100755 index 3cd7893d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/tutorial_nav.tpl +++ /dev/null @@ -1,41 +0,0 @@ -<table class="tutorial-nav-box"> - <tr> - <td style="width: 30%"> - {if $prev} - <a href="{$prev}"><img src="{$subdir}media/images/previous_button.png" alt="Previous"></a> - {else} - <span class="disabled"><img src="{$subdir}media/images/previous_button_disabled.png" alt="Previous"></span> - {/if} - </td> - <td style="text-align: center"> - {if $up} - <a href="{$up}"><img src="{$subdir}media/images/up_button.png" alt="Up"></a> - {/if} - </td> - <td style="text-align: right; width: 30%"> - {if $next} - <a href="{$next}"><img src="{$subdir}media/images/next_button.png" alt="Next"></a> - {else} - <span class="disabled"><img src="{$subdir}media/images/next_button_disabled.png" alt="Next"></span> - {/if} - </td> - </tr> - <tr> - <td style="width: 30%"> - {if $prevtitle} - <span class="detail">{$prevtitle}</span> - {/if} - </td> - <td style="text-align: center"> - {if $uptitle} - <span class="detail">{$uptitle}</span> - {/if} - </td> - <td style="text-align: right; width: 30%"> - {if $nexttitle} - <span class="detail">{$nexttitle}</span> - {/if} - </td> - </tr> -</table> -
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/tutorial_toc.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/tutorial_toc.tpl deleted file mode 100755 index 3482249b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/tutorial_toc.tpl +++ /dev/null @@ -1,40 +0,0 @@ -{if count($toc)} -<h1 class="title">Table of Contents</h1> -<ul class="toc"> - {assign var="lastcontext" value='refsect1'} - {section name=toc loop=$toc} - - {if $toc[toc].tagname != $lastcontext} - {if $lastcontext == 'refsect1'} - <ul class="toc"> - <li>{$toc[toc].link}</li> - {else} - {if $lastcontext == 'refsect2'} - {if $toc[toc].tagname == 'refsect1'} - </ul> - <li>{$toc[toc].link}</li> - {/if} - {if $toc[toc].tagname == 'refsect3'} - <ul class="toc"> - <li>{$toc[toc].link}</li> - {/if} - {else} - </ul> - </ul> - <li>{$toc[toc].link}</li> - {/if} - {/if} - {assign var="lastcontext" value=$toc[toc].tagname} - {else} - <li>{$toc[toc].link}</li> - {/if} - {/section} - {if $lastcontext == 'refsect2'} - </ul> - {/if} - {if $lastcontext == 'refsect3'} - </ul> - </ul> - {/if} -</ul> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/tutorial_tree.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/tutorial_tree.tpl deleted file mode 100755 index 8b10e9db..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/tutorial_tree.tpl +++ /dev/null @@ -1,9 +0,0 @@ - var a{$name|replace:"-":"_"}node = new WebFXTreeItem('{$main.title|strip_tags|escape:"quotes"}','{$main.link}', parent_node, - 'media/images/tutorial.png', 'media/images/tutorial.png'); - -{if $haskids} - var a{$name|replace:"-":"_"}_old_parent_node = parent_node; - parent_node = a{$name|replace:"-":"_"}node; - {$kids} - parent_node = a{$name|replace:"-":"_"}_old_parent_node; -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/var.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/var.tpl deleted file mode 100755 index a82d1bfa..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/var.tpl +++ /dev/null @@ -1,94 +0,0 @@ -{section name=vars loop=$vars} -{if $vars[vars].static} -<a name="var{$vars[vars].var_name}" id="{$vars[vars].var_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="var-header"> - <img src="{$subdir}media/images/StaticVariable.png" /> - <span class="var-title"> - static <span class="var-type">{$vars[vars].var_type}</span> - <span class="var-name">{$vars[vars].var_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$vars[vars].var_default|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} - - {if $vars[vars].var_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$vars[vars].var_overrides.link}</dt> - {if $vars[vars].var_overrides.sdesc} - <dd>{$vars[vars].var_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - - {if $vars[vars].descvar} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=vm loop=$vars[vars].descvar} - <li> - {$vars[vars].descvar[vm].link} - {if $vars[vars].descvar[vm].sdesc} - : {$vars[vars].descvar[vm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} - -</div> -{/if} -{/section} - -{section name=vars loop=$vars} -{if !$vars[vars].static} -<a name="var{$vars[vars].var_name}" id="{$vars[vars].var_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="var-header"> - <img src="{$subdir}media/images/{if $vars[vars].access == 'private'}PrivateVariable{else}Variable{/if}.png" /> - <span class="var-title"> - <span class="var-type">{$vars[vars].var_type}</span> - <span class="var-name">{$vars[vars].var_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$vars[vars].var_default|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} - - {if $vars[vars].var_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$vars[vars].var_overrides.link}</dt> - {if $vars[vars].var_overrides.sdesc} - <dd>{$vars[vars].var_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - - {if $vars[vars].descvar} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=vm loop=$vars[vars].descvar} - <li> - {$vars[vars].descvar[vm].link} - {if $vars[vars].descvar[vm].sdesc} - : {$vars[vars].descvar[vm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} - -</div> -{/if} -{/section} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/options.ini b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/options.ini deleted file mode 100755 index 084809be..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/options.ini +++ /dev/null @@ -1,577 +0,0 @@ -preservedocbooktags = false - -;; used to highlight the {@source} inline tag, @filesource tag, and @example tag -[highlightSourceTokens] -;; format: -;; T_CONSTANTNAME = open -;; /T_CONSTANTNAME = close - -T_INCLUDE = <span class="src-inc"> -/T_INCLUDE = </span> -T_INCLUDE_ONCE = <span class="src-inc"> -/T_INCLUDE_ONCE = </span> -T_REQUIRE_ONCE = <span class="src-inc"> -/T_REQUIRE_ONCE = </span> -T_REQUIRE_ONCE = <span class="src-inc"> -/T_REQUIRE_ONCE = </span> - -T_CONSTANT_ENCAPSED_STRING = <span class="src-str"> -/T_CONSTANT_ENCAPSED_STRING = </span> -T_STRING_VARNAME = <span class="src-str"> -/T_STRING_VARNAME = </span> - -T_STRING = <span class="src-id"> -/T_STRING = </span> - -T_DNUMBER = <span class="src-num"> -/T_DNUMBER = </span> -T_LNUMBER = <span class="src-num"> -/T_LNUMBER = </span> - -T_VARIABLE = <span class="src-var"> -/T_VARIABLE = </span> - -T_COMMENT = <span class="src-comm"> -/T_COMMENT = </span> -T_ML_COMMENT = <span class="src-comm"> -/T_ML_COMMENT = </span> - -T_OBJECT_OPERATOR = <span class="src-sym"> -/T_OBJECT_OPERATOR = </span> - -T_ABSTRACT = <span class="src-key"> -/T_ABSTRACT = </span> -T_CLONE = <span class="src-key"> -/T_CLONE = </span> -T_HALT_COMPILER = <span class="src-key"> -/T_HALT_COMPILER = </span> -T_ARRAY = <span class="src-key"> -/T_ARRAY = </span> -T_AS = <span class="src-key"> -/T_AS = </span> -T_BREAK = <span class="src-key"> -/T_BREAK = </span> -T_CLASS = <span class="src-key"> -/T_CLASS = </span> -T_CASE = <span class="src-key"> -/T_CASE = </span> -T_CONST = <span class="src-key"> -/T_CONST = </span> -T_CONTINUE = <span class="src-key"> -/T_CONTINUE = </span> -T_DECLARE = <span class="src-key"> -/T_DECLARE = </span> -T_DEFAULT = <span class="src-key"> -/T_DEFAULT = </span> -T_ELSE = <span class="src-key"> -/T_ELSE = </span> -T_ELSEIF = <span class="src-key"> -/T_ELSEIF = </span> -T_EMPTY = <span class="src-key"> -/T_EMPTY = </span> -T_ENDDECLARE = <span class="src-key"> -/T_ENDDECLARE = </span> -T_ENDFOR = <span class="src-key"> -/T_ENDFOR = </span> -T_ENDSWITCH = <span class="src-key"> -/T_ENDSWITCH = </span> -T_ENDFOREACH = <span class="src-key"> -/T_ENDFOREACH = </span> -T_ENDIF = <span class="src-key"> -/T_ENDIF = </span> -T_ENDWHILE = <span class="src-key"> -/T_ENDWHILE = </span> -T_EXIT = <span class="src-key"> -/T_EXIT = </span> -T_EXTENDS = <span class="src-key"> -/T_EXTENDS = </span> -T_FINAL = <span class="src-key"> -/T_FINAL = </span> -T_FOR = <span class="src-key"> -/T_FOR = </span> -T_FOREACH = <span class="src-key"> -/T_FOREACH = </span> -T_FUNCTION = <span class="src-key"> -/T_FUNCTION = </span> -T_GLOBAL = <span class="src-key"> -/T_GLOBAL = </span> -T_IF = <span class="src-key"> -/T_IF = </span> -T_IMPLEMENTS = <span class="src-key"> -/T_IMPLEMENTS = </span> -T_INTERFACE = <span class="src-key"> -/T_INTERFACE = </span> -T_LOGICAL_AND = <span class="src-key"> -/T_LOGICAL_AND = </span> -T_LOGICAL_OR = <span class="src-key"> -/T_LOGICAL_OR = </span> -T_LOGICAL_XOR = <span class="src-key"> -/T_LOGICAL_XOR = </span> -T_NEW = <span class="src-key"> -/T_NEW = </span> -T_PRIVATE = <span class="src-key"> -/T_PRIVATE = </span> -T_PROTECTED = <span class="src-key"> -/T_PROTECTED = </span> -T_PUBLIC = <span class="src-key"> -/T_PUBLIC = </span> -T_RETURN = <span class="src-key"> -/T_RETURN = </span> -T_STATIC = <span class="src-key"> -/T_STATIC = </span> -T_SWITCH = <span class="src-key"> -/T_SWITCH = </span> -T_VAR = <span class="src-key"> -/T_VAR = </span> -T_WHILE = <span class="src-key"> -/T_WHILE = </span> - -T_DOUBLE_COLON = <span class="src-sym"> -/T_DOUBLE_COLON = </span> - -T_OPEN_TAG = <span class="src-php"> -/T_OPEN_TAG = </span> -T_OPEN_TAG_WITH_ECHO = <span class="src-php"> -/T_OPEN_TAG_WITH_ECHO = </span> -T_CLOSE_TAG = <span class="src-php"> -/T_CLOSE_TAG = </span> - - -[highlightSource] -;; this is for highlighting things that aren't tokens like "&" -;; format: -;; word = open -;; /word = close -@ = <span class="src-sym"> -/@ = </span> -& = <span class="src-sym"> -/& = </span> -[ = <span class="src-sym"> -/[ = </span> -] = <span class="src-sym"> -/] = </span> -! = <span class="src-sym"> -/! = </span> -";" = <span class="src-sym"> -/; = </span> -( = <span class="src-sym"> -/( = </span> -) = <span class="src-sym"> -/) = </span> -, = <span class="src-sym"> -/, = </span> -{ = <span class="src-sym"> -/{ = </span> -} = <span class="src-sym"> -/} = </span> -""" = <span class="src-str"> -/" = </span> - -[highlightDocBlockSourceTokens] -;; this is for docblock tokens, using by phpDocumentor_HighlightParser -;; tagphptype is for "string" in @param string description, for example -docblock = <span class="src-doc"> -/docblock = </span> -tagphptype = <span class="src-doc-type"> -/tagphptype = </span> -tagvarname = <span class="src-doc-var"> -/tagvarname = </span> -coretag = <span class="src-doc-coretag"> -/coretag = </span> -tag = <span class="src-doc-tag"> -/tag = </span> -inlinetag = <span class="src-doc-inlinetag"> -/inlinetag = </span> -internal = <span class="src-doc-internal"> -/internal = </span> -closetemplate = <span class="src-doc-close-template"> -/closetemplate = </span> -docblocktemplate = <span class="src-doc-template"> -/docblocktemplate = </span> - -[highlightTutorialSourceTokens] -;; this is for XML DocBook-based tutorials, highlighted by phpDocumentor_TutorialHighlightParser -;; <tag> -opentag = <span class="tute-tag"> -/opentag = </span> -;; </tag> -closetag = <span class="tute-tag"> -/closetag = </span> -;; <tag attribute="value"> -attribute = <span class="tute-attribute-name"> -/attribute = </span> -;; <tag attribute="value"> -attributevalue = <span class="tute-attribute-value"> -/attributevalue = </span> -;; &entity; -entity = <span class="tute-entity"> -/entity = </span> -;; <!-- comment --> -comment = <span class="tute-comment"> -/comment = </span> -;; {@inline tag} -itag = <span class="tute-inline-tag"> -/itag = </span> - -;; used for translation of html in DocBlocks -[desctranslate] -ul = <ul> -/ul = </ul> -ol = <ol> -/ol = </ol> -li = <li> -/li = </li> -code = -/code = -var = <var> -/var = </var> -samp = <samp> -/samp = </samp> -kbd = <kbd> -/kbd = </kbd> -pre = <pre> -/pre = </pre> -p = <p> -/p = </p> -b = <strong> -/b = </strong> -i = <em> -/i = </em> -br = <br /> - -[ppage] -;; this is the DocBook package page translation section. All DocBook tags -;; that have a corresponding html tag must be listed here. Entities should -;; also be listed here -;; -;; examples: -;; 1) -;; tagname = newtagname -;; -;; This is the simplest case, where all attributes will be added into the -;; starting tag and the ending tag will be html/xml style </tranlatedtagname> -;; <tagname></tagname> becomes <newtagname></newtagname> and -;; <tagname attr="value"></tagname> becomes -;; <newtagname attr="value"></newtagname> -;; -;; 2) -;; tagname = newtagname -;; tagname->attr = newattrname -;; -;; in this case, everything will be like the first case, except tags like: -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="value"></newtagname> -;; -;; 3) -;; tagname = newtagname -;; tagname->attr = newattrname -;; tagname->attr+value = newvalue -;; -;; in this case, the value is also translated to another. This can be useful -;; for instances such as focus="middle" changing to align="center" or something -;; of that nature. -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 4) -;; tagname = newtagname -;; tagname->attr1 = newattrname -;; tagname->attr2 = newattrname -;; tagname->attr1+value|attr2+value = newvalue -;; -;; in this case, two attributes combine to make one new attribute, and the combined -;; value is translated into a new value -;; <tagname attr1="value1" attr2="value2"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 5) -;; tagname = newtagname -;; tagname!attr = dummy -;; -;; here, the attribute will be ignored. dummy is not used and may be any value -;; <tagname attr="value"></tagname> will become -;; <newtagname></newtagname> -;; -;; 6) -;; tagname = newtagname -;; tagname! = dummy -;; -;; here, all attributes will be ignored. dummy is not used and may be any value -;; <tagname attr1="value" attr2="foo"></tagname> will become -;; <newtagname></newtagname> -;; -;; 7) -;; tagname = newtagname -;; tagname/ = 1 -;; -;; here, the tag will be translated as a single tag with no closing tag, and all -;; attributes -;; <tagname attr="val">{text text}</tagname> will become -;; <newtagname attr="val" /> -;; -;; 8) -;; tagname = <starttaginfo /> -;; /tagname = closetagtext -;; -;; in this case, the text <starttaginfo> will be inserted exactly as entered for -;; <tagname> and closetagtext for </tagname> -;; <tagname attr="val"></tagname> will become -;; <starttaginfo />closetagtext -;; -;; 9) -;; $attr$my_attribute = newattrname -;; -;; tagname = newtagname -;; -;; in this case, all occurences of my_attribute in any tag will be changed to -;; newattrname. This is useful for changing things like role="php" to -;; class="php," for example. Note that the text "$attr$" MUST be on the line -;; start for phpDocumentor to recognize it. -;; -;; 10) -;; &entity; = translation text -;; " = " -;; " = """ -;; < = < -;; -;; Use this to control translation of entities to their appropriate values - - = -" = " -” = ” -“ = “ -& = & -< = < -> = > -© = © - - -$attr$role = class - -abbrev = abbr - -blockquote = blockquote - -arg = span -arg->choice = class - -author = <span class="author"> -/author = </span> -author! = 0 - -authorblurb = <div class="author-blurb"> -/authorblurb = </div> - -authorgroup = <div class="authors"><h2 class="title">Authors</h2> -/authorgroup = </div> -authorgroup! = 0 - -caution = <span class="warning"> -/caution = </span> -caution! = 0 - -cmdsynopsis = <div class="cmd-synopsis"> -/cmdsynopsis = </div> - -command = <span class="cmd-title"> -/command = </span> - -copyright = <div class="notes"> -/copyright = </div> - -emphasis = em - -example = <div class="src-code"> -/example = </div> -example! = 0 - -function = -/function = () - -formalpara = p - -graphic = img -graphic->fileref = src -graphic/ = - -important = strong - -informalequation = blockquote - -informalexample = div - -inlineequation = em - -itemizedlist = ul - -listitem = li - -literal = code - -literallayout = span - -option = " " -/option = - -orderedlist = ol - -para = p - -programlisting = <div class="src-code"> -/programlisting = </div> -programlisting! = 0 - -refentry = div - -refnamediv = <div class="ref-title-box"> -/refnamediv = </div> -refnamediv! = 0 - -refname = <h1 class="ref-title"> -/refname = </h1> - -refpurpose = <h2 class="ref-purpose"> -/refpurpose = </h2> - -refsynopsisdiv = <div class="ref-synopsis"> -/refsynopsisdiv = </div> -refsynopsisdiv! = 0 - -refsect1 = span - -refsect2 = span - -refsect3 = -/refsect3 = <br /> - -releaseinfo = <div class="release-info">( -/releaseinfo = )</div> - -simpara = -/simpara = <br /> -simpara! = 0 - -subscript = sub - -superscript = super - -table = table - -table->colsep = rules -table->rowsep = rules -table->colsep+1|rowsep+1 =all -table->colsep+1|rowsep+0 =cols -table->colsep+0|rowsep+1 =rows - -table->frame =frame -table->frame+all =border -table->frame+none =void -table->frame+sides =vsides -table->frame+top =above -table->frame+topbot =hsides - -thead = thead - -tfoot = tfoot - -tbody = tbody - -colspec = col - -tgroup = colgroup -tgroup/ = 1 -tgroup->cols = span - -row = tr - -entry = td -entry->morerows = colspan -entry->morerows+1 =2 -entry->morerows+2 =3 -entry->morerows+3 =4 -entry->morerows+4 =5 -entry->morerows+5 =6 -entry->morerows+6 =7 -entry->morerows+7 =8 -entry->morerows+8 =9 -entry->morerows+9 =10 -entry->morerows+10 =11 -;; add more if you need more colspans - -warning = <span class="warning"> -/warning = </span> -warning! = 0 - -;; now begins the attributes that should be tags in cdata -[$attr$id] -open = a -;close = /a -cdata! = true -quotevalues = true -separator = "=" -;separateall = true -$id = name - -;; now begins the sections that deal with <title> -[refsynopsisdiv_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h1 class="title"> -close = </h1> - -[refsect1_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h2 class="title"> -close = </h2> - -[refsect2_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h3 class="title"> -close = </h3> - -[refsect3_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h4 class="title"> -close = </h4> - -[para_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <div class="title"> -close = </div> - -[formalpara_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <div class="title"> -close = </div> - -[example_title] -;tag_attr = true -;attr_name = title -;cdata_start = true -cdata_end = true -open = </td></tr><tr><td><strong> -close = </strong> - -[table_title] -;tag_attr = true -;attr_name = true -cdata_start = true -open = <caption> -close = </caption> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/basicindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/basicindex.tpl deleted file mode 100755 index 951ee264..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/basicindex.tpl +++ /dev/null @@ -1,47 +0,0 @@ -<div class="index-letter-menu"> -{section name=letter loop=$letters} - <a class="index-letter" href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> -{/section} -</div> - -{section name=index loop=$index} - <a name="{$index[index].letter}"></a> - <div class="index-letter-section"> - <div style="float: left" class="index-letter-title">{$index[index].letter}</div> - <div style="float: right"><a href="#top">top</a></div> - <div style="clear: both"></div> - </div> - <dl> - {section name=contents loop=$index[index].index} - <dt class="field"> - {if ($index[index].index[contents].title == "Variable")} - <span class="var-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Global")} - <span class="var-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Method")} - <span class="method-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Function")} - <span class="method-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Constant")} - <span class="const-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Page") || ($index[index].index[contents].title == "Include")} - <span class="include-title">{$index[index].index[contents].name}</span> - {else} - {$index[index].index[contents].name} - {/if} - </dt> - <dd class="index-item-body"> - <div class="index-item-details">{$index[index].index[contents].link} in {$index[index].index[contents].file_name}</div> - {if $index[index].index[contents].description} - <div class="index-item-description">{$index[index].index[contents].description}</div> - {/if} - </dd> - {/section} - </dl> -{/section} - -<div class="index-letter-menu"> -{section name=letter loop=$letters} - <a class="index-letter" href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> -{/section} -</div> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/blank.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/blank.tpl deleted file mode 100755 index 6a05f27e..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/blank.tpl +++ /dev/null @@ -1,13 +0,0 @@ -<html> -<head> - <title>{$maintitle}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> -</head> -<body> -<div align="center"><h1>{$maintitle}</h1></div> -<b>Welcome to {$package}!</b><br /> -<br /> -This documentation was generated by <a href="{$phpdocwebsite}">phpDocumentor v{$phpdocversion}</a><br /> -</body> -</html>
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/class.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/class.tpl deleted file mode 100755 index 9ab7c455..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/class.tpl +++ /dev/null @@ -1,429 +0,0 @@ -{include file="header.tpl" top3=true} - -<h2 class="class-name">{if $is_interface}Interface{else}Class{/if} {$class_name}</h2> - -<a name="sec-description"></a> -<div class="info-box"> - <div class="info-box-title">Description</div> - <div class="nav-bar"> - {if $children || $vars || $ivars || $methods || $imethods || $consts || $iconsts } - <span class="disabled">Description</span> | - {/if} - {if $children} - <a href="#sec-descendents">Descendents</a> - {if $vars || $ivars || $methods || $imethods || $consts || $iconsts}|{/if} - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {if $methods || $imethods}|{/if} - {/if} - {if $methods || $imethods} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {if $implements} - <p class="implements"> - Implements interfaces: - <ul> - {foreach item="int" from=$implements}<li>{$int}</li>{/foreach} - </ul> - </p> - {/if} - {include file="docblock.tpl" type="class" sdesc=$sdesc desc=$desc} - <p class="notes"> - Located in <a class="field" href="{$page_link}">{$source_location}</a> (line <span class="field">{if $class_slink}{$class_slink}{else}{$line_number}{/if}</span>) - </p> - - {if $tutorial} - <hr class="separator" /> - <div class="notes">Tutorial: <span class="tutorial">{$tutorial}</span></div> - {/if} - - <pre>{section name=tree loop=$class_tree.classes}{$class_tree.classes[tree]}{$class_tree.distance[tree]}{/section}</pre> - - {if $conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with classes:</span><br /> - {section name=me loop=$conflicts.conflicts} - {$conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - </div> -</div> - -{if $children} - <a name="sec-descendents"></a> - <div class="info-box"> - <div class="info-box-title">Direct descendents</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - <span class="disabled">Descendents</span> - {if $vars || $ivars || $methods || $imethods}|{/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {if $methods || $imethods}|{/if} - {/if} - {if $methods || $imethods} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <table cellpadding="2" cellspacing="0" class="class-table"> - <tr> - <th class="class-table-header">Class</th> - <th class="class-table-header">Description</th> - </tr> - {section name=kids loop=$children} - <tr> - <td style="padding-right: 2em">{$children[kids].link}</td> - <td> - {if $children[kids].sdesc} - {$children[kids].sdesc} - {else} - {$children[kids].desc} - {/if} - </td> - </tr> - {/section} - </table> - </div> - </div> -{/if} - -{if $consts} - <a name="sec-const-summary"></a> - <div class="info-box"> - <div class="info-box-title">Class Constant Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendants</a> | - {/if} - <span class="disabled">Constants</span> (<a href="#sec-consts">details</a>) - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - | - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <div class="const-summary"> - {section name=consts loop=$consts} - <div class="const-title"> - <img src="{$subdir}media/images/Constant.png" alt=" " /> - <a href="#{$consts[consts].const_name}" title="details" class="const-name">{$consts[consts].const_name}</a> = <span class="var-type">{$consts[consts].const_value}</span> - - </div> - {/section} - </div> - </div> - </div> -{/if} - -{if $vars} - <a name="sec-var-summary"></a> - <div class="info-box"> - <div class="info-box-title">Variable Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - <span class="disabled">Vars</span> (<a href="#sec-vars">details</a>) - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <div class="var-summary"> - {section name=vars loop=$vars} - {if $vars[vars].static} - <div class="var-title"> - static <span class="var-type">{$vars[vars].var_type}</span> - <a href="#{$vars[vars].var_name}" title="details" class="var-name">{$vars[vars].var_name}</a> - </div> - {/if} - {/section} - {section name=vars loop=$vars} - {if !$vars[vars].static} - <div class="var-title"> - <span class="var-type">{$vars[vars].var_type}</span> - <a href="#{$vars[vars].var_name}" title="details" class="var-name">{$vars[vars].var_name}</a> - </div> - {/if} - {/section} - </div> - </div> - </div> -{/if} - -{if $methods} - <a name="sec-method-summary"></a> - <div class="info-box"> - <div class="info-box-title">Method Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - | - {/if} - <span class="disabled">Methods</span> (<a href="#sec-methods">details</a>) - </div> - <div class="info-box-body"> - <div class="method-summary"> - {section name=methods loop=$methods} - {if $methods[methods].static} - <div class="method-definition"> - static {if $methods[methods].function_return} - <span class="method-result">{$methods[methods].function_return}</span> - {/if} - <a href="#{$methods[methods].function_name}" title="details" class="method-name">{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}</a> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - {/if} - {/section} - {section name=methods loop=$methods} - {if !$methods[methods].static} - <div class="method-definition"> - {if $methods[methods].function_return} - <span class="method-result">{$methods[methods].function_return}</span> - {/if} - <a href="#{$methods[methods].function_name}" title="details" class="method-name">{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}</a> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - {/if} - {/section} - </div> - </div> - </div> -{/if} - -{if $vars || $ivars} - <a name="sec-vars"></a> - <div class="info-box"> - <div class="info-box-title">Variables</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $methods} - <a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Vars</span> - {/if} - - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {include file="var.tpl"} - {if $ivars} - <h4>Inherited Variables</h4> - <A NAME='inherited_vars'><!-- --></A> - {section name=ivars loop=$ivars} - <p>Inherited from <span class="classname">{$ivars[ivars].parent_class}</span></p> - <blockquote> - {section name=ivars2 loop=$ivars[ivars].ivars} - <span class="var-title"> - <span class="var-name">{$ivars[ivars].ivars[ivars2].link}</span>{if $ivars[ivars].ivars[ivars2].ivar_sdesc}: {$ivars[ivars].ivars[ivars2].ivar_sdesc}{/if}<br> - </span> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{if $methods || $imethods} - <a name="sec-methods"></a> - <div class="info-box"> - <div class="info-box-title">Methods</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Methods</span> - {/if} - </div> - <div class="info-box-body"> - {include file="method.tpl"} - {if $imethods} - <h4>Inherited Methods</h4> - <a name='inherited_methods'><!-- --></a> - {section name=imethods loop=$imethods} - <!-- =========== Summary =========== --> - <p>Inherited From <span class="classname">{$imethods[imethods].parent_class}</span></p> - <blockquote> - {section name=im2 loop=$imethods[imethods].imethods} - <span class="method-name">{$imethods[imethods].imethods[im2].link}</span>{if $imethods[imethods].imethods[im2].ifunction_sdesc}: {$imethods[imethods].imethods[im2].ifunction_sdesc}{/if}<br> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{if $consts || $iconsts} - <a name="sec-consts"></a> - <div class="info-box"> - <div class="info-box-title">Class Constants</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendants</a> | - {/if} - {if $methods} - <a href="#sec-var-summary">Constants</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Constants</span> - {/if} - - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {include file="const.tpl"} - {if $iconsts} - <h4>Inherited Constants</h4> - <A NAME='inherited_vars'><!-- --></A> - {section name=iconsts loop=$iconsts} - <p>Inherited from <span class="classname">{$iconsts[iconsts].parent_class}</span></p> - <blockquote> - {section name=iconsts2 loop=$iconsts[iconsts].iconsts} - <img src="{$subdir}media/images/{if $iconsts[iconsts].iconsts[iconsts2].access == 'private'}PrivateVariable{else}Variable{/if}.png" /> - <span class="const-title"> - <span class="const-name">{$iconsts[iconsts].iconsts[iconsts2].link}</span>{if $iconsts[iconsts].iconsts[iconsts2].iconst_sdesc}: {$iconsts[iconsts].iconsts[iconsts2].iconst_sdesc}{/if}<br> - </span> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{include file="footer.tpl" top3=true} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/classtrees.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/classtrees.tpl deleted file mode 100755 index 952e6d50..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/classtrees.tpl +++ /dev/null @@ -1,19 +0,0 @@ -{include file="header.tpl" top1=true} - -<!-- Start of Class Data --> -<H2> - {$smarty.capture.title} -</H2> -{if $interfaces} -{section name=classtrees loop=$interfaces} -<h2>Root interface {$interfaces[classtrees].class}</h2> -{$interfaces[classtrees].class_tree} -{/section} -{/if} -{if $classtrees} -{section name=classtrees loop=$classtrees} -<h2>Root class {$classtrees[classtrees].class}</h2> -{$classtrees[classtrees].class_tree} -{/section} -{/if} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/const.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/const.tpl deleted file mode 100644 index c26ff92d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/const.tpl +++ /dev/null @@ -1,18 +0,0 @@ -{section name=consts loop=$consts} -<a name="const{$consts[consts].const_name}" id="{$consts[consts].const_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="const-header"> - <img src="{$subdir}media/images/{if $consts[consts].access == 'private'}PrivateVariable{else}Variable{/if}.png" /> - <span class="const-title"> - <span class="const-name">{$consts[consts].const_name}</span> - = <span class="const-default">{$consts[consts].const_value|replace:"\n":"<br />"}</span> - (line <span class="line-number">{if $consts[consts].slink}{$consts[consts].slink}{else}{$consts[consts].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$consts[consts].sdesc desc=$consts[consts].desc tags=$consts[consts].tags} - -</div> -{/section} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/define.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/define.tpl deleted file mode 100755 index 0da5d864..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/define.tpl +++ /dev/null @@ -1,24 +0,0 @@ -{section name=def loop=$defines} -<a name="{$defines[def].define_link}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="const-title"> - <span class="const-name">{$defines[def].define_name}</span> = {$defines[def].define_value|replace:"\n":"<br />"} - (line <span class="line-number">{if $defines[def].slink}{$defines[def].slink}{else}{$defines[def].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$defines[def].sdesc desc=$defines[def].desc tags=$defines[def].tags} - - {if $globals[glob].global_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with constants:</span><br /> - {section name=me loop=$defines[def].define_conflicts.conflicts} - {$defines[def].define_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/docblock.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/docblock.tpl deleted file mode 100755 index 783d5271..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/docblock.tpl +++ /dev/null @@ -1,14 +0,0 @@ -<!-- ========== Info from phpDoc block ========= --> -{if $sdesc} -<p class="short-description">{$sdesc}</p> -{/if} -{if $desc} -<p class="description">{$desc}</p> -{/if} -{if $tags} - <ul class="tags"> - {section name=tags loop=$tags} - <li><span class="field">{$tags[tags].keyword}:</span> {$tags[tags].data}</li> - {/section} - </ul> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/elementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/elementindex.tpl deleted file mode 100755 index d5964f99..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/elementindex.tpl +++ /dev/null @@ -1,12 +0,0 @@ -{include file="header.tpl" noleftindex=true} -<a name="top"></a> -<h2>Full index</h2> -<h3>Package indexes</h3> -<ul> -{section name=p loop=$packageindex} - <li><a href="elementindex_{$packageindex[p].title}.html">{$packageindex[p].title}</a></li> -{/section} -</ul> -<br /> -{include file="basicindex.tpl" indexname="elementindex"} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/errors.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/errors.tpl deleted file mode 100755 index 0f526584..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/errors.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{include file="header.tpl" noleftindex=true} -{section name=files loop=$files} -<a href="#{$files[files].file}">{$files[files].file}</a><br> -{/section} -{foreach key=file item=issues from=$all} -<a name="{$file}"></a> -<h1>{$file}</h1> -{if count($issues.warnings)} -<h2>Warnings:</h2><br> -{section name=warnings loop=$issues.warnings} -<b>{$issues.warnings[warnings].name}</b> - {$issues.warnings[warnings].listing}<br> -{/section} -{/if} -{if count($issues.errors)} -<h2>Errors:</h2><br> -{section name=errors loop=$issues.errors} -<b>{$issues.errors[errors].name}</b> - {$issues.errors[errors].listing}<br> -{/section} -{/if} -{/foreach} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/examplesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/examplesource.tpl deleted file mode 100755 index 8abf74ce..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/examplesource.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl" title=$title} -<h1>{$title}</h1> -<div class="listing"> -{$source} -</div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/filesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/filesource.tpl deleted file mode 100755 index 239f7b41..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/filesource.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{capture name="tutle"}File Source for {$name}{/capture} -{include file="header.tpl" title=$smarty.capture.tutle} -<h1>Source for file {$name}</h1> -<p>Documentation is available at {$docs}</p> -<div class="src-code"> -{$source} -</div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/footer.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/footer.tpl deleted file mode 100755 index 8d0f79db..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/footer.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{if !$index} - <p class="notes" id="credit"> - Documentation generated on {$date} by <a href="{$phpdocwebsite}" target="_blank">phpDocumentor {$phpdocversion}</a> - </p> -{/if} - {if $top3}</div>{/if} -</body> -</html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/function.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/function.tpl deleted file mode 100755 index b6880059..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/function.tpl +++ /dev/null @@ -1,44 +0,0 @@ -{section name=func loop=$functions} -<a name="{$functions[func].function_dest}" id="{$functions[func].function_dest}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="method-title">{$functions[func].function_name}</span> (line <span class="line-number">{if $functions[func].slink}{$functions[func].slink}{else}{$functions[func].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$functions[func].sdesc desc=$functions[func].desc tags=$functions[func].tags params=$functions[func].params function=false} - - <div class="method-signature"> - <span class="method-result">{$functions[func].function_return}</span> - <span class="method-name"> - {if $functions[func].ifunction_call.returnsref}&{/if}{$functions[func].function_name} - </span> - {if count($functions[func].ifunction_call.params)} - ({section name=params loop=$functions[func].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $functions[func].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$functions[func].ifunction_call.params[params].type}</span> <span class="var-name">{$functions[func].ifunction_call.params[params].name}</span>{if $functions[func].ifunction_call.params[params].hasdefault} = <span class="var-default">{$functions[func].ifunction_call.params[params].default|escape:"html"}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $functions[func].params} - <ul class="parameters"> - {section name=params loop=$functions[func].params} - <li> - <span class="var-type">{$functions[func].params[params].datatype}</span> - <span class="var-name">{$functions[func].params[params].var}</span>{if $functions[func].params[params].data}<span class="var-description">: {$functions[func].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $functions[func].function_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with functions:</span><br /> - {section name=me loop=$functions[func].function_conflicts.conflicts} - {$functions[func].function_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/global.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/global.tpl deleted file mode 100755 index eab7e0b0..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/global.tpl +++ /dev/null @@ -1,26 +0,0 @@ -{section name=glob loop=$globals} -<a name="{$globals[glob].global_link}" id="{$globals[glob].global_link}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="var-title"> - <span class="var-type">{$globals[glob].global_type}</span> - <span class="var-name">{$globals[glob].global_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$globals[glob].global_value|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $globals[glob].slink}{$globals[glob].slink}{else}{$globals[glob].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$globals[glob].sdesc desc=$globals[glob].desc tags=$globals[glob].tags} - - {if $globals[glob].global_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with global variables:</span><br /> - {section name=me loop=$globals[glob].global_conflicts.conflicts} - {$globals[glob].global_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/header.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/header.tpl deleted file mode 100755 index cd34cf9f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/header.tpl +++ /dev/null @@ -1,99 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <!-- template designed by Marco Von Ballmoos --> - <title>{$title}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - {if $top2 || $top3} - <script src="{$subdir}media/lib/classTree.js"></script> - {/if} - {if $top2} - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> - <link rel="stylesheet" href="{$subdir}media/banner.css" /> - <style> - body {ldelim} padding: 1em {rdelim} - </style> - {/if} - {if $top3 || $top2} - <script language="javascript" type="text/javascript"> - var imgPlus = new Image(); - var imgMinus = new Image(); - imgPlus.src = "{$subdir}media/images/plus.png"; - imgMinus.src = "{$subdir}media/images/minus.png"; - - function showNode(Node){ldelim} - switch(navigator.family){ldelim} - case 'nn4': - // Nav 4.x code fork... - var oTable = document.layers["span" + Node]; - var oImg = document.layers["img" + Node]; - break; - case 'ie4': - // IE 4/5 code fork... - var oTable = document.all["span" + Node]; - var oImg = document.all["img" + Node]; - break; - case 'gecko': - // Standards Compliant code fork... - var oTable = document.getElementById("span" + Node); - var oImg = document.getElementById("img" + Node); - break; - {rdelim} - oImg.src = imgMinus.src; - oTable.style.display = "block"; - {rdelim} - - function hideNode(Node){ldelim} - switch(navigator.family){ldelim} - case 'nn4': - // Nav 4.x code fork... - var oTable = document.layers["span" + Node]; - var oImg = document.layers["img" + Node]; - break; - case 'ie4': - // IE 4/5 code fork... - var oTable = document.all["span" + Node]; - var oImg = document.all["img" + Node]; - break; - case 'gecko': - // Standards Compliant code fork... - var oTable = document.getElementById("span" + Node); - var oImg = document.getElementById("img" + Node); - break; - {rdelim} - oImg.src = imgPlus.src; - oTable.style.display = "none"; - {rdelim} - - function nodeIsVisible(Node){ldelim} - switch(navigator.family){ldelim} - case 'nn4': - // Nav 4.x code fork... - var oTable = document.layers["span" + Node]; - break; - case 'ie4': - // IE 4/5 code fork... - var oTable = document.all["span" + Node]; - break; - case 'gecko': - // Standards Compliant code fork... - var oTable = document.getElementById("span" + Node); - break; - {rdelim} - return (oTable && oTable.style.display == "block"); - {rdelim} - - function toggleNodeVisibility(Node){ldelim} - if (nodeIsVisible(Node)){ldelim} - hideNode(Node); - {rdelim}else{ldelim} - showNode(Node); - {rdelim} - {rdelim} - </script> - {/if} - </head> - <body> - {if $top3}<div class="page-body">{/if} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/include.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/include.tpl deleted file mode 100755 index c2419e5f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/include.tpl +++ /dev/null @@ -1,16 +0,0 @@ -{section name=includes loop=$includes} -<a name="{$includes[includes].include_file}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="include-title"> - <span class="include-type">{$includes[includes].include_name}</span> - (<span class="include-name">{$includes[includes].include_value}</span>) - (line <span class="line-number">{if $includes[includes].slink}{$includes[includes].slink}{else}{$includes[includes].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$includes[includes].sdesc desc=$includes[includes].desc tags=$includes[includes].tags} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/index.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/index.tpl deleted file mode 100755 index 7cd61094..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/index.tpl +++ /dev/null @@ -1,24 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html - PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//FR" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> -<head> - <!-- Generated by phpDocumentor on {$date} --> - <title>{$title}</title> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> -</head> - -<FRAMESET rows='120,*'> - <FRAME src='packages.html' name='left_top' frameborder="1" bordercolor="#999999"> - <FRAMESET cols='25%,*'> - <FRAME src='{$start}' name='left_bottom' frameborder="1" bordercolor="#999999"> - <FRAME src='{$blank}.html' name='right' frameborder="1" bordercolor="#999999"> - </FRAMESET> - <NOFRAMES> - <H2>Frame Alert</H2> - <P>This document is designed to be viewed using the frames feature. - If you see this message, you are using a non-frame-capable web client.</P> - </NOFRAMES> -</FRAMESET> -</HTML> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/left_frame.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/left_frame.tpl deleted file mode 100755 index 2072566d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/left_frame.tpl +++ /dev/null @@ -1,198 +0,0 @@ -{include file="header.tpl" top2=true} -<h3 class="package-title">{$info.0.package}</h3> -<div class="tree"> -<script language="Javascript"> -if (document.getElementById) {ldelim} -{section name=p loop=$info} - {if $info[p].subpackage == ""} - var tree = new WebFXTree('<span class="package">{$info.0.package}</span>'); - tree.setBehavior('classic'); - - {if $hastodos} - var todos = new WebFXTreeItem('To-do List', '{$todolink}'); - tree.add(todos); - {/if} - - var class_trees = new WebFXTreeItem('Class trees', '{$classtreepage}.html'); - tree.add(class_trees); - - var elements = new WebFXTreeItem('Index of elements', '{$elementindex}.html'); - tree.add(elements); - - var parent_node; - - {if $info[p].tutorials} - var tree_tutorial = new WebFXTreeItem('Tutorial(s)/Manual(s)', ''); - tree.add(tree_tutorial); - - {if $info[p].tutorials.pkg} - var tree_inner_tutorial = new WebFXTreeItem('Package-level', ''); - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.pkg} - {$info[p].tutorials.pkg[ext]} - {/section} - {/if} - - {if $info[p].tutorials.cls} - var tree_inner_tutorial = new WebFXTreeItem('Class-level', ''); - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.cls} - {$info[p].tutorials.cls[ext]} - {/section} - {/if} - - {if $info[p].tutorials.proc} - var tree_inner_tutorial = new WebFXTreeItem('Function-level', ''); - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.proc} - {$info[p].tutorials.proc[ext]} - {/section} - {/if} - {/if} - - {if $info[p].hasinterfaces} - {if $info[p].classes} - var tree_classe = new WebFXTreeItem('Interface(s)', '{$packagedoc}'); - - {section name=class loop=$info[p].classes} - {if $info[p].classes[class].is_interface} - var classe = new WebFXTreeItem('{$info[p].classes[class].title|escape:"quotes"}', '{$info[p].classes[class].link|escape:"quotes"}'); - tree_classe.add(classe); - {/if} - {/section} - - tree.add(tree_classe); - {/if} - {/if} - {if $info[p].hasclasses} - {if $info[p].classes} - var tree_classe = new WebFXTreeItem('Class(es)', '{$packagedoc}'); - - {section name=class loop=$info[p].classes} - {if $info[p].classes[class].is_class} - var classe = new WebFXTreeItem('{$info[p].classes[class].title|escape:"quotes"}', '{$info[p].classes[class].link|escape:"quotes"}'); - tree_classe.add(classe); - {/if} - {/section} - - tree.add(tree_classe); - {/if} - {/if} - - {if $info[p].functions} - var tree_function = new WebFXTreeItem('Function(s)', '{$packagedoc}'); - - {section name=nonclass loop=$info[p].functions} - var fic = new WebFXTreeItem('{$info[p].functions[nonclass].title|escape:"quotes"}', '{$info[p].functions[nonclass].link|escape:"quotes"}'); - tree_function.add(fic); - {/section} - - tree.add(tree_function); - {/if} - - {if $info[p].files} - var tree_file = new WebFXTreeItem('File(s)', '{$packagedoc|escape:"quotes"}'); - - {section name=nonclass loop=$info[p].files} - var file = new WebFXTreeItem('{$info[p].files[nonclass].title|escape:"quotes"}', '{$info[p].files[nonclass].link|escape:"quotes"}'); - tree_file.add(file); - {/section} - - tree.add(tree_file); - {/if} - - {else} - {if $info[p].subpackagetutorial} - var subpackagetree = new WebFXTreeItem('<span class="sub-package">{$info[p].subpackagetutorialtitle|strip_tags|escape:"quotes"}</span>', '{$info[p].subpackagetutorialnoa}'); - {else} - var subpackagetree = new WebFXTreeItem('<span class="sub-package">{$info[p].subpackage}</span>', '{$packagedoc|escape:"quotes"}'); - {/if} - - {if $info[p].tutorials} - var tree_tutorial = new WebFXTreeItem('Tutorial(s)/Manual(s)', ''); - tree.add(tree_tutorial); - - {if $info[p].tutorials.pkg} - var tree_inner_tutorial = new WebFXTreeItem('Package-level', ''); - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.pkg} - {$info[p].tutorials.pkg[ext]} - {/section} - {/if} - - {if $info[p].tutorials.cls} - var tree_inner_tutorial = new WebFXTreeItem('Class-level', ''); - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.cls} - {$info[p].tutorials.cls[ext]} - {/section} - {/if} - - {if $info[p].tutorials.proc} - var tree_inner_tutorial = new WebFXTreeItem('Function-level', ''); - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.proc} - {$info[p].tutorials.proc[ext]} - {/section} - {/if} - {/if} - - {if $info[p].classes} - var subpackagetree_classe = new WebFXTreeItem('Class(es)', '{$packagedoc|escape:"quotes"}'); - - {section name=class loop=$info[p].classes} - var classe = new WebFXTreeItem('{$info[p].classes[class].title|escape:"quotes"}', '{$info[p].classes[class].link|escape:"quotes"}'); - subpackagetree_classe.add(classe); - {/section} - - subpackagetree.add(subpackagetree_classe); - {/if} - - {if $info[p].functions} - var subpackagetree_function = new WebFXTreeItem('Function(s)', '{$packagedoc}'); - - {section name=nonclass loop=$info[p].functions} - var fic = new WebFXTreeItem('{$info[p].functions[nonclass].title|escape:"quotes"}', '{$info[p].functions[nonclass].link|escape:"quotes"}'); - subpackagetree_function.add(fic); - {/section} - - subpackagetree.add(subpackagetree_function); - {/if} - - {if $info[p].files} - var subpackagetree_file = new WebFXTreeItem('File(s)', '{$packagedoc|escape:"quotes"}'); - - {section name=nonclass loop=$info[p].files} - var file = new WebFXTreeItem('{$info[p].files[nonclass].title|escape:"quotes"}', '{$info[p].files[nonclass].link|escape:"quotes"}'); - subpackagetree_file.add(file); - {/section} - - subpackagetree.add(subpackagetree_file); - {/if} - - tree.add(subpackagetree); - {/if} -{/section} - -document.write(tree); -{rdelim} -</script> -</div> -<p class="notes"> - Generated by - <a href="{$phpdocwebsite}" target="_blank">phpDocumentor <span class="field">{$phpdocversion}</span></a> -</p> -</body> -</html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/banner.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/banner.css deleted file mode 100755 index 4f7db5da..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/banner.css +++ /dev/null @@ -1,32 +0,0 @@ -body -{ - background: #EEEEEE url(bg_left.png) repeat; - margin: 0px; - padding: 0px; -} - -/* Banner (top bar) classes */ - -.banner { } - -.banner-menu -{ - clear: both; - padding: .5em; - border-top: 2px solid #999999; -} - -.banner-title -{ - text-align: right; - font-size: 20pt; - font-weight: bold; - margin: .2em; -} - -.package-selector -{ - background-color: #EEEEEE; - border: 1px solid black; - color: #0000C0; -} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/bg_left.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/bg_left.png Binary files differdeleted file mode 100755 index 1c331f09..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/bg_left.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/I.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/I.png Binary files differdeleted file mode 100755 index e8512fb9..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/I.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/L.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/L.png Binary files differdeleted file mode 100755 index eb334eda..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/L.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/Lminus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/Lminus.png Binary files differdeleted file mode 100755 index f7c43c0a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/Lminus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/Lplus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/Lplus.png Binary files differdeleted file mode 100755 index 848ec2fc..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/Lplus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/T.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/T.png Binary files differdeleted file mode 100755 index 30173254..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/T.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/Tminus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/Tminus.png Binary files differdeleted file mode 100755 index 2260e424..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/Tminus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/Tplus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/Tplus.png Binary files differdeleted file mode 100755 index 2c8d8f4f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/Tplus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/blank.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/blank.png Binary files differdeleted file mode 100755 index cee9cd37..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/blank.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/empty.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/empty.png Binary files differdeleted file mode 100755 index d5683865..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/images/empty.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/lib/classTree.js b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/lib/classTree.js deleted file mode 100755 index ebb3fb4a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/lib/classTree.js +++ /dev/null @@ -1,454 +0,0 @@ -/*----------------------------------------\ -| Cross Browser Tree Widget 1.1 | -|-----------------------------------------| -| Created by Emil A. Eklund (eae@eae.net) | -| For WebFX (http://webfx.eae.net/) | -|-----------------------------------------| -| This script is provided as is without | -| any warranty whatsoever. It may be used | -| free of charge for non commerical sites | -| For commerical use contact the author | -| of this script for further details. | -|-----------------------------------------| -| Created 2000-12-11 | Updated 2001-09-06 | -\----------------------------------------*/ - -var webFXTreeConfig = { - rootIcon : 'media/images/empty.png', - openRootIcon : 'media/images/empty.png', - folderIcon : 'media/images/empty.png', - openFolderIcon : 'media/images/empty.png', - fileIcon : 'media/images/empty.png', - iIcon : 'media/images/I.png', - lIcon : 'media/images/L.png', - lMinusIcon : 'media/images/Lminus.png', - lPlusIcon : 'media/images/Lplus.png', - tIcon : 'media/images/T.png', - tMinusIcon : 'media/images/Tminus.png', - tPlusIcon : 'media/images/Tplus.png', - blankIcon : 'media/images/blank.png', - defaultText : 'Tree Item', - defaultAction : 'javascript:void(0);', - defaultTarget : 'right', - defaultBehavior : 'classic' -}; - -var webFXTreeHandler = { - idCounter : 0, - idPrefix : "webfx-tree-object-", - all : {}, - behavior : null, - selected : null, - getId : function() { return this.idPrefix + this.idCounter++; }, - toggle : function (oItem) { this.all[oItem.id.replace('-plus','')].toggle(); }, - select : function (oItem) { this.all[oItem.id.replace('-icon','')].select(); }, - focus : function (oItem) { this.all[oItem.id.replace('-anchor','')].focus(); }, - blur : function (oItem) { this.all[oItem.id.replace('-anchor','')].blur(); }, - keydown : function (oItem) { return this.all[oItem.id].keydown(window.event.keyCode); }, - cookies : new WebFXCookie() -}; - -/* - * WebFXCookie class - */ - -function WebFXCookie() { - if (document.cookie.length) { this.cookies = ' ' + document.cookie; } -} - -WebFXCookie.prototype.setCookie = function (key, value) { - document.cookie = key + "=" + escape(value); -} - -WebFXCookie.prototype.getCookie = function (key) { - if (this.cookies) { - var start = this.cookies.indexOf(' ' + key + '='); - if (start == -1) { return null; } - var end = this.cookies.indexOf(";", start); - if (end == -1) { end = this.cookies.length; } - end -= start; - var cookie = this.cookies.substr(start,end); - return unescape(cookie.substr(cookie.indexOf('=') + 1, cookie.length - cookie.indexOf('=') + 1)); - } - else { return null; } -} - -/* - * WebFXTreeAbstractNode class - */ - -function WebFXTreeAbstractNode(sText, sAction, sTarget) { - this.childNodes = []; - this.id = webFXTreeHandler.getId(); - this.text = sText || webFXTreeConfig.defaultText; - this.action = sAction || webFXTreeConfig.defaultAction; - this.targetWindow = sTarget || webFXTreeConfig.defaultTarget; - this._last = false; - webFXTreeHandler.all[this.id] = this; -} - -WebFXTreeAbstractNode.prototype.add = function (node) { - node.parentNode = this; - this.childNodes[this.childNodes.length] = node; - var root = this; - if (this.childNodes.length >=2) { - this.childNodes[this.childNodes.length -2]._last = false; - } - while (root.parentNode) { root = root.parentNode; } - if (root.rendered) { - if (this.childNodes.length >= 2) { - document.getElementById(this.childNodes[this.childNodes.length -2].id + '-plus').src = ((this.childNodes[this.childNodes.length -2].folder)?webFXTreeConfig.tMinusIcon:webFXTreeConfig.tIcon); - if (this.childNodes[this.childNodes.length -2].folder) { - this.childNodes[this.childNodes.length -2].plusIcon = webFXTreeConfig.tPlusIcon; - this.childNodes[this.childNodes.length -2].minusIcon = webFXTreeConfig.tMinusIcon; - } - this.childNodes[this.childNodes.length -2]._last = false; - } - this._last = true; - var foo = this; - while (foo.parentNode) { - for (var i = 0; i < foo.parentNode.childNodes.length; i++) { - if (foo.id == foo.parentNode.childNodes[i].id) { break; } - } - if (++i == foo.parentNode.childNodes.length) { foo.parentNode._last = true; } - else { foo.parentNode._last = false; } - foo = foo.parentNode; - } - document.getElementById(this.id + '-cont').insertAdjacentHTML("beforeEnd", node.toString()); - if ((!this.folder) && (!this.openIcon)) { - this.icon = webFXTreeConfig.folderIcon; - this.openIcon = webFXTreeConfig.openFolderIcon; - } - this.folder = true; - this.indent(); - this.expand(); - } - return node; -} - -WebFXTreeAbstractNode.prototype.toggle = function() { - if (this.folder) { - if (this.open) { this.collapse(); } - else { this.expand(); } - } -} - -WebFXTreeAbstractNode.prototype.select = function() { - document.getElementById(this.id + '-anchor').focus(); -} - -WebFXTreeAbstractNode.prototype.focus = function() { - webFXTreeHandler.selected = this; - if ((this.openIcon) && (webFXTreeHandler.behavior != 'classic')) { document.getElementById(this.id + '-icon').src = this.openIcon; } - document.getElementById(this.id + '-anchor').style.backgroundColor = 'highlight'; - document.getElementById(this.id + '-anchor').style.color = 'highlighttext'; - document.getElementById(this.id + '-anchor').focus(); -} - -WebFXTreeAbstractNode.prototype.blur = function() { - if ((this.openIcon) && (webFXTreeHandler.behavior != 'classic')) { document.getElementById(this.id + '-icon').src = this.icon; } - document.getElementById(this.id + '-anchor').style.backgroundColor = 'transparent'; - document.getElementById(this.id + '-anchor').style.color = 'menutext'; -} - -WebFXTreeAbstractNode.prototype.doExpand = function() { - if (webFXTreeHandler.behavior == 'classic') { document.getElementById(this.id + '-icon').src = this.openIcon; } - if (this.childNodes.length) { document.getElementById(this.id + '-cont').style.display = 'block'; } - this.open = true; - webFXTreeHandler.cookies.setCookie(this.id.substr(18,this.id.length - 18), '1'); -} - -WebFXTreeAbstractNode.prototype.doCollapse = function() { - if (webFXTreeHandler.behavior == 'classic') { document.getElementById(this.id + '-icon').src = this.icon; } - if (this.childNodes.length) { document.getElementById(this.id + '-cont').style.display = 'none'; } - this.open = false; - webFXTreeHandler.cookies.setCookie(this.id.substr(18,this.id.length - 18), '0'); -} - -WebFXTreeAbstractNode.prototype.expandAll = function() { - this.expandChildren(); - if ((this.folder) && (!this.open)) { this.expand(); } -} - -WebFXTreeAbstractNode.prototype.expandChildren = function() { - for (var i = 0; i < this.childNodes.length; i++) { - this.childNodes[i].expandAll(); -} } - -WebFXTreeAbstractNode.prototype.collapseAll = function() { - if ((this.folder) && (this.open)) { this.collapse(); } - this.collapseChildren(); -} - -WebFXTreeAbstractNode.prototype.collapseChildren = function() { - for (var i = 0; i < this.childNodes.length; i++) { - this.childNodes[i].collapseAll(); -} } - -WebFXTreeAbstractNode.prototype.indent = function(lvl, del, last, level) { - /* - * Since we only want to modify items one level below ourself, - * and since the rightmost indentation position is occupied by - * the plus icon we set this to -2 - */ - if (lvl == null) { lvl = -2; } - var state = 0; - for (var i = this.childNodes.length - 1; i >= 0 ; i--) { - state = this.childNodes[i].indent(lvl + 1, del, last, level); - if (state) { return; } - } - if (del) { - if (level >= this._level) { - if (this.folder) { - document.getElementById(this.id + '-plus').src = (this.open)?webFXTreeConfig.lMinusIcon:webFXTreeConfig.lPlusIcon; - this.plusIcon = webFXTreeConfig.lPlusIcon; - this.minusIcon = webFXTreeConfig.lMinusIcon; - } - else { document.getElementById(this.id + '-plus').src = webFXTreeConfig.lIcon; } - return 1; - } - } - var foo = document.getElementById(this.id + '-indent-' + lvl); - if (foo) { - if ((del) && (last)) { foo._last = true; } - if (foo._last) { foo.src = webFXTreeConfig.blankIcon; } - else { foo.src = webFXTreeConfig.iIcon; } - } - return 0; -} - -/* - * WebFXTree class - */ - -function WebFXTree(sText, sAction, sBehavior, sIcon, sOpenIcon) { - this.base = WebFXTreeAbstractNode; - this.base(sText, sAction); - this.icon = sIcon || webFXTreeConfig.rootIcon; - this.openIcon = sOpenIcon || webFXTreeConfig.openRootIcon; - /* Defaults to open */ - this.open = (webFXTreeHandler.cookies.getCookie(this.id.substr(18,this.id.length - 18)) == '0')?false:true; - this.folder = true; - this.rendered = false; - if (!webFXTreeHandler.behavior) { webFXTreeHandler.behavior = sBehavior || webFXTreeConfig.defaultBehavior; } - this.targetWindow = 'right'; -} - -WebFXTree.prototype = new WebFXTreeAbstractNode; - -WebFXTree.prototype.setBehavior = function (sBehavior) { - webFXTreeHandler.behavior = sBehavior; -}; - -WebFXTree.prototype.getBehavior = function (sBehavior) { - return webFXTreeHandler.behavior; -}; - -WebFXTree.prototype.getSelected = function() { - if (webFXTreeHandler.selected) { return webFXTreeHandler.selected; } - else { return null; } -} - -WebFXTree.prototype.remove = function() { } - -WebFXTree.prototype.expand = function() { - this.doExpand(); -} - -WebFXTree.prototype.collapse = function() { - this.focus(); - this.doCollapse(); -} - -WebFXTree.prototype.getFirst = function() { - return null; -} - -WebFXTree.prototype.getLast = function() { - return null; -} - -WebFXTree.prototype.getNextSibling = function() { - return null; -} - -WebFXTree.prototype.getPreviousSibling = function() { - return null; -} - -WebFXTree.prototype.keydown = function(key) { - if (key == 39) { this.expand(); return false; } - if (key == 37) { this.collapse(); return false; } - if ((key == 40) && (this.open)) { this.childNodes[0].select(); return false; } - return true; -} - -WebFXTree.prototype.toString = function() { - var str = "<div id=\"" + this.id + "\" ondblclick=\"webFXTreeHandler.toggle(this);\" class=\"webfx-tree-item\" onkeydown=\"return webFXTreeHandler.keydown(this)\">"; - str += "<img id=\"" + this.id + "-icon\" class=\"webfx-tree-icon\" src=\"" + ((webFXTreeHandler.behavior == 'classic' && this.open)?this.openIcon:this.icon) + "\" onclick=\"webFXTreeHandler.select(this);\"><a href=\"" + this.action + "\" id=\"" + this.id + "-anchor\" target=\"" + this.targetWindow + "\" onfocus=\"webFXTreeHandler.focus(this);\" onblur=\"webFXTreeHandler.blur(this);\">" + this.text + "</a></div>"; - str += "<div id=\"" + this.id + "-cont\" class=\"webfx-tree-container\" style=\"display: " + ((this.open)?'block':'none') + ";\">"; - for (var i = 0; i < this.childNodes.length; i++) { - str += this.childNodes[i].toString(i, this.childNodes.length); - } - str += "</div>"; - this.rendered = true; - return str; -}; - -/* - * WebFXTreeItem class - */ - -function WebFXTreeItem(sText, sAction, eParent, sIcon, sOpenIcon) { - this.base = WebFXTreeAbstractNode; - this.base(sText, sAction); - /* Defaults to close */ - this.open = (webFXTreeHandler.cookies.getCookie(this.id.substr(18,this.id.length - 18)) == '1')?true:false; - if (eParent) { eParent.add(this); } - if (sIcon) { this.icon = sIcon; } - if (sOpenIcon) { this.openIcon = sOpenIcon; } -} - -WebFXTreeItem.prototype = new WebFXTreeAbstractNode; - -WebFXTreeItem.prototype.remove = function() { - var parentNode = this.parentNode; - var prevSibling = this.getPreviousSibling(true); - var nextSibling = this.getNextSibling(true); - var folder = this.parentNode.folder; - var last = ((nextSibling) && (nextSibling.parentNode) && (nextSibling.parentNode.id == parentNode.id))?false:true; - this.getPreviousSibling().focus(); - this._remove(); - if (parentNode.childNodes.length == 0) { - parentNode.folder = false; - parentNode.open = false; - } - if (last) { - if (parentNode.id == prevSibling.id) { - document.getElementById(parentNode.id + '-icon').src = webFXTreeConfig.fileIcon; - } - else { } - } - if ((!prevSibling.parentNode) || (prevSibling.parentNode != parentNode)) { - parentNode.indent(null, true, last, this._level); - } - if (document.getElementById(prevSibling.id + '-plus')) { - if (nextSibling) { - if ((parentNode == prevSibling) && (parentNode.getNextSibling)) { document.getElementById(prevSibling.id + '-plus').src = webFXTreeConfig.tIcon; } - else if (nextSibling.parentNode != prevSibling) { document.getElementById(prevSibling.id + '-plus').src = webFXTreeConfig.lIcon; } - } - else { document.getElementById(prevSibling.id + '-plus').src = webFXTreeConfig.lIcon; } - } -} - -WebFXTreeItem.prototype._remove = function() { - for (var i = this.childNodes.length - 1; i >= 0; i--) { - this.childNodes[i]._remove(); - } - for (var i = 0; i < this.parentNode.childNodes.length; i++) { - if (this.id == this.parentNode.childNodes[i].id) { - for (var j = i; j < this.parentNode.childNodes.length; j++) { - this.parentNode.childNodes[i] = this.parentNode.childNodes[i+1] - } - this.parentNode.childNodes.length = this.parentNode.childNodes.length - 1; - if (i + 1 == this.parentNode.childNodes.length) { this.parentNode._last = true; } - } - } - webFXTreeHandler.all[this.id] = null; - if (document.getElementById(this.id)) { - document.getElementById(this.id).innerHTML = ""; - document.getElementById(this.id).removeNode(); - } -} - -WebFXTreeItem.prototype.expand = function() { - this.doExpand(); - document.getElementById(this.id + '-plus').src = this.minusIcon; -} - -WebFXTreeItem.prototype.collapse = function() { - this.focus(); - this.doCollapse(); - document.getElementById(this.id + '-plus').src = this.plusIcon; -} - -WebFXTreeItem.prototype.getFirst = function() { - return this.childNodes[0]; -} - -WebFXTreeItem.prototype.getLast = function() { - if (this.childNodes[this.childNodes.length - 1].open) { return this.childNodes[this.childNodes.length - 1].getLast(); } - else { return this.childNodes[this.childNodes.length - 1]; } -} - -WebFXTreeItem.prototype.getNextSibling = function() { - for (var i = 0; i < this.parentNode.childNodes.length; i++) { - if (this == this.parentNode.childNodes[i]) { break; } - } - if (++i == this.parentNode.childNodes.length) { return this.parentNode.getNextSibling(); } - else { return this.parentNode.childNodes[i]; } -} - -WebFXTreeItem.prototype.getPreviousSibling = function(b) { - for (var i = 0; i < this.parentNode.childNodes.length; i++) { - if (this == this.parentNode.childNodes[i]) { break; } - } - if (i == 0) { return this.parentNode; } - else { - if ((this.parentNode.childNodes[--i].open) || (b && this.parentNode.childNodes[i].folder)) { return this.parentNode.childNodes[i].getLast(); } - else { return this.parentNode.childNodes[i]; } -} } - -WebFXTreeItem.prototype.keydown = function(key) { - if ((key == 39) && (this.folder)) { - if (!this.open) { this.expand(); return false; } - else { this.getFirst().select(); return false; } - } - else if (key == 37) { - if (this.open) { this.collapse(); return false; } - else { this.parentNode.select(); return false; } - } - else if (key == 40) { - if (this.open) { this.getFirst().select(); return false; } - else { - var sib = this.getNextSibling(); - if (sib) { sib.select(); return false; } - } } - else if (key == 38) { this.getPreviousSibling().select(); return false; } - return true; -} - -WebFXTreeItem.prototype.toString = function (nItem, nItemCount) { - var foo = this.parentNode; - var indent = ''; - if (nItem + 1 == nItemCount) { this.parentNode._last = true; } - var i = 0; - while (foo.parentNode) { - foo = foo.parentNode; - indent = "<img id=\"" + this.id + "-indent-" + i + "\" src=\"" + ((foo._last)?webFXTreeConfig.blankIcon:webFXTreeConfig.iIcon) + "\">" + indent; - i++; - } - this._level = i; - if (this.childNodes.length) { this.folder = 1; } - else { this.open = false; } - if ((this.folder) || (webFXTreeHandler.behavior != 'classic')) { - if (!this.icon) { this.icon = webFXTreeConfig.folderIcon; } - if (!this.openIcon) { this.openIcon = webFXTreeConfig.openFolderIcon; } - } - else if (!this.icon) { this.icon = webFXTreeConfig.fileIcon; } - var label = this.text; - label = label.replace('<', '<'); - label = label.replace('>', '>'); - var str = "<div id=\"" + this.id + "\" ondblclick=\"webFXTreeHandler.toggle(this);\" class=\"webfx-tree-item\" onkeydown=\"return webFXTreeHandler.keydown(this)\">"; - str += indent; - str += "<img id=\"" + this.id + "-plus\" src=\"" + ((this.folder)?((this.open)?((this.parentNode._last)?webFXTreeConfig.lMinusIcon:webFXTreeConfig.tMinusIcon):((this.parentNode._last)?webFXTreeConfig.lPlusIcon:webFXTreeConfig.tPlusIcon)):((this.parentNode._last)?webFXTreeConfig.lIcon:webFXTreeConfig.tIcon)) + "\" onclick=\"webFXTreeHandler.toggle(this);\">" - str += "<img id=\"" + this.id + "-icon\" src=\"" + ((webFXTreeHandler.behavior == 'classic' && this.open)?this.openIcon:this.icon) + "\" onclick=\"webFXTreeHandler.select(this);\"><a href=\"" + this.action + "\" id=\"" + this.id + "-anchor\" target=\"" + this.targetWindow + "\" onfocus=\"webFXTreeHandler.focus(this);\" onblur=\"webFXTreeHandler.blur(this);\">" + label + "</a></div>"; - str += "<div id=\"" + this.id + "-cont\" class=\"webfx-tree-container\" style=\"display: " + ((this.open)?'block':'none') + ";\">"; - for (var i = 0; i < this.childNodes.length; i++) { - str += this.childNodes[i].toString(i,this.childNodes.length); - } - str += "</div>"; - this.plusIcon = ((this.parentNode._last)?webFXTreeConfig.lPlusIcon:webFXTreeConfig.tPlusIcon); - this.minusIcon = ((this.parentNode._last)?webFXTreeConfig.lMinusIcon:webFXTreeConfig.tMinusIcon); - return str; -}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/minus.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/minus.gif Binary files differdeleted file mode 100755 index f502662b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/minus.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/plus.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/plus.gif Binary files differdeleted file mode 100755 index eeca02ce..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/plus.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/stylesheet.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/stylesheet.css deleted file mode 100755 index 3552b78f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/media/stylesheet.css +++ /dev/null @@ -1,196 +0,0 @@ -a -{ - color: #336699; - text-decoration: underline; -} - -a:hover, a:active, a:focus -{ - text-decoration: underline; - color: #6699CC -} - -body { background : #FFFFFF; font-family: "Courier New", Courier, fixed; font-size: 10pt } -table { font-size: 10pt } -p, li { line-height: 140% } -a img { border: 0px; } -dd { margin-left: 0px; padding-left: 1em; } - -/* Page layout/boxes */ - -.info-box {} -.info-box-title { margin: 1em 0em 0em 0em; padding: .25em; font-weight: normal; font-size: 14pt; border: 1px solid #336699; background-color: #EEEEEE } -.info-box-body { border: 1px solid #999999; padding: .5em; } -.nav-bar { font-size: 8pt; white-space: nowrap; text-align: right; padding: .2em; margin: 0em 0em 1em 0em; } - -.oddrow { background-color: #F4F4F4; border: 1px solid #AAAAAA; padding: .5em; margin-bottom: 1em} -.evenrow { border: 1px solid #AAAAAA; padding: .5em; margin-bottom: 1em} - -.page-body { max-width: 800px; margin: auto; } -.menu-body { background: #EEEEEE url(bg_left.css) repeat } -.tree dl { margin: 0px } -.tree a { text-decoration: none } -.tree a:hover, .tree a:active, .tree a:focus { text-decoration: underline } - -/* Index formatting classes */ - -.index-item-body { margin-top: .5em; margin-bottom: .5em} -.index-item-description { margin-top: .25em } -.index-item-details { font-weight: normal; font-style: italic; font-size: 8pt } -.index-letter-section { background-color: #EEEEEE; border: 1px dotted #999999; padding: .5em; margin-bottom: 1em} -.index-letter-title { font-size: 12pt; font-weight: bold } -.index-letter-menu { text-align: center; margin: 1em } -.index-letter { font-size: 12pt } - -/* Docbook classes */ - -.description {} -.short-description { font-weight: bold; color: #666666; } -.tags { padding-left: 0em; margin-left: 3em; color: #666666; list-style-type: square; } -.parameters { padding-left: 0em; margin-left: 3em; font-style: italic; list-style-type: square; } -.redefinitions { font-size: 8pt; padding-left: 0em; margin-left: 2em; } -.package { } -.package-title { font-weight: bold; font-size: 14pt; border-bottom: 1px solid black } -.package-details { font-size: 85%; } -.sub-package { font-weight: bold; font-size: 120% } -.tutorial { border-width: thin; border-color: #0066ff } -.tutorial-nav-box { width: 100%; border: 1px solid #AAAAAA; background: #EEEEEE url(bg_left.png) repeat; } -.nav-button-disabled { color: #AAAAAA; } -.nav-button:active, -.nav-button:focus, -.nav-button:hover { background-color: #CCCCCC; outline: 1px solid #999999; text-decoration: none } -.folder-title { font-style: italic } - -/* Generic formatting */ - -.field { font-weight: bold; } -.detail { font-size: 8pt; } -.notes { font-style: italic; font-size: 8pt; } -.separator { background-color: #999999; height: 2px; } -.warning { color: #CC0000; } -.disabled { font-style: italic; color: #999999; } - -/* Code elements */ - -.line-number { } - -.class-table { width: 100%; } -.class-table-header { border-bottom: 1px dotted #666666; text-align: left; background-color: DDDDFF } -.class-name { color: #000000; font-weight: bold; } - -.method-summary { padding-left: 1em; font-size: 8pt } -.method-header { } -.method-definition { margin-bottom: .3em } -.method-title { font-weight: bold } -.method-name { font-weight: bold; } -.method-signature { font-size: 85%; color: #666666; margin: .5em 0em } -.method-result { font-style: italic; } - -.var-summary { padding-left: 1em; font-size: 8pt; } -.var-header { } -.var-title { margin-bottom: .3em } -.var-type { font-style: italic; border: 1px dashed #336699 } -.var-name { font-weight: bold; } -.var-default { border: 1px dashed #336699 } -.var-description { font-weight: normal; color: #000000; } - -.include-title { } -.include-type { font-style: italic; } -.include-name { font-weight: bold; } - -.const-title { } -.const-name { font-weight: bold; } - -/* Syntax highlighting */ - -.src-code { border: 1px solid #336699; padding: 1em; - font-family: 'Courier New', Courier, monospace; font-weight: normal; } -.src-line { font-family: 'Courier New', Courier, monospace; font-weight: normal; } - -.src-comm { color: green; } -.src-id { } -.src-inc { color: #0000FF; } -.src-key { color: #0000FF; } -.src-num { color: #CC0000; } -.src-str { color: #66cccc; } -.src-sym { font-weight: bold; } -.src-var { } - -.src-php { font-weight: bold; } - -.src-doc { color: #009999 } -.src-doc-close-template { color: #0000FF } -.src-doc-coretag { color: #0099FF; font-weight: bold } -.src-doc-inlinetag { color: #0099FF } -.src-doc-internal { color: #6699cc } -.src-doc-tag { color: #0080CC } -.src-doc-template { color: #0000FF } -.src-doc-type { font-style: italic } -.src-doc-var { font-style: italic } - -.tute-tag { color: #009999 } -.tute-attribute-name { color: #0000FF } -.tute-attribute-value { color: #0099FF } -.tute-entity { font-weight: bold; } -.tute-comment { font-style: italic } -.tute-inline-tag { color: #636311; font-weight: bold } - -/* tutorial */ - -.authors { } -.author { font-style: italic; font-weight: bold } -.author-blurb { margin: .5em 0em .5em 2em; font-size: 85%; font-weight: normal; font-style: normal } -.example { border: 1px solid #336699; background-color: #F4F4F4; padding: .5em; } -.listing { border: 1px solid #336699; background-color: #F4F4F4; padding: .5em; white-space: nowrap; } -.release-info { font-size: 85%; font-style: italic; margin: 1em 0em } -.ref-title-box { } -.ref-title { } -.ref-purpose { font-style: italic; color: #666666 } -.ref-synopsis { } -.title { font-weight: bold; border-bottom: 1px solid #336699; padding: 2px } -.cmd-synopsis { margin: 1em 0em } -.cmd-title { font-weight: bold } -.toc { margin-left: 2em; padding-left: 0em } - -/*------------------------------------------------------------------------------ - webfx-tree -------------------------------------------------------------------------------*/ - -.webfx-tree-container { - margin: 0px; - padding: 0px; - white-space: nowrap; - font: icon; -} - -.webfx-tree-item { - padding: 0px; - margin: 0px; - color: black; - white-space: nowrap; - font: icon; -} - -.webfx-tree-item a { - margin-left: 3px; - padding: 1px 2px 1px 2px; - color: black; - text-decoration: none; -} - -.webfx-tree-item a:hover, .webfx-tree-item a:active, .webfx-tree-item a:focus { - color: white; - background: #6699CC; - text-decoration: none -} - -.webfx-tree-item img { - vertical-align: middle; - border: 0px; -} - -.webfx-tree-icon { - width: 16px; - height: 16px; -} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/method.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/method.tpl deleted file mode 100755 index 06d57a12..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/method.tpl +++ /dev/null @@ -1,149 +0,0 @@ -<A NAME='method_detail'></A> -{section name=methods loop=$methods} -{if $methods[methods].static} -<a name="method{$methods[methods].function_name}" id="{$methods[methods].function_name}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="method-header"> - <span class="method-title">static {$methods[methods].function_name}</span> (line <span class="line-number">{if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags params=$methods[methods].params function=false} - - <div class="method-signature"> - static <span class="method-result">{$methods[methods].function_return}</span> - <span class="method-name"> - {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name} - </span> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $methods[methods].params} - <ul class="parameters"> - {section name=params loop=$methods[methods].params} - <li> - <span class="var-type">{$methods[methods].params[params].datatype}</span> - <span class="var-name">{$methods[methods].params[params].var}</span>{if $methods[methods].params[params].data}<span class="var-description">: {$methods[methods].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $methods[methods].method_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$methods[methods].method_overrides.link}</dt> - {if $methods[methods].method_overrides.sdesc} - <dd>{$methods[methods].method_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} - - {if $methods[methods].descmethod} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=dm loop=$methods[methods].descmethod} - <li> - {$methods[methods].descmethod[dm].link} - {if $methods[methods].descmethod[dm].sdesc} - : {$methods[methods].descmethod[dm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} -</div> -{/if} -{/section} -{section name=methods loop=$methods} -{if !$methods[methods].static} -<a name="method{$methods[methods].function_name}" id="{$methods[methods].function_name}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="method-header"> - <span class="method-title">{if $methods[methods].ifunction_call.constructor}Constructor {elseif $methods[methods].ifunction_call.destructor}Destructor {/if}{$methods[methods].function_name}</span> (line <span class="line-number">{if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags params=$methods[methods].params function=false} - - <div class="method-signature"> - <span class="method-result">{$methods[methods].function_return}</span> - <span class="method-name"> - {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name} - </span> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $methods[methods].params} - <ul class="parameters"> - {section name=params loop=$methods[methods].params} - <li> - <span class="var-type">{$methods[methods].params[params].datatype}</span> - <span class="var-name">{$methods[methods].params[params].var}</span>{if $methods[methods].params[params].data}<span class="var-description">: {$methods[methods].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $methods[methods].method_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$methods[methods].method_overrides.link}</dt> - {if $methods[methods].method_overrides.sdesc} - <dd>{$methods[methods].method_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} - - {if $methods[methods].descmethod} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=dm loop=$methods[methods].descmethod} - <li> - {$methods[methods].descmethod[dm].link} - {if $methods[methods].descmethod[dm].sdesc} - : {$methods[methods].descmethod[dm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} -</div> -{/if} -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/page.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/page.tpl deleted file mode 100755 index b5980236..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/page.tpl +++ /dev/null @@ -1,211 +0,0 @@ -{include file="header.tpl" top3=true} - -<h2 class="file-name">{$source_location}</h2> - -<a name="sec-description"></a> -<div class="info-box"> - <div class="info-box-title">Description</div> - <div class="nav-bar"> - {if $classes || $includes || $defines || $globals || $functions} - <span class="disabled">Description</span> | - {/if} - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="docblock.tpl" desc=$desc sdesc=$sdesc tags=$tags} - - {if $tutorial} - <hr class="separator" /> - <div class="notes">Tutorial: <span class="tutorial">{$tutorial}</div> - {/if} - </div> -</div> - -{if $classes} - <a name="sec-classes"></a> - <div class="info-box"> - <div class="info-box-title">Classes</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - <span class="disabled">Classes</span> - {if $includes || $defines || $globals || $functions}|{/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - <table cellpadding="2" cellspacing="0" class="class-table"> - <tr> - <th class="class-table-header">Class</th> - <th class="class-table-header">Description</th> - </tr> - {section name=classes loop=$classes} - <tr> - <td style="padding-right: 2em; vertical-align: top"> - {$classes[classes].link} - </td> - <td> - {if $classes[classes].sdesc} - {$classes[classes].sdesc} - {else} - {$classes[classes].desc} - {/if} - </td> - </tr> - {/section} - </table> - </div> - </div> -{/if} - -{if $includes} - <a name="sec-includes"></a> - <div class="info-box"> - <div class="info-box-title">Includes</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - <span class="disabled">Includes</span> - {if $defines || $globals || $functions}|{/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="include.tpl"} - </div> - </div> -{/if} - -{if $defines} - <a name="sec-constants"></a> - <div class="info-box"> - <div class="info-box-title">Constants</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - <span class="disabled">Constants</span> - {if $globals || $functions}|{/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="define.tpl"} - </div> - </div> -{/if} - -{if $globals} - <a name="sec-variables"></a> - <div class="info-box"> - <div class="info-box-title">Variables</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - <span class="disabled">Variables</span> - {if $functions}|{/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="global.tpl"} - </div> - </div> -{/if} - -{if $functions} - <a name="sec-functions"></a> - <div class="info-box"> - <div class="info-box-title">Functions</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - <span class="disabled">Functions</span> - </div> - <div class="info-box-body"> - {include file="function.tpl"} - </div> - </div> -{/if} - -{include file="footer.tpl" top3=true} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/pkgelementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/pkgelementindex.tpl deleted file mode 100755 index dc283ad0..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/pkgelementindex.tpl +++ /dev/null @@ -1,17 +0,0 @@ -{include file="header.tpl"} -<a name="top"></a> -<h2>[{$package}] element index</h2> -{if count($packageindex) > 1} - <h3>Package indexes</h3> - <ul> - {section name=p loop=$packageindex} - {if $packageindex[p].title != $package} - <li><a href="elementindex_{$packageindex[p].title}.html">{$packageindex[p].title}</a></li> - {/if} - {/section} - </ul> -{/if} -<a href="elementindex.html">All elements</a> -<br /> -{include file="basicindex.tpl" indexname=elementindex_$package} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/ric.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/ric.tpl deleted file mode 100755 index ad792475..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/ric.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl"} -<div align="center"><h1>{$name}</h1></div> -<pre> -{$contents|htmlentities} -</pre> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/todolist.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/todolist.tpl deleted file mode 100755 index f929ccdb..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/todolist.tpl +++ /dev/null @@ -1,14 +0,0 @@ -{include file="header.tpl" title="Todo List"} -<div align="center"><h1>Todo List</h1></div> -{foreach from=$todos key=todopackage item=todo} -<h2>{$todopackage}</h2> -{section name=todo loop=$todo} -<h3>{$todo[todo].link}</h3> -<ul> -{section name=t loop=$todo[todo].todos} - <li>{$todo[todo].todos[t]}</li> -{/section} -</ul> -{/section} -{/foreach} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/top_frame.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/top_frame.tpl deleted file mode 100755 index 36d1e5a1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/top_frame.tpl +++ /dev/null @@ -1,45 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <!-- template designed by Marco Von Ballmoos --> - <title>{$title}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - <link rel="stylesheet" href="{$subdir}media/banner.css" /> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> - </head> - <body> - <div class="banner"> - <div class="banner-title">{$package}</div> - <div class="banner-menu"> - <form> - <table cellpadding="0" cellspacing="0" style="width: 100%"> - <tr> - <td> - {if count($ric) >= 1} - {assign var="last_ric_name" value=""} - {section name=ric loop=$ric} - {if $last_ric_name != ""} | {/if} - <a href="{$ric[ric].file}" target="right">{$ric[ric].name}</a> - {assign var="last_ric_name" value=$ric[ric].name} - {/section} - {/if} - </td> - <td style="width: 2em"> </td> - <td style="text-align: right"> - {if count($packages) > 1} - <span class="field">Packages</span> - <select class="package-selector" onchange="window.parent.left_bottom.location=this[selectedIndex].value"> - {section name=p loop=$packages} - <option value="{$packages[p].link}">{$packages[p].title}</option> - {/section} - </select> - {/if} - </td> - </tr> - </table> - </form> - </div> - </div> - </body> - </html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/tutorial.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/tutorial.tpl deleted file mode 100755 index 3b9109d1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/tutorial.tpl +++ /dev/null @@ -1,13 +0,0 @@ -{include file="header.tpl" title=$title top3=true} - -{if $nav} - {include file="tutorial_nav.tpl" prev=$prev next=$next up=$up prevtitle=$prevtitle nexttitle=$nexttitle uptitle=$uptitle} -{/if} - -{$contents} - -{if $nav} - {include file="tutorial_nav.tpl" prev=$prev next=$next up=$up prevtitle=$prevtitle nexttitle=$nexttitle uptitle=$uptitle} -{/if} - -{include file="footer.tpl" top3=true}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/tutorial_nav.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/tutorial_nav.tpl deleted file mode 100755 index 89952301..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/tutorial_nav.tpl +++ /dev/null @@ -1,41 +0,0 @@ -<table class="tutorial-nav-box"> - <tr> - <td style="width: 30%"> - {if $prev} - <a href="{$prev}" class="nav-button">Previous</a> - {else} - <span class="nav-button-disabled">Previous</span> - {/if} - </td> - <td style="text-align: center"> - {if $up} - <a href="{$up}" class="nav-button">Up</a> - {/if} - </td> - <td style="text-align: right; width: 30%"> - {if $next} - <a href="{$next}" class="nav-button">Next</a> - {else} - <span class="nav-button-disabled">Next</span> - {/if} - </td> - </tr> - <tr> - <td style="width: 30%"> - {if $prevtitle} - <span class="detail">{$prevtitle}</span> - {/if} - </td> - <td style="text-align: center"> - {if $uptitle} - <span class="detail">{$uptitle}</span> - {/if} - </td> - <td style="text-align: right; width: 30%"> - {if $nexttitle} - <span class="detail">{$nexttitle}</span> - {/if} - </td> - </tr> -</table> -
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/tutorial_toc.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/tutorial_toc.tpl deleted file mode 100755 index 3482249b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/tutorial_toc.tpl +++ /dev/null @@ -1,40 +0,0 @@ -{if count($toc)} -<h1 class="title">Table of Contents</h1> -<ul class="toc"> - {assign var="lastcontext" value='refsect1'} - {section name=toc loop=$toc} - - {if $toc[toc].tagname != $lastcontext} - {if $lastcontext == 'refsect1'} - <ul class="toc"> - <li>{$toc[toc].link}</li> - {else} - {if $lastcontext == 'refsect2'} - {if $toc[toc].tagname == 'refsect1'} - </ul> - <li>{$toc[toc].link}</li> - {/if} - {if $toc[toc].tagname == 'refsect3'} - <ul class="toc"> - <li>{$toc[toc].link}</li> - {/if} - {else} - </ul> - </ul> - <li>{$toc[toc].link}</li> - {/if} - {/if} - {assign var="lastcontext" value=$toc[toc].tagname} - {else} - <li>{$toc[toc].link}</li> - {/if} - {/section} - {if $lastcontext == 'refsect2'} - </ul> - {/if} - {if $lastcontext == 'refsect3'} - </ul> - </ul> - {/if} -</ul> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/tutorial_tree.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/tutorial_tree.tpl deleted file mode 100755 index 40d9a4ff..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/tutorial_tree.tpl +++ /dev/null @@ -1,8 +0,0 @@ - var a{$name|replace:"-":"_"}node = new WebFXTreeItem('{$main.title|strip_tags|escape:"quotes"}','{$main.link}', parent_node); - -{if $haskids} - var a{$name|replace:"-":"_"}_old_parent_node = parent_node; - parent_node = a{$name|replace:"-":"_"}node; - {$kids} - parent_node = a{$name|replace:"-":"_"}_old_parent_node; -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/var.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/var.tpl deleted file mode 100755 index fccf6892..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/l0l33t/templates/var.tpl +++ /dev/null @@ -1,92 +0,0 @@ -{section name=vars loop=$vars} -{if $vars[vars].static} -<a name="var{$vars[vars].var_name}" id="{$vars[vars].var_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="var-header"> - <span class="var-title"> - static <span class="var-type">{$vars[vars].var_type}</span> - <span class="var-name">{$vars[vars].var_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$vars[vars].var_default|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} - - {if $vars[vars].var_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$vars[vars].var_overrides.link}</dt> - {if $vars[vars].var_overrides.sdesc} - <dd>{$vars[vars].var_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - - {if $vars[vars].descvar} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=vm loop=$vars[vars].descvar} - <li> - {$vars[vars].descvar[vm].link} - {if $vars[vars].descvar[vm].sdesc} - : {$vars[vars].descvar[vm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} - -</div> -{/if} -{/section} - -{section name=vars loop=$vars} -{if !$vars[vars].static} -<a name="var{$vars[vars].var_name}" id="{$vars[vars].var_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="var-header"> - <span class="var-title"> - <span class="var-type">{$vars[vars].var_type}</span> - <span class="var-name">{$vars[vars].var_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$vars[vars].var_default|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} - - {if $vars[vars].var_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$vars[vars].var_overrides.link}</dt> - {if $vars[vars].var_overrides.sdesc} - <dd>{$vars[vars].var_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - - {if $vars[vars].descvar} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=vm loop=$vars[vars].descvar} - <li> - {$vars[vars].descvar[vm].link} - {if $vars[vars].descvar[vm].sdesc} - : {$vars[vars].descvar[vm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} - -</div> -{/if} -{/section} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/options.ini b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/options.ini deleted file mode 100755 index 084809be..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/options.ini +++ /dev/null @@ -1,577 +0,0 @@ -preservedocbooktags = false - -;; used to highlight the {@source} inline tag, @filesource tag, and @example tag -[highlightSourceTokens] -;; format: -;; T_CONSTANTNAME = open -;; /T_CONSTANTNAME = close - -T_INCLUDE = <span class="src-inc"> -/T_INCLUDE = </span> -T_INCLUDE_ONCE = <span class="src-inc"> -/T_INCLUDE_ONCE = </span> -T_REQUIRE_ONCE = <span class="src-inc"> -/T_REQUIRE_ONCE = </span> -T_REQUIRE_ONCE = <span class="src-inc"> -/T_REQUIRE_ONCE = </span> - -T_CONSTANT_ENCAPSED_STRING = <span class="src-str"> -/T_CONSTANT_ENCAPSED_STRING = </span> -T_STRING_VARNAME = <span class="src-str"> -/T_STRING_VARNAME = </span> - -T_STRING = <span class="src-id"> -/T_STRING = </span> - -T_DNUMBER = <span class="src-num"> -/T_DNUMBER = </span> -T_LNUMBER = <span class="src-num"> -/T_LNUMBER = </span> - -T_VARIABLE = <span class="src-var"> -/T_VARIABLE = </span> - -T_COMMENT = <span class="src-comm"> -/T_COMMENT = </span> -T_ML_COMMENT = <span class="src-comm"> -/T_ML_COMMENT = </span> - -T_OBJECT_OPERATOR = <span class="src-sym"> -/T_OBJECT_OPERATOR = </span> - -T_ABSTRACT = <span class="src-key"> -/T_ABSTRACT = </span> -T_CLONE = <span class="src-key"> -/T_CLONE = </span> -T_HALT_COMPILER = <span class="src-key"> -/T_HALT_COMPILER = </span> -T_ARRAY = <span class="src-key"> -/T_ARRAY = </span> -T_AS = <span class="src-key"> -/T_AS = </span> -T_BREAK = <span class="src-key"> -/T_BREAK = </span> -T_CLASS = <span class="src-key"> -/T_CLASS = </span> -T_CASE = <span class="src-key"> -/T_CASE = </span> -T_CONST = <span class="src-key"> -/T_CONST = </span> -T_CONTINUE = <span class="src-key"> -/T_CONTINUE = </span> -T_DECLARE = <span class="src-key"> -/T_DECLARE = </span> -T_DEFAULT = <span class="src-key"> -/T_DEFAULT = </span> -T_ELSE = <span class="src-key"> -/T_ELSE = </span> -T_ELSEIF = <span class="src-key"> -/T_ELSEIF = </span> -T_EMPTY = <span class="src-key"> -/T_EMPTY = </span> -T_ENDDECLARE = <span class="src-key"> -/T_ENDDECLARE = </span> -T_ENDFOR = <span class="src-key"> -/T_ENDFOR = </span> -T_ENDSWITCH = <span class="src-key"> -/T_ENDSWITCH = </span> -T_ENDFOREACH = <span class="src-key"> -/T_ENDFOREACH = </span> -T_ENDIF = <span class="src-key"> -/T_ENDIF = </span> -T_ENDWHILE = <span class="src-key"> -/T_ENDWHILE = </span> -T_EXIT = <span class="src-key"> -/T_EXIT = </span> -T_EXTENDS = <span class="src-key"> -/T_EXTENDS = </span> -T_FINAL = <span class="src-key"> -/T_FINAL = </span> -T_FOR = <span class="src-key"> -/T_FOR = </span> -T_FOREACH = <span class="src-key"> -/T_FOREACH = </span> -T_FUNCTION = <span class="src-key"> -/T_FUNCTION = </span> -T_GLOBAL = <span class="src-key"> -/T_GLOBAL = </span> -T_IF = <span class="src-key"> -/T_IF = </span> -T_IMPLEMENTS = <span class="src-key"> -/T_IMPLEMENTS = </span> -T_INTERFACE = <span class="src-key"> -/T_INTERFACE = </span> -T_LOGICAL_AND = <span class="src-key"> -/T_LOGICAL_AND = </span> -T_LOGICAL_OR = <span class="src-key"> -/T_LOGICAL_OR = </span> -T_LOGICAL_XOR = <span class="src-key"> -/T_LOGICAL_XOR = </span> -T_NEW = <span class="src-key"> -/T_NEW = </span> -T_PRIVATE = <span class="src-key"> -/T_PRIVATE = </span> -T_PROTECTED = <span class="src-key"> -/T_PROTECTED = </span> -T_PUBLIC = <span class="src-key"> -/T_PUBLIC = </span> -T_RETURN = <span class="src-key"> -/T_RETURN = </span> -T_STATIC = <span class="src-key"> -/T_STATIC = </span> -T_SWITCH = <span class="src-key"> -/T_SWITCH = </span> -T_VAR = <span class="src-key"> -/T_VAR = </span> -T_WHILE = <span class="src-key"> -/T_WHILE = </span> - -T_DOUBLE_COLON = <span class="src-sym"> -/T_DOUBLE_COLON = </span> - -T_OPEN_TAG = <span class="src-php"> -/T_OPEN_TAG = </span> -T_OPEN_TAG_WITH_ECHO = <span class="src-php"> -/T_OPEN_TAG_WITH_ECHO = </span> -T_CLOSE_TAG = <span class="src-php"> -/T_CLOSE_TAG = </span> - - -[highlightSource] -;; this is for highlighting things that aren't tokens like "&" -;; format: -;; word = open -;; /word = close -@ = <span class="src-sym"> -/@ = </span> -& = <span class="src-sym"> -/& = </span> -[ = <span class="src-sym"> -/[ = </span> -] = <span class="src-sym"> -/] = </span> -! = <span class="src-sym"> -/! = </span> -";" = <span class="src-sym"> -/; = </span> -( = <span class="src-sym"> -/( = </span> -) = <span class="src-sym"> -/) = </span> -, = <span class="src-sym"> -/, = </span> -{ = <span class="src-sym"> -/{ = </span> -} = <span class="src-sym"> -/} = </span> -""" = <span class="src-str"> -/" = </span> - -[highlightDocBlockSourceTokens] -;; this is for docblock tokens, using by phpDocumentor_HighlightParser -;; tagphptype is for "string" in @param string description, for example -docblock = <span class="src-doc"> -/docblock = </span> -tagphptype = <span class="src-doc-type"> -/tagphptype = </span> -tagvarname = <span class="src-doc-var"> -/tagvarname = </span> -coretag = <span class="src-doc-coretag"> -/coretag = </span> -tag = <span class="src-doc-tag"> -/tag = </span> -inlinetag = <span class="src-doc-inlinetag"> -/inlinetag = </span> -internal = <span class="src-doc-internal"> -/internal = </span> -closetemplate = <span class="src-doc-close-template"> -/closetemplate = </span> -docblocktemplate = <span class="src-doc-template"> -/docblocktemplate = </span> - -[highlightTutorialSourceTokens] -;; this is for XML DocBook-based tutorials, highlighted by phpDocumentor_TutorialHighlightParser -;; <tag> -opentag = <span class="tute-tag"> -/opentag = </span> -;; </tag> -closetag = <span class="tute-tag"> -/closetag = </span> -;; <tag attribute="value"> -attribute = <span class="tute-attribute-name"> -/attribute = </span> -;; <tag attribute="value"> -attributevalue = <span class="tute-attribute-value"> -/attributevalue = </span> -;; &entity; -entity = <span class="tute-entity"> -/entity = </span> -;; <!-- comment --> -comment = <span class="tute-comment"> -/comment = </span> -;; {@inline tag} -itag = <span class="tute-inline-tag"> -/itag = </span> - -;; used for translation of html in DocBlocks -[desctranslate] -ul = <ul> -/ul = </ul> -ol = <ol> -/ol = </ol> -li = <li> -/li = </li> -code = -/code = -var = <var> -/var = </var> -samp = <samp> -/samp = </samp> -kbd = <kbd> -/kbd = </kbd> -pre = <pre> -/pre = </pre> -p = <p> -/p = </p> -b = <strong> -/b = </strong> -i = <em> -/i = </em> -br = <br /> - -[ppage] -;; this is the DocBook package page translation section. All DocBook tags -;; that have a corresponding html tag must be listed here. Entities should -;; also be listed here -;; -;; examples: -;; 1) -;; tagname = newtagname -;; -;; This is the simplest case, where all attributes will be added into the -;; starting tag and the ending tag will be html/xml style </tranlatedtagname> -;; <tagname></tagname> becomes <newtagname></newtagname> and -;; <tagname attr="value"></tagname> becomes -;; <newtagname attr="value"></newtagname> -;; -;; 2) -;; tagname = newtagname -;; tagname->attr = newattrname -;; -;; in this case, everything will be like the first case, except tags like: -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="value"></newtagname> -;; -;; 3) -;; tagname = newtagname -;; tagname->attr = newattrname -;; tagname->attr+value = newvalue -;; -;; in this case, the value is also translated to another. This can be useful -;; for instances such as focus="middle" changing to align="center" or something -;; of that nature. -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 4) -;; tagname = newtagname -;; tagname->attr1 = newattrname -;; tagname->attr2 = newattrname -;; tagname->attr1+value|attr2+value = newvalue -;; -;; in this case, two attributes combine to make one new attribute, and the combined -;; value is translated into a new value -;; <tagname attr1="value1" attr2="value2"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 5) -;; tagname = newtagname -;; tagname!attr = dummy -;; -;; here, the attribute will be ignored. dummy is not used and may be any value -;; <tagname attr="value"></tagname> will become -;; <newtagname></newtagname> -;; -;; 6) -;; tagname = newtagname -;; tagname! = dummy -;; -;; here, all attributes will be ignored. dummy is not used and may be any value -;; <tagname attr1="value" attr2="foo"></tagname> will become -;; <newtagname></newtagname> -;; -;; 7) -;; tagname = newtagname -;; tagname/ = 1 -;; -;; here, the tag will be translated as a single tag with no closing tag, and all -;; attributes -;; <tagname attr="val">{text text}</tagname> will become -;; <newtagname attr="val" /> -;; -;; 8) -;; tagname = <starttaginfo /> -;; /tagname = closetagtext -;; -;; in this case, the text <starttaginfo> will be inserted exactly as entered for -;; <tagname> and closetagtext for </tagname> -;; <tagname attr="val"></tagname> will become -;; <starttaginfo />closetagtext -;; -;; 9) -;; $attr$my_attribute = newattrname -;; -;; tagname = newtagname -;; -;; in this case, all occurences of my_attribute in any tag will be changed to -;; newattrname. This is useful for changing things like role="php" to -;; class="php," for example. Note that the text "$attr$" MUST be on the line -;; start for phpDocumentor to recognize it. -;; -;; 10) -;; &entity; = translation text -;; " = " -;; " = """ -;; < = < -;; -;; Use this to control translation of entities to their appropriate values - - = -" = " -” = ” -“ = “ -& = & -< = < -> = > -© = © - - -$attr$role = class - -abbrev = abbr - -blockquote = blockquote - -arg = span -arg->choice = class - -author = <span class="author"> -/author = </span> -author! = 0 - -authorblurb = <div class="author-blurb"> -/authorblurb = </div> - -authorgroup = <div class="authors"><h2 class="title">Authors</h2> -/authorgroup = </div> -authorgroup! = 0 - -caution = <span class="warning"> -/caution = </span> -caution! = 0 - -cmdsynopsis = <div class="cmd-synopsis"> -/cmdsynopsis = </div> - -command = <span class="cmd-title"> -/command = </span> - -copyright = <div class="notes"> -/copyright = </div> - -emphasis = em - -example = <div class="src-code"> -/example = </div> -example! = 0 - -function = -/function = () - -formalpara = p - -graphic = img -graphic->fileref = src -graphic/ = - -important = strong - -informalequation = blockquote - -informalexample = div - -inlineequation = em - -itemizedlist = ul - -listitem = li - -literal = code - -literallayout = span - -option = " " -/option = - -orderedlist = ol - -para = p - -programlisting = <div class="src-code"> -/programlisting = </div> -programlisting! = 0 - -refentry = div - -refnamediv = <div class="ref-title-box"> -/refnamediv = </div> -refnamediv! = 0 - -refname = <h1 class="ref-title"> -/refname = </h1> - -refpurpose = <h2 class="ref-purpose"> -/refpurpose = </h2> - -refsynopsisdiv = <div class="ref-synopsis"> -/refsynopsisdiv = </div> -refsynopsisdiv! = 0 - -refsect1 = span - -refsect2 = span - -refsect3 = -/refsect3 = <br /> - -releaseinfo = <div class="release-info">( -/releaseinfo = )</div> - -simpara = -/simpara = <br /> -simpara! = 0 - -subscript = sub - -superscript = super - -table = table - -table->colsep = rules -table->rowsep = rules -table->colsep+1|rowsep+1 =all -table->colsep+1|rowsep+0 =cols -table->colsep+0|rowsep+1 =rows - -table->frame =frame -table->frame+all =border -table->frame+none =void -table->frame+sides =vsides -table->frame+top =above -table->frame+topbot =hsides - -thead = thead - -tfoot = tfoot - -tbody = tbody - -colspec = col - -tgroup = colgroup -tgroup/ = 1 -tgroup->cols = span - -row = tr - -entry = td -entry->morerows = colspan -entry->morerows+1 =2 -entry->morerows+2 =3 -entry->morerows+3 =4 -entry->morerows+4 =5 -entry->morerows+5 =6 -entry->morerows+6 =7 -entry->morerows+7 =8 -entry->morerows+8 =9 -entry->morerows+9 =10 -entry->morerows+10 =11 -;; add more if you need more colspans - -warning = <span class="warning"> -/warning = </span> -warning! = 0 - -;; now begins the attributes that should be tags in cdata -[$attr$id] -open = a -;close = /a -cdata! = true -quotevalues = true -separator = "=" -;separateall = true -$id = name - -;; now begins the sections that deal with <title> -[refsynopsisdiv_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h1 class="title"> -close = </h1> - -[refsect1_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h2 class="title"> -close = </h2> - -[refsect2_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h3 class="title"> -close = </h3> - -[refsect3_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h4 class="title"> -close = </h4> - -[para_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <div class="title"> -close = </div> - -[formalpara_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <div class="title"> -close = </div> - -[example_title] -;tag_attr = true -;attr_name = title -;cdata_start = true -cdata_end = true -open = </td></tr><tr><td><strong> -close = </strong> - -[table_title] -;tag_attr = true -;attr_name = true -cdata_start = true -open = <caption> -close = </caption> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/basicindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/basicindex.tpl deleted file mode 100755 index 951ee264..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/basicindex.tpl +++ /dev/null @@ -1,47 +0,0 @@ -<div class="index-letter-menu"> -{section name=letter loop=$letters} - <a class="index-letter" href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> -{/section} -</div> - -{section name=index loop=$index} - <a name="{$index[index].letter}"></a> - <div class="index-letter-section"> - <div style="float: left" class="index-letter-title">{$index[index].letter}</div> - <div style="float: right"><a href="#top">top</a></div> - <div style="clear: both"></div> - </div> - <dl> - {section name=contents loop=$index[index].index} - <dt class="field"> - {if ($index[index].index[contents].title == "Variable")} - <span class="var-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Global")} - <span class="var-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Method")} - <span class="method-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Function")} - <span class="method-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Constant")} - <span class="const-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Page") || ($index[index].index[contents].title == "Include")} - <span class="include-title">{$index[index].index[contents].name}</span> - {else} - {$index[index].index[contents].name} - {/if} - </dt> - <dd class="index-item-body"> - <div class="index-item-details">{$index[index].index[contents].link} in {$index[index].index[contents].file_name}</div> - {if $index[index].index[contents].description} - <div class="index-item-description">{$index[index].index[contents].description}</div> - {/if} - </dd> - {/section} - </dl> -{/section} - -<div class="index-letter-menu"> -{section name=letter loop=$letters} - <a class="index-letter" href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> -{/section} -</div> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/blank.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/blank.tpl deleted file mode 100755 index 6a05f27e..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/blank.tpl +++ /dev/null @@ -1,13 +0,0 @@ -<html> -<head> - <title>{$maintitle}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> -</head> -<body> -<div align="center"><h1>{$maintitle}</h1></div> -<b>Welcome to {$package}!</b><br /> -<br /> -This documentation was generated by <a href="{$phpdocwebsite}">phpDocumentor v{$phpdocversion}</a><br /> -</body> -</html>
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/class.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/class.tpl deleted file mode 100755 index 9ab7c455..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/class.tpl +++ /dev/null @@ -1,429 +0,0 @@ -{include file="header.tpl" top3=true} - -<h2 class="class-name">{if $is_interface}Interface{else}Class{/if} {$class_name}</h2> - -<a name="sec-description"></a> -<div class="info-box"> - <div class="info-box-title">Description</div> - <div class="nav-bar"> - {if $children || $vars || $ivars || $methods || $imethods || $consts || $iconsts } - <span class="disabled">Description</span> | - {/if} - {if $children} - <a href="#sec-descendents">Descendents</a> - {if $vars || $ivars || $methods || $imethods || $consts || $iconsts}|{/if} - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {if $methods || $imethods}|{/if} - {/if} - {if $methods || $imethods} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {if $implements} - <p class="implements"> - Implements interfaces: - <ul> - {foreach item="int" from=$implements}<li>{$int}</li>{/foreach} - </ul> - </p> - {/if} - {include file="docblock.tpl" type="class" sdesc=$sdesc desc=$desc} - <p class="notes"> - Located in <a class="field" href="{$page_link}">{$source_location}</a> (line <span class="field">{if $class_slink}{$class_slink}{else}{$line_number}{/if}</span>) - </p> - - {if $tutorial} - <hr class="separator" /> - <div class="notes">Tutorial: <span class="tutorial">{$tutorial}</span></div> - {/if} - - <pre>{section name=tree loop=$class_tree.classes}{$class_tree.classes[tree]}{$class_tree.distance[tree]}{/section}</pre> - - {if $conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with classes:</span><br /> - {section name=me loop=$conflicts.conflicts} - {$conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - </div> -</div> - -{if $children} - <a name="sec-descendents"></a> - <div class="info-box"> - <div class="info-box-title">Direct descendents</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - <span class="disabled">Descendents</span> - {if $vars || $ivars || $methods || $imethods}|{/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {if $methods || $imethods}|{/if} - {/if} - {if $methods || $imethods} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <table cellpadding="2" cellspacing="0" class="class-table"> - <tr> - <th class="class-table-header">Class</th> - <th class="class-table-header">Description</th> - </tr> - {section name=kids loop=$children} - <tr> - <td style="padding-right: 2em">{$children[kids].link}</td> - <td> - {if $children[kids].sdesc} - {$children[kids].sdesc} - {else} - {$children[kids].desc} - {/if} - </td> - </tr> - {/section} - </table> - </div> - </div> -{/if} - -{if $consts} - <a name="sec-const-summary"></a> - <div class="info-box"> - <div class="info-box-title">Class Constant Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendants</a> | - {/if} - <span class="disabled">Constants</span> (<a href="#sec-consts">details</a>) - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - | - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <div class="const-summary"> - {section name=consts loop=$consts} - <div class="const-title"> - <img src="{$subdir}media/images/Constant.png" alt=" " /> - <a href="#{$consts[consts].const_name}" title="details" class="const-name">{$consts[consts].const_name}</a> = <span class="var-type">{$consts[consts].const_value}</span> - - </div> - {/section} - </div> - </div> - </div> -{/if} - -{if $vars} - <a name="sec-var-summary"></a> - <div class="info-box"> - <div class="info-box-title">Variable Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - <span class="disabled">Vars</span> (<a href="#sec-vars">details</a>) - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <div class="var-summary"> - {section name=vars loop=$vars} - {if $vars[vars].static} - <div class="var-title"> - static <span class="var-type">{$vars[vars].var_type}</span> - <a href="#{$vars[vars].var_name}" title="details" class="var-name">{$vars[vars].var_name}</a> - </div> - {/if} - {/section} - {section name=vars loop=$vars} - {if !$vars[vars].static} - <div class="var-title"> - <span class="var-type">{$vars[vars].var_type}</span> - <a href="#{$vars[vars].var_name}" title="details" class="var-name">{$vars[vars].var_name}</a> - </div> - {/if} - {/section} - </div> - </div> - </div> -{/if} - -{if $methods} - <a name="sec-method-summary"></a> - <div class="info-box"> - <div class="info-box-title">Method Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - | - {/if} - <span class="disabled">Methods</span> (<a href="#sec-methods">details</a>) - </div> - <div class="info-box-body"> - <div class="method-summary"> - {section name=methods loop=$methods} - {if $methods[methods].static} - <div class="method-definition"> - static {if $methods[methods].function_return} - <span class="method-result">{$methods[methods].function_return}</span> - {/if} - <a href="#{$methods[methods].function_name}" title="details" class="method-name">{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}</a> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - {/if} - {/section} - {section name=methods loop=$methods} - {if !$methods[methods].static} - <div class="method-definition"> - {if $methods[methods].function_return} - <span class="method-result">{$methods[methods].function_return}</span> - {/if} - <a href="#{$methods[methods].function_name}" title="details" class="method-name">{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}</a> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - {/if} - {/section} - </div> - </div> - </div> -{/if} - -{if $vars || $ivars} - <a name="sec-vars"></a> - <div class="info-box"> - <div class="info-box-title">Variables</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $methods} - <a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Vars</span> - {/if} - - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {include file="var.tpl"} - {if $ivars} - <h4>Inherited Variables</h4> - <A NAME='inherited_vars'><!-- --></A> - {section name=ivars loop=$ivars} - <p>Inherited from <span class="classname">{$ivars[ivars].parent_class}</span></p> - <blockquote> - {section name=ivars2 loop=$ivars[ivars].ivars} - <span class="var-title"> - <span class="var-name">{$ivars[ivars].ivars[ivars2].link}</span>{if $ivars[ivars].ivars[ivars2].ivar_sdesc}: {$ivars[ivars].ivars[ivars2].ivar_sdesc}{/if}<br> - </span> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{if $methods || $imethods} - <a name="sec-methods"></a> - <div class="info-box"> - <div class="info-box-title">Methods</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Methods</span> - {/if} - </div> - <div class="info-box-body"> - {include file="method.tpl"} - {if $imethods} - <h4>Inherited Methods</h4> - <a name='inherited_methods'><!-- --></a> - {section name=imethods loop=$imethods} - <!-- =========== Summary =========== --> - <p>Inherited From <span class="classname">{$imethods[imethods].parent_class}</span></p> - <blockquote> - {section name=im2 loop=$imethods[imethods].imethods} - <span class="method-name">{$imethods[imethods].imethods[im2].link}</span>{if $imethods[imethods].imethods[im2].ifunction_sdesc}: {$imethods[imethods].imethods[im2].ifunction_sdesc}{/if}<br> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{if $consts || $iconsts} - <a name="sec-consts"></a> - <div class="info-box"> - <div class="info-box-title">Class Constants</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendants</a> | - {/if} - {if $methods} - <a href="#sec-var-summary">Constants</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Constants</span> - {/if} - - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {include file="const.tpl"} - {if $iconsts} - <h4>Inherited Constants</h4> - <A NAME='inherited_vars'><!-- --></A> - {section name=iconsts loop=$iconsts} - <p>Inherited from <span class="classname">{$iconsts[iconsts].parent_class}</span></p> - <blockquote> - {section name=iconsts2 loop=$iconsts[iconsts].iconsts} - <img src="{$subdir}media/images/{if $iconsts[iconsts].iconsts[iconsts2].access == 'private'}PrivateVariable{else}Variable{/if}.png" /> - <span class="const-title"> - <span class="const-name">{$iconsts[iconsts].iconsts[iconsts2].link}</span>{if $iconsts[iconsts].iconsts[iconsts2].iconst_sdesc}: {$iconsts[iconsts].iconsts[iconsts2].iconst_sdesc}{/if}<br> - </span> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{include file="footer.tpl" top3=true} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/classtrees.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/classtrees.tpl deleted file mode 100755 index 952e6d50..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/classtrees.tpl +++ /dev/null @@ -1,19 +0,0 @@ -{include file="header.tpl" top1=true} - -<!-- Start of Class Data --> -<H2> - {$smarty.capture.title} -</H2> -{if $interfaces} -{section name=classtrees loop=$interfaces} -<h2>Root interface {$interfaces[classtrees].class}</h2> -{$interfaces[classtrees].class_tree} -{/section} -{/if} -{if $classtrees} -{section name=classtrees loop=$classtrees} -<h2>Root class {$classtrees[classtrees].class}</h2> -{$classtrees[classtrees].class_tree} -{/section} -{/if} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/const.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/const.tpl deleted file mode 100644 index c26ff92d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/const.tpl +++ /dev/null @@ -1,18 +0,0 @@ -{section name=consts loop=$consts} -<a name="const{$consts[consts].const_name}" id="{$consts[consts].const_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="const-header"> - <img src="{$subdir}media/images/{if $consts[consts].access == 'private'}PrivateVariable{else}Variable{/if}.png" /> - <span class="const-title"> - <span class="const-name">{$consts[consts].const_name}</span> - = <span class="const-default">{$consts[consts].const_value|replace:"\n":"<br />"}</span> - (line <span class="line-number">{if $consts[consts].slink}{$consts[consts].slink}{else}{$consts[consts].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$consts[consts].sdesc desc=$consts[consts].desc tags=$consts[consts].tags} - -</div> -{/section} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/define.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/define.tpl deleted file mode 100755 index 0da5d864..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/define.tpl +++ /dev/null @@ -1,24 +0,0 @@ -{section name=def loop=$defines} -<a name="{$defines[def].define_link}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="const-title"> - <span class="const-name">{$defines[def].define_name}</span> = {$defines[def].define_value|replace:"\n":"<br />"} - (line <span class="line-number">{if $defines[def].slink}{$defines[def].slink}{else}{$defines[def].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$defines[def].sdesc desc=$defines[def].desc tags=$defines[def].tags} - - {if $globals[glob].global_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with constants:</span><br /> - {section name=me loop=$defines[def].define_conflicts.conflicts} - {$defines[def].define_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/docblock.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/docblock.tpl deleted file mode 100755 index 783d5271..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/docblock.tpl +++ /dev/null @@ -1,14 +0,0 @@ -<!-- ========== Info from phpDoc block ========= --> -{if $sdesc} -<p class="short-description">{$sdesc}</p> -{/if} -{if $desc} -<p class="description">{$desc}</p> -{/if} -{if $tags} - <ul class="tags"> - {section name=tags loop=$tags} - <li><span class="field">{$tags[tags].keyword}:</span> {$tags[tags].data}</li> - {/section} - </ul> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/elementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/elementindex.tpl deleted file mode 100755 index d5964f99..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/elementindex.tpl +++ /dev/null @@ -1,12 +0,0 @@ -{include file="header.tpl" noleftindex=true} -<a name="top"></a> -<h2>Full index</h2> -<h3>Package indexes</h3> -<ul> -{section name=p loop=$packageindex} - <li><a href="elementindex_{$packageindex[p].title}.html">{$packageindex[p].title}</a></li> -{/section} -</ul> -<br /> -{include file="basicindex.tpl" indexname="elementindex"} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/errors.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/errors.tpl deleted file mode 100755 index 0f526584..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/errors.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{include file="header.tpl" noleftindex=true} -{section name=files loop=$files} -<a href="#{$files[files].file}">{$files[files].file}</a><br> -{/section} -{foreach key=file item=issues from=$all} -<a name="{$file}"></a> -<h1>{$file}</h1> -{if count($issues.warnings)} -<h2>Warnings:</h2><br> -{section name=warnings loop=$issues.warnings} -<b>{$issues.warnings[warnings].name}</b> - {$issues.warnings[warnings].listing}<br> -{/section} -{/if} -{if count($issues.errors)} -<h2>Errors:</h2><br> -{section name=errors loop=$issues.errors} -<b>{$issues.errors[errors].name}</b> - {$issues.errors[errors].listing}<br> -{/section} -{/if} -{/foreach} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/examplesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/examplesource.tpl deleted file mode 100755 index 8abf74ce..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/examplesource.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl" title=$title} -<h1>{$title}</h1> -<div class="listing"> -{$source} -</div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/filesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/filesource.tpl deleted file mode 100755 index 239f7b41..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/filesource.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{capture name="tutle"}File Source for {$name}{/capture} -{include file="header.tpl" title=$smarty.capture.tutle} -<h1>Source for file {$name}</h1> -<p>Documentation is available at {$docs}</p> -<div class="src-code"> -{$source} -</div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/footer.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/footer.tpl deleted file mode 100755 index 8d0f79db..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/footer.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{if !$index} - <p class="notes" id="credit"> - Documentation generated on {$date} by <a href="{$phpdocwebsite}" target="_blank">phpDocumentor {$phpdocversion}</a> - </p> -{/if} - {if $top3}</div>{/if} -</body> -</html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/function.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/function.tpl deleted file mode 100755 index b6880059..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/function.tpl +++ /dev/null @@ -1,44 +0,0 @@ -{section name=func loop=$functions} -<a name="{$functions[func].function_dest}" id="{$functions[func].function_dest}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="method-title">{$functions[func].function_name}</span> (line <span class="line-number">{if $functions[func].slink}{$functions[func].slink}{else}{$functions[func].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$functions[func].sdesc desc=$functions[func].desc tags=$functions[func].tags params=$functions[func].params function=false} - - <div class="method-signature"> - <span class="method-result">{$functions[func].function_return}</span> - <span class="method-name"> - {if $functions[func].ifunction_call.returnsref}&{/if}{$functions[func].function_name} - </span> - {if count($functions[func].ifunction_call.params)} - ({section name=params loop=$functions[func].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $functions[func].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$functions[func].ifunction_call.params[params].type}</span> <span class="var-name">{$functions[func].ifunction_call.params[params].name}</span>{if $functions[func].ifunction_call.params[params].hasdefault} = <span class="var-default">{$functions[func].ifunction_call.params[params].default|escape:"html"}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $functions[func].params} - <ul class="parameters"> - {section name=params loop=$functions[func].params} - <li> - <span class="var-type">{$functions[func].params[params].datatype}</span> - <span class="var-name">{$functions[func].params[params].var}</span>{if $functions[func].params[params].data}<span class="var-description">: {$functions[func].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $functions[func].function_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with functions:</span><br /> - {section name=me loop=$functions[func].function_conflicts.conflicts} - {$functions[func].function_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/global.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/global.tpl deleted file mode 100755 index eab7e0b0..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/global.tpl +++ /dev/null @@ -1,26 +0,0 @@ -{section name=glob loop=$globals} -<a name="{$globals[glob].global_link}" id="{$globals[glob].global_link}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="var-title"> - <span class="var-type">{$globals[glob].global_type}</span> - <span class="var-name">{$globals[glob].global_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$globals[glob].global_value|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $globals[glob].slink}{$globals[glob].slink}{else}{$globals[glob].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$globals[glob].sdesc desc=$globals[glob].desc tags=$globals[glob].tags} - - {if $globals[glob].global_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with global variables:</span><br /> - {section name=me loop=$globals[glob].global_conflicts.conflicts} - {$globals[glob].global_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/header.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/header.tpl deleted file mode 100755 index 0d626190..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/header.tpl +++ /dev/null @@ -1,95 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <!-- template designed by Marco Von Ballmoos --> - <title>{$title}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - {if $top2 || $top3} - <script src="{$subdir}media/lib/classTree.js"></script> - {/if} - {if $top2} - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> - {/if} - {if $top3 || $top2} - <script language="javascript" type="text/javascript"> - var imgPlus = new Image(); - var imgMinus = new Image(); - imgPlus.src = "{$subdir}media/images/plus.png"; - imgMinus.src = "{$subdir}media/images/minus.png"; - - function showNode(Node){ldelim} - switch(navigator.family){ldelim} - case 'nn4': - // Nav 4.x code fork... - var oTable = document.layers["span" + Node]; - var oImg = document.layers["img" + Node]; - break; - case 'ie4': - // IE 4/5 code fork... - var oTable = document.all["span" + Node]; - var oImg = document.all["img" + Node]; - break; - case 'gecko': - // Standards Compliant code fork... - var oTable = document.getElementById("span" + Node); - var oImg = document.getElementById("img" + Node); - break; - {rdelim} - oImg.src = imgMinus.src; - oTable.style.display = "block"; - {rdelim} - - function hideNode(Node){ldelim} - switch(navigator.family){ldelim} - case 'nn4': - // Nav 4.x code fork... - var oTable = document.layers["span" + Node]; - var oImg = document.layers["img" + Node]; - break; - case 'ie4': - // IE 4/5 code fork... - var oTable = document.all["span" + Node]; - var oImg = document.all["img" + Node]; - break; - case 'gecko': - // Standards Compliant code fork... - var oTable = document.getElementById("span" + Node); - var oImg = document.getElementById("img" + Node); - break; - {rdelim} - oImg.src = imgPlus.src; - oTable.style.display = "none"; - {rdelim} - - function nodeIsVisible(Node){ldelim} - switch(navigator.family){ldelim} - case 'nn4': - // Nav 4.x code fork... - var oTable = document.layers["span" + Node]; - break; - case 'ie4': - // IE 4/5 code fork... - var oTable = document.all["span" + Node]; - break; - case 'gecko': - // Standards Compliant code fork... - var oTable = document.getElementById("span" + Node); - break; - {rdelim} - return (oTable && oTable.style.display == "block"); - {rdelim} - - function toggleNodeVisibility(Node){ldelim} - if (nodeIsVisible(Node)){ldelim} - hideNode(Node); - {rdelim}else{ldelim} - showNode(Node); - {rdelim} - {rdelim} - </script> - {/if} - </head> - <body> - {if $top3}<div class="page-body">{/if} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/include.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/include.tpl deleted file mode 100755 index c2419e5f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/include.tpl +++ /dev/null @@ -1,16 +0,0 @@ -{section name=includes loop=$includes} -<a name="{$includes[includes].include_file}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="include-title"> - <span class="include-type">{$includes[includes].include_name}</span> - (<span class="include-name">{$includes[includes].include_value}</span>) - (line <span class="line-number">{if $includes[includes].slink}{$includes[includes].slink}{else}{$includes[includes].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$includes[includes].sdesc desc=$includes[includes].desc tags=$includes[includes].tags} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/index.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/index.tpl deleted file mode 100755 index 7cd61094..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/index.tpl +++ /dev/null @@ -1,24 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html - PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//FR" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> -<head> - <!-- Generated by phpDocumentor on {$date} --> - <title>{$title}</title> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> -</head> - -<FRAMESET rows='120,*'> - <FRAME src='packages.html' name='left_top' frameborder="1" bordercolor="#999999"> - <FRAMESET cols='25%,*'> - <FRAME src='{$start}' name='left_bottom' frameborder="1" bordercolor="#999999"> - <FRAME src='{$blank}.html' name='right' frameborder="1" bordercolor="#999999"> - </FRAMESET> - <NOFRAMES> - <H2>Frame Alert</H2> - <P>This document is designed to be viewed using the frames feature. - If you see this message, you are using a non-frame-capable web client.</P> - </NOFRAMES> -</FRAMESET> -</HTML> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/left_frame.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/left_frame.tpl deleted file mode 100755 index 98fc3135..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/left_frame.tpl +++ /dev/null @@ -1,217 +0,0 @@ -{include file="header.tpl" top2=true} -<h3 class="package-title">{$info.0.package}</h3> -<div class="tree"> -<script language="Javascript"> -if (document.getElementById) {ldelim} -{section name=p loop=$info} - {if $info[p].subpackage == ""} - var tree = new WebFXTree('<span class="package">{$info.0.package}</span>'); - tree.setBehavior('classic'); - - {if $hastodos} - var todos = new WebFXTreeItem('To-do List', '{$todolink}'); - tree.add(todos); - {/if} - - var class_trees = new WebFXTreeItem('Class trees', '{$classtreepage}.html'); - tree.add(class_trees); - - var elements = new WebFXTreeItem('Index of elements', '{$elementindex}.html'); - tree.add(elements); - - var parent_node; - - {if $info[p].tutorials} - var tree_tutorial = new WebFXTreeItem('Tutorial(s)/Manual(s)', ''); - tree.add(tree_tutorial); - - {if $info[p].tutorials.pkg} - var tree_inner_tutorial = new WebFXTreeItem('Package-level', ''); - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.pkg} - {$info[p].tutorials.pkg[ext]} - {/section} - {/if} - - {if $info[p].tutorials.cls} - var tree_inner_tutorial = new WebFXTreeItem('Class-level', ''); - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.cls} - {$info[p].tutorials.cls[ext]} - {/section} - {/if} - - {if $info[p].tutorials.proc} - var tree_inner_tutorial = new WebFXTreeItem('Function-level', ''); - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.proc} - {$info[p].tutorials.proc[ext]} - {/section} - {/if} - {/if} - - {if $info[p].hasinterfaces} - {if $info[p].classes} - var tree_classe = new WebFXTreeItem('Interface(s)', '{$packagedoc}'); - - {section name=class loop=$info[p].classes} - {if $info[p].classes[class].is_interface} - var classe = new WebFXTreeItem('{$info[p].classes[class].title|escape:"quotes"}', '{$info[p].classes[class].link|escape:"quotes"}'); - tree_classe.add(classe); - {/if} - {/section} - - tree.add(tree_classe); - {/if} - {/if} - {if $info[p].hasclasses} - {if $info[p].classes} - var tree_classe = new WebFXTreeItem('Class(es)', '{$packagedoc}'); - - {section name=class loop=$info[p].classes} - {if $info[p].classes[class].is_class} - var classe = new WebFXTreeItem('{$info[p].classes[class].title|escape:"quotes"}', '{$info[p].classes[class].link|escape:"quotes"}'); - tree_classe.add(classe); - {/if} - {/section} - - tree.add(tree_classe); - {/if} - {/if} - - {if $info[p].functions} - var tree_function = new WebFXTreeItem('Function(s)', '{$packagedoc|escape:"quotes"}'); - - {section name=nonclass loop=$info[p].functions} - var fic = new WebFXTreeItem('{$info[p].functions[nonclass].title|escape:"quotes"}', '{$info[p].functions[nonclass].link|escape:"quotes"}'); - tree_function.add(fic); - {/section} - - tree.add(tree_function); - {/if} - - {if $info[p].files} - var tree_file = new WebFXTreeItem('File(s)', '{$packagedoc|escape:"quotes"}'); - - {section name=nonclass loop=$info[p].files} - var file = new WebFXTreeItem('{$info[p].files[nonclass].title|escape:"quotes"}', '{$info[p].files[nonclass].link|escape:"quotes"}'); - tree_file.add(file); - {/section} - - tree.add(tree_file); - {/if} - - {else} - {if $info[p].subpackagetutorial} - var subpackagetree = new WebFXTreeItem('<span class="sub-package">{$info[p].subpackagetutorialtitle|strip_tags|escape:"quotes"}</span>', '{$info[p].subpackagetutorialnoa}'); - {else} - var subpackagetree = new WebFXTreeItem('<span class="sub-package">{$info[p].subpackage}</span>', '{$packagedoc}'); - {/if} - - {if $info[p].tutorials} - var tree_tutorial = new WebFXTreeItem('Tutorial(s)/Manual(s)', ''); - tree.add(tree_tutorial); - - {if $info[p].tutorials.pkg} - var tree_inner_tutorial = new WebFXTreeItem('Package-level', ''); - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.pkg} - {$info[p].tutorials.pkg[ext]} - {/section} - {/if} - - {if $info[p].tutorials.cls} - var tree_inner_tutorial = new WebFXTreeItem('Class-level', ''); - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.cls} - {$info[p].tutorials.cls[ext]} - {/section} - {/if} - - {if $info[p].tutorials.proc} - var tree_inner_tutorial = new WebFXTreeItem('Function-level', ''); - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.proc} - {$info[p].tutorials.proc[ext]} - {/section} - {/if} - {/if} - - {if $info[p].hasinterfaces} - {if $info[p].classes} - var subpackagetree_classe = new WebFXTreeItem('Interface(s)', '{$packagedoc}'); - - {section name=class loop=$info[p].classes} - {if $info[p].classes[class].is_interface} - var classe = new WebFXTreeItem('{$info[p].classes[class].title|escape:"quotes"}', '{$info[p].classes[class].link|escape:"quotes"}'); - subpackagetree_classe.add(classe); - {/if} - {/section} - - subpackagetree.add(subpackagetree_classe); - {/if} - {/if} - - {if $info[p].hasclasses} - {if $info[p].classes} - var subpackagetree_classe = new WebFXTreeItem('Class(es)', '{$packagedoc}'); - - {section name=class loop=$info[p].classes} - {if $info[p].classes[class].is_class} - var classe = new WebFXTreeItem('{$info[p].classes[class].title|escape:"quotes"}', '{$info[p].classes[class].link|escape:"quotes"}'); - subpackagetree_classe.add(classe); - {/if} - {/section} - - subpackagetree.add(subpackagetree_classe); - {/if} - {/if} - - {if $info[p].functions} - var subpackagetree_function = new WebFXTreeItem('Function(s)', '{$packagedoc|escape:"quotes"}'); - - {section name=nonclass loop=$info[p].functions} - var fic = new WebFXTreeItem('{$info[p].functions[nonclass].title|escape:"quotes"}', '{$info[p].functions[nonclass].link|escape:"quotes"}'); - subpackagetree_function.add(fic); - {/section} - - subpackagetree.add(subpackagetree_function); - {/if} - - {if $info[p].files} - var subpackagetree_file = new WebFXTreeItem('File(s)', '{$packagedoc|escape:"quotes"}'); - - {section name=nonclass loop=$info[p].files} - var file = new WebFXTreeItem('{$info[p].files[nonclass].title|escape:"quotes"}', '{$info[p].files[nonclass].link|escape:"quotes"}'); - subpackagetree_file.add(file); - {/section} - - subpackagetree.add(subpackagetree_file); - {/if} - - tree.add(subpackagetree); - {/if} -{/section} - -document.write(tree); -{rdelim} -</script> -</div> -<p class="notes"> - Generated by - <a href="{$phpdocwebsite}" target="_blank">phpDocumentor <span class="field">{$phpdocversion}</span></a> -</p> -</body> -</html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/banner.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/banner.css deleted file mode 100755 index 065e76bc..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/banner.css +++ /dev/null @@ -1,32 +0,0 @@ -body -{ - background-color: #FFFFFF; - margin: 0px; - padding: 0px; -} - -/* Banner (top bar) classes */ - -.banner { } - -.banner-menu -{ - clear: both; - padding: .5em; - border-top: 2px solid #999999; -} - -.banner-title -{ - text-align: right; - font-size: 20pt; - font-weight: bold; - margin: .2em; -} - -.package-selector -{ - background-color: #EEEEEE; - border: 1px solid black; - color: #0000C0; -} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/I.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/I.png Binary files differdeleted file mode 100755 index e8512fb9..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/I.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/L.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/L.png Binary files differdeleted file mode 100755 index eb334eda..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/L.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/Lminus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/Lminus.png Binary files differdeleted file mode 100755 index f7c43c0a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/Lminus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/Lplus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/Lplus.png Binary files differdeleted file mode 100755 index 848ec2fc..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/Lplus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/T.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/T.png Binary files differdeleted file mode 100755 index 30173254..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/T.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/Tminus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/Tminus.png Binary files differdeleted file mode 100755 index 2260e424..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/Tminus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/Tplus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/Tplus.png Binary files differdeleted file mode 100755 index 2c8d8f4f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/Tplus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/blank.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/blank.png Binary files differdeleted file mode 100755 index cee9cd37..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/blank.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/empty.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/empty.png Binary files differdeleted file mode 100755 index d5683865..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/empty.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/minus.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/minus.gif Binary files differdeleted file mode 100644 index f502662b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/minus.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/plus.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/plus.gif Binary files differdeleted file mode 100644 index eeca02ce..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/images/plus.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/lib/classTree.js b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/lib/classTree.js deleted file mode 100755 index ebb3fb4a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/lib/classTree.js +++ /dev/null @@ -1,454 +0,0 @@ -/*----------------------------------------\ -| Cross Browser Tree Widget 1.1 | -|-----------------------------------------| -| Created by Emil A. Eklund (eae@eae.net) | -| For WebFX (http://webfx.eae.net/) | -|-----------------------------------------| -| This script is provided as is without | -| any warranty whatsoever. It may be used | -| free of charge for non commerical sites | -| For commerical use contact the author | -| of this script for further details. | -|-----------------------------------------| -| Created 2000-12-11 | Updated 2001-09-06 | -\----------------------------------------*/ - -var webFXTreeConfig = { - rootIcon : 'media/images/empty.png', - openRootIcon : 'media/images/empty.png', - folderIcon : 'media/images/empty.png', - openFolderIcon : 'media/images/empty.png', - fileIcon : 'media/images/empty.png', - iIcon : 'media/images/I.png', - lIcon : 'media/images/L.png', - lMinusIcon : 'media/images/Lminus.png', - lPlusIcon : 'media/images/Lplus.png', - tIcon : 'media/images/T.png', - tMinusIcon : 'media/images/Tminus.png', - tPlusIcon : 'media/images/Tplus.png', - blankIcon : 'media/images/blank.png', - defaultText : 'Tree Item', - defaultAction : 'javascript:void(0);', - defaultTarget : 'right', - defaultBehavior : 'classic' -}; - -var webFXTreeHandler = { - idCounter : 0, - idPrefix : "webfx-tree-object-", - all : {}, - behavior : null, - selected : null, - getId : function() { return this.idPrefix + this.idCounter++; }, - toggle : function (oItem) { this.all[oItem.id.replace('-plus','')].toggle(); }, - select : function (oItem) { this.all[oItem.id.replace('-icon','')].select(); }, - focus : function (oItem) { this.all[oItem.id.replace('-anchor','')].focus(); }, - blur : function (oItem) { this.all[oItem.id.replace('-anchor','')].blur(); }, - keydown : function (oItem) { return this.all[oItem.id].keydown(window.event.keyCode); }, - cookies : new WebFXCookie() -}; - -/* - * WebFXCookie class - */ - -function WebFXCookie() { - if (document.cookie.length) { this.cookies = ' ' + document.cookie; } -} - -WebFXCookie.prototype.setCookie = function (key, value) { - document.cookie = key + "=" + escape(value); -} - -WebFXCookie.prototype.getCookie = function (key) { - if (this.cookies) { - var start = this.cookies.indexOf(' ' + key + '='); - if (start == -1) { return null; } - var end = this.cookies.indexOf(";", start); - if (end == -1) { end = this.cookies.length; } - end -= start; - var cookie = this.cookies.substr(start,end); - return unescape(cookie.substr(cookie.indexOf('=') + 1, cookie.length - cookie.indexOf('=') + 1)); - } - else { return null; } -} - -/* - * WebFXTreeAbstractNode class - */ - -function WebFXTreeAbstractNode(sText, sAction, sTarget) { - this.childNodes = []; - this.id = webFXTreeHandler.getId(); - this.text = sText || webFXTreeConfig.defaultText; - this.action = sAction || webFXTreeConfig.defaultAction; - this.targetWindow = sTarget || webFXTreeConfig.defaultTarget; - this._last = false; - webFXTreeHandler.all[this.id] = this; -} - -WebFXTreeAbstractNode.prototype.add = function (node) { - node.parentNode = this; - this.childNodes[this.childNodes.length] = node; - var root = this; - if (this.childNodes.length >=2) { - this.childNodes[this.childNodes.length -2]._last = false; - } - while (root.parentNode) { root = root.parentNode; } - if (root.rendered) { - if (this.childNodes.length >= 2) { - document.getElementById(this.childNodes[this.childNodes.length -2].id + '-plus').src = ((this.childNodes[this.childNodes.length -2].folder)?webFXTreeConfig.tMinusIcon:webFXTreeConfig.tIcon); - if (this.childNodes[this.childNodes.length -2].folder) { - this.childNodes[this.childNodes.length -2].plusIcon = webFXTreeConfig.tPlusIcon; - this.childNodes[this.childNodes.length -2].minusIcon = webFXTreeConfig.tMinusIcon; - } - this.childNodes[this.childNodes.length -2]._last = false; - } - this._last = true; - var foo = this; - while (foo.parentNode) { - for (var i = 0; i < foo.parentNode.childNodes.length; i++) { - if (foo.id == foo.parentNode.childNodes[i].id) { break; } - } - if (++i == foo.parentNode.childNodes.length) { foo.parentNode._last = true; } - else { foo.parentNode._last = false; } - foo = foo.parentNode; - } - document.getElementById(this.id + '-cont').insertAdjacentHTML("beforeEnd", node.toString()); - if ((!this.folder) && (!this.openIcon)) { - this.icon = webFXTreeConfig.folderIcon; - this.openIcon = webFXTreeConfig.openFolderIcon; - } - this.folder = true; - this.indent(); - this.expand(); - } - return node; -} - -WebFXTreeAbstractNode.prototype.toggle = function() { - if (this.folder) { - if (this.open) { this.collapse(); } - else { this.expand(); } - } -} - -WebFXTreeAbstractNode.prototype.select = function() { - document.getElementById(this.id + '-anchor').focus(); -} - -WebFXTreeAbstractNode.prototype.focus = function() { - webFXTreeHandler.selected = this; - if ((this.openIcon) && (webFXTreeHandler.behavior != 'classic')) { document.getElementById(this.id + '-icon').src = this.openIcon; } - document.getElementById(this.id + '-anchor').style.backgroundColor = 'highlight'; - document.getElementById(this.id + '-anchor').style.color = 'highlighttext'; - document.getElementById(this.id + '-anchor').focus(); -} - -WebFXTreeAbstractNode.prototype.blur = function() { - if ((this.openIcon) && (webFXTreeHandler.behavior != 'classic')) { document.getElementById(this.id + '-icon').src = this.icon; } - document.getElementById(this.id + '-anchor').style.backgroundColor = 'transparent'; - document.getElementById(this.id + '-anchor').style.color = 'menutext'; -} - -WebFXTreeAbstractNode.prototype.doExpand = function() { - if (webFXTreeHandler.behavior == 'classic') { document.getElementById(this.id + '-icon').src = this.openIcon; } - if (this.childNodes.length) { document.getElementById(this.id + '-cont').style.display = 'block'; } - this.open = true; - webFXTreeHandler.cookies.setCookie(this.id.substr(18,this.id.length - 18), '1'); -} - -WebFXTreeAbstractNode.prototype.doCollapse = function() { - if (webFXTreeHandler.behavior == 'classic') { document.getElementById(this.id + '-icon').src = this.icon; } - if (this.childNodes.length) { document.getElementById(this.id + '-cont').style.display = 'none'; } - this.open = false; - webFXTreeHandler.cookies.setCookie(this.id.substr(18,this.id.length - 18), '0'); -} - -WebFXTreeAbstractNode.prototype.expandAll = function() { - this.expandChildren(); - if ((this.folder) && (!this.open)) { this.expand(); } -} - -WebFXTreeAbstractNode.prototype.expandChildren = function() { - for (var i = 0; i < this.childNodes.length; i++) { - this.childNodes[i].expandAll(); -} } - -WebFXTreeAbstractNode.prototype.collapseAll = function() { - if ((this.folder) && (this.open)) { this.collapse(); } - this.collapseChildren(); -} - -WebFXTreeAbstractNode.prototype.collapseChildren = function() { - for (var i = 0; i < this.childNodes.length; i++) { - this.childNodes[i].collapseAll(); -} } - -WebFXTreeAbstractNode.prototype.indent = function(lvl, del, last, level) { - /* - * Since we only want to modify items one level below ourself, - * and since the rightmost indentation position is occupied by - * the plus icon we set this to -2 - */ - if (lvl == null) { lvl = -2; } - var state = 0; - for (var i = this.childNodes.length - 1; i >= 0 ; i--) { - state = this.childNodes[i].indent(lvl + 1, del, last, level); - if (state) { return; } - } - if (del) { - if (level >= this._level) { - if (this.folder) { - document.getElementById(this.id + '-plus').src = (this.open)?webFXTreeConfig.lMinusIcon:webFXTreeConfig.lPlusIcon; - this.plusIcon = webFXTreeConfig.lPlusIcon; - this.minusIcon = webFXTreeConfig.lMinusIcon; - } - else { document.getElementById(this.id + '-plus').src = webFXTreeConfig.lIcon; } - return 1; - } - } - var foo = document.getElementById(this.id + '-indent-' + lvl); - if (foo) { - if ((del) && (last)) { foo._last = true; } - if (foo._last) { foo.src = webFXTreeConfig.blankIcon; } - else { foo.src = webFXTreeConfig.iIcon; } - } - return 0; -} - -/* - * WebFXTree class - */ - -function WebFXTree(sText, sAction, sBehavior, sIcon, sOpenIcon) { - this.base = WebFXTreeAbstractNode; - this.base(sText, sAction); - this.icon = sIcon || webFXTreeConfig.rootIcon; - this.openIcon = sOpenIcon || webFXTreeConfig.openRootIcon; - /* Defaults to open */ - this.open = (webFXTreeHandler.cookies.getCookie(this.id.substr(18,this.id.length - 18)) == '0')?false:true; - this.folder = true; - this.rendered = false; - if (!webFXTreeHandler.behavior) { webFXTreeHandler.behavior = sBehavior || webFXTreeConfig.defaultBehavior; } - this.targetWindow = 'right'; -} - -WebFXTree.prototype = new WebFXTreeAbstractNode; - -WebFXTree.prototype.setBehavior = function (sBehavior) { - webFXTreeHandler.behavior = sBehavior; -}; - -WebFXTree.prototype.getBehavior = function (sBehavior) { - return webFXTreeHandler.behavior; -}; - -WebFXTree.prototype.getSelected = function() { - if (webFXTreeHandler.selected) { return webFXTreeHandler.selected; } - else { return null; } -} - -WebFXTree.prototype.remove = function() { } - -WebFXTree.prototype.expand = function() { - this.doExpand(); -} - -WebFXTree.prototype.collapse = function() { - this.focus(); - this.doCollapse(); -} - -WebFXTree.prototype.getFirst = function() { - return null; -} - -WebFXTree.prototype.getLast = function() { - return null; -} - -WebFXTree.prototype.getNextSibling = function() { - return null; -} - -WebFXTree.prototype.getPreviousSibling = function() { - return null; -} - -WebFXTree.prototype.keydown = function(key) { - if (key == 39) { this.expand(); return false; } - if (key == 37) { this.collapse(); return false; } - if ((key == 40) && (this.open)) { this.childNodes[0].select(); return false; } - return true; -} - -WebFXTree.prototype.toString = function() { - var str = "<div id=\"" + this.id + "\" ondblclick=\"webFXTreeHandler.toggle(this);\" class=\"webfx-tree-item\" onkeydown=\"return webFXTreeHandler.keydown(this)\">"; - str += "<img id=\"" + this.id + "-icon\" class=\"webfx-tree-icon\" src=\"" + ((webFXTreeHandler.behavior == 'classic' && this.open)?this.openIcon:this.icon) + "\" onclick=\"webFXTreeHandler.select(this);\"><a href=\"" + this.action + "\" id=\"" + this.id + "-anchor\" target=\"" + this.targetWindow + "\" onfocus=\"webFXTreeHandler.focus(this);\" onblur=\"webFXTreeHandler.blur(this);\">" + this.text + "</a></div>"; - str += "<div id=\"" + this.id + "-cont\" class=\"webfx-tree-container\" style=\"display: " + ((this.open)?'block':'none') + ";\">"; - for (var i = 0; i < this.childNodes.length; i++) { - str += this.childNodes[i].toString(i, this.childNodes.length); - } - str += "</div>"; - this.rendered = true; - return str; -}; - -/* - * WebFXTreeItem class - */ - -function WebFXTreeItem(sText, sAction, eParent, sIcon, sOpenIcon) { - this.base = WebFXTreeAbstractNode; - this.base(sText, sAction); - /* Defaults to close */ - this.open = (webFXTreeHandler.cookies.getCookie(this.id.substr(18,this.id.length - 18)) == '1')?true:false; - if (eParent) { eParent.add(this); } - if (sIcon) { this.icon = sIcon; } - if (sOpenIcon) { this.openIcon = sOpenIcon; } -} - -WebFXTreeItem.prototype = new WebFXTreeAbstractNode; - -WebFXTreeItem.prototype.remove = function() { - var parentNode = this.parentNode; - var prevSibling = this.getPreviousSibling(true); - var nextSibling = this.getNextSibling(true); - var folder = this.parentNode.folder; - var last = ((nextSibling) && (nextSibling.parentNode) && (nextSibling.parentNode.id == parentNode.id))?false:true; - this.getPreviousSibling().focus(); - this._remove(); - if (parentNode.childNodes.length == 0) { - parentNode.folder = false; - parentNode.open = false; - } - if (last) { - if (parentNode.id == prevSibling.id) { - document.getElementById(parentNode.id + '-icon').src = webFXTreeConfig.fileIcon; - } - else { } - } - if ((!prevSibling.parentNode) || (prevSibling.parentNode != parentNode)) { - parentNode.indent(null, true, last, this._level); - } - if (document.getElementById(prevSibling.id + '-plus')) { - if (nextSibling) { - if ((parentNode == prevSibling) && (parentNode.getNextSibling)) { document.getElementById(prevSibling.id + '-plus').src = webFXTreeConfig.tIcon; } - else if (nextSibling.parentNode != prevSibling) { document.getElementById(prevSibling.id + '-plus').src = webFXTreeConfig.lIcon; } - } - else { document.getElementById(prevSibling.id + '-plus').src = webFXTreeConfig.lIcon; } - } -} - -WebFXTreeItem.prototype._remove = function() { - for (var i = this.childNodes.length - 1; i >= 0; i--) { - this.childNodes[i]._remove(); - } - for (var i = 0; i < this.parentNode.childNodes.length; i++) { - if (this.id == this.parentNode.childNodes[i].id) { - for (var j = i; j < this.parentNode.childNodes.length; j++) { - this.parentNode.childNodes[i] = this.parentNode.childNodes[i+1] - } - this.parentNode.childNodes.length = this.parentNode.childNodes.length - 1; - if (i + 1 == this.parentNode.childNodes.length) { this.parentNode._last = true; } - } - } - webFXTreeHandler.all[this.id] = null; - if (document.getElementById(this.id)) { - document.getElementById(this.id).innerHTML = ""; - document.getElementById(this.id).removeNode(); - } -} - -WebFXTreeItem.prototype.expand = function() { - this.doExpand(); - document.getElementById(this.id + '-plus').src = this.minusIcon; -} - -WebFXTreeItem.prototype.collapse = function() { - this.focus(); - this.doCollapse(); - document.getElementById(this.id + '-plus').src = this.plusIcon; -} - -WebFXTreeItem.prototype.getFirst = function() { - return this.childNodes[0]; -} - -WebFXTreeItem.prototype.getLast = function() { - if (this.childNodes[this.childNodes.length - 1].open) { return this.childNodes[this.childNodes.length - 1].getLast(); } - else { return this.childNodes[this.childNodes.length - 1]; } -} - -WebFXTreeItem.prototype.getNextSibling = function() { - for (var i = 0; i < this.parentNode.childNodes.length; i++) { - if (this == this.parentNode.childNodes[i]) { break; } - } - if (++i == this.parentNode.childNodes.length) { return this.parentNode.getNextSibling(); } - else { return this.parentNode.childNodes[i]; } -} - -WebFXTreeItem.prototype.getPreviousSibling = function(b) { - for (var i = 0; i < this.parentNode.childNodes.length; i++) { - if (this == this.parentNode.childNodes[i]) { break; } - } - if (i == 0) { return this.parentNode; } - else { - if ((this.parentNode.childNodes[--i].open) || (b && this.parentNode.childNodes[i].folder)) { return this.parentNode.childNodes[i].getLast(); } - else { return this.parentNode.childNodes[i]; } -} } - -WebFXTreeItem.prototype.keydown = function(key) { - if ((key == 39) && (this.folder)) { - if (!this.open) { this.expand(); return false; } - else { this.getFirst().select(); return false; } - } - else if (key == 37) { - if (this.open) { this.collapse(); return false; } - else { this.parentNode.select(); return false; } - } - else if (key == 40) { - if (this.open) { this.getFirst().select(); return false; } - else { - var sib = this.getNextSibling(); - if (sib) { sib.select(); return false; } - } } - else if (key == 38) { this.getPreviousSibling().select(); return false; } - return true; -} - -WebFXTreeItem.prototype.toString = function (nItem, nItemCount) { - var foo = this.parentNode; - var indent = ''; - if (nItem + 1 == nItemCount) { this.parentNode._last = true; } - var i = 0; - while (foo.parentNode) { - foo = foo.parentNode; - indent = "<img id=\"" + this.id + "-indent-" + i + "\" src=\"" + ((foo._last)?webFXTreeConfig.blankIcon:webFXTreeConfig.iIcon) + "\">" + indent; - i++; - } - this._level = i; - if (this.childNodes.length) { this.folder = 1; } - else { this.open = false; } - if ((this.folder) || (webFXTreeHandler.behavior != 'classic')) { - if (!this.icon) { this.icon = webFXTreeConfig.folderIcon; } - if (!this.openIcon) { this.openIcon = webFXTreeConfig.openFolderIcon; } - } - else if (!this.icon) { this.icon = webFXTreeConfig.fileIcon; } - var label = this.text; - label = label.replace('<', '<'); - label = label.replace('>', '>'); - var str = "<div id=\"" + this.id + "\" ondblclick=\"webFXTreeHandler.toggle(this);\" class=\"webfx-tree-item\" onkeydown=\"return webFXTreeHandler.keydown(this)\">"; - str += indent; - str += "<img id=\"" + this.id + "-plus\" src=\"" + ((this.folder)?((this.open)?((this.parentNode._last)?webFXTreeConfig.lMinusIcon:webFXTreeConfig.tMinusIcon):((this.parentNode._last)?webFXTreeConfig.lPlusIcon:webFXTreeConfig.tPlusIcon)):((this.parentNode._last)?webFXTreeConfig.lIcon:webFXTreeConfig.tIcon)) + "\" onclick=\"webFXTreeHandler.toggle(this);\">" - str += "<img id=\"" + this.id + "-icon\" src=\"" + ((webFXTreeHandler.behavior == 'classic' && this.open)?this.openIcon:this.icon) + "\" onclick=\"webFXTreeHandler.select(this);\"><a href=\"" + this.action + "\" id=\"" + this.id + "-anchor\" target=\"" + this.targetWindow + "\" onfocus=\"webFXTreeHandler.focus(this);\" onblur=\"webFXTreeHandler.blur(this);\">" + label + "</a></div>"; - str += "<div id=\"" + this.id + "-cont\" class=\"webfx-tree-container\" style=\"display: " + ((this.open)?'block':'none') + ";\">"; - for (var i = 0; i < this.childNodes.length; i++) { - str += this.childNodes[i].toString(i,this.childNodes.length); - } - str += "</div>"; - this.plusIcon = ((this.parentNode._last)?webFXTreeConfig.lPlusIcon:webFXTreeConfig.tPlusIcon); - this.minusIcon = ((this.parentNode._last)?webFXTreeConfig.lMinusIcon:webFXTreeConfig.tMinusIcon); - return str; -}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/stylesheet.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/stylesheet.css deleted file mode 100755 index ccedc6a4..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/media/stylesheet.css +++ /dev/null @@ -1,184 +0,0 @@ -a { color: #0000C0; text-decoration: underline; } -a:hover { text-decoration: underline; background-color: #FFFFFF } -a:active { text-decoration: underline; background-color: #FFFFFF } - -body, table { background-color: #EEEEEE; font-family: Verdana, Arial, sans-serif; font-size: 10pt } -p, li { line-height: 140% } -a img { border: 0px; } -dd { margin-left: 0px; padding-left: 1em; } - -/* Page layout/boxes */ - -.info-box {} -.info-box-title { margin: 1em 0em 0em 0em; padding: .25em; font-weight: normal; font-size: 14pt; border: 2px solid #999999; background-color: #FFFFFF } -.info-box-body { border: 1px solid #999999; padding: .5em; } -.nav-bar { font-size: 8pt; white-space: nowrap; text-align: right; padding: .2em; margin: 0em 0em 1em 0em; } - -.oddrow { background-color: #F8F8F8; border: 1px solid #AAAAAA; padding: .5em; margin-bottom: 1em} -.evenrow { border: 1px solid #AAAAAA; padding: .5em; margin-bottom: 1em} - -.page-body { max-width: 800px; margin: auto; } -.tree { } - -/* Index formatting classes */ - -.index-item-body { margin-top: .5em; margin-bottom: .5em} -.index-item-description { margin-top: .25em } -.index-item-details { font-weight: normal; font-style: italic; font-size: 8pt } -.index-letter-section { background-color: #EEEEEE; border: 1px dotted #999999; padding: .5em; margin-bottom: 1em} -.index-letter-title { font-size: 12pt; font-weight: bold } -.index-letter-menu { text-align: center; margin: 1em } -.index-letter { font-size: 12pt } - -/* Docbook classes */ - -.description {} -.short-description { font-weight: bold; color: #666666; } -.tags { padding-left: 0em; margin-left: 3em; color: #666666; list-style-type: square; } -.parameters { padding-left: 0em; margin-left: 3em; font-style: italic; list-style-type: square; } -.redefinitions { font-size: 8pt; padding-left: 0em; margin-left: 2em; } -.package { } -.package-title { font-weight: bold; font-size: 14pt; border-bottom: 1px solid black } -.package-details { font-size: 85%; } -.sub-package { font-weight: bold; font-size: 120% } -.tutorial { border-width: thin; border-color: #0066ff } -.tutorial-nav-box { width: 100%; border: 1px solid #AAAAAA; background-color: #DDDDFF; } -.nav-button-disabled { color: #AAAAAA; } -.nav-button:active, -.nav-button:focus, -.nav-button:hover { background-color: #CCCCCC; outline: 1px solid #999999; text-decoration: none } -.folder-title { font-style: italic } - -/* Generic formatting */ - -.field { font-weight: bold; } -.detail { font-size: 8pt; } -.notes { font-style: italic; font-size: 8pt; } -.separator { background-color: #999999; height: 2px; } -.warning { color: #FF6600; } -.disabled { font-style: italic; color: #999999; } - -/* Code elements */ - -.line-number { } - -.class-table { width: 100%; } -.class-table-header { border-bottom: 1px dotted #666666; text-align: left; background-color: DDDDFF } -.class-name { color: #000000; font-weight: bold; } - -.method-summary { padding-left: 1em; font-size: 8pt } -.method-header { background-color: #DDDDFF; padding: 1px; } -.method-definition { margin-bottom: .3em } -.method-title { font-weight: bold } -.method-name { font-weight: bold; } -.method-signature { font-size: 85%; color: #666666; margin: .5em 0em } -.method-result { font-style: italic; } - -.var-summary { padding-left: 1em; font-size: 8pt; } -.var-header { background-color: #DDDDFF; padding: 1px; } -.var-title { margin-bottom: .3em } -.var-type { font-style: italic; } -.var-name { font-weight: bold; } -.var-default {} -.var-description { font-weight: normal; color: #000000; } - -.include-title { } -.include-type { font-style: italic; } -.include-name { font-weight: bold; } - -.const-title { } -.const-name { font-weight: bold; } - -/* Syntax highlighting */ - -.src-code { border: 1px solid #999999; padding: 1em; - font-family: 'Courier New', Courier, monospace; font-weight: normal; } -.src-line { font-family: 'Courier New', Courier, monospace; font-weight: normal; } - -.src-comm { color: green; } -.src-id { } -.src-inc { color: #0000FF; } -.src-key { color: #0000FF; } -.src-num { color: #CC0000; } -.src-str { color: #66cccc; } -.src-sym { font-weight: bold; } -.src-var { } - -.src-php { font-weight: bold; } - -.src-doc { color: #009999 } -.src-doc-close-template { color: #0000FF } -.src-doc-coretag { color: #0099FF; font-weight: bold } -.src-doc-inlinetag { color: #0099FF } -.src-doc-internal { color: #6699cc } -.src-doc-tag { color: #0080CC } -.src-doc-template { color: #0000FF } -.src-doc-type { font-style: italic } -.src-doc-var { font-style: italic } - -.tute-tag { color: #009999 } -.tute-attribute-name { color: #0000FF } -.tute-attribute-value { color: #0099FF } -.tute-entity { font-weight: bold; } -.tute-comment { font-style: italic } -.tute-inline-tag { color: #636311; font-weight: bold } - -/* tutorial */ - -.authors { } -.author { font-style: italic; font-weight: bold } -.author-blurb { margin: .5em 0em .5em 2em; font-size: 85%; font-weight: normal; font-style: normal } -.example { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; } -.listing { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; white-space: nowrap; } -.release-info { font-size: 85%; font-style: italic; margin: 1em 0em } -.ref-title-box { } -.ref-title { } -.ref-purpose { font-style: italic; color: #666666 } -.ref-synopsis { } -.title { font-weight: bold; border: 2px solid #999999; background-color: #FFFFFF; padding: 2px } -.cmd-synopsis { margin: 1em 0em } -.cmd-title { font-weight: bold } -.toc { margin-left: 2em; padding-left: 0em } - -/*------------------------------------------------------------------------------ - webfx-tree -------------------------------------------------------------------------------*/ - -.webfx-tree-container { - margin: 0px; - padding: 0px; - white-space: nowrap; - font: icon; -} - -.webfx-tree-item { - padding: 0px; - margin: 0px; - color: black; - white-space: nowrap; - font: icon; -} - -.webfx-tree-item a { - margin-left: 3px; - padding: 1px 2px 1px 2px; - color: black; - text-decoration: none; -} - -.webfx-tree-item a:hover, .webfx-tree-item a:active { - color: #666666; - background: white; - text-decoration: none -} - -.webfx-tree-item img { - vertical-align: middle; - border: 0px; -} - -.webfx-tree-icon { - width: 16px; - height: 16px; -} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/method.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/method.tpl deleted file mode 100755 index 06d57a12..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/method.tpl +++ /dev/null @@ -1,149 +0,0 @@ -<A NAME='method_detail'></A> -{section name=methods loop=$methods} -{if $methods[methods].static} -<a name="method{$methods[methods].function_name}" id="{$methods[methods].function_name}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="method-header"> - <span class="method-title">static {$methods[methods].function_name}</span> (line <span class="line-number">{if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags params=$methods[methods].params function=false} - - <div class="method-signature"> - static <span class="method-result">{$methods[methods].function_return}</span> - <span class="method-name"> - {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name} - </span> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $methods[methods].params} - <ul class="parameters"> - {section name=params loop=$methods[methods].params} - <li> - <span class="var-type">{$methods[methods].params[params].datatype}</span> - <span class="var-name">{$methods[methods].params[params].var}</span>{if $methods[methods].params[params].data}<span class="var-description">: {$methods[methods].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $methods[methods].method_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$methods[methods].method_overrides.link}</dt> - {if $methods[methods].method_overrides.sdesc} - <dd>{$methods[methods].method_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} - - {if $methods[methods].descmethod} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=dm loop=$methods[methods].descmethod} - <li> - {$methods[methods].descmethod[dm].link} - {if $methods[methods].descmethod[dm].sdesc} - : {$methods[methods].descmethod[dm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} -</div> -{/if} -{/section} -{section name=methods loop=$methods} -{if !$methods[methods].static} -<a name="method{$methods[methods].function_name}" id="{$methods[methods].function_name}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="method-header"> - <span class="method-title">{if $methods[methods].ifunction_call.constructor}Constructor {elseif $methods[methods].ifunction_call.destructor}Destructor {/if}{$methods[methods].function_name}</span> (line <span class="line-number">{if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags params=$methods[methods].params function=false} - - <div class="method-signature"> - <span class="method-result">{$methods[methods].function_return}</span> - <span class="method-name"> - {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name} - </span> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $methods[methods].params} - <ul class="parameters"> - {section name=params loop=$methods[methods].params} - <li> - <span class="var-type">{$methods[methods].params[params].datatype}</span> - <span class="var-name">{$methods[methods].params[params].var}</span>{if $methods[methods].params[params].data}<span class="var-description">: {$methods[methods].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $methods[methods].method_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$methods[methods].method_overrides.link}</dt> - {if $methods[methods].method_overrides.sdesc} - <dd>{$methods[methods].method_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} - - {if $methods[methods].descmethod} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=dm loop=$methods[methods].descmethod} - <li> - {$methods[methods].descmethod[dm].link} - {if $methods[methods].descmethod[dm].sdesc} - : {$methods[methods].descmethod[dm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} -</div> -{/if} -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/page.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/page.tpl deleted file mode 100755 index b5980236..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/page.tpl +++ /dev/null @@ -1,211 +0,0 @@ -{include file="header.tpl" top3=true} - -<h2 class="file-name">{$source_location}</h2> - -<a name="sec-description"></a> -<div class="info-box"> - <div class="info-box-title">Description</div> - <div class="nav-bar"> - {if $classes || $includes || $defines || $globals || $functions} - <span class="disabled">Description</span> | - {/if} - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="docblock.tpl" desc=$desc sdesc=$sdesc tags=$tags} - - {if $tutorial} - <hr class="separator" /> - <div class="notes">Tutorial: <span class="tutorial">{$tutorial}</div> - {/if} - </div> -</div> - -{if $classes} - <a name="sec-classes"></a> - <div class="info-box"> - <div class="info-box-title">Classes</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - <span class="disabled">Classes</span> - {if $includes || $defines || $globals || $functions}|{/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - <table cellpadding="2" cellspacing="0" class="class-table"> - <tr> - <th class="class-table-header">Class</th> - <th class="class-table-header">Description</th> - </tr> - {section name=classes loop=$classes} - <tr> - <td style="padding-right: 2em; vertical-align: top"> - {$classes[classes].link} - </td> - <td> - {if $classes[classes].sdesc} - {$classes[classes].sdesc} - {else} - {$classes[classes].desc} - {/if} - </td> - </tr> - {/section} - </table> - </div> - </div> -{/if} - -{if $includes} - <a name="sec-includes"></a> - <div class="info-box"> - <div class="info-box-title">Includes</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - <span class="disabled">Includes</span> - {if $defines || $globals || $functions}|{/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="include.tpl"} - </div> - </div> -{/if} - -{if $defines} - <a name="sec-constants"></a> - <div class="info-box"> - <div class="info-box-title">Constants</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - <span class="disabled">Constants</span> - {if $globals || $functions}|{/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="define.tpl"} - </div> - </div> -{/if} - -{if $globals} - <a name="sec-variables"></a> - <div class="info-box"> - <div class="info-box-title">Variables</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - <span class="disabled">Variables</span> - {if $functions}|{/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="global.tpl"} - </div> - </div> -{/if} - -{if $functions} - <a name="sec-functions"></a> - <div class="info-box"> - <div class="info-box-title">Functions</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - <span class="disabled">Functions</span> - </div> - <div class="info-box-body"> - {include file="function.tpl"} - </div> - </div> -{/if} - -{include file="footer.tpl" top3=true} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/pkgelementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/pkgelementindex.tpl deleted file mode 100755 index dc283ad0..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/pkgelementindex.tpl +++ /dev/null @@ -1,17 +0,0 @@ -{include file="header.tpl"} -<a name="top"></a> -<h2>[{$package}] element index</h2> -{if count($packageindex) > 1} - <h3>Package indexes</h3> - <ul> - {section name=p loop=$packageindex} - {if $packageindex[p].title != $package} - <li><a href="elementindex_{$packageindex[p].title}.html">{$packageindex[p].title}</a></li> - {/if} - {/section} - </ul> -{/if} -<a href="elementindex.html">All elements</a> -<br /> -{include file="basicindex.tpl" indexname=elementindex_$package} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/ric.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/ric.tpl deleted file mode 100755 index ad792475..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/ric.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl"} -<div align="center"><h1>{$name}</h1></div> -<pre> -{$contents|htmlentities} -</pre> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/todolist.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/todolist.tpl deleted file mode 100755 index f929ccdb..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/todolist.tpl +++ /dev/null @@ -1,14 +0,0 @@ -{include file="header.tpl" title="Todo List"} -<div align="center"><h1>Todo List</h1></div> -{foreach from=$todos key=todopackage item=todo} -<h2>{$todopackage}</h2> -{section name=todo loop=$todo} -<h3>{$todo[todo].link}</h3> -<ul> -{section name=t loop=$todo[todo].todos} - <li>{$todo[todo].todos[t]}</li> -{/section} -</ul> -{/section} -{/foreach} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/top_frame.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/top_frame.tpl deleted file mode 100755 index 36d1e5a1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/top_frame.tpl +++ /dev/null @@ -1,45 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <!-- template designed by Marco Von Ballmoos --> - <title>{$title}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - <link rel="stylesheet" href="{$subdir}media/banner.css" /> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> - </head> - <body> - <div class="banner"> - <div class="banner-title">{$package}</div> - <div class="banner-menu"> - <form> - <table cellpadding="0" cellspacing="0" style="width: 100%"> - <tr> - <td> - {if count($ric) >= 1} - {assign var="last_ric_name" value=""} - {section name=ric loop=$ric} - {if $last_ric_name != ""} | {/if} - <a href="{$ric[ric].file}" target="right">{$ric[ric].name}</a> - {assign var="last_ric_name" value=$ric[ric].name} - {/section} - {/if} - </td> - <td style="width: 2em"> </td> - <td style="text-align: right"> - {if count($packages) > 1} - <span class="field">Packages</span> - <select class="package-selector" onchange="window.parent.left_bottom.location=this[selectedIndex].value"> - {section name=p loop=$packages} - <option value="{$packages[p].link}">{$packages[p].title}</option> - {/section} - </select> - {/if} - </td> - </tr> - </table> - </form> - </div> - </div> - </body> - </html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/tutorial.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/tutorial.tpl deleted file mode 100755 index 3b9109d1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/tutorial.tpl +++ /dev/null @@ -1,13 +0,0 @@ -{include file="header.tpl" title=$title top3=true} - -{if $nav} - {include file="tutorial_nav.tpl" prev=$prev next=$next up=$up prevtitle=$prevtitle nexttitle=$nexttitle uptitle=$uptitle} -{/if} - -{$contents} - -{if $nav} - {include file="tutorial_nav.tpl" prev=$prev next=$next up=$up prevtitle=$prevtitle nexttitle=$nexttitle uptitle=$uptitle} -{/if} - -{include file="footer.tpl" top3=true}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/tutorial_nav.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/tutorial_nav.tpl deleted file mode 100755 index 89952301..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/tutorial_nav.tpl +++ /dev/null @@ -1,41 +0,0 @@ -<table class="tutorial-nav-box"> - <tr> - <td style="width: 30%"> - {if $prev} - <a href="{$prev}" class="nav-button">Previous</a> - {else} - <span class="nav-button-disabled">Previous</span> - {/if} - </td> - <td style="text-align: center"> - {if $up} - <a href="{$up}" class="nav-button">Up</a> - {/if} - </td> - <td style="text-align: right; width: 30%"> - {if $next} - <a href="{$next}" class="nav-button">Next</a> - {else} - <span class="nav-button-disabled">Next</span> - {/if} - </td> - </tr> - <tr> - <td style="width: 30%"> - {if $prevtitle} - <span class="detail">{$prevtitle}</span> - {/if} - </td> - <td style="text-align: center"> - {if $uptitle} - <span class="detail">{$uptitle}</span> - {/if} - </td> - <td style="text-align: right; width: 30%"> - {if $nexttitle} - <span class="detail">{$nexttitle}</span> - {/if} - </td> - </tr> -</table> -
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/tutorial_toc.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/tutorial_toc.tpl deleted file mode 100755 index 3482249b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/tutorial_toc.tpl +++ /dev/null @@ -1,40 +0,0 @@ -{if count($toc)} -<h1 class="title">Table of Contents</h1> -<ul class="toc"> - {assign var="lastcontext" value='refsect1'} - {section name=toc loop=$toc} - - {if $toc[toc].tagname != $lastcontext} - {if $lastcontext == 'refsect1'} - <ul class="toc"> - <li>{$toc[toc].link}</li> - {else} - {if $lastcontext == 'refsect2'} - {if $toc[toc].tagname == 'refsect1'} - </ul> - <li>{$toc[toc].link}</li> - {/if} - {if $toc[toc].tagname == 'refsect3'} - <ul class="toc"> - <li>{$toc[toc].link}</li> - {/if} - {else} - </ul> - </ul> - <li>{$toc[toc].link}</li> - {/if} - {/if} - {assign var="lastcontext" value=$toc[toc].tagname} - {else} - <li>{$toc[toc].link}</li> - {/if} - {/section} - {if $lastcontext == 'refsect2'} - </ul> - {/if} - {if $lastcontext == 'refsect3'} - </ul> - </ul> - {/if} -</ul> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/tutorial_tree.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/tutorial_tree.tpl deleted file mode 100755 index 40d9a4ff..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/tutorial_tree.tpl +++ /dev/null @@ -1,8 +0,0 @@ - var a{$name|replace:"-":"_"}node = new WebFXTreeItem('{$main.title|strip_tags|escape:"quotes"}','{$main.link}', parent_node); - -{if $haskids} - var a{$name|replace:"-":"_"}_old_parent_node = parent_node; - parent_node = a{$name|replace:"-":"_"}node; - {$kids} - parent_node = a{$name|replace:"-":"_"}_old_parent_node; -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/var.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/var.tpl deleted file mode 100755 index fccf6892..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phpdoc.de/templates/var.tpl +++ /dev/null @@ -1,92 +0,0 @@ -{section name=vars loop=$vars} -{if $vars[vars].static} -<a name="var{$vars[vars].var_name}" id="{$vars[vars].var_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="var-header"> - <span class="var-title"> - static <span class="var-type">{$vars[vars].var_type}</span> - <span class="var-name">{$vars[vars].var_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$vars[vars].var_default|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} - - {if $vars[vars].var_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$vars[vars].var_overrides.link}</dt> - {if $vars[vars].var_overrides.sdesc} - <dd>{$vars[vars].var_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - - {if $vars[vars].descvar} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=vm loop=$vars[vars].descvar} - <li> - {$vars[vars].descvar[vm].link} - {if $vars[vars].descvar[vm].sdesc} - : {$vars[vars].descvar[vm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} - -</div> -{/if} -{/section} - -{section name=vars loop=$vars} -{if !$vars[vars].static} -<a name="var{$vars[vars].var_name}" id="{$vars[vars].var_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="var-header"> - <span class="var-title"> - <span class="var-type">{$vars[vars].var_type}</span> - <span class="var-name">{$vars[vars].var_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$vars[vars].var_default|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} - - {if $vars[vars].var_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$vars[vars].var_overrides.link}</dt> - {if $vars[vars].var_overrides.sdesc} - <dd>{$vars[vars].var_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - - {if $vars[vars].descvar} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=vm loop=$vars[vars].descvar} - <li> - {$vars[vars].descvar[vm].link} - {if $vars[vars].descvar[vm].sdesc} - : {$vars[vars].descvar[vm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} - -</div> -{/if} -{/section} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/options.ini b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/options.ini deleted file mode 100755 index 084809be..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/options.ini +++ /dev/null @@ -1,577 +0,0 @@ -preservedocbooktags = false - -;; used to highlight the {@source} inline tag, @filesource tag, and @example tag -[highlightSourceTokens] -;; format: -;; T_CONSTANTNAME = open -;; /T_CONSTANTNAME = close - -T_INCLUDE = <span class="src-inc"> -/T_INCLUDE = </span> -T_INCLUDE_ONCE = <span class="src-inc"> -/T_INCLUDE_ONCE = </span> -T_REQUIRE_ONCE = <span class="src-inc"> -/T_REQUIRE_ONCE = </span> -T_REQUIRE_ONCE = <span class="src-inc"> -/T_REQUIRE_ONCE = </span> - -T_CONSTANT_ENCAPSED_STRING = <span class="src-str"> -/T_CONSTANT_ENCAPSED_STRING = </span> -T_STRING_VARNAME = <span class="src-str"> -/T_STRING_VARNAME = </span> - -T_STRING = <span class="src-id"> -/T_STRING = </span> - -T_DNUMBER = <span class="src-num"> -/T_DNUMBER = </span> -T_LNUMBER = <span class="src-num"> -/T_LNUMBER = </span> - -T_VARIABLE = <span class="src-var"> -/T_VARIABLE = </span> - -T_COMMENT = <span class="src-comm"> -/T_COMMENT = </span> -T_ML_COMMENT = <span class="src-comm"> -/T_ML_COMMENT = </span> - -T_OBJECT_OPERATOR = <span class="src-sym"> -/T_OBJECT_OPERATOR = </span> - -T_ABSTRACT = <span class="src-key"> -/T_ABSTRACT = </span> -T_CLONE = <span class="src-key"> -/T_CLONE = </span> -T_HALT_COMPILER = <span class="src-key"> -/T_HALT_COMPILER = </span> -T_ARRAY = <span class="src-key"> -/T_ARRAY = </span> -T_AS = <span class="src-key"> -/T_AS = </span> -T_BREAK = <span class="src-key"> -/T_BREAK = </span> -T_CLASS = <span class="src-key"> -/T_CLASS = </span> -T_CASE = <span class="src-key"> -/T_CASE = </span> -T_CONST = <span class="src-key"> -/T_CONST = </span> -T_CONTINUE = <span class="src-key"> -/T_CONTINUE = </span> -T_DECLARE = <span class="src-key"> -/T_DECLARE = </span> -T_DEFAULT = <span class="src-key"> -/T_DEFAULT = </span> -T_ELSE = <span class="src-key"> -/T_ELSE = </span> -T_ELSEIF = <span class="src-key"> -/T_ELSEIF = </span> -T_EMPTY = <span class="src-key"> -/T_EMPTY = </span> -T_ENDDECLARE = <span class="src-key"> -/T_ENDDECLARE = </span> -T_ENDFOR = <span class="src-key"> -/T_ENDFOR = </span> -T_ENDSWITCH = <span class="src-key"> -/T_ENDSWITCH = </span> -T_ENDFOREACH = <span class="src-key"> -/T_ENDFOREACH = </span> -T_ENDIF = <span class="src-key"> -/T_ENDIF = </span> -T_ENDWHILE = <span class="src-key"> -/T_ENDWHILE = </span> -T_EXIT = <span class="src-key"> -/T_EXIT = </span> -T_EXTENDS = <span class="src-key"> -/T_EXTENDS = </span> -T_FINAL = <span class="src-key"> -/T_FINAL = </span> -T_FOR = <span class="src-key"> -/T_FOR = </span> -T_FOREACH = <span class="src-key"> -/T_FOREACH = </span> -T_FUNCTION = <span class="src-key"> -/T_FUNCTION = </span> -T_GLOBAL = <span class="src-key"> -/T_GLOBAL = </span> -T_IF = <span class="src-key"> -/T_IF = </span> -T_IMPLEMENTS = <span class="src-key"> -/T_IMPLEMENTS = </span> -T_INTERFACE = <span class="src-key"> -/T_INTERFACE = </span> -T_LOGICAL_AND = <span class="src-key"> -/T_LOGICAL_AND = </span> -T_LOGICAL_OR = <span class="src-key"> -/T_LOGICAL_OR = </span> -T_LOGICAL_XOR = <span class="src-key"> -/T_LOGICAL_XOR = </span> -T_NEW = <span class="src-key"> -/T_NEW = </span> -T_PRIVATE = <span class="src-key"> -/T_PRIVATE = </span> -T_PROTECTED = <span class="src-key"> -/T_PROTECTED = </span> -T_PUBLIC = <span class="src-key"> -/T_PUBLIC = </span> -T_RETURN = <span class="src-key"> -/T_RETURN = </span> -T_STATIC = <span class="src-key"> -/T_STATIC = </span> -T_SWITCH = <span class="src-key"> -/T_SWITCH = </span> -T_VAR = <span class="src-key"> -/T_VAR = </span> -T_WHILE = <span class="src-key"> -/T_WHILE = </span> - -T_DOUBLE_COLON = <span class="src-sym"> -/T_DOUBLE_COLON = </span> - -T_OPEN_TAG = <span class="src-php"> -/T_OPEN_TAG = </span> -T_OPEN_TAG_WITH_ECHO = <span class="src-php"> -/T_OPEN_TAG_WITH_ECHO = </span> -T_CLOSE_TAG = <span class="src-php"> -/T_CLOSE_TAG = </span> - - -[highlightSource] -;; this is for highlighting things that aren't tokens like "&" -;; format: -;; word = open -;; /word = close -@ = <span class="src-sym"> -/@ = </span> -& = <span class="src-sym"> -/& = </span> -[ = <span class="src-sym"> -/[ = </span> -] = <span class="src-sym"> -/] = </span> -! = <span class="src-sym"> -/! = </span> -";" = <span class="src-sym"> -/; = </span> -( = <span class="src-sym"> -/( = </span> -) = <span class="src-sym"> -/) = </span> -, = <span class="src-sym"> -/, = </span> -{ = <span class="src-sym"> -/{ = </span> -} = <span class="src-sym"> -/} = </span> -""" = <span class="src-str"> -/" = </span> - -[highlightDocBlockSourceTokens] -;; this is for docblock tokens, using by phpDocumentor_HighlightParser -;; tagphptype is for "string" in @param string description, for example -docblock = <span class="src-doc"> -/docblock = </span> -tagphptype = <span class="src-doc-type"> -/tagphptype = </span> -tagvarname = <span class="src-doc-var"> -/tagvarname = </span> -coretag = <span class="src-doc-coretag"> -/coretag = </span> -tag = <span class="src-doc-tag"> -/tag = </span> -inlinetag = <span class="src-doc-inlinetag"> -/inlinetag = </span> -internal = <span class="src-doc-internal"> -/internal = </span> -closetemplate = <span class="src-doc-close-template"> -/closetemplate = </span> -docblocktemplate = <span class="src-doc-template"> -/docblocktemplate = </span> - -[highlightTutorialSourceTokens] -;; this is for XML DocBook-based tutorials, highlighted by phpDocumentor_TutorialHighlightParser -;; <tag> -opentag = <span class="tute-tag"> -/opentag = </span> -;; </tag> -closetag = <span class="tute-tag"> -/closetag = </span> -;; <tag attribute="value"> -attribute = <span class="tute-attribute-name"> -/attribute = </span> -;; <tag attribute="value"> -attributevalue = <span class="tute-attribute-value"> -/attributevalue = </span> -;; &entity; -entity = <span class="tute-entity"> -/entity = </span> -;; <!-- comment --> -comment = <span class="tute-comment"> -/comment = </span> -;; {@inline tag} -itag = <span class="tute-inline-tag"> -/itag = </span> - -;; used for translation of html in DocBlocks -[desctranslate] -ul = <ul> -/ul = </ul> -ol = <ol> -/ol = </ol> -li = <li> -/li = </li> -code = -/code = -var = <var> -/var = </var> -samp = <samp> -/samp = </samp> -kbd = <kbd> -/kbd = </kbd> -pre = <pre> -/pre = </pre> -p = <p> -/p = </p> -b = <strong> -/b = </strong> -i = <em> -/i = </em> -br = <br /> - -[ppage] -;; this is the DocBook package page translation section. All DocBook tags -;; that have a corresponding html tag must be listed here. Entities should -;; also be listed here -;; -;; examples: -;; 1) -;; tagname = newtagname -;; -;; This is the simplest case, where all attributes will be added into the -;; starting tag and the ending tag will be html/xml style </tranlatedtagname> -;; <tagname></tagname> becomes <newtagname></newtagname> and -;; <tagname attr="value"></tagname> becomes -;; <newtagname attr="value"></newtagname> -;; -;; 2) -;; tagname = newtagname -;; tagname->attr = newattrname -;; -;; in this case, everything will be like the first case, except tags like: -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="value"></newtagname> -;; -;; 3) -;; tagname = newtagname -;; tagname->attr = newattrname -;; tagname->attr+value = newvalue -;; -;; in this case, the value is also translated to another. This can be useful -;; for instances such as focus="middle" changing to align="center" or something -;; of that nature. -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 4) -;; tagname = newtagname -;; tagname->attr1 = newattrname -;; tagname->attr2 = newattrname -;; tagname->attr1+value|attr2+value = newvalue -;; -;; in this case, two attributes combine to make one new attribute, and the combined -;; value is translated into a new value -;; <tagname attr1="value1" attr2="value2"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 5) -;; tagname = newtagname -;; tagname!attr = dummy -;; -;; here, the attribute will be ignored. dummy is not used and may be any value -;; <tagname attr="value"></tagname> will become -;; <newtagname></newtagname> -;; -;; 6) -;; tagname = newtagname -;; tagname! = dummy -;; -;; here, all attributes will be ignored. dummy is not used and may be any value -;; <tagname attr1="value" attr2="foo"></tagname> will become -;; <newtagname></newtagname> -;; -;; 7) -;; tagname = newtagname -;; tagname/ = 1 -;; -;; here, the tag will be translated as a single tag with no closing tag, and all -;; attributes -;; <tagname attr="val">{text text}</tagname> will become -;; <newtagname attr="val" /> -;; -;; 8) -;; tagname = <starttaginfo /> -;; /tagname = closetagtext -;; -;; in this case, the text <starttaginfo> will be inserted exactly as entered for -;; <tagname> and closetagtext for </tagname> -;; <tagname attr="val"></tagname> will become -;; <starttaginfo />closetagtext -;; -;; 9) -;; $attr$my_attribute = newattrname -;; -;; tagname = newtagname -;; -;; in this case, all occurences of my_attribute in any tag will be changed to -;; newattrname. This is useful for changing things like role="php" to -;; class="php," for example. Note that the text "$attr$" MUST be on the line -;; start for phpDocumentor to recognize it. -;; -;; 10) -;; &entity; = translation text -;; " = " -;; " = """ -;; < = < -;; -;; Use this to control translation of entities to their appropriate values - - = -" = " -” = ” -“ = “ -& = & -< = < -> = > -© = © - - -$attr$role = class - -abbrev = abbr - -blockquote = blockquote - -arg = span -arg->choice = class - -author = <span class="author"> -/author = </span> -author! = 0 - -authorblurb = <div class="author-blurb"> -/authorblurb = </div> - -authorgroup = <div class="authors"><h2 class="title">Authors</h2> -/authorgroup = </div> -authorgroup! = 0 - -caution = <span class="warning"> -/caution = </span> -caution! = 0 - -cmdsynopsis = <div class="cmd-synopsis"> -/cmdsynopsis = </div> - -command = <span class="cmd-title"> -/command = </span> - -copyright = <div class="notes"> -/copyright = </div> - -emphasis = em - -example = <div class="src-code"> -/example = </div> -example! = 0 - -function = -/function = () - -formalpara = p - -graphic = img -graphic->fileref = src -graphic/ = - -important = strong - -informalequation = blockquote - -informalexample = div - -inlineequation = em - -itemizedlist = ul - -listitem = li - -literal = code - -literallayout = span - -option = " " -/option = - -orderedlist = ol - -para = p - -programlisting = <div class="src-code"> -/programlisting = </div> -programlisting! = 0 - -refentry = div - -refnamediv = <div class="ref-title-box"> -/refnamediv = </div> -refnamediv! = 0 - -refname = <h1 class="ref-title"> -/refname = </h1> - -refpurpose = <h2 class="ref-purpose"> -/refpurpose = </h2> - -refsynopsisdiv = <div class="ref-synopsis"> -/refsynopsisdiv = </div> -refsynopsisdiv! = 0 - -refsect1 = span - -refsect2 = span - -refsect3 = -/refsect3 = <br /> - -releaseinfo = <div class="release-info">( -/releaseinfo = )</div> - -simpara = -/simpara = <br /> -simpara! = 0 - -subscript = sub - -superscript = super - -table = table - -table->colsep = rules -table->rowsep = rules -table->colsep+1|rowsep+1 =all -table->colsep+1|rowsep+0 =cols -table->colsep+0|rowsep+1 =rows - -table->frame =frame -table->frame+all =border -table->frame+none =void -table->frame+sides =vsides -table->frame+top =above -table->frame+topbot =hsides - -thead = thead - -tfoot = tfoot - -tbody = tbody - -colspec = col - -tgroup = colgroup -tgroup/ = 1 -tgroup->cols = span - -row = tr - -entry = td -entry->morerows = colspan -entry->morerows+1 =2 -entry->morerows+2 =3 -entry->morerows+3 =4 -entry->morerows+4 =5 -entry->morerows+5 =6 -entry->morerows+6 =7 -entry->morerows+7 =8 -entry->morerows+8 =9 -entry->morerows+9 =10 -entry->morerows+10 =11 -;; add more if you need more colspans - -warning = <span class="warning"> -/warning = </span> -warning! = 0 - -;; now begins the attributes that should be tags in cdata -[$attr$id] -open = a -;close = /a -cdata! = true -quotevalues = true -separator = "=" -;separateall = true -$id = name - -;; now begins the sections that deal with <title> -[refsynopsisdiv_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h1 class="title"> -close = </h1> - -[refsect1_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h2 class="title"> -close = </h2> - -[refsect2_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h3 class="title"> -close = </h3> - -[refsect3_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h4 class="title"> -close = </h4> - -[para_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <div class="title"> -close = </div> - -[formalpara_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <div class="title"> -close = </div> - -[example_title] -;tag_attr = true -;attr_name = title -;cdata_start = true -cdata_end = true -open = </td></tr><tr><td><strong> -close = </strong> - -[table_title] -;tag_attr = true -;attr_name = true -cdata_start = true -open = <caption> -close = </caption> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/basicindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/basicindex.tpl deleted file mode 100755 index 951ee264..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/basicindex.tpl +++ /dev/null @@ -1,47 +0,0 @@ -<div class="index-letter-menu"> -{section name=letter loop=$letters} - <a class="index-letter" href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> -{/section} -</div> - -{section name=index loop=$index} - <a name="{$index[index].letter}"></a> - <div class="index-letter-section"> - <div style="float: left" class="index-letter-title">{$index[index].letter}</div> - <div style="float: right"><a href="#top">top</a></div> - <div style="clear: both"></div> - </div> - <dl> - {section name=contents loop=$index[index].index} - <dt class="field"> - {if ($index[index].index[contents].title == "Variable")} - <span class="var-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Global")} - <span class="var-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Method")} - <span class="method-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Function")} - <span class="method-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Constant")} - <span class="const-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Page") || ($index[index].index[contents].title == "Include")} - <span class="include-title">{$index[index].index[contents].name}</span> - {else} - {$index[index].index[contents].name} - {/if} - </dt> - <dd class="index-item-body"> - <div class="index-item-details">{$index[index].index[contents].link} in {$index[index].index[contents].file_name}</div> - {if $index[index].index[contents].description} - <div class="index-item-description">{$index[index].index[contents].description}</div> - {/if} - </dd> - {/section} - </dl> -{/section} - -<div class="index-letter-menu"> -{section name=letter loop=$letters} - <a class="index-letter" href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> -{/section} -</div> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/blank.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/blank.tpl deleted file mode 100755 index 6a05f27e..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/blank.tpl +++ /dev/null @@ -1,13 +0,0 @@ -<html> -<head> - <title>{$maintitle}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> -</head> -<body> -<div align="center"><h1>{$maintitle}</h1></div> -<b>Welcome to {$package}!</b><br /> -<br /> -This documentation was generated by <a href="{$phpdocwebsite}">phpDocumentor v{$phpdocversion}</a><br /> -</body> -</html>
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/class.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/class.tpl deleted file mode 100755 index 9ab7c455..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/class.tpl +++ /dev/null @@ -1,429 +0,0 @@ -{include file="header.tpl" top3=true} - -<h2 class="class-name">{if $is_interface}Interface{else}Class{/if} {$class_name}</h2> - -<a name="sec-description"></a> -<div class="info-box"> - <div class="info-box-title">Description</div> - <div class="nav-bar"> - {if $children || $vars || $ivars || $methods || $imethods || $consts || $iconsts } - <span class="disabled">Description</span> | - {/if} - {if $children} - <a href="#sec-descendents">Descendents</a> - {if $vars || $ivars || $methods || $imethods || $consts || $iconsts}|{/if} - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {if $methods || $imethods}|{/if} - {/if} - {if $methods || $imethods} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {if $implements} - <p class="implements"> - Implements interfaces: - <ul> - {foreach item="int" from=$implements}<li>{$int}</li>{/foreach} - </ul> - </p> - {/if} - {include file="docblock.tpl" type="class" sdesc=$sdesc desc=$desc} - <p class="notes"> - Located in <a class="field" href="{$page_link}">{$source_location}</a> (line <span class="field">{if $class_slink}{$class_slink}{else}{$line_number}{/if}</span>) - </p> - - {if $tutorial} - <hr class="separator" /> - <div class="notes">Tutorial: <span class="tutorial">{$tutorial}</span></div> - {/if} - - <pre>{section name=tree loop=$class_tree.classes}{$class_tree.classes[tree]}{$class_tree.distance[tree]}{/section}</pre> - - {if $conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with classes:</span><br /> - {section name=me loop=$conflicts.conflicts} - {$conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - </div> -</div> - -{if $children} - <a name="sec-descendents"></a> - <div class="info-box"> - <div class="info-box-title">Direct descendents</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - <span class="disabled">Descendents</span> - {if $vars || $ivars || $methods || $imethods}|{/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {if $methods || $imethods}|{/if} - {/if} - {if $methods || $imethods} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <table cellpadding="2" cellspacing="0" class="class-table"> - <tr> - <th class="class-table-header">Class</th> - <th class="class-table-header">Description</th> - </tr> - {section name=kids loop=$children} - <tr> - <td style="padding-right: 2em">{$children[kids].link}</td> - <td> - {if $children[kids].sdesc} - {$children[kids].sdesc} - {else} - {$children[kids].desc} - {/if} - </td> - </tr> - {/section} - </table> - </div> - </div> -{/if} - -{if $consts} - <a name="sec-const-summary"></a> - <div class="info-box"> - <div class="info-box-title">Class Constant Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendants</a> | - {/if} - <span class="disabled">Constants</span> (<a href="#sec-consts">details</a>) - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - | - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <div class="const-summary"> - {section name=consts loop=$consts} - <div class="const-title"> - <img src="{$subdir}media/images/Constant.png" alt=" " /> - <a href="#{$consts[consts].const_name}" title="details" class="const-name">{$consts[consts].const_name}</a> = <span class="var-type">{$consts[consts].const_value}</span> - - </div> - {/section} - </div> - </div> - </div> -{/if} - -{if $vars} - <a name="sec-var-summary"></a> - <div class="info-box"> - <div class="info-box-title">Variable Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - <span class="disabled">Vars</span> (<a href="#sec-vars">details</a>) - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <div class="var-summary"> - {section name=vars loop=$vars} - {if $vars[vars].static} - <div class="var-title"> - static <span class="var-type">{$vars[vars].var_type}</span> - <a href="#{$vars[vars].var_name}" title="details" class="var-name">{$vars[vars].var_name}</a> - </div> - {/if} - {/section} - {section name=vars loop=$vars} - {if !$vars[vars].static} - <div class="var-title"> - <span class="var-type">{$vars[vars].var_type}</span> - <a href="#{$vars[vars].var_name}" title="details" class="var-name">{$vars[vars].var_name}</a> - </div> - {/if} - {/section} - </div> - </div> - </div> -{/if} - -{if $methods} - <a name="sec-method-summary"></a> - <div class="info-box"> - <div class="info-box-title">Method Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - | - {/if} - <span class="disabled">Methods</span> (<a href="#sec-methods">details</a>) - </div> - <div class="info-box-body"> - <div class="method-summary"> - {section name=methods loop=$methods} - {if $methods[methods].static} - <div class="method-definition"> - static {if $methods[methods].function_return} - <span class="method-result">{$methods[methods].function_return}</span> - {/if} - <a href="#{$methods[methods].function_name}" title="details" class="method-name">{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}</a> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - {/if} - {/section} - {section name=methods loop=$methods} - {if !$methods[methods].static} - <div class="method-definition"> - {if $methods[methods].function_return} - <span class="method-result">{$methods[methods].function_return}</span> - {/if} - <a href="#{$methods[methods].function_name}" title="details" class="method-name">{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}</a> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - {/if} - {/section} - </div> - </div> - </div> -{/if} - -{if $vars || $ivars} - <a name="sec-vars"></a> - <div class="info-box"> - <div class="info-box-title">Variables</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $methods} - <a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Vars</span> - {/if} - - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {include file="var.tpl"} - {if $ivars} - <h4>Inherited Variables</h4> - <A NAME='inherited_vars'><!-- --></A> - {section name=ivars loop=$ivars} - <p>Inherited from <span class="classname">{$ivars[ivars].parent_class}</span></p> - <blockquote> - {section name=ivars2 loop=$ivars[ivars].ivars} - <span class="var-title"> - <span class="var-name">{$ivars[ivars].ivars[ivars2].link}</span>{if $ivars[ivars].ivars[ivars2].ivar_sdesc}: {$ivars[ivars].ivars[ivars2].ivar_sdesc}{/if}<br> - </span> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{if $methods || $imethods} - <a name="sec-methods"></a> - <div class="info-box"> - <div class="info-box-title">Methods</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Methods</span> - {/if} - </div> - <div class="info-box-body"> - {include file="method.tpl"} - {if $imethods} - <h4>Inherited Methods</h4> - <a name='inherited_methods'><!-- --></a> - {section name=imethods loop=$imethods} - <!-- =========== Summary =========== --> - <p>Inherited From <span class="classname">{$imethods[imethods].parent_class}</span></p> - <blockquote> - {section name=im2 loop=$imethods[imethods].imethods} - <span class="method-name">{$imethods[imethods].imethods[im2].link}</span>{if $imethods[imethods].imethods[im2].ifunction_sdesc}: {$imethods[imethods].imethods[im2].ifunction_sdesc}{/if}<br> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{if $consts || $iconsts} - <a name="sec-consts"></a> - <div class="info-box"> - <div class="info-box-title">Class Constants</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendants</a> | - {/if} - {if $methods} - <a href="#sec-var-summary">Constants</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Constants</span> - {/if} - - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {include file="const.tpl"} - {if $iconsts} - <h4>Inherited Constants</h4> - <A NAME='inherited_vars'><!-- --></A> - {section name=iconsts loop=$iconsts} - <p>Inherited from <span class="classname">{$iconsts[iconsts].parent_class}</span></p> - <blockquote> - {section name=iconsts2 loop=$iconsts[iconsts].iconsts} - <img src="{$subdir}media/images/{if $iconsts[iconsts].iconsts[iconsts2].access == 'private'}PrivateVariable{else}Variable{/if}.png" /> - <span class="const-title"> - <span class="const-name">{$iconsts[iconsts].iconsts[iconsts2].link}</span>{if $iconsts[iconsts].iconsts[iconsts2].iconst_sdesc}: {$iconsts[iconsts].iconsts[iconsts2].iconst_sdesc}{/if}<br> - </span> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{include file="footer.tpl" top3=true} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/classtrees.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/classtrees.tpl deleted file mode 100755 index 952e6d50..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/classtrees.tpl +++ /dev/null @@ -1,19 +0,0 @@ -{include file="header.tpl" top1=true} - -<!-- Start of Class Data --> -<H2> - {$smarty.capture.title} -</H2> -{if $interfaces} -{section name=classtrees loop=$interfaces} -<h2>Root interface {$interfaces[classtrees].class}</h2> -{$interfaces[classtrees].class_tree} -{/section} -{/if} -{if $classtrees} -{section name=classtrees loop=$classtrees} -<h2>Root class {$classtrees[classtrees].class}</h2> -{$classtrees[classtrees].class_tree} -{/section} -{/if} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/const.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/const.tpl deleted file mode 100644 index c26ff92d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/const.tpl +++ /dev/null @@ -1,18 +0,0 @@ -{section name=consts loop=$consts} -<a name="const{$consts[consts].const_name}" id="{$consts[consts].const_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="const-header"> - <img src="{$subdir}media/images/{if $consts[consts].access == 'private'}PrivateVariable{else}Variable{/if}.png" /> - <span class="const-title"> - <span class="const-name">{$consts[consts].const_name}</span> - = <span class="const-default">{$consts[consts].const_value|replace:"\n":"<br />"}</span> - (line <span class="line-number">{if $consts[consts].slink}{$consts[consts].slink}{else}{$consts[consts].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$consts[consts].sdesc desc=$consts[consts].desc tags=$consts[consts].tags} - -</div> -{/section} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/define.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/define.tpl deleted file mode 100755 index 0da5d864..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/define.tpl +++ /dev/null @@ -1,24 +0,0 @@ -{section name=def loop=$defines} -<a name="{$defines[def].define_link}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="const-title"> - <span class="const-name">{$defines[def].define_name}</span> = {$defines[def].define_value|replace:"\n":"<br />"} - (line <span class="line-number">{if $defines[def].slink}{$defines[def].slink}{else}{$defines[def].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$defines[def].sdesc desc=$defines[def].desc tags=$defines[def].tags} - - {if $globals[glob].global_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with constants:</span><br /> - {section name=me loop=$defines[def].define_conflicts.conflicts} - {$defines[def].define_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/docblock.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/docblock.tpl deleted file mode 100755 index 783d5271..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/docblock.tpl +++ /dev/null @@ -1,14 +0,0 @@ -<!-- ========== Info from phpDoc block ========= --> -{if $sdesc} -<p class="short-description">{$sdesc}</p> -{/if} -{if $desc} -<p class="description">{$desc}</p> -{/if} -{if $tags} - <ul class="tags"> - {section name=tags loop=$tags} - <li><span class="field">{$tags[tags].keyword}:</span> {$tags[tags].data}</li> - {/section} - </ul> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/elementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/elementindex.tpl deleted file mode 100755 index d5964f99..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/elementindex.tpl +++ /dev/null @@ -1,12 +0,0 @@ -{include file="header.tpl" noleftindex=true} -<a name="top"></a> -<h2>Full index</h2> -<h3>Package indexes</h3> -<ul> -{section name=p loop=$packageindex} - <li><a href="elementindex_{$packageindex[p].title}.html">{$packageindex[p].title}</a></li> -{/section} -</ul> -<br /> -{include file="basicindex.tpl" indexname="elementindex"} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/errors.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/errors.tpl deleted file mode 100755 index 0f526584..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/errors.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{include file="header.tpl" noleftindex=true} -{section name=files loop=$files} -<a href="#{$files[files].file}">{$files[files].file}</a><br> -{/section} -{foreach key=file item=issues from=$all} -<a name="{$file}"></a> -<h1>{$file}</h1> -{if count($issues.warnings)} -<h2>Warnings:</h2><br> -{section name=warnings loop=$issues.warnings} -<b>{$issues.warnings[warnings].name}</b> - {$issues.warnings[warnings].listing}<br> -{/section} -{/if} -{if count($issues.errors)} -<h2>Errors:</h2><br> -{section name=errors loop=$issues.errors} -<b>{$issues.errors[errors].name}</b> - {$issues.errors[errors].listing}<br> -{/section} -{/if} -{/foreach} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/examplesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/examplesource.tpl deleted file mode 100755 index 8abf74ce..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/examplesource.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl" title=$title} -<h1>{$title}</h1> -<div class="listing"> -{$source} -</div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/filesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/filesource.tpl deleted file mode 100755 index 239f7b41..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/filesource.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{capture name="tutle"}File Source for {$name}{/capture} -{include file="header.tpl" title=$smarty.capture.tutle} -<h1>Source for file {$name}</h1> -<p>Documentation is available at {$docs}</p> -<div class="src-code"> -{$source} -</div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/footer.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/footer.tpl deleted file mode 100755 index 8d0f79db..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/footer.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{if !$index} - <p class="notes" id="credit"> - Documentation generated on {$date} by <a href="{$phpdocwebsite}" target="_blank">phpDocumentor {$phpdocversion}</a> - </p> -{/if} - {if $top3}</div>{/if} -</body> -</html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/function.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/function.tpl deleted file mode 100755 index b6880059..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/function.tpl +++ /dev/null @@ -1,44 +0,0 @@ -{section name=func loop=$functions} -<a name="{$functions[func].function_dest}" id="{$functions[func].function_dest}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="method-title">{$functions[func].function_name}</span> (line <span class="line-number">{if $functions[func].slink}{$functions[func].slink}{else}{$functions[func].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$functions[func].sdesc desc=$functions[func].desc tags=$functions[func].tags params=$functions[func].params function=false} - - <div class="method-signature"> - <span class="method-result">{$functions[func].function_return}</span> - <span class="method-name"> - {if $functions[func].ifunction_call.returnsref}&{/if}{$functions[func].function_name} - </span> - {if count($functions[func].ifunction_call.params)} - ({section name=params loop=$functions[func].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $functions[func].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$functions[func].ifunction_call.params[params].type}</span> <span class="var-name">{$functions[func].ifunction_call.params[params].name}</span>{if $functions[func].ifunction_call.params[params].hasdefault} = <span class="var-default">{$functions[func].ifunction_call.params[params].default|escape:"html"}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $functions[func].params} - <ul class="parameters"> - {section name=params loop=$functions[func].params} - <li> - <span class="var-type">{$functions[func].params[params].datatype}</span> - <span class="var-name">{$functions[func].params[params].var}</span>{if $functions[func].params[params].data}<span class="var-description">: {$functions[func].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $functions[func].function_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with functions:</span><br /> - {section name=me loop=$functions[func].function_conflicts.conflicts} - {$functions[func].function_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/global.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/global.tpl deleted file mode 100755 index eab7e0b0..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/global.tpl +++ /dev/null @@ -1,26 +0,0 @@ -{section name=glob loop=$globals} -<a name="{$globals[glob].global_link}" id="{$globals[glob].global_link}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="var-title"> - <span class="var-type">{$globals[glob].global_type}</span> - <span class="var-name">{$globals[glob].global_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$globals[glob].global_value|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $globals[glob].slink}{$globals[glob].slink}{else}{$globals[glob].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$globals[glob].sdesc desc=$globals[glob].desc tags=$globals[glob].tags} - - {if $globals[glob].global_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with global variables:</span><br /> - {section name=me loop=$globals[glob].global_conflicts.conflicts} - {$globals[glob].global_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/header.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/header.tpl deleted file mode 100755 index 0d626190..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/header.tpl +++ /dev/null @@ -1,95 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <!-- template designed by Marco Von Ballmoos --> - <title>{$title}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - {if $top2 || $top3} - <script src="{$subdir}media/lib/classTree.js"></script> - {/if} - {if $top2} - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> - {/if} - {if $top3 || $top2} - <script language="javascript" type="text/javascript"> - var imgPlus = new Image(); - var imgMinus = new Image(); - imgPlus.src = "{$subdir}media/images/plus.png"; - imgMinus.src = "{$subdir}media/images/minus.png"; - - function showNode(Node){ldelim} - switch(navigator.family){ldelim} - case 'nn4': - // Nav 4.x code fork... - var oTable = document.layers["span" + Node]; - var oImg = document.layers["img" + Node]; - break; - case 'ie4': - // IE 4/5 code fork... - var oTable = document.all["span" + Node]; - var oImg = document.all["img" + Node]; - break; - case 'gecko': - // Standards Compliant code fork... - var oTable = document.getElementById("span" + Node); - var oImg = document.getElementById("img" + Node); - break; - {rdelim} - oImg.src = imgMinus.src; - oTable.style.display = "block"; - {rdelim} - - function hideNode(Node){ldelim} - switch(navigator.family){ldelim} - case 'nn4': - // Nav 4.x code fork... - var oTable = document.layers["span" + Node]; - var oImg = document.layers["img" + Node]; - break; - case 'ie4': - // IE 4/5 code fork... - var oTable = document.all["span" + Node]; - var oImg = document.all["img" + Node]; - break; - case 'gecko': - // Standards Compliant code fork... - var oTable = document.getElementById("span" + Node); - var oImg = document.getElementById("img" + Node); - break; - {rdelim} - oImg.src = imgPlus.src; - oTable.style.display = "none"; - {rdelim} - - function nodeIsVisible(Node){ldelim} - switch(navigator.family){ldelim} - case 'nn4': - // Nav 4.x code fork... - var oTable = document.layers["span" + Node]; - break; - case 'ie4': - // IE 4/5 code fork... - var oTable = document.all["span" + Node]; - break; - case 'gecko': - // Standards Compliant code fork... - var oTable = document.getElementById("span" + Node); - break; - {rdelim} - return (oTable && oTable.style.display == "block"); - {rdelim} - - function toggleNodeVisibility(Node){ldelim} - if (nodeIsVisible(Node)){ldelim} - hideNode(Node); - {rdelim}else{ldelim} - showNode(Node); - {rdelim} - {rdelim} - </script> - {/if} - </head> - <body> - {if $top3}<div class="page-body">{/if} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/include.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/include.tpl deleted file mode 100755 index c2419e5f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/include.tpl +++ /dev/null @@ -1,16 +0,0 @@ -{section name=includes loop=$includes} -<a name="{$includes[includes].include_file}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="include-title"> - <span class="include-type">{$includes[includes].include_name}</span> - (<span class="include-name">{$includes[includes].include_value}</span>) - (line <span class="line-number">{if $includes[includes].slink}{$includes[includes].slink}{else}{$includes[includes].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$includes[includes].sdesc desc=$includes[includes].desc tags=$includes[includes].tags} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/index.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/index.tpl deleted file mode 100755 index 7cd61094..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/index.tpl +++ /dev/null @@ -1,24 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html - PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//FR" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> -<head> - <!-- Generated by phpDocumentor on {$date} --> - <title>{$title}</title> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> -</head> - -<FRAMESET rows='120,*'> - <FRAME src='packages.html' name='left_top' frameborder="1" bordercolor="#999999"> - <FRAMESET cols='25%,*'> - <FRAME src='{$start}' name='left_bottom' frameborder="1" bordercolor="#999999"> - <FRAME src='{$blank}.html' name='right' frameborder="1" bordercolor="#999999"> - </FRAMESET> - <NOFRAMES> - <H2>Frame Alert</H2> - <P>This document is designed to be viewed using the frames feature. - If you see this message, you are using a non-frame-capable web client.</P> - </NOFRAMES> -</FRAMESET> -</HTML> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/left_frame.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/left_frame.tpl deleted file mode 100755 index a30f167d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/left_frame.tpl +++ /dev/null @@ -1,216 +0,0 @@ -{include file="header.tpl" top2=true} -<h3 class="package-title">{$info.0.package}</h3> -<div class="tree"> -<script language="Javascript"> -if (document.getElementById) {ldelim} -{section name=p loop=$info} - {if $info[p].subpackage == ""} - var tree = new WebFXTree('<span class="package">{$info.0.package}</span>'); - tree.setBehavior('classic'); - - {if $hastodos} - var todos = new WebFXTreeItem('To-do List', '{$todolink}'); - tree.add(todos); - {/if} - - var class_trees = new WebFXTreeItem('Class trees', '{$classtreepage}.html'); - tree.add(class_trees); - - var elements = new WebFXTreeItem('Index of elements', '{$elementindex}.html'); - tree.add(elements); - - var parent_node; - - {if $info[p].tutorials} - var tree_tutorial = new WebFXTreeItem('Tutorial(s)/Manual(s)', ''); - tree.add(tree_tutorial); - - {if $info[p].tutorials.pkg} - var tree_inner_tutorial = new WebFXTreeItem('Package-level', ''); - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.pkg} - {$info[p].tutorials.pkg[ext]} - {/section} - {/if} - - {if $info[p].tutorials.cls} - var tree_inner_tutorial = new WebFXTreeItem('Class-level', ''); - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.cls} - {$info[p].tutorials.cls[ext]} - {/section} - {/if} - - {if $info[p].tutorials.proc} - var tree_inner_tutorial = new WebFXTreeItem('Function-level', ''); - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.proc} - {$info[p].tutorials.proc[ext]} - {/section} - {/if} - {/if} - - {if $info[p].hasinterfaces} - {if $info[p].classes} - var tree_classe = new WebFXTreeItem('Interface(s)', '{$packagedoc}'); - - {section name=class loop=$info[p].classes} - {if $info[p].classes[class].is_interface} - var classe = new WebFXTreeItem('{$info[p].classes[class].title|escape:"quotes"}', '{$info[p].classes[class].link|escape:"quotes"}'); - tree_classe.add(classe); - {/if} - {/section} - - tree.add(tree_classe); - {/if} - {/if} - {if $info[p].hasclasses} - {if $info[p].classes} - var tree_classe = new WebFXTreeItem('Class(es)', '{$packagedoc}'); - - {section name=class loop=$info[p].classes} - {if $info[p].classes[class].is_class} - var classe = new WebFXTreeItem('{$info[p].classes[class].title|escape:"quotes"}', '{$info[p].classes[class].link|escape:"quotes"}'); - tree_classe.add(classe); - {/if} - {/section} - - tree.add(tree_classe); - {/if} - {/if} - - {if $info[p].functions} - var tree_function = new WebFXTreeItem('Function(s)', '{$packagedoc|escape:"quotes"}'); - - {section name=nonclass loop=$info[p].functions} - var fic = new WebFXTreeItem('{$info[p].functions[nonclass].title|escape:"quotes"}', '{$info[p].functions[nonclass].link|escape:"quotes"}'); - tree_function.add(fic); - {/section} - - tree.add(tree_function); - {/if} - - {if $info[p].files} - var tree_file = new WebFXTreeItem('File(s)', '{$packagedoc|escape:"quotes"}'); - - {section name=nonclass loop=$info[p].files} - var file = new WebFXTreeItem('{$info[p].files[nonclass].title|escape:"quotes"}', '{$info[p].files[nonclass].link|escape:"quotes"}'); - tree_file.add(file); - {/section} - - tree.add(tree_file); - {/if} - - {else} - {if $info[p].subpackagetutorial} - var subpackagetree = new WebFXTreeItem('<span class="sub-package">{$info[p].subpackagetutorialtitle|strip_tags}</span>', '{$info[p].subpackagetutorialnoa}'); - {else} - var subpackagetree = new WebFXTreeItem('<span class="sub-package">{$info[p].subpackage}</span>', '{$packagedoc|escape:"quotes"}'); - {/if} - - {if $info[p].tutorials} - var tree_tutorial = new WebFXTreeItem('Tutorial(s)/Manual(s)', ''); - tree.add(tree_tutorial); - - {if $info[p].tutorials.pkg} - var tree_inner_tutorial = new WebFXTreeItem('Package-level', ''); - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.pkg} - {$info[p].tutorials.pkg[ext]} - {/section} - {/if} - - {if $info[p].tutorials.cls} - var tree_inner_tutorial = new WebFXTreeItem('Class-level', ''); - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.cls} - {$info[p].tutorials.cls[ext]} - {/section} - {/if} - - {if $info[p].tutorials.proc} - var tree_inner_tutorial = new WebFXTreeItem('Function-level', ''); - tree_tutorial.add(tree_inner_tutorial); - - parent_node = tree_inner_tutorial; - {section name=ext loop=$info[p].tutorials.proc} - {$info[p].tutorials.proc[ext]} - {/section} - {/if} - {/if} - - {if $info[p].hasinterfaces} - {if $info[p].classes} - var subpackagetree_classe = new WebFXTreeItem('Interface(s)', '{$packagedoc}'); - - {section name=class loop=$info[p].classes} - {if $info[p].classes[class].is_interface} - var classe = new WebFXTreeItem('{$info[p].classes[class].title|escape:"quotes"}', '{$info[p].classes[class].link|escape:"quotes"}'); - subpackagetree_classe.add(classe); - {/if} - {/section} - - subpackagetree.add(subpackagetree_classe); - {/if} - {/if} - {if $info[p].hasclasses} - {if $info[p].classes} - var subpackagetree_classe = new WebFXTreeItem('Class(es)', '{$packagedoc|escape:"quotes"}'); - - {section name=class loop=$info[p].classes} - {if $info[p].classes[class].is_class} - var classe = new WebFXTreeItem('{$info[p].classes[class].title|escape:"quotes"}', '{$info[p].classes[class].link|escape:"quotes"}'); - subpackagetree_classe.add(classe); - {/if} - {/section} - - subpackagetree.add(subpackagetree_classe); - {/if} - {/if} - - {if $info[p].functions} - var subpackagetree_function = new WebFXTreeItem('Function(s)', '{$packagedoc|escape:"quotes"}'); - - {section name=nonclass loop=$info[p].functions} - var fic = new WebFXTreeItem('{$info[p].functions[nonclass].title|escape:"quotes"}', '{$info[p].functions[nonclass].link|escape:"quotes"}'); - subpackagetree_function.add(fic); - {/section} - - subpackagetree.add(subpackagetree_function); - {/if} - - {if $info[p].files} - var subpackagetree_file = new WebFXTreeItem('File(s)', '{$packagedoc|escape:"quotes"}'); - - {section name=nonclass loop=$info[p].files} - var file = new WebFXTreeItem('{$info[p].files[nonclass].title|escape:"quotes"}', '{$info[p].files[nonclass].link|escape:"quotes"}'); - subpackagetree_file.add(file); - {/section} - - subpackagetree.add(subpackagetree_file); - {/if} - - tree.add(subpackagetree); - {/if} -{/section} - -document.write(tree); -{rdelim} -</script> -</div> -<p class="notes"> - Generated by - <a href="{$phpdocwebsite}" target="_blank">phpDocumentor <span class="field">{$phpdocversion}</span></a> -</p> -</body> -</html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/banner.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/banner.css deleted file mode 100755 index ba1a7ba5..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/banner.css +++ /dev/null @@ -1,32 +0,0 @@ -body -{ - background-color: #DDDDDD; - margin: 0px; - padding: 0px; -} - -/* Banner (top bar) classes */ - -.banner { } - -.banner-menu -{ - clear: both; - padding: .5em; - border-top: 2px solid #999999; -} - -.banner-title -{ - text-align: right; - font-size: 20pt; - font-weight: bold; - margin: .2em; -} - -.package-selector -{ - background-color: #CCCCCC; - border: 1px solid black; - color: blue; -} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/I.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/I.png Binary files differdeleted file mode 100755 index e8512fb9..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/I.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/L.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/L.png Binary files differdeleted file mode 100755 index eb334eda..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/L.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/Lminus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/Lminus.png Binary files differdeleted file mode 100755 index f7c43c0a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/Lminus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/Lplus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/Lplus.png Binary files differdeleted file mode 100755 index 848ec2fc..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/Lplus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/T.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/T.png Binary files differdeleted file mode 100755 index 30173254..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/T.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/Tminus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/Tminus.png Binary files differdeleted file mode 100755 index 2260e424..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/Tminus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/Tplus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/Tplus.png Binary files differdeleted file mode 100755 index 2c8d8f4f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/Tplus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/blank.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/blank.png Binary files differdeleted file mode 100755 index cee9cd37..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/blank.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/empty.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/empty.png Binary files differdeleted file mode 100755 index d5683865..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/empty.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/minus.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/minus.gif Binary files differdeleted file mode 100644 index f502662b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/minus.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/plus.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/plus.gif Binary files differdeleted file mode 100644 index eeca02ce..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/images/plus.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/lib/classTree.js b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/lib/classTree.js deleted file mode 100755 index ebb3fb4a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/lib/classTree.js +++ /dev/null @@ -1,454 +0,0 @@ -/*----------------------------------------\ -| Cross Browser Tree Widget 1.1 | -|-----------------------------------------| -| Created by Emil A. Eklund (eae@eae.net) | -| For WebFX (http://webfx.eae.net/) | -|-----------------------------------------| -| This script is provided as is without | -| any warranty whatsoever. It may be used | -| free of charge for non commerical sites | -| For commerical use contact the author | -| of this script for further details. | -|-----------------------------------------| -| Created 2000-12-11 | Updated 2001-09-06 | -\----------------------------------------*/ - -var webFXTreeConfig = { - rootIcon : 'media/images/empty.png', - openRootIcon : 'media/images/empty.png', - folderIcon : 'media/images/empty.png', - openFolderIcon : 'media/images/empty.png', - fileIcon : 'media/images/empty.png', - iIcon : 'media/images/I.png', - lIcon : 'media/images/L.png', - lMinusIcon : 'media/images/Lminus.png', - lPlusIcon : 'media/images/Lplus.png', - tIcon : 'media/images/T.png', - tMinusIcon : 'media/images/Tminus.png', - tPlusIcon : 'media/images/Tplus.png', - blankIcon : 'media/images/blank.png', - defaultText : 'Tree Item', - defaultAction : 'javascript:void(0);', - defaultTarget : 'right', - defaultBehavior : 'classic' -}; - -var webFXTreeHandler = { - idCounter : 0, - idPrefix : "webfx-tree-object-", - all : {}, - behavior : null, - selected : null, - getId : function() { return this.idPrefix + this.idCounter++; }, - toggle : function (oItem) { this.all[oItem.id.replace('-plus','')].toggle(); }, - select : function (oItem) { this.all[oItem.id.replace('-icon','')].select(); }, - focus : function (oItem) { this.all[oItem.id.replace('-anchor','')].focus(); }, - blur : function (oItem) { this.all[oItem.id.replace('-anchor','')].blur(); }, - keydown : function (oItem) { return this.all[oItem.id].keydown(window.event.keyCode); }, - cookies : new WebFXCookie() -}; - -/* - * WebFXCookie class - */ - -function WebFXCookie() { - if (document.cookie.length) { this.cookies = ' ' + document.cookie; } -} - -WebFXCookie.prototype.setCookie = function (key, value) { - document.cookie = key + "=" + escape(value); -} - -WebFXCookie.prototype.getCookie = function (key) { - if (this.cookies) { - var start = this.cookies.indexOf(' ' + key + '='); - if (start == -1) { return null; } - var end = this.cookies.indexOf(";", start); - if (end == -1) { end = this.cookies.length; } - end -= start; - var cookie = this.cookies.substr(start,end); - return unescape(cookie.substr(cookie.indexOf('=') + 1, cookie.length - cookie.indexOf('=') + 1)); - } - else { return null; } -} - -/* - * WebFXTreeAbstractNode class - */ - -function WebFXTreeAbstractNode(sText, sAction, sTarget) { - this.childNodes = []; - this.id = webFXTreeHandler.getId(); - this.text = sText || webFXTreeConfig.defaultText; - this.action = sAction || webFXTreeConfig.defaultAction; - this.targetWindow = sTarget || webFXTreeConfig.defaultTarget; - this._last = false; - webFXTreeHandler.all[this.id] = this; -} - -WebFXTreeAbstractNode.prototype.add = function (node) { - node.parentNode = this; - this.childNodes[this.childNodes.length] = node; - var root = this; - if (this.childNodes.length >=2) { - this.childNodes[this.childNodes.length -2]._last = false; - } - while (root.parentNode) { root = root.parentNode; } - if (root.rendered) { - if (this.childNodes.length >= 2) { - document.getElementById(this.childNodes[this.childNodes.length -2].id + '-plus').src = ((this.childNodes[this.childNodes.length -2].folder)?webFXTreeConfig.tMinusIcon:webFXTreeConfig.tIcon); - if (this.childNodes[this.childNodes.length -2].folder) { - this.childNodes[this.childNodes.length -2].plusIcon = webFXTreeConfig.tPlusIcon; - this.childNodes[this.childNodes.length -2].minusIcon = webFXTreeConfig.tMinusIcon; - } - this.childNodes[this.childNodes.length -2]._last = false; - } - this._last = true; - var foo = this; - while (foo.parentNode) { - for (var i = 0; i < foo.parentNode.childNodes.length; i++) { - if (foo.id == foo.parentNode.childNodes[i].id) { break; } - } - if (++i == foo.parentNode.childNodes.length) { foo.parentNode._last = true; } - else { foo.parentNode._last = false; } - foo = foo.parentNode; - } - document.getElementById(this.id + '-cont').insertAdjacentHTML("beforeEnd", node.toString()); - if ((!this.folder) && (!this.openIcon)) { - this.icon = webFXTreeConfig.folderIcon; - this.openIcon = webFXTreeConfig.openFolderIcon; - } - this.folder = true; - this.indent(); - this.expand(); - } - return node; -} - -WebFXTreeAbstractNode.prototype.toggle = function() { - if (this.folder) { - if (this.open) { this.collapse(); } - else { this.expand(); } - } -} - -WebFXTreeAbstractNode.prototype.select = function() { - document.getElementById(this.id + '-anchor').focus(); -} - -WebFXTreeAbstractNode.prototype.focus = function() { - webFXTreeHandler.selected = this; - if ((this.openIcon) && (webFXTreeHandler.behavior != 'classic')) { document.getElementById(this.id + '-icon').src = this.openIcon; } - document.getElementById(this.id + '-anchor').style.backgroundColor = 'highlight'; - document.getElementById(this.id + '-anchor').style.color = 'highlighttext'; - document.getElementById(this.id + '-anchor').focus(); -} - -WebFXTreeAbstractNode.prototype.blur = function() { - if ((this.openIcon) && (webFXTreeHandler.behavior != 'classic')) { document.getElementById(this.id + '-icon').src = this.icon; } - document.getElementById(this.id + '-anchor').style.backgroundColor = 'transparent'; - document.getElementById(this.id + '-anchor').style.color = 'menutext'; -} - -WebFXTreeAbstractNode.prototype.doExpand = function() { - if (webFXTreeHandler.behavior == 'classic') { document.getElementById(this.id + '-icon').src = this.openIcon; } - if (this.childNodes.length) { document.getElementById(this.id + '-cont').style.display = 'block'; } - this.open = true; - webFXTreeHandler.cookies.setCookie(this.id.substr(18,this.id.length - 18), '1'); -} - -WebFXTreeAbstractNode.prototype.doCollapse = function() { - if (webFXTreeHandler.behavior == 'classic') { document.getElementById(this.id + '-icon').src = this.icon; } - if (this.childNodes.length) { document.getElementById(this.id + '-cont').style.display = 'none'; } - this.open = false; - webFXTreeHandler.cookies.setCookie(this.id.substr(18,this.id.length - 18), '0'); -} - -WebFXTreeAbstractNode.prototype.expandAll = function() { - this.expandChildren(); - if ((this.folder) && (!this.open)) { this.expand(); } -} - -WebFXTreeAbstractNode.prototype.expandChildren = function() { - for (var i = 0; i < this.childNodes.length; i++) { - this.childNodes[i].expandAll(); -} } - -WebFXTreeAbstractNode.prototype.collapseAll = function() { - if ((this.folder) && (this.open)) { this.collapse(); } - this.collapseChildren(); -} - -WebFXTreeAbstractNode.prototype.collapseChildren = function() { - for (var i = 0; i < this.childNodes.length; i++) { - this.childNodes[i].collapseAll(); -} } - -WebFXTreeAbstractNode.prototype.indent = function(lvl, del, last, level) { - /* - * Since we only want to modify items one level below ourself, - * and since the rightmost indentation position is occupied by - * the plus icon we set this to -2 - */ - if (lvl == null) { lvl = -2; } - var state = 0; - for (var i = this.childNodes.length - 1; i >= 0 ; i--) { - state = this.childNodes[i].indent(lvl + 1, del, last, level); - if (state) { return; } - } - if (del) { - if (level >= this._level) { - if (this.folder) { - document.getElementById(this.id + '-plus').src = (this.open)?webFXTreeConfig.lMinusIcon:webFXTreeConfig.lPlusIcon; - this.plusIcon = webFXTreeConfig.lPlusIcon; - this.minusIcon = webFXTreeConfig.lMinusIcon; - } - else { document.getElementById(this.id + '-plus').src = webFXTreeConfig.lIcon; } - return 1; - } - } - var foo = document.getElementById(this.id + '-indent-' + lvl); - if (foo) { - if ((del) && (last)) { foo._last = true; } - if (foo._last) { foo.src = webFXTreeConfig.blankIcon; } - else { foo.src = webFXTreeConfig.iIcon; } - } - return 0; -} - -/* - * WebFXTree class - */ - -function WebFXTree(sText, sAction, sBehavior, sIcon, sOpenIcon) { - this.base = WebFXTreeAbstractNode; - this.base(sText, sAction); - this.icon = sIcon || webFXTreeConfig.rootIcon; - this.openIcon = sOpenIcon || webFXTreeConfig.openRootIcon; - /* Defaults to open */ - this.open = (webFXTreeHandler.cookies.getCookie(this.id.substr(18,this.id.length - 18)) == '0')?false:true; - this.folder = true; - this.rendered = false; - if (!webFXTreeHandler.behavior) { webFXTreeHandler.behavior = sBehavior || webFXTreeConfig.defaultBehavior; } - this.targetWindow = 'right'; -} - -WebFXTree.prototype = new WebFXTreeAbstractNode; - -WebFXTree.prototype.setBehavior = function (sBehavior) { - webFXTreeHandler.behavior = sBehavior; -}; - -WebFXTree.prototype.getBehavior = function (sBehavior) { - return webFXTreeHandler.behavior; -}; - -WebFXTree.prototype.getSelected = function() { - if (webFXTreeHandler.selected) { return webFXTreeHandler.selected; } - else { return null; } -} - -WebFXTree.prototype.remove = function() { } - -WebFXTree.prototype.expand = function() { - this.doExpand(); -} - -WebFXTree.prototype.collapse = function() { - this.focus(); - this.doCollapse(); -} - -WebFXTree.prototype.getFirst = function() { - return null; -} - -WebFXTree.prototype.getLast = function() { - return null; -} - -WebFXTree.prototype.getNextSibling = function() { - return null; -} - -WebFXTree.prototype.getPreviousSibling = function() { - return null; -} - -WebFXTree.prototype.keydown = function(key) { - if (key == 39) { this.expand(); return false; } - if (key == 37) { this.collapse(); return false; } - if ((key == 40) && (this.open)) { this.childNodes[0].select(); return false; } - return true; -} - -WebFXTree.prototype.toString = function() { - var str = "<div id=\"" + this.id + "\" ondblclick=\"webFXTreeHandler.toggle(this);\" class=\"webfx-tree-item\" onkeydown=\"return webFXTreeHandler.keydown(this)\">"; - str += "<img id=\"" + this.id + "-icon\" class=\"webfx-tree-icon\" src=\"" + ((webFXTreeHandler.behavior == 'classic' && this.open)?this.openIcon:this.icon) + "\" onclick=\"webFXTreeHandler.select(this);\"><a href=\"" + this.action + "\" id=\"" + this.id + "-anchor\" target=\"" + this.targetWindow + "\" onfocus=\"webFXTreeHandler.focus(this);\" onblur=\"webFXTreeHandler.blur(this);\">" + this.text + "</a></div>"; - str += "<div id=\"" + this.id + "-cont\" class=\"webfx-tree-container\" style=\"display: " + ((this.open)?'block':'none') + ";\">"; - for (var i = 0; i < this.childNodes.length; i++) { - str += this.childNodes[i].toString(i, this.childNodes.length); - } - str += "</div>"; - this.rendered = true; - return str; -}; - -/* - * WebFXTreeItem class - */ - -function WebFXTreeItem(sText, sAction, eParent, sIcon, sOpenIcon) { - this.base = WebFXTreeAbstractNode; - this.base(sText, sAction); - /* Defaults to close */ - this.open = (webFXTreeHandler.cookies.getCookie(this.id.substr(18,this.id.length - 18)) == '1')?true:false; - if (eParent) { eParent.add(this); } - if (sIcon) { this.icon = sIcon; } - if (sOpenIcon) { this.openIcon = sOpenIcon; } -} - -WebFXTreeItem.prototype = new WebFXTreeAbstractNode; - -WebFXTreeItem.prototype.remove = function() { - var parentNode = this.parentNode; - var prevSibling = this.getPreviousSibling(true); - var nextSibling = this.getNextSibling(true); - var folder = this.parentNode.folder; - var last = ((nextSibling) && (nextSibling.parentNode) && (nextSibling.parentNode.id == parentNode.id))?false:true; - this.getPreviousSibling().focus(); - this._remove(); - if (parentNode.childNodes.length == 0) { - parentNode.folder = false; - parentNode.open = false; - } - if (last) { - if (parentNode.id == prevSibling.id) { - document.getElementById(parentNode.id + '-icon').src = webFXTreeConfig.fileIcon; - } - else { } - } - if ((!prevSibling.parentNode) || (prevSibling.parentNode != parentNode)) { - parentNode.indent(null, true, last, this._level); - } - if (document.getElementById(prevSibling.id + '-plus')) { - if (nextSibling) { - if ((parentNode == prevSibling) && (parentNode.getNextSibling)) { document.getElementById(prevSibling.id + '-plus').src = webFXTreeConfig.tIcon; } - else if (nextSibling.parentNode != prevSibling) { document.getElementById(prevSibling.id + '-plus').src = webFXTreeConfig.lIcon; } - } - else { document.getElementById(prevSibling.id + '-plus').src = webFXTreeConfig.lIcon; } - } -} - -WebFXTreeItem.prototype._remove = function() { - for (var i = this.childNodes.length - 1; i >= 0; i--) { - this.childNodes[i]._remove(); - } - for (var i = 0; i < this.parentNode.childNodes.length; i++) { - if (this.id == this.parentNode.childNodes[i].id) { - for (var j = i; j < this.parentNode.childNodes.length; j++) { - this.parentNode.childNodes[i] = this.parentNode.childNodes[i+1] - } - this.parentNode.childNodes.length = this.parentNode.childNodes.length - 1; - if (i + 1 == this.parentNode.childNodes.length) { this.parentNode._last = true; } - } - } - webFXTreeHandler.all[this.id] = null; - if (document.getElementById(this.id)) { - document.getElementById(this.id).innerHTML = ""; - document.getElementById(this.id).removeNode(); - } -} - -WebFXTreeItem.prototype.expand = function() { - this.doExpand(); - document.getElementById(this.id + '-plus').src = this.minusIcon; -} - -WebFXTreeItem.prototype.collapse = function() { - this.focus(); - this.doCollapse(); - document.getElementById(this.id + '-plus').src = this.plusIcon; -} - -WebFXTreeItem.prototype.getFirst = function() { - return this.childNodes[0]; -} - -WebFXTreeItem.prototype.getLast = function() { - if (this.childNodes[this.childNodes.length - 1].open) { return this.childNodes[this.childNodes.length - 1].getLast(); } - else { return this.childNodes[this.childNodes.length - 1]; } -} - -WebFXTreeItem.prototype.getNextSibling = function() { - for (var i = 0; i < this.parentNode.childNodes.length; i++) { - if (this == this.parentNode.childNodes[i]) { break; } - } - if (++i == this.parentNode.childNodes.length) { return this.parentNode.getNextSibling(); } - else { return this.parentNode.childNodes[i]; } -} - -WebFXTreeItem.prototype.getPreviousSibling = function(b) { - for (var i = 0; i < this.parentNode.childNodes.length; i++) { - if (this == this.parentNode.childNodes[i]) { break; } - } - if (i == 0) { return this.parentNode; } - else { - if ((this.parentNode.childNodes[--i].open) || (b && this.parentNode.childNodes[i].folder)) { return this.parentNode.childNodes[i].getLast(); } - else { return this.parentNode.childNodes[i]; } -} } - -WebFXTreeItem.prototype.keydown = function(key) { - if ((key == 39) && (this.folder)) { - if (!this.open) { this.expand(); return false; } - else { this.getFirst().select(); return false; } - } - else if (key == 37) { - if (this.open) { this.collapse(); return false; } - else { this.parentNode.select(); return false; } - } - else if (key == 40) { - if (this.open) { this.getFirst().select(); return false; } - else { - var sib = this.getNextSibling(); - if (sib) { sib.select(); return false; } - } } - else if (key == 38) { this.getPreviousSibling().select(); return false; } - return true; -} - -WebFXTreeItem.prototype.toString = function (nItem, nItemCount) { - var foo = this.parentNode; - var indent = ''; - if (nItem + 1 == nItemCount) { this.parentNode._last = true; } - var i = 0; - while (foo.parentNode) { - foo = foo.parentNode; - indent = "<img id=\"" + this.id + "-indent-" + i + "\" src=\"" + ((foo._last)?webFXTreeConfig.blankIcon:webFXTreeConfig.iIcon) + "\">" + indent; - i++; - } - this._level = i; - if (this.childNodes.length) { this.folder = 1; } - else { this.open = false; } - if ((this.folder) || (webFXTreeHandler.behavior != 'classic')) { - if (!this.icon) { this.icon = webFXTreeConfig.folderIcon; } - if (!this.openIcon) { this.openIcon = webFXTreeConfig.openFolderIcon; } - } - else if (!this.icon) { this.icon = webFXTreeConfig.fileIcon; } - var label = this.text; - label = label.replace('<', '<'); - label = label.replace('>', '>'); - var str = "<div id=\"" + this.id + "\" ondblclick=\"webFXTreeHandler.toggle(this);\" class=\"webfx-tree-item\" onkeydown=\"return webFXTreeHandler.keydown(this)\">"; - str += indent; - str += "<img id=\"" + this.id + "-plus\" src=\"" + ((this.folder)?((this.open)?((this.parentNode._last)?webFXTreeConfig.lMinusIcon:webFXTreeConfig.tMinusIcon):((this.parentNode._last)?webFXTreeConfig.lPlusIcon:webFXTreeConfig.tPlusIcon)):((this.parentNode._last)?webFXTreeConfig.lIcon:webFXTreeConfig.tIcon)) + "\" onclick=\"webFXTreeHandler.toggle(this);\">" - str += "<img id=\"" + this.id + "-icon\" src=\"" + ((webFXTreeHandler.behavior == 'classic' && this.open)?this.openIcon:this.icon) + "\" onclick=\"webFXTreeHandler.select(this);\"><a href=\"" + this.action + "\" id=\"" + this.id + "-anchor\" target=\"" + this.targetWindow + "\" onfocus=\"webFXTreeHandler.focus(this);\" onblur=\"webFXTreeHandler.blur(this);\">" + label + "</a></div>"; - str += "<div id=\"" + this.id + "-cont\" class=\"webfx-tree-container\" style=\"display: " + ((this.open)?'block':'none') + ";\">"; - for (var i = 0; i < this.childNodes.length; i++) { - str += this.childNodes[i].toString(i,this.childNodes.length); - } - str += "</div>"; - this.plusIcon = ((this.parentNode._last)?webFXTreeConfig.lPlusIcon:webFXTreeConfig.tPlusIcon); - this.minusIcon = ((this.parentNode._last)?webFXTreeConfig.lMinusIcon:webFXTreeConfig.tMinusIcon); - return str; -}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/stylesheet.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/stylesheet.css deleted file mode 100755 index 3f546dc5..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/media/stylesheet.css +++ /dev/null @@ -1,184 +0,0 @@ -a { color: #0000FF; text-decoration: none; } -a:hover { color: #FF0000; text-decoration: underline; } -a:active { color: #FF0000; text-decoration: underline; } - -body { background-color: #EEEEEE; font-family: Verdana, Arial, sans-serif } -body, table { font-size: 10pt } -a img { border: 0px; } -dd { margin-left: 0px; padding-left: 1em; } - -/* Page layout/boxes */ - -.info-box {} -.info-box-title { margin: 1em 0em 0em 0em; padding: .25em; font-weight: normal; font-size: 14pt; border: 2px solid #999999; background-color: #DDDDDD } -.info-box-body { border: 1px solid #999999; padding: .5em; background-color: #F8F8F8; } -.nav-bar { font-size: 8pt; white-space: nowrap; text-align: right; padding: .2em; margin: 0em 0em 1em 0em; } - -.oddrow { background-color: #DDDDDD; border: 1px solid #999999; padding: .5em; margin-bottom: 1em} -.evenrow { background-color: #DDDDDD; border: 1px solid #999999; padding: .5em; margin-bottom: 1em} - -.page-body { max-width: 800px; margin: auto; } -.tree { } - -/* Index formatting classes */ - -.index-item-body { margin-top: .5em; margin-bottom: .5em} -.index-item-description { margin-top: .25em } -.index-item-details { font-weight: normal; font-style: italic; font-size: 8pt } -.index-letter-section { background-color: #EEEEEE; border: 1px dotted #999999; padding: .5em; margin-bottom: 1em} -.index-letter-title { font-size: 12pt; font-weight: bold } -.index-letter-menu { text-align: center; margin: 1em } -.index-letter { font-size: 12pt } - -/* Docbook classes */ - -.description {} -.short-description { font-weight: bold; color: #666666; } -.tags { padding-left: 0em; margin-left: 3em; color: #666666; list-style-type: square; } -.parameters { padding-left: 0em; margin-left: 3em; font-style: italic; list-style-type: square; } -.redefinitions { font-size: 8pt; padding-left: 0em; margin-left: 2em; } -.package { } -.package-title { font-weight: bold; font-size: 14pt; border-bottom: 1px solid black } -.package-details { font-size: 85%; } -.sub-package { font-weight: bold; font-size: 120% } -.tutorial { border-width: thin; border-color: #0066ff } -.tutorial-nav-box { width: 100%; border: 2px solid #999999; background-color: #DDDDDD } -.nav-button-disabled { color: #999999; } -.nav-button:active, -.nav-button:focus, -.nav-button:hover { background-color: #AAAAAA; outline: 1px solid #666666; text-decoration: none } -.folder-title { font-style: italic } - -/* Generic formatting */ - -.field { font-weight: bold; } -.detail { font-size: 8pt; } -.notes { font-style: italic; font-size: 8pt; } -.separator { background-color: #999999; height: 2px; } -.warning { color: #FF6600; } -.disabled { font-style: italic; color: #999999; } - -/* Code elements */ - -.line-number { } - -.class-table { width: 100%; } -.class-table-header { border-bottom: 1px dotted #666666; text-align: left} -.class-name { color: #000000; font-weight: bold; } - -.method-summary { padding-left: 1em; font-size: 8pt } -.method-header { } -.method-definition { margin-bottom: .3em } -.method-title { font-weight: bold; } -.method-name { font-weight: bold; } -.method-signature { font-size: 85%; color: #0066BB; margin: .5em 0em } -.method-result { font-style: italic; } - -.var-summary { padding-left: 1em; font-size: 8pt; } -.var-header { } -.var-title { margin-bottom: .3em } -.var-type { color: red; font-weight: bold } -.var-name { font-weight: bold; } -.var-default {} -.var-description { font-weight: normal; color: #000000; } - -.include-title { } -.include-type { font-style: italic; } -.include-name { font-weight: bold; } - -.const-title { } -.const-name { font-weight: bold; } - -/* Syntax highlighting */ - -.src-code { border: 1px solid #336699; padding: 1em; background-color: #EEEEEE; - font-family: 'Courier New', Courier, monospace; font-weight: normal; } -.src-line { font-family: 'Courier New', Courier, monospace; font-weight: normal; } - -.src-comm { color: #666666; } -.src-id { } -.src-inc { color: #0000FF; } -.src-key { color: #0000FF; } -.src-num { color: #CC0000; } -.src-str { color: #66cccc; } -.src-sym { font-weight: bold; } -.src-var { } - -.src-php { font-weight: bold; } - -.src-doc { color: #009999 } -.src-doc-close-template { color: #0000FF } -.src-doc-coretag { color: #0099FF; font-weight: bold } -.src-doc-inlinetag { color: #0099FF } -.src-doc-internal { color: #6699cc } -.src-doc-tag { color: #0080CC } -.src-doc-template { color: #0000FF } -.src-doc-type { font-style: italic } -.src-doc-var { font-style: italic } - -.tute-tag { color: #009999 } -.tute-attribute-name { color: #0000FF } -.tute-attribute-value { color: #0099FF } -.tute-entity { font-weight: bold; } -.tute-comment { font-style: italic } -.tute-inline-tag { color: #636311; font-weight: bold } - -/* tutorial */ - -.authors { } -.author { font-style: italic; font-weight: bold } -.author-blurb { margin: .5em 0em .5em 2em; font-size: 85%; font-weight: normal; font-style: normal } -.example { background-color: #DDDDDD; border: 1px solid #999999; padding: .5em; } -.listing { background-color: #DDDDDD; border: 1px solid #999999; padding: .5em; white-space: nowrap; } -.release-info { font-size: 85%; font-style: italic; margin: 1em 0em } -.ref-title-box { } -.ref-title { } -.ref-purpose { font-style: italic; color: #666666 } -.ref-synopsis { } -.title { font-weight: bold; border-bottom: 1px solid #888888; color: #888888; } -.cmd-synopsis { margin: 1em 0em } -.cmd-title { font-weight: bold } -.toc { margin-left: 2em; padding-left: 0em } - -/*------------------------------------------------------------------------------ - webfx-tree -------------------------------------------------------------------------------*/ - -.webfx-tree-container { - margin: 0px; - padding: 0px; - white-space: nowrap; - font: icon; -} - -.webfx-tree-item { - padding: 0px; - margin: 0px; - color: black; - white-space: nowrap; - font: icon; -} - -.webfx-tree-item a { - margin-left: 3px; - padding: 1px 2px 1px 2px; - color: black; - text-decoration: none; -} - -.webfx-tree-item a:hover, .webfx-tree-item a:active { - color: white; - background: red; - text-decoration: none -} - -.webfx-tree-item img { - vertical-align: middle; - border: 0px; -} - -.webfx-tree-icon { - width: 16px; - height: 16px; -} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/method.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/method.tpl deleted file mode 100755 index 06d57a12..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/method.tpl +++ /dev/null @@ -1,149 +0,0 @@ -<A NAME='method_detail'></A> -{section name=methods loop=$methods} -{if $methods[methods].static} -<a name="method{$methods[methods].function_name}" id="{$methods[methods].function_name}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="method-header"> - <span class="method-title">static {$methods[methods].function_name}</span> (line <span class="line-number">{if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags params=$methods[methods].params function=false} - - <div class="method-signature"> - static <span class="method-result">{$methods[methods].function_return}</span> - <span class="method-name"> - {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name} - </span> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $methods[methods].params} - <ul class="parameters"> - {section name=params loop=$methods[methods].params} - <li> - <span class="var-type">{$methods[methods].params[params].datatype}</span> - <span class="var-name">{$methods[methods].params[params].var}</span>{if $methods[methods].params[params].data}<span class="var-description">: {$methods[methods].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $methods[methods].method_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$methods[methods].method_overrides.link}</dt> - {if $methods[methods].method_overrides.sdesc} - <dd>{$methods[methods].method_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} - - {if $methods[methods].descmethod} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=dm loop=$methods[methods].descmethod} - <li> - {$methods[methods].descmethod[dm].link} - {if $methods[methods].descmethod[dm].sdesc} - : {$methods[methods].descmethod[dm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} -</div> -{/if} -{/section} -{section name=methods loop=$methods} -{if !$methods[methods].static} -<a name="method{$methods[methods].function_name}" id="{$methods[methods].function_name}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="method-header"> - <span class="method-title">{if $methods[methods].ifunction_call.constructor}Constructor {elseif $methods[methods].ifunction_call.destructor}Destructor {/if}{$methods[methods].function_name}</span> (line <span class="line-number">{if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags params=$methods[methods].params function=false} - - <div class="method-signature"> - <span class="method-result">{$methods[methods].function_return}</span> - <span class="method-name"> - {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name} - </span> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $methods[methods].params} - <ul class="parameters"> - {section name=params loop=$methods[methods].params} - <li> - <span class="var-type">{$methods[methods].params[params].datatype}</span> - <span class="var-name">{$methods[methods].params[params].var}</span>{if $methods[methods].params[params].data}<span class="var-description">: {$methods[methods].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $methods[methods].method_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$methods[methods].method_overrides.link}</dt> - {if $methods[methods].method_overrides.sdesc} - <dd>{$methods[methods].method_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} - - {if $methods[methods].descmethod} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=dm loop=$methods[methods].descmethod} - <li> - {$methods[methods].descmethod[dm].link} - {if $methods[methods].descmethod[dm].sdesc} - : {$methods[methods].descmethod[dm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} -</div> -{/if} -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/page.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/page.tpl deleted file mode 100755 index b5980236..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/page.tpl +++ /dev/null @@ -1,211 +0,0 @@ -{include file="header.tpl" top3=true} - -<h2 class="file-name">{$source_location}</h2> - -<a name="sec-description"></a> -<div class="info-box"> - <div class="info-box-title">Description</div> - <div class="nav-bar"> - {if $classes || $includes || $defines || $globals || $functions} - <span class="disabled">Description</span> | - {/if} - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="docblock.tpl" desc=$desc sdesc=$sdesc tags=$tags} - - {if $tutorial} - <hr class="separator" /> - <div class="notes">Tutorial: <span class="tutorial">{$tutorial}</div> - {/if} - </div> -</div> - -{if $classes} - <a name="sec-classes"></a> - <div class="info-box"> - <div class="info-box-title">Classes</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - <span class="disabled">Classes</span> - {if $includes || $defines || $globals || $functions}|{/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - <table cellpadding="2" cellspacing="0" class="class-table"> - <tr> - <th class="class-table-header">Class</th> - <th class="class-table-header">Description</th> - </tr> - {section name=classes loop=$classes} - <tr> - <td style="padding-right: 2em; vertical-align: top"> - {$classes[classes].link} - </td> - <td> - {if $classes[classes].sdesc} - {$classes[classes].sdesc} - {else} - {$classes[classes].desc} - {/if} - </td> - </tr> - {/section} - </table> - </div> - </div> -{/if} - -{if $includes} - <a name="sec-includes"></a> - <div class="info-box"> - <div class="info-box-title">Includes</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - <span class="disabled">Includes</span> - {if $defines || $globals || $functions}|{/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="include.tpl"} - </div> - </div> -{/if} - -{if $defines} - <a name="sec-constants"></a> - <div class="info-box"> - <div class="info-box-title">Constants</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - <span class="disabled">Constants</span> - {if $globals || $functions}|{/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="define.tpl"} - </div> - </div> -{/if} - -{if $globals} - <a name="sec-variables"></a> - <div class="info-box"> - <div class="info-box-title">Variables</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - <span class="disabled">Variables</span> - {if $functions}|{/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="global.tpl"} - </div> - </div> -{/if} - -{if $functions} - <a name="sec-functions"></a> - <div class="info-box"> - <div class="info-box-title">Functions</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - <span class="disabled">Functions</span> - </div> - <div class="info-box-body"> - {include file="function.tpl"} - </div> - </div> -{/if} - -{include file="footer.tpl" top3=true} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/pkgelementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/pkgelementindex.tpl deleted file mode 100755 index dc283ad0..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/pkgelementindex.tpl +++ /dev/null @@ -1,17 +0,0 @@ -{include file="header.tpl"} -<a name="top"></a> -<h2>[{$package}] element index</h2> -{if count($packageindex) > 1} - <h3>Package indexes</h3> - <ul> - {section name=p loop=$packageindex} - {if $packageindex[p].title != $package} - <li><a href="elementindex_{$packageindex[p].title}.html">{$packageindex[p].title}</a></li> - {/if} - {/section} - </ul> -{/if} -<a href="elementindex.html">All elements</a> -<br /> -{include file="basicindex.tpl" indexname=elementindex_$package} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/ric.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/ric.tpl deleted file mode 100755 index ad792475..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/ric.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl"} -<div align="center"><h1>{$name}</h1></div> -<pre> -{$contents|htmlentities} -</pre> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/todolist.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/todolist.tpl deleted file mode 100755 index f929ccdb..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/todolist.tpl +++ /dev/null @@ -1,14 +0,0 @@ -{include file="header.tpl" title="Todo List"} -<div align="center"><h1>Todo List</h1></div> -{foreach from=$todos key=todopackage item=todo} -<h2>{$todopackage}</h2> -{section name=todo loop=$todo} -<h3>{$todo[todo].link}</h3> -<ul> -{section name=t loop=$todo[todo].todos} - <li>{$todo[todo].todos[t]}</li> -{/section} -</ul> -{/section} -{/foreach} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/top_frame.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/top_frame.tpl deleted file mode 100755 index 36d1e5a1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/top_frame.tpl +++ /dev/null @@ -1,45 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <!-- template designed by Marco Von Ballmoos --> - <title>{$title}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - <link rel="stylesheet" href="{$subdir}media/banner.css" /> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> - </head> - <body> - <div class="banner"> - <div class="banner-title">{$package}</div> - <div class="banner-menu"> - <form> - <table cellpadding="0" cellspacing="0" style="width: 100%"> - <tr> - <td> - {if count($ric) >= 1} - {assign var="last_ric_name" value=""} - {section name=ric loop=$ric} - {if $last_ric_name != ""} | {/if} - <a href="{$ric[ric].file}" target="right">{$ric[ric].name}</a> - {assign var="last_ric_name" value=$ric[ric].name} - {/section} - {/if} - </td> - <td style="width: 2em"> </td> - <td style="text-align: right"> - {if count($packages) > 1} - <span class="field">Packages</span> - <select class="package-selector" onchange="window.parent.left_bottom.location=this[selectedIndex].value"> - {section name=p loop=$packages} - <option value="{$packages[p].link}">{$packages[p].title}</option> - {/section} - </select> - {/if} - </td> - </tr> - </table> - </form> - </div> - </div> - </body> - </html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/tutorial.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/tutorial.tpl deleted file mode 100755 index 3b9109d1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/tutorial.tpl +++ /dev/null @@ -1,13 +0,0 @@ -{include file="header.tpl" title=$title top3=true} - -{if $nav} - {include file="tutorial_nav.tpl" prev=$prev next=$next up=$up prevtitle=$prevtitle nexttitle=$nexttitle uptitle=$uptitle} -{/if} - -{$contents} - -{if $nav} - {include file="tutorial_nav.tpl" prev=$prev next=$next up=$up prevtitle=$prevtitle nexttitle=$nexttitle uptitle=$uptitle} -{/if} - -{include file="footer.tpl" top3=true}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/tutorial_nav.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/tutorial_nav.tpl deleted file mode 100755 index 89952301..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/tutorial_nav.tpl +++ /dev/null @@ -1,41 +0,0 @@ -<table class="tutorial-nav-box"> - <tr> - <td style="width: 30%"> - {if $prev} - <a href="{$prev}" class="nav-button">Previous</a> - {else} - <span class="nav-button-disabled">Previous</span> - {/if} - </td> - <td style="text-align: center"> - {if $up} - <a href="{$up}" class="nav-button">Up</a> - {/if} - </td> - <td style="text-align: right; width: 30%"> - {if $next} - <a href="{$next}" class="nav-button">Next</a> - {else} - <span class="nav-button-disabled">Next</span> - {/if} - </td> - </tr> - <tr> - <td style="width: 30%"> - {if $prevtitle} - <span class="detail">{$prevtitle}</span> - {/if} - </td> - <td style="text-align: center"> - {if $uptitle} - <span class="detail">{$uptitle}</span> - {/if} - </td> - <td style="text-align: right; width: 30%"> - {if $nexttitle} - <span class="detail">{$nexttitle}</span> - {/if} - </td> - </tr> -</table> -
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/tutorial_toc.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/tutorial_toc.tpl deleted file mode 100755 index 3482249b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/tutorial_toc.tpl +++ /dev/null @@ -1,40 +0,0 @@ -{if count($toc)} -<h1 class="title">Table of Contents</h1> -<ul class="toc"> - {assign var="lastcontext" value='refsect1'} - {section name=toc loop=$toc} - - {if $toc[toc].tagname != $lastcontext} - {if $lastcontext == 'refsect1'} - <ul class="toc"> - <li>{$toc[toc].link}</li> - {else} - {if $lastcontext == 'refsect2'} - {if $toc[toc].tagname == 'refsect1'} - </ul> - <li>{$toc[toc].link}</li> - {/if} - {if $toc[toc].tagname == 'refsect3'} - <ul class="toc"> - <li>{$toc[toc].link}</li> - {/if} - {else} - </ul> - </ul> - <li>{$toc[toc].link}</li> - {/if} - {/if} - {assign var="lastcontext" value=$toc[toc].tagname} - {else} - <li>{$toc[toc].link}</li> - {/if} - {/section} - {if $lastcontext == 'refsect2'} - </ul> - {/if} - {if $lastcontext == 'refsect3'} - </ul> - </ul> - {/if} -</ul> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/tutorial_tree.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/tutorial_tree.tpl deleted file mode 100755 index 40d9a4ff..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/tutorial_tree.tpl +++ /dev/null @@ -1,8 +0,0 @@ - var a{$name|replace:"-":"_"}node = new WebFXTreeItem('{$main.title|strip_tags|escape:"quotes"}','{$main.link}', parent_node); - -{if $haskids} - var a{$name|replace:"-":"_"}_old_parent_node = parent_node; - parent_node = a{$name|replace:"-":"_"}node; - {$kids} - parent_node = a{$name|replace:"-":"_"}_old_parent_node; -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/var.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/var.tpl deleted file mode 100755 index fccf6892..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/phphtmllib/templates/var.tpl +++ /dev/null @@ -1,92 +0,0 @@ -{section name=vars loop=$vars} -{if $vars[vars].static} -<a name="var{$vars[vars].var_name}" id="{$vars[vars].var_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="var-header"> - <span class="var-title"> - static <span class="var-type">{$vars[vars].var_type}</span> - <span class="var-name">{$vars[vars].var_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$vars[vars].var_default|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} - - {if $vars[vars].var_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$vars[vars].var_overrides.link}</dt> - {if $vars[vars].var_overrides.sdesc} - <dd>{$vars[vars].var_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - - {if $vars[vars].descvar} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=vm loop=$vars[vars].descvar} - <li> - {$vars[vars].descvar[vm].link} - {if $vars[vars].descvar[vm].sdesc} - : {$vars[vars].descvar[vm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} - -</div> -{/if} -{/section} - -{section name=vars loop=$vars} -{if !$vars[vars].static} -<a name="var{$vars[vars].var_name}" id="{$vars[vars].var_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="var-header"> - <span class="var-title"> - <span class="var-type">{$vars[vars].var_type}</span> - <span class="var-name">{$vars[vars].var_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$vars[vars].var_default|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} - - {if $vars[vars].var_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$vars[vars].var_overrides.link}</dt> - {if $vars[vars].var_overrides.sdesc} - <dd>{$vars[vars].var_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - - {if $vars[vars].descvar} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=vm loop=$vars[vars].descvar} - <li> - {$vars[vars].descvar[vm].link} - {if $vars[vars].descvar[vm].sdesc} - : {$vars[vars].descvar[vm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} - -</div> -{/if} -{/section} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/options.ini b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/options.ini deleted file mode 100755 index 084809be..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/options.ini +++ /dev/null @@ -1,577 +0,0 @@ -preservedocbooktags = false - -;; used to highlight the {@source} inline tag, @filesource tag, and @example tag -[highlightSourceTokens] -;; format: -;; T_CONSTANTNAME = open -;; /T_CONSTANTNAME = close - -T_INCLUDE = <span class="src-inc"> -/T_INCLUDE = </span> -T_INCLUDE_ONCE = <span class="src-inc"> -/T_INCLUDE_ONCE = </span> -T_REQUIRE_ONCE = <span class="src-inc"> -/T_REQUIRE_ONCE = </span> -T_REQUIRE_ONCE = <span class="src-inc"> -/T_REQUIRE_ONCE = </span> - -T_CONSTANT_ENCAPSED_STRING = <span class="src-str"> -/T_CONSTANT_ENCAPSED_STRING = </span> -T_STRING_VARNAME = <span class="src-str"> -/T_STRING_VARNAME = </span> - -T_STRING = <span class="src-id"> -/T_STRING = </span> - -T_DNUMBER = <span class="src-num"> -/T_DNUMBER = </span> -T_LNUMBER = <span class="src-num"> -/T_LNUMBER = </span> - -T_VARIABLE = <span class="src-var"> -/T_VARIABLE = </span> - -T_COMMENT = <span class="src-comm"> -/T_COMMENT = </span> -T_ML_COMMENT = <span class="src-comm"> -/T_ML_COMMENT = </span> - -T_OBJECT_OPERATOR = <span class="src-sym"> -/T_OBJECT_OPERATOR = </span> - -T_ABSTRACT = <span class="src-key"> -/T_ABSTRACT = </span> -T_CLONE = <span class="src-key"> -/T_CLONE = </span> -T_HALT_COMPILER = <span class="src-key"> -/T_HALT_COMPILER = </span> -T_ARRAY = <span class="src-key"> -/T_ARRAY = </span> -T_AS = <span class="src-key"> -/T_AS = </span> -T_BREAK = <span class="src-key"> -/T_BREAK = </span> -T_CLASS = <span class="src-key"> -/T_CLASS = </span> -T_CASE = <span class="src-key"> -/T_CASE = </span> -T_CONST = <span class="src-key"> -/T_CONST = </span> -T_CONTINUE = <span class="src-key"> -/T_CONTINUE = </span> -T_DECLARE = <span class="src-key"> -/T_DECLARE = </span> -T_DEFAULT = <span class="src-key"> -/T_DEFAULT = </span> -T_ELSE = <span class="src-key"> -/T_ELSE = </span> -T_ELSEIF = <span class="src-key"> -/T_ELSEIF = </span> -T_EMPTY = <span class="src-key"> -/T_EMPTY = </span> -T_ENDDECLARE = <span class="src-key"> -/T_ENDDECLARE = </span> -T_ENDFOR = <span class="src-key"> -/T_ENDFOR = </span> -T_ENDSWITCH = <span class="src-key"> -/T_ENDSWITCH = </span> -T_ENDFOREACH = <span class="src-key"> -/T_ENDFOREACH = </span> -T_ENDIF = <span class="src-key"> -/T_ENDIF = </span> -T_ENDWHILE = <span class="src-key"> -/T_ENDWHILE = </span> -T_EXIT = <span class="src-key"> -/T_EXIT = </span> -T_EXTENDS = <span class="src-key"> -/T_EXTENDS = </span> -T_FINAL = <span class="src-key"> -/T_FINAL = </span> -T_FOR = <span class="src-key"> -/T_FOR = </span> -T_FOREACH = <span class="src-key"> -/T_FOREACH = </span> -T_FUNCTION = <span class="src-key"> -/T_FUNCTION = </span> -T_GLOBAL = <span class="src-key"> -/T_GLOBAL = </span> -T_IF = <span class="src-key"> -/T_IF = </span> -T_IMPLEMENTS = <span class="src-key"> -/T_IMPLEMENTS = </span> -T_INTERFACE = <span class="src-key"> -/T_INTERFACE = </span> -T_LOGICAL_AND = <span class="src-key"> -/T_LOGICAL_AND = </span> -T_LOGICAL_OR = <span class="src-key"> -/T_LOGICAL_OR = </span> -T_LOGICAL_XOR = <span class="src-key"> -/T_LOGICAL_XOR = </span> -T_NEW = <span class="src-key"> -/T_NEW = </span> -T_PRIVATE = <span class="src-key"> -/T_PRIVATE = </span> -T_PROTECTED = <span class="src-key"> -/T_PROTECTED = </span> -T_PUBLIC = <span class="src-key"> -/T_PUBLIC = </span> -T_RETURN = <span class="src-key"> -/T_RETURN = </span> -T_STATIC = <span class="src-key"> -/T_STATIC = </span> -T_SWITCH = <span class="src-key"> -/T_SWITCH = </span> -T_VAR = <span class="src-key"> -/T_VAR = </span> -T_WHILE = <span class="src-key"> -/T_WHILE = </span> - -T_DOUBLE_COLON = <span class="src-sym"> -/T_DOUBLE_COLON = </span> - -T_OPEN_TAG = <span class="src-php"> -/T_OPEN_TAG = </span> -T_OPEN_TAG_WITH_ECHO = <span class="src-php"> -/T_OPEN_TAG_WITH_ECHO = </span> -T_CLOSE_TAG = <span class="src-php"> -/T_CLOSE_TAG = </span> - - -[highlightSource] -;; this is for highlighting things that aren't tokens like "&" -;; format: -;; word = open -;; /word = close -@ = <span class="src-sym"> -/@ = </span> -& = <span class="src-sym"> -/& = </span> -[ = <span class="src-sym"> -/[ = </span> -] = <span class="src-sym"> -/] = </span> -! = <span class="src-sym"> -/! = </span> -";" = <span class="src-sym"> -/; = </span> -( = <span class="src-sym"> -/( = </span> -) = <span class="src-sym"> -/) = </span> -, = <span class="src-sym"> -/, = </span> -{ = <span class="src-sym"> -/{ = </span> -} = <span class="src-sym"> -/} = </span> -""" = <span class="src-str"> -/" = </span> - -[highlightDocBlockSourceTokens] -;; this is for docblock tokens, using by phpDocumentor_HighlightParser -;; tagphptype is for "string" in @param string description, for example -docblock = <span class="src-doc"> -/docblock = </span> -tagphptype = <span class="src-doc-type"> -/tagphptype = </span> -tagvarname = <span class="src-doc-var"> -/tagvarname = </span> -coretag = <span class="src-doc-coretag"> -/coretag = </span> -tag = <span class="src-doc-tag"> -/tag = </span> -inlinetag = <span class="src-doc-inlinetag"> -/inlinetag = </span> -internal = <span class="src-doc-internal"> -/internal = </span> -closetemplate = <span class="src-doc-close-template"> -/closetemplate = </span> -docblocktemplate = <span class="src-doc-template"> -/docblocktemplate = </span> - -[highlightTutorialSourceTokens] -;; this is for XML DocBook-based tutorials, highlighted by phpDocumentor_TutorialHighlightParser -;; <tag> -opentag = <span class="tute-tag"> -/opentag = </span> -;; </tag> -closetag = <span class="tute-tag"> -/closetag = </span> -;; <tag attribute="value"> -attribute = <span class="tute-attribute-name"> -/attribute = </span> -;; <tag attribute="value"> -attributevalue = <span class="tute-attribute-value"> -/attributevalue = </span> -;; &entity; -entity = <span class="tute-entity"> -/entity = </span> -;; <!-- comment --> -comment = <span class="tute-comment"> -/comment = </span> -;; {@inline tag} -itag = <span class="tute-inline-tag"> -/itag = </span> - -;; used for translation of html in DocBlocks -[desctranslate] -ul = <ul> -/ul = </ul> -ol = <ol> -/ol = </ol> -li = <li> -/li = </li> -code = -/code = -var = <var> -/var = </var> -samp = <samp> -/samp = </samp> -kbd = <kbd> -/kbd = </kbd> -pre = <pre> -/pre = </pre> -p = <p> -/p = </p> -b = <strong> -/b = </strong> -i = <em> -/i = </em> -br = <br /> - -[ppage] -;; this is the DocBook package page translation section. All DocBook tags -;; that have a corresponding html tag must be listed here. Entities should -;; also be listed here -;; -;; examples: -;; 1) -;; tagname = newtagname -;; -;; This is the simplest case, where all attributes will be added into the -;; starting tag and the ending tag will be html/xml style </tranlatedtagname> -;; <tagname></tagname> becomes <newtagname></newtagname> and -;; <tagname attr="value"></tagname> becomes -;; <newtagname attr="value"></newtagname> -;; -;; 2) -;; tagname = newtagname -;; tagname->attr = newattrname -;; -;; in this case, everything will be like the first case, except tags like: -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="value"></newtagname> -;; -;; 3) -;; tagname = newtagname -;; tagname->attr = newattrname -;; tagname->attr+value = newvalue -;; -;; in this case, the value is also translated to another. This can be useful -;; for instances such as focus="middle" changing to align="center" or something -;; of that nature. -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 4) -;; tagname = newtagname -;; tagname->attr1 = newattrname -;; tagname->attr2 = newattrname -;; tagname->attr1+value|attr2+value = newvalue -;; -;; in this case, two attributes combine to make one new attribute, and the combined -;; value is translated into a new value -;; <tagname attr1="value1" attr2="value2"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 5) -;; tagname = newtagname -;; tagname!attr = dummy -;; -;; here, the attribute will be ignored. dummy is not used and may be any value -;; <tagname attr="value"></tagname> will become -;; <newtagname></newtagname> -;; -;; 6) -;; tagname = newtagname -;; tagname! = dummy -;; -;; here, all attributes will be ignored. dummy is not used and may be any value -;; <tagname attr1="value" attr2="foo"></tagname> will become -;; <newtagname></newtagname> -;; -;; 7) -;; tagname = newtagname -;; tagname/ = 1 -;; -;; here, the tag will be translated as a single tag with no closing tag, and all -;; attributes -;; <tagname attr="val">{text text}</tagname> will become -;; <newtagname attr="val" /> -;; -;; 8) -;; tagname = <starttaginfo /> -;; /tagname = closetagtext -;; -;; in this case, the text <starttaginfo> will be inserted exactly as entered for -;; <tagname> and closetagtext for </tagname> -;; <tagname attr="val"></tagname> will become -;; <starttaginfo />closetagtext -;; -;; 9) -;; $attr$my_attribute = newattrname -;; -;; tagname = newtagname -;; -;; in this case, all occurences of my_attribute in any tag will be changed to -;; newattrname. This is useful for changing things like role="php" to -;; class="php," for example. Note that the text "$attr$" MUST be on the line -;; start for phpDocumentor to recognize it. -;; -;; 10) -;; &entity; = translation text -;; " = " -;; " = """ -;; < = < -;; -;; Use this to control translation of entities to their appropriate values - - = -" = " -” = ” -“ = “ -& = & -< = < -> = > -© = © - - -$attr$role = class - -abbrev = abbr - -blockquote = blockquote - -arg = span -arg->choice = class - -author = <span class="author"> -/author = </span> -author! = 0 - -authorblurb = <div class="author-blurb"> -/authorblurb = </div> - -authorgroup = <div class="authors"><h2 class="title">Authors</h2> -/authorgroup = </div> -authorgroup! = 0 - -caution = <span class="warning"> -/caution = </span> -caution! = 0 - -cmdsynopsis = <div class="cmd-synopsis"> -/cmdsynopsis = </div> - -command = <span class="cmd-title"> -/command = </span> - -copyright = <div class="notes"> -/copyright = </div> - -emphasis = em - -example = <div class="src-code"> -/example = </div> -example! = 0 - -function = -/function = () - -formalpara = p - -graphic = img -graphic->fileref = src -graphic/ = - -important = strong - -informalequation = blockquote - -informalexample = div - -inlineequation = em - -itemizedlist = ul - -listitem = li - -literal = code - -literallayout = span - -option = " " -/option = - -orderedlist = ol - -para = p - -programlisting = <div class="src-code"> -/programlisting = </div> -programlisting! = 0 - -refentry = div - -refnamediv = <div class="ref-title-box"> -/refnamediv = </div> -refnamediv! = 0 - -refname = <h1 class="ref-title"> -/refname = </h1> - -refpurpose = <h2 class="ref-purpose"> -/refpurpose = </h2> - -refsynopsisdiv = <div class="ref-synopsis"> -/refsynopsisdiv = </div> -refsynopsisdiv! = 0 - -refsect1 = span - -refsect2 = span - -refsect3 = -/refsect3 = <br /> - -releaseinfo = <div class="release-info">( -/releaseinfo = )</div> - -simpara = -/simpara = <br /> -simpara! = 0 - -subscript = sub - -superscript = super - -table = table - -table->colsep = rules -table->rowsep = rules -table->colsep+1|rowsep+1 =all -table->colsep+1|rowsep+0 =cols -table->colsep+0|rowsep+1 =rows - -table->frame =frame -table->frame+all =border -table->frame+none =void -table->frame+sides =vsides -table->frame+top =above -table->frame+topbot =hsides - -thead = thead - -tfoot = tfoot - -tbody = tbody - -colspec = col - -tgroup = colgroup -tgroup/ = 1 -tgroup->cols = span - -row = tr - -entry = td -entry->morerows = colspan -entry->morerows+1 =2 -entry->morerows+2 =3 -entry->morerows+3 =4 -entry->morerows+4 =5 -entry->morerows+5 =6 -entry->morerows+6 =7 -entry->morerows+7 =8 -entry->morerows+8 =9 -entry->morerows+9 =10 -entry->morerows+10 =11 -;; add more if you need more colspans - -warning = <span class="warning"> -/warning = </span> -warning! = 0 - -;; now begins the attributes that should be tags in cdata -[$attr$id] -open = a -;close = /a -cdata! = true -quotevalues = true -separator = "=" -;separateall = true -$id = name - -;; now begins the sections that deal with <title> -[refsynopsisdiv_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h1 class="title"> -close = </h1> - -[refsect1_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h2 class="title"> -close = </h2> - -[refsect2_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h3 class="title"> -close = </h3> - -[refsect3_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h4 class="title"> -close = </h4> - -[para_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <div class="title"> -close = </div> - -[formalpara_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <div class="title"> -close = </div> - -[example_title] -;tag_attr = true -;attr_name = title -;cdata_start = true -cdata_end = true -open = </td></tr><tr><td><strong> -close = </strong> - -[table_title] -;tag_attr = true -;attr_name = true -cdata_start = true -open = <caption> -close = </caption> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/basicindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/basicindex.tpl deleted file mode 100755 index 951ee264..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/basicindex.tpl +++ /dev/null @@ -1,47 +0,0 @@ -<div class="index-letter-menu"> -{section name=letter loop=$letters} - <a class="index-letter" href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> -{/section} -</div> - -{section name=index loop=$index} - <a name="{$index[index].letter}"></a> - <div class="index-letter-section"> - <div style="float: left" class="index-letter-title">{$index[index].letter}</div> - <div style="float: right"><a href="#top">top</a></div> - <div style="clear: both"></div> - </div> - <dl> - {section name=contents loop=$index[index].index} - <dt class="field"> - {if ($index[index].index[contents].title == "Variable")} - <span class="var-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Global")} - <span class="var-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Method")} - <span class="method-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Function")} - <span class="method-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Constant")} - <span class="const-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Page") || ($index[index].index[contents].title == "Include")} - <span class="include-title">{$index[index].index[contents].name}</span> - {else} - {$index[index].index[contents].name} - {/if} - </dt> - <dd class="index-item-body"> - <div class="index-item-details">{$index[index].index[contents].link} in {$index[index].index[contents].file_name}</div> - {if $index[index].index[contents].description} - <div class="index-item-description">{$index[index].index[contents].description}</div> - {/if} - </dd> - {/section} - </dl> -{/section} - -<div class="index-letter-menu"> -{section name=letter loop=$letters} - <a class="index-letter" href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> -{/section} -</div> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/blank.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/blank.tpl deleted file mode 100755 index 6a05f27e..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/blank.tpl +++ /dev/null @@ -1,13 +0,0 @@ -<html> -<head> - <title>{$maintitle}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> -</head> -<body> -<div align="center"><h1>{$maintitle}</h1></div> -<b>Welcome to {$package}!</b><br /> -<br /> -This documentation was generated by <a href="{$phpdocwebsite}">phpDocumentor v{$phpdocversion}</a><br /> -</body> -</html>
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/class.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/class.tpl deleted file mode 100755 index bb5378f6..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/class.tpl +++ /dev/null @@ -1,430 +0,0 @@ -{include file="header.tpl" top3=true} - -<h2 class="class-name">{if $is_interface}Interface{else}Class{/if} {$class_name}</h2> - -<a name="sec-description"></a> -<div class="info-box"> - <div class="info-box-title">Description</div> - <div class="nav-bar"> - {if $children || $vars || $ivars || $methods || $imethods || $consts || $iconsts } - <span class="disabled">Description</span> | - {/if} - {if $children} - <a href="#sec-descendents">Descendents</a> - {if $vars || $ivars || $methods || $imethods || $consts || $iconsts}|{/if} - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {if $methods || $imethods}|{/if} - {/if} - {if $methods || $imethods} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {if $implements} - <p class="implements"> - Implements interfaces: - <ul> - {foreach item="int" from=$implements}<li>{$int}</li>{/foreach} - </ul> - </p> - {/if} - {include file="docblock.tpl" type="class" sdesc=$sdesc desc=$desc} - <p class="notes"> - Located in <a class="field" href="{$page_link}">{$source_location}</a> (line <span class="field">{if $class_slink}{$class_slink}{else}{$line_number}{/if}</span>) - </p> - - {if $tutorial} - <hr class="separator" /> - <div class="notes">Tutorial: <span class="tutorial">{$tutorial}</span></div> - {/if} - - <pre>{section name=tree loop=$class_tree.classes}{$class_tree.classes[tree]}{$class_tree.distance[tree]}{/section}</pre> - - {if $conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with classes:</span><br /> - {section name=me loop=$conflicts.conflicts} - {$conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - </div> -</div> - -{if $children} - <a name="sec-descendents"></a> - <div class="info-box"> - <div class="info-box-title">Direct descendents</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - <span class="disabled">Descendents</span> - {if $vars || $ivars || $methods || $imethods}|{/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {if $methods || $imethods}|{/if} - {/if} - {if $methods || $imethods} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <table cellpadding="2" cellspacing="0" class="class-table"> - <tr> - <th class="class-table-header">Class</th> - <th class="class-table-header">Description</th> - </tr> - {section name=kids loop=$children} - <tr> - <td style="padding-right: 2em">{$children[kids].link}</td> - <td> - {if $children[kids].sdesc} - {$children[kids].sdesc} - {else} - {$children[kids].desc} - {/if} - </td> - </tr> - {/section} - </table> - </div> - </div> -{/if} - -{if $consts} - <a name="sec-const-summary"></a> - <div class="info-box"> - <div class="info-box-title">Class Constant Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendants</a> | - {/if} - <span class="disabled">Constants</span> (<a href="#sec-consts">details</a>) - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - | - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <div class="const-summary"> - {section name=consts loop=$consts} - <div class="const-title"> - <img src="{$subdir}media/images/Constant.png" alt=" " /> - <a href="#{$consts[consts].const_name}" title="details" class="const-name">{$consts[consts].const_name}</a> = <span class="var-type">{$consts[consts].const_value}</span> - - </div> - {/section} - </div> - </div> - </div> -{/if} - -{if $vars} - <a name="sec-var-summary"></a> - <div class="info-box"> - <div class="info-box-title">Variable Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - <span class="disabled">Vars</span> (<a href="#sec-vars">details</a>) - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <div class="var-summary"> - {section name=vars loop=$vars} - {if $vars[vars].static} - <div class="var-title"> - static <span class="var-type">{$vars[vars].var_type}</span> - <a href="#{$vars[vars].var_name}" title="details" class="var-name">{$vars[vars].var_name}</a> - </div> - {/if} - {/section} - {section name=vars loop=$vars} - {if !$vars[vars].static} - <div class="var-title"> - <span class="var-type">{$vars[vars].var_type}</span> - <a href="#{$vars[vars].var_name}" title="details" class="var-name">{$vars[vars].var_name}</a> - </div> - {/if} - {/section} - </div> - </div> - </div> -{/if} - -{if $methods} - <a name="sec-method-summary"></a> - <div class="info-box"> - <div class="info-box-title">Method Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - | - {/if} - <span class="disabled">Methods</span> (<a href="#sec-methods">details</a>) - </div> - <div class="info-box-body"> - <div class="method-summary"> - {section name=methods loop=$methods} - {if $methods[methods].static} - <div class="method-definition"> - static {if $methods[methods].function_return} - <span class="method-result">{$methods[methods].function_return}</span> - {/if} - <a href="#{$methods[methods].function_name}" title="details" class="method-name">{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}</a> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - {/if} - {/section} - - {section name=methods loop=$methods} - {if !$methods[methods].static} - <div class="method-definition"> - {if $methods[methods].function_return} - <span class="method-result">{$methods[methods].function_return}</span> - {/if} - <a href="#{$methods[methods].function_name}" title="details" class="method-name">{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}</a> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - {/if} - {/section} -</div> - </div> - </div> -{/if} - -{if $vars || $ivars} - <a name="sec-vars"></a> - <div class="info-box"> - <div class="info-box-title">Variables</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $methods} - <a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Vars</span> - {/if} - - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {include file="var.tpl"} - {if $ivars} - <h4>Inherited Variables</h4> - <A NAME='inherited_vars'><!-- --></A> - {section name=ivars loop=$ivars} - <p>Inherited from <span class="classname">{$ivars[ivars].parent_class}</span></p> - <blockquote> - {section name=ivars2 loop=$ivars[ivars].ivars} - <span class="var-title"> - <span class="var-name">{$ivars[ivars].ivars[ivars2].link}</span>{if $ivars[ivars].ivars[ivars2].ivar_sdesc}: {$ivars[ivars].ivars[ivars2].ivar_sdesc}{/if}<br> - </span> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{if $methods || $imethods} - <a name="sec-methods"></a> - <div class="info-box"> - <div class="info-box-title">Methods</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Methods</span> - {/if} - </div> - <div class="info-box-body"> - {include file="method.tpl"} - {if $imethods} - <h4>Inherited Methods</h4> - <a name='inherited_methods'><!-- --></a> - {section name=imethods loop=$imethods} - <!-- =========== Summary =========== --> - <p>Inherited From <span class="classname">{$imethods[imethods].parent_class}</span></p> - <blockquote> - {section name=im2 loop=$imethods[imethods].imethods} - <span class="method-name">{$imethods[imethods].imethods[im2].link}</span>{if $imethods[imethods].imethods[im2].ifunction_sdesc}: {$imethods[imethods].imethods[im2].ifunction_sdesc}{/if}<br> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{if $consts || $iconsts} - <a name="sec-consts"></a> - <div class="info-box"> - <div class="info-box-title">Class Constants</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendants</a> | - {/if} - {if $methods} - <a href="#sec-var-summary">Constants</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Constants</span> - {/if} - - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {include file="const.tpl"} - {if $iconsts} - <h4>Inherited Constants</h4> - <A NAME='inherited_vars'><!-- --></A> - {section name=iconsts loop=$iconsts} - <p>Inherited from <span class="classname">{$iconsts[iconsts].parent_class}</span></p> - <blockquote> - {section name=iconsts2 loop=$iconsts[iconsts].iconsts} - <img src="{$subdir}media/images/{if $iconsts[iconsts].iconsts[iconsts2].access == 'private'}PrivateVariable{else}Variable{/if}.png" /> - <span class="const-title"> - <span class="const-name">{$iconsts[iconsts].iconsts[iconsts2].link}</span>{if $iconsts[iconsts].iconsts[iconsts2].iconst_sdesc}: {$iconsts[iconsts].iconsts[iconsts2].iconst_sdesc}{/if}<br> - </span> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{include file="footer.tpl" top3=true} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/classtrees.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/classtrees.tpl deleted file mode 100755 index 952e6d50..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/classtrees.tpl +++ /dev/null @@ -1,19 +0,0 @@ -{include file="header.tpl" top1=true} - -<!-- Start of Class Data --> -<H2> - {$smarty.capture.title} -</H2> -{if $interfaces} -{section name=classtrees loop=$interfaces} -<h2>Root interface {$interfaces[classtrees].class}</h2> -{$interfaces[classtrees].class_tree} -{/section} -{/if} -{if $classtrees} -{section name=classtrees loop=$classtrees} -<h2>Root class {$classtrees[classtrees].class}</h2> -{$classtrees[classtrees].class_tree} -{/section} -{/if} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/const.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/const.tpl deleted file mode 100644 index c26ff92d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/const.tpl +++ /dev/null @@ -1,18 +0,0 @@ -{section name=consts loop=$consts} -<a name="const{$consts[consts].const_name}" id="{$consts[consts].const_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="const-header"> - <img src="{$subdir}media/images/{if $consts[consts].access == 'private'}PrivateVariable{else}Variable{/if}.png" /> - <span class="const-title"> - <span class="const-name">{$consts[consts].const_name}</span> - = <span class="const-default">{$consts[consts].const_value|replace:"\n":"<br />"}</span> - (line <span class="line-number">{if $consts[consts].slink}{$consts[consts].slink}{else}{$consts[consts].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$consts[consts].sdesc desc=$consts[consts].desc tags=$consts[consts].tags} - -</div> -{/section} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/define.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/define.tpl deleted file mode 100755 index 0da5d864..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/define.tpl +++ /dev/null @@ -1,24 +0,0 @@ -{section name=def loop=$defines} -<a name="{$defines[def].define_link}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="const-title"> - <span class="const-name">{$defines[def].define_name}</span> = {$defines[def].define_value|replace:"\n":"<br />"} - (line <span class="line-number">{if $defines[def].slink}{$defines[def].slink}{else}{$defines[def].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$defines[def].sdesc desc=$defines[def].desc tags=$defines[def].tags} - - {if $globals[glob].global_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with constants:</span><br /> - {section name=me loop=$defines[def].define_conflicts.conflicts} - {$defines[def].define_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/docblock.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/docblock.tpl deleted file mode 100755 index 783d5271..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/docblock.tpl +++ /dev/null @@ -1,14 +0,0 @@ -<!-- ========== Info from phpDoc block ========= --> -{if $sdesc} -<p class="short-description">{$sdesc}</p> -{/if} -{if $desc} -<p class="description">{$desc}</p> -{/if} -{if $tags} - <ul class="tags"> - {section name=tags loop=$tags} - <li><span class="field">{$tags[tags].keyword}:</span> {$tags[tags].data}</li> - {/section} - </ul> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/elementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/elementindex.tpl deleted file mode 100755 index d5964f99..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/elementindex.tpl +++ /dev/null @@ -1,12 +0,0 @@ -{include file="header.tpl" noleftindex=true} -<a name="top"></a> -<h2>Full index</h2> -<h3>Package indexes</h3> -<ul> -{section name=p loop=$packageindex} - <li><a href="elementindex_{$packageindex[p].title}.html">{$packageindex[p].title}</a></li> -{/section} -</ul> -<br /> -{include file="basicindex.tpl" indexname="elementindex"} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/errors.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/errors.tpl deleted file mode 100755 index 0f526584..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/errors.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{include file="header.tpl" noleftindex=true} -{section name=files loop=$files} -<a href="#{$files[files].file}">{$files[files].file}</a><br> -{/section} -{foreach key=file item=issues from=$all} -<a name="{$file}"></a> -<h1>{$file}</h1> -{if count($issues.warnings)} -<h2>Warnings:</h2><br> -{section name=warnings loop=$issues.warnings} -<b>{$issues.warnings[warnings].name}</b> - {$issues.warnings[warnings].listing}<br> -{/section} -{/if} -{if count($issues.errors)} -<h2>Errors:</h2><br> -{section name=errors loop=$issues.errors} -<b>{$issues.errors[errors].name}</b> - {$issues.errors[errors].listing}<br> -{/section} -{/if} -{/foreach} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/examplesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/examplesource.tpl deleted file mode 100755 index 8abf74ce..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/examplesource.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl" title=$title} -<h1>{$title}</h1> -<div class="listing"> -{$source} -</div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/filesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/filesource.tpl deleted file mode 100755 index 239f7b41..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/filesource.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{capture name="tutle"}File Source for {$name}{/capture} -{include file="header.tpl" title=$smarty.capture.tutle} -<h1>Source for file {$name}</h1> -<p>Documentation is available at {$docs}</p> -<div class="src-code"> -{$source} -</div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/footer.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/footer.tpl deleted file mode 100755 index 8d0f79db..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/footer.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{if !$index} - <p class="notes" id="credit"> - Documentation generated on {$date} by <a href="{$phpdocwebsite}" target="_blank">phpDocumentor {$phpdocversion}</a> - </p> -{/if} - {if $top3}</div>{/if} -</body> -</html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/function.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/function.tpl deleted file mode 100755 index b6880059..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/function.tpl +++ /dev/null @@ -1,44 +0,0 @@ -{section name=func loop=$functions} -<a name="{$functions[func].function_dest}" id="{$functions[func].function_dest}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="method-title">{$functions[func].function_name}</span> (line <span class="line-number">{if $functions[func].slink}{$functions[func].slink}{else}{$functions[func].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$functions[func].sdesc desc=$functions[func].desc tags=$functions[func].tags params=$functions[func].params function=false} - - <div class="method-signature"> - <span class="method-result">{$functions[func].function_return}</span> - <span class="method-name"> - {if $functions[func].ifunction_call.returnsref}&{/if}{$functions[func].function_name} - </span> - {if count($functions[func].ifunction_call.params)} - ({section name=params loop=$functions[func].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $functions[func].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$functions[func].ifunction_call.params[params].type}</span> <span class="var-name">{$functions[func].ifunction_call.params[params].name}</span>{if $functions[func].ifunction_call.params[params].hasdefault} = <span class="var-default">{$functions[func].ifunction_call.params[params].default|escape:"html"}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $functions[func].params} - <ul class="parameters"> - {section name=params loop=$functions[func].params} - <li> - <span class="var-type">{$functions[func].params[params].datatype}</span> - <span class="var-name">{$functions[func].params[params].var}</span>{if $functions[func].params[params].data}<span class="var-description">: {$functions[func].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $functions[func].function_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with functions:</span><br /> - {section name=me loop=$functions[func].function_conflicts.conflicts} - {$functions[func].function_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/global.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/global.tpl deleted file mode 100755 index eab7e0b0..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/global.tpl +++ /dev/null @@ -1,26 +0,0 @@ -{section name=glob loop=$globals} -<a name="{$globals[glob].global_link}" id="{$globals[glob].global_link}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="var-title"> - <span class="var-type">{$globals[glob].global_type}</span> - <span class="var-name">{$globals[glob].global_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$globals[glob].global_value|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $globals[glob].slink}{$globals[glob].slink}{else}{$globals[glob].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$globals[glob].sdesc desc=$globals[glob].desc tags=$globals[glob].tags} - - {if $globals[glob].global_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with global variables:</span><br /> - {section name=me loop=$globals[glob].global_conflicts.conflicts} - {$globals[glob].global_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/header.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/header.tpl deleted file mode 100755 index c22ba37d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/header.tpl +++ /dev/null @@ -1,12 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <!-- template designed by Marco Von Ballmoos --> - <title>{$title}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> - </head> - <body> - {if $top3}<div class="page-body">{/if} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/include.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/include.tpl deleted file mode 100755 index c2419e5f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/include.tpl +++ /dev/null @@ -1,16 +0,0 @@ -{section name=includes loop=$includes} -<a name="{$includes[includes].include_file}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="include-title"> - <span class="include-type">{$includes[includes].include_name}</span> - (<span class="include-name">{$includes[includes].include_value}</span>) - (line <span class="line-number">{if $includes[includes].slink}{$includes[includes].slink}{else}{$includes[includes].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$includes[includes].sdesc desc=$includes[includes].desc tags=$includes[includes].tags} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/index.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/index.tpl deleted file mode 100755 index 7cd61094..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/index.tpl +++ /dev/null @@ -1,24 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html - PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//FR" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> -<head> - <!-- Generated by phpDocumentor on {$date} --> - <title>{$title}</title> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> -</head> - -<FRAMESET rows='120,*'> - <FRAME src='packages.html' name='left_top' frameborder="1" bordercolor="#999999"> - <FRAMESET cols='25%,*'> - <FRAME src='{$start}' name='left_bottom' frameborder="1" bordercolor="#999999"> - <FRAME src='{$blank}.html' name='right' frameborder="1" bordercolor="#999999"> - </FRAMESET> - <NOFRAMES> - <H2>Frame Alert</H2> - <P>This document is designed to be viewed using the frames feature. - If you see this message, you are using a non-frame-capable web client.</P> - </NOFRAMES> -</FRAMESET> -</HTML> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/left_frame.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/left_frame.tpl deleted file mode 100755 index eb3f670d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/left_frame.tpl +++ /dev/null @@ -1,159 +0,0 @@ -{include file="header.tpl" top2=true} -<div class="package-title">{$package}</div> -<div class="package-details"> - - <dl class="tree"> - - <dt class="folder-title">Description</dt> - <dd> - <a href='{$classtreepage}.html' target='right'>Class trees</a><br /> - <a href='{$elementindex}.html' target='right'>Index of elements</a><br /> - {if $hastodos} - <a href="{$todolink}" target="right">Todo List</a><br /> - {/if} - </dd> - - {section name=p loop=$info} - - {if $info[p].subpackage == ""} - - {if $info[p].tutorials} - <dt class="folder-title">Tutorials/Manuals</dt> - <dd> - {if $info[p].tutorials.pkg} - <dl class="tree"> - <dt class="folder-title">Package-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.pkg} - {$info[p].tutorials.pkg[ext]} - {/section} - </dd> - </dl> - {/if} - - {if $info[p].tutorials.cls} - <dl class="tree"> - <dt class="folder-title">Class-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.cls} - {$info[p].tutorials.cls[ext]} - {/section} - </dd> - </dl> - {/if} - - {if $info[p].tutorials.proc} - <dl class="tree"> - <dt class="folder-title">Function-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.proc} - {$info[p].tutorials.proc[ext]} - {/section} - </dd> - </dl> - {/if} - </dd> - {/if} - {if $info[p].hasinterfaces} - <dt class="folder-title">Interfaces</dt> - {section name=class loop=$info[p].classes} - {if $info[p].classes[class].is_interface} - <dd><a href='{$info[p].classes[class].link}' target='right'>{$info[p].classes[class].title}</a></dd> - {/if} - {/section} - {/if} - {if $info[p].hasclasses} - <dt class="folder-title">Classes</dt> - {section name=class loop=$info[p].classes} - {if $info[p].classes[class].is_class} - <dd><a href='{$info[p].classes[class].link}' target='right'>{$info[p].classes[class].title}</a></dd> - {/if} - {/section} - {/if} - {if $info[p].functions} - <dt class="folder-title">Functions</dt> - {section name=f loop=$info[p].functions} - <dd><a href='{$info[p].functions[f].link}' target='right'>{$info[p].functions[f].title}</a></dd> - {/section} - {/if} - {if $info[p].files} - <dt class="folder-title">Files</dt> - {section name=nonclass loop=$info[p].files} - <dd><a href='{$info[p].files[nonclass].link}' target='right'>{$info[p].files[nonclass].title}</a></dd> - {/section} - {/if} - - {else} - {if $info[p].tutorials} - <dt class="folder-title">Tutorials/Manuals</dt> - <dd> - {if $info[p].tutorials.pkg} - <dl class="tree"> - <dt class="folder-title">Package-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.pkg} - {$info[p].tutorials.pkg[ext]} - {/section} - </dd> - </dl> - {/if} - - {if $info[p].tutorials.cls} - <dl class="tree"> - <dt class="folder-title">Class-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.cls} - {$info[p].tutorials.cls[ext]} - {/section} - </dd> - </dl> - {/if} - - {if $info[p].tutorials.proc} - <dl class="tree"> - <dt class="folder-title">Function-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.proc} - {$info[p].tutorials.proc[ext]} - {/section} - </dd> - </dl> - {/if} - </dd> - {/if} - - <dt class="sub-package">{$info[p].subpackage}</dt> - <dd> - <dl class="tree"> - {if $info[p].subpackagetutorial} - <div><a href="{$info.0.subpackagetutorialnoa}" target="right">{$info.0.subpackagetutorialtitle}</a></div> - {/if} - {if $info[p].classes} - <dt class="folder-title">Classes</dt> - {section name=class loop=$info[p].classes} - <dd><a href='{$info[p].classes[class].link}' target='right'>{$info[p].classes[class].title}</a></dd> - {/section} - {/if} - {if $info[p].functions} - <dt class="folder-title">Functions</dt> - {section name=f loop=$info[p].functions} - <dd><a href='{$info[p].functions[f].link}' target='right'>{$info[p].functions[f].title}</a></dd> - {/section} - {/if} - {if $info[p].files} - <dt class="folder-title">Files</dt> - {section name=nonclass loop=$info[p].files} - <dd><a href='{$info[p].files[nonclass].link}' target='right'>{$info[p].files[nonclass].title}</a></dd> - {/section} - {/if} - </dl> - </dd> - - {/if} - - {/section} - </dl> -</div> -<p class="notes"><a href="{$phpdocwebsite}" target="_blank">phpDocumentor v <span class="field">{$phpdocversion}</span></a></p> -</BODY> -</HTML> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/media/banner.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/media/banner.css deleted file mode 100755 index f2149ebb..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/media/banner.css +++ /dev/null @@ -1,32 +0,0 @@ -body -{ - background-color: #CCCCFF; - margin: 0px; - padding: 0px; -} - -/* Banner (top bar) classes */ - -.banner { } - -.banner-menu -{ - clear: both; - padding: .5em; - border-top: 2px solid #6666AA; -} - -.banner-title -{ - text-align: right; - font-size: 20pt; - font-weight: bold; - margin: .2em; -} - -.package-selector -{ - background-color: #AAAADD; - border: 1px solid black; - color: yellow; -} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/media/stylesheet.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/media/stylesheet.css deleted file mode 100755 index 1fc91c19..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/media/stylesheet.css +++ /dev/null @@ -1,144 +0,0 @@ -a { color: #336699; text-decoration: none; } -a:hover { color: #6699CC; text-decoration: underline; } -a:active { color: #6699CC; text-decoration: underline; } - -body { background : #FFFFFF; } -body, table { font-family: Georgia, Times New Roman, Times, serif; font-size: 10pt } -p, li { line-height: 140% } -a img { border: 0px; } -dd { margin-left: 0px; padding-left: 1em; } - -/* Page layout/boxes */ - -.info-box {} -.info-box-title { margin: 1em 0em 0em 0em; padding: .25em; font-weight: normal; font-size: 14pt; border: 2px solid #999999; background-color: #CCCCFF } -.info-box-body { border: 1px solid #999999; padding: .5em; } -.nav-bar { font-size: 8pt; white-space: nowrap; text-align: right; padding: .2em; margin: 0em 0em 1em 0em; } - -.oddrow { background-color: #F8F8F8; border: 1px solid #AAAAAA; padding: .5em; margin-bottom: 1em} -.evenrow { border: 1px solid #AAAAAA; padding: .5em; margin-bottom: 1em} - -.page-body { max-width: 800px; margin: auto; } -.tree dl { margin: 0px } - -/* Index formatting classes */ - -.index-item-body { margin-top: .5em; margin-bottom: .5em} -.index-item-description { margin-top: .25em } -.index-item-details { font-weight: normal; font-style: italic; font-size: 8pt } -.index-letter-section { background-color: #EEEEEE; border: 1px dotted #999999; padding: .5em; margin-bottom: 1em} -.index-letter-title { font-size: 12pt; font-weight: bold } -.index-letter-menu { text-align: center; margin: 1em } -.index-letter { font-size: 12pt } - -/* Docbook classes */ - -.description {} -.short-description { font-weight: bold; color: #666666; } -.tags { padding-left: 0em; margin-left: 3em; color: #666666; list-style-type: square; } -.parameters { padding-left: 0em; margin-left: 3em; font-style: italic; list-style-type: square; } -.redefinitions { font-size: 8pt; padding-left: 0em; margin-left: 2em; } -.package { } -.package-title { font-weight: bold; font-size: 14pt; border-bottom: 1px solid black } -.package-details { font-size: 85%; } -.sub-package { font-weight: bold; font-size: 120% } -.tutorial { border-width: thin; border-color: #0066ff } -.tutorial-nav-box { width: 100%; border: 1px solid #999999; background-color: #F8F8F8; } -.nav-button-disabled { color: #999999; } -.nav-button:active, -.nav-button:focus, -.nav-button:hover { background-color: #DDDDDD; outline: 1px solid #999999; text-decoration: none } -.folder-title { font-style: italic } - -/* Generic formatting */ - -.field { font-weight: bold; } -.detail { font-size: 8pt; } -.notes { font-style: italic; font-size: 8pt; } -.separator { background-color: #999999; height: 2px; } -.warning { color: #FF6600; } -.disabled { font-style: italic; color: #999999; } - -/* Code elements */ - -.line-number { } - -.class-table { width: 100%; } -.class-table-header { border-bottom: 1px dotted #666666; text-align: left} -.class-name { color: #000000; font-weight: bold; } - -.method-summary { padding-left: 1em; font-size: 8pt } -.method-header { } -.method-definition { margin-bottom: .3em } -.method-title { font-weight: bold; } -.method-name { font-weight: bold; } -.method-signature { font-size: 85%; color: #666666; margin: .5em 0em } -.method-result { font-style: italic; } - -.var-summary { padding-left: 1em; font-size: 8pt; } -.var-header { } -.var-title { margin-bottom: .3em } -.var-type { font-style: italic; } -.var-name { font-weight: bold; } -.var-default {} -.var-description { font-weight: normal; color: #000000; } - -.include-title { } -.include-type { font-style: italic; } -.include-name { font-weight: bold; } - -.const-title { } -.const-name { font-weight: bold; } - -/* Syntax highlighting */ - -.src-code { border: 1px solid #336699; padding: 1em; background-color: #EEEEEE; } -.src-line { font-family: 'Courier New', Courier, monospace; font-weight: normal; } - -.src-comm { color: green; } -.src-id { } -.src-inc { color: #0000FF; } -.src-key { color: #0000FF; } -.src-num { color: #CC0000; } -.src-str { color: #66cccc; } -.src-sym { font-weight: bold; } -.src-var { } - -.src-php { font-weight: bold; } - -.src-doc { color: #009999 } -.src-doc-close-template { color: #0000FF } -.src-doc-coretag { color: #0099FF; font-weight: bold } -.src-doc-inlinetag { color: #0099FF } -.src-doc-internal { color: #6699cc } -.src-doc-tag { color: #0080CC } -.src-doc-template { color: #0000FF } -.src-doc-type { font-style: italic } -.src-doc-var { font-style: italic } - -.tute-tag { color: #009999 } -.tute-attribute-name { color: #0000FF } -.tute-attribute-value { color: #0099FF } -.tute-entity { font-weight: bold; } -.tute-comment { font-style: italic } -.tute-inline-tag { color: #636311; font-weight: bold } - -/* tutorial */ - -.authors { } -.author { font-style: italic; font-weight: bold } -.author-blurb { margin: .5em 0em .5em 2em; font-size: 85%; font-weight: normal; font-style: normal } -.example { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; } -*[class="example"] { line-height : 0.5em } -.listing { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; white-space: nowrap; } -*[class="listing"] { line-height : 0.5em } -.release-info { font-size: 85%; font-style: italic; margin: 1em 0em } -.ref-title-box { } -.ref-title { } -.ref-purpose { font-style: italic; color: #666666 } -.ref-synopsis { } -.title { font-weight: bold; margin: 1em 0em 0em 0em; padding: .25em; border: 2px solid #999999; background-color: #CCCCFF } -.cmd-synopsis { margin: 1em 0em } -.cmd-title { font-weight: bold } -.toc { margin-left: 2em; padding-left: 0em } - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/method.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/method.tpl deleted file mode 100755 index 3ef9ee53..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/method.tpl +++ /dev/null @@ -1,151 +0,0 @@ -<A NAME='method_detail'></A> -{section name=methods loop=$methods} -{if $methods[methods].static} -<a name="method{$methods[methods].function_name}" id="{$methods[methods].function_name}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="method-header"> - <span class="method-title">static method {$methods[methods].function_name}</span> (line <span class="line-number">{if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags params=$methods[methods].params function=false} - - <div class="method-signature"> - static - <span class="method-result">{$methods[methods].function_return}</span> - <span class="method-name"> - {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name} - </span> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $methods[methods].params} - <ul class="parameters"> - {section name=params loop=$methods[methods].params} - <li> - <span class="var-type">{$methods[methods].params[params].datatype}</span> - <span class="var-name">{$methods[methods].params[params].var}</span>{if $methods[methods].params[params].data}<span class="var-description">: {$methods[methods].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $methods[methods].method_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$methods[methods].method_overrides.link}</dt> - {if $methods[methods].method_overrides.sdesc} - <dd>{$methods[methods].method_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} - - {if $methods[methods].descmethod} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=dm loop=$methods[methods].descmethod} - <li> - {$methods[methods].descmethod[dm].link} - {if $methods[methods].descmethod[dm].sdesc} - : {$methods[methods].descmethod[dm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} -</div> -{/if} -{/section} - -{section name=methods loop=$methods} -{if !$methods[methods].static} -<a name="method{$methods[methods].function_name}" id="{$methods[methods].function_name}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="method-header"> - <span class="method-title">{if $methods[methods].ifunction_call.constructor}Constructor {elseif $methods[methods].ifunction_call.destructor}Destructor {/if}{$methods[methods].function_name}</span> (line <span class="line-number">{if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags params=$methods[methods].params function=false} - - <div class="method-signature"> - <span class="method-result">{$methods[methods].function_return}</span> - <span class="method-name"> - {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name} - </span> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $methods[methods].params} - <ul class="parameters"> - {section name=params loop=$methods[methods].params} - <li> - <span class="var-type">{$methods[methods].params[params].datatype}</span> - <span class="var-name">{$methods[methods].params[params].var}</span>{if $methods[methods].params[params].data}<span class="var-description">: {$methods[methods].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $methods[methods].method_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$methods[methods].method_overrides.link}</dt> - {if $methods[methods].method_overrides.sdesc} - <dd>{$methods[methods].method_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} - - {if $methods[methods].descmethod} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=dm loop=$methods[methods].descmethod} - <li> - {$methods[methods].descmethod[dm].link} - {if $methods[methods].descmethod[dm].sdesc} - : {$methods[methods].descmethod[dm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} -</div> -{/if} -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/page.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/page.tpl deleted file mode 100755 index b5980236..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/page.tpl +++ /dev/null @@ -1,211 +0,0 @@ -{include file="header.tpl" top3=true} - -<h2 class="file-name">{$source_location}</h2> - -<a name="sec-description"></a> -<div class="info-box"> - <div class="info-box-title">Description</div> - <div class="nav-bar"> - {if $classes || $includes || $defines || $globals || $functions} - <span class="disabled">Description</span> | - {/if} - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="docblock.tpl" desc=$desc sdesc=$sdesc tags=$tags} - - {if $tutorial} - <hr class="separator" /> - <div class="notes">Tutorial: <span class="tutorial">{$tutorial}</div> - {/if} - </div> -</div> - -{if $classes} - <a name="sec-classes"></a> - <div class="info-box"> - <div class="info-box-title">Classes</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - <span class="disabled">Classes</span> - {if $includes || $defines || $globals || $functions}|{/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - <table cellpadding="2" cellspacing="0" class="class-table"> - <tr> - <th class="class-table-header">Class</th> - <th class="class-table-header">Description</th> - </tr> - {section name=classes loop=$classes} - <tr> - <td style="padding-right: 2em; vertical-align: top"> - {$classes[classes].link} - </td> - <td> - {if $classes[classes].sdesc} - {$classes[classes].sdesc} - {else} - {$classes[classes].desc} - {/if} - </td> - </tr> - {/section} - </table> - </div> - </div> -{/if} - -{if $includes} - <a name="sec-includes"></a> - <div class="info-box"> - <div class="info-box-title">Includes</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - <span class="disabled">Includes</span> - {if $defines || $globals || $functions}|{/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="include.tpl"} - </div> - </div> -{/if} - -{if $defines} - <a name="sec-constants"></a> - <div class="info-box"> - <div class="info-box-title">Constants</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - <span class="disabled">Constants</span> - {if $globals || $functions}|{/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="define.tpl"} - </div> - </div> -{/if} - -{if $globals} - <a name="sec-variables"></a> - <div class="info-box"> - <div class="info-box-title">Variables</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - <span class="disabled">Variables</span> - {if $functions}|{/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="global.tpl"} - </div> - </div> -{/if} - -{if $functions} - <a name="sec-functions"></a> - <div class="info-box"> - <div class="info-box-title">Functions</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - <span class="disabled">Functions</span> - </div> - <div class="info-box-body"> - {include file="function.tpl"} - </div> - </div> -{/if} - -{include file="footer.tpl" top3=true} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/pkgelementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/pkgelementindex.tpl deleted file mode 100755 index dc283ad0..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/pkgelementindex.tpl +++ /dev/null @@ -1,17 +0,0 @@ -{include file="header.tpl"} -<a name="top"></a> -<h2>[{$package}] element index</h2> -{if count($packageindex) > 1} - <h3>Package indexes</h3> - <ul> - {section name=p loop=$packageindex} - {if $packageindex[p].title != $package} - <li><a href="elementindex_{$packageindex[p].title}.html">{$packageindex[p].title}</a></li> - {/if} - {/section} - </ul> -{/if} -<a href="elementindex.html">All elements</a> -<br /> -{include file="basicindex.tpl" indexname=elementindex_$package} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/ric.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/ric.tpl deleted file mode 100755 index eff734c1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/ric.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl"} -<h1 align="center">{$name}</h1> -<pre> -{$contents|htmlentities} -</pre> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/todolist.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/todolist.tpl deleted file mode 100755 index f929ccdb..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/todolist.tpl +++ /dev/null @@ -1,14 +0,0 @@ -{include file="header.tpl" title="Todo List"} -<div align="center"><h1>Todo List</h1></div> -{foreach from=$todos key=todopackage item=todo} -<h2>{$todopackage}</h2> -{section name=todo loop=$todo} -<h3>{$todo[todo].link}</h3> -<ul> -{section name=t loop=$todo[todo].todos} - <li>{$todo[todo].todos[t]}</li> -{/section} -</ul> -{/section} -{/foreach} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/top_frame.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/top_frame.tpl deleted file mode 100755 index fbe7eda3..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/top_frame.tpl +++ /dev/null @@ -1,43 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <!-- template designed by Marco Von Ballmoos --> - <title>{$title}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - <link rel="stylesheet" href="{$subdir}media/banner.css" /> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> - </head> - <body> - <div class="banner"> - <div class="banner-title">{$package}</div> - <div class="banner-menu"> - <table cellpadding="0" cellspacing="0" style="width: 100%"> - <tr> - <td> - {if count($ric) >= 1} - {assign var="last_ric_name" value=""} - {section name=ric loop=$ric} - {if $last_ric_name != ""} | {/if} - <a href="{$ric[ric].file}" target="right">{$ric[ric].name}</a> - {assign var="last_ric_name" value=$ric[ric].name} - {/section} - {/if} - </td> - <td style="width: 2em"> </td> - <td style="text-align: right"> - {if count($packages) > 1} - {assign var="last_package_name" value=""} - {section name=p loop=$packages} - {if $last_package_name != ""} | {/if} - <a href="{$packages[p].link}" target="left_bottom">{$packages[p].title}</a> - {assign var="last_package_name" value=$packages[p].title} - {/section} - {/if} - </td> - </tr> - </table> - </div> - </div> - </body> - </html>
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/tutorial.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/tutorial.tpl deleted file mode 100755 index 3b9109d1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/tutorial.tpl +++ /dev/null @@ -1,13 +0,0 @@ -{include file="header.tpl" title=$title top3=true} - -{if $nav} - {include file="tutorial_nav.tpl" prev=$prev next=$next up=$up prevtitle=$prevtitle nexttitle=$nexttitle uptitle=$uptitle} -{/if} - -{$contents} - -{if $nav} - {include file="tutorial_nav.tpl" prev=$prev next=$next up=$up prevtitle=$prevtitle nexttitle=$nexttitle uptitle=$uptitle} -{/if} - -{include file="footer.tpl" top3=true}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/tutorial_nav.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/tutorial_nav.tpl deleted file mode 100755 index 89952301..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/tutorial_nav.tpl +++ /dev/null @@ -1,41 +0,0 @@ -<table class="tutorial-nav-box"> - <tr> - <td style="width: 30%"> - {if $prev} - <a href="{$prev}" class="nav-button">Previous</a> - {else} - <span class="nav-button-disabled">Previous</span> - {/if} - </td> - <td style="text-align: center"> - {if $up} - <a href="{$up}" class="nav-button">Up</a> - {/if} - </td> - <td style="text-align: right; width: 30%"> - {if $next} - <a href="{$next}" class="nav-button">Next</a> - {else} - <span class="nav-button-disabled">Next</span> - {/if} - </td> - </tr> - <tr> - <td style="width: 30%"> - {if $prevtitle} - <span class="detail">{$prevtitle}</span> - {/if} - </td> - <td style="text-align: center"> - {if $uptitle} - <span class="detail">{$uptitle}</span> - {/if} - </td> - <td style="text-align: right; width: 30%"> - {if $nexttitle} - <span class="detail">{$nexttitle}</span> - {/if} - </td> - </tr> -</table> -
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/tutorial_toc.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/tutorial_toc.tpl deleted file mode 100755 index 3482249b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/tutorial_toc.tpl +++ /dev/null @@ -1,40 +0,0 @@ -{if count($toc)} -<h1 class="title">Table of Contents</h1> -<ul class="toc"> - {assign var="lastcontext" value='refsect1'} - {section name=toc loop=$toc} - - {if $toc[toc].tagname != $lastcontext} - {if $lastcontext == 'refsect1'} - <ul class="toc"> - <li>{$toc[toc].link}</li> - {else} - {if $lastcontext == 'refsect2'} - {if $toc[toc].tagname == 'refsect1'} - </ul> - <li>{$toc[toc].link}</li> - {/if} - {if $toc[toc].tagname == 'refsect3'} - <ul class="toc"> - <li>{$toc[toc].link}</li> - {/if} - {else} - </ul> - </ul> - <li>{$toc[toc].link}</li> - {/if} - {/if} - {assign var="lastcontext" value=$toc[toc].tagname} - {else} - <li>{$toc[toc].link}</li> - {/if} - {/section} - {if $lastcontext == 'refsect2'} - </ul> - {/if} - {if $lastcontext == 'refsect3'} - </ul> - </ul> - {/if} -</ul> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/tutorial_tree.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/tutorial_tree.tpl deleted file mode 100755 index 617b5654..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/tutorial_tree.tpl +++ /dev/null @@ -1,6 +0,0 @@ -<div><a href="{$main.link}" target="right">{$main.title|strip_tags}</a></div> -{if $haskids} -<div style="margin-left: 1em"> - {$kids} -</div> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/var.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/var.tpl deleted file mode 100755 index 607d7681..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/default/templates/var.tpl +++ /dev/null @@ -1,91 +0,0 @@ -{section name=vars loop=$vars} -{if $vars[vars].static} -<a name="var{$vars[vars].var_name}" id="{$vars[vars].var_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="var-header"> - <span class="var-title"> - static <span class="var-type">{$vars[vars].var_type}</span> - <span class="var-name">{$vars[vars].var_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$vars[vars].var_default|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} - - {if $vars[vars].var_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$vars[vars].var_overrides.link}</dt> - {if $vars[vars].var_overrides.sdesc} - <dd>{$vars[vars].var_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - - {if $vars[vars].descvar} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=vm loop=$vars[vars].descvar} - <li> - {$vars[vars].descvar[vm].link} - {if $vars[vars].descvar[vm].sdesc} - : {$vars[vars].descvar[vm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} - -</div> -{/if} -{/section} -{section name=vars loop=$vars} -{if !$vars[vars].static} -<a name="var{$vars[vars].var_name}" id="{$vars[vars].var_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="var-header"> - <span class="var-title"> - <span class="var-type">{$vars[vars].var_type}</span> - <span class="var-name">{$vars[vars].var_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$vars[vars].var_default|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} - - {if $vars[vars].var_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$vars[vars].var_overrides.link}</dt> - {if $vars[vars].var_overrides.sdesc} - <dd>{$vars[vars].var_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - - {if $vars[vars].descvar} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=vm loop=$vars[vars].descvar} - <li> - {$vars[vars].descvar[vm].link} - {if $vars[vars].descvar[vm].sdesc} - : {$vars[vars].descvar[vm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} - -</div> -{/if} -{/section} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/options.ini b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/options.ini deleted file mode 100755 index 64638d09..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/options.ini +++ /dev/null @@ -1,576 +0,0 @@ -preservedocbooktags = false - -;; used to highlight the {@source} inline tag, @filesource tag, and @example tag -[highlightSourceTokens] -;; format: -;; T_CONSTANTNAME = open -;; /T_CONSTANTNAME = close - -T_INCLUDE = <span class="src-inc"> -/T_INCLUDE = </span> -T_INCLUDE_ONCE = <span class="src-inc"> -/T_INCLUDE_ONCE = </span> -T_REQUIRE_ONCE = <span class="src-inc"> -/T_REQUIRE_ONCE = </span> -T_REQUIRE_ONCE = <span class="src-inc"> -/T_REQUIRE_ONCE = </span> - -T_CONSTANT_ENCAPSED_STRING = <span class="src-str"> -/T_CONSTANT_ENCAPSED_STRING = </span> -T_STRING_VARNAME = <span class="src-str"> -/T_STRING_VARNAME = </span> - -T_STRING = <span class="src-id"> -/T_STRING = </span> - -T_DNUMBER = <span class="src-num"> -/T_DNUMBER = </span> -T_LNUMBER = <span class="src-num"> -/T_LNUMBER = </span> - -T_VARIABLE = <span class="src-var"> -/T_VARIABLE = </span> - -T_COMMENT = <span class="src-comm"> -/T_COMMENT = </span> -T_ML_COMMENT = <span class="src-comm"> -/T_ML_COMMENT = </span> - -T_OBJECT_OPERATOR = <span class="src-sym"> -/T_OBJECT_OPERATOR = </span> - -T_ABSTRACT = <span class="src-key"> -/T_ABSTRACT = </span> -T_CLONE = <span class="src-key"> -/T_CLONE = </span> -T_HALT_COMPILER = <span class="src-key"> -/T_HALT_COMPILER = </span> -T_ARRAY = <span class="src-key"> -/T_ARRAY = </span> -T_AS = <span class="src-key"> -/T_AS = </span> -T_BREAK = <span class="src-key"> -/T_BREAK = </span> -T_CLASS = <span class="src-key"> -/T_CLASS = </span> -T_CASE = <span class="src-key"> -/T_CASE = </span> -T_CONST = <span class="src-key"> -/T_CONST = </span> -T_CONTINUE = <span class="src-key"> -/T_CONTINUE = </span> -T_DECLARE = <span class="src-key"> -/T_DECLARE = </span> -T_DEFAULT = <span class="src-key"> -/T_DEFAULT = </span> -T_ELSE = <span class="src-key"> -/T_ELSE = </span> -T_ELSEIF = <span class="src-key"> -/T_ELSEIF = </span> -T_EMPTY = <span class="src-key"> -/T_EMPTY = </span> -T_ENDDECLARE = <span class="src-key"> -/T_ENDDECLARE = </span> -T_ENDFOR = <span class="src-key"> -/T_ENDFOR = </span> -T_ENDSWITCH = <span class="src-key"> -/T_ENDSWITCH = </span> -T_ENDFOREACH = <span class="src-key"> -/T_ENDFOREACH = </span> -T_ENDIF = <span class="src-key"> -/T_ENDIF = </span> -T_ENDWHILE = <span class="src-key"> -/T_ENDWHILE = </span> -T_EXIT = <span class="src-key"> -/T_EXIT = </span> -T_EXTENDS = <span class="src-key"> -/T_EXTENDS = </span> -T_FINAL = <span class="src-key"> -/T_FINAL = </span> -T_FOR = <span class="src-key"> -/T_FOR = </span> -T_FOREACH = <span class="src-key"> -/T_FOREACH = </span> -T_FUNCTION = <span class="src-key"> -/T_FUNCTION = </span> -T_GLOBAL = <span class="src-key"> -/T_GLOBAL = </span> -T_IF = <span class="src-key"> -/T_IF = </span> -T_IMPLEMENTS = <span class="src-key"> -/T_IMPLEMENTS = </span> -T_INTERFACE = <span class="src-key"> -/T_INTERFACE = </span> -T_LOGICAL_AND = <span class="src-key"> -/T_LOGICAL_AND = </span> -T_LOGICAL_OR = <span class="src-key"> -/T_LOGICAL_OR = </span> -T_LOGICAL_XOR = <span class="src-key"> -/T_LOGICAL_XOR = </span> -T_NEW = <span class="src-key"> -/T_NEW = </span> -T_PRIVATE = <span class="src-key"> -/T_PRIVATE = </span> -T_PROTECTED = <span class="src-key"> -/T_PROTECTED = </span> -T_PUBLIC = <span class="src-key"> -/T_PUBLIC = </span> -T_RETURN = <span class="src-key"> -/T_RETURN = </span> -T_STATIC = <span class="src-key"> -/T_STATIC = </span> -T_SWITCH = <span class="src-key"> -/T_SWITCH = </span> -T_VAR = <span class="src-key"> -/T_VAR = </span> -T_WHILE = <span class="src-key"> -/T_WHILE = </span> - -T_DOUBLE_COLON = <span class="src-sym"> -/T_DOUBLE_COLON = </span> - -T_OPEN_TAG = <span class="src-php"> -/T_OPEN_TAG = </span> -T_OPEN_TAG_WITH_ECHO = <span class="src-php"> -/T_OPEN_TAG_WITH_ECHO = </span> -T_CLOSE_TAG = <span class="src-php"> -/T_CLOSE_TAG = </span> - - -[highlightSource] -;; this is for highlighting things that aren't tokens like "&" -;; format: -;; word = open -;; /word = close -@ = <span class="src-sym"> -/@ = </span> -& = <span class="src-sym"> -/& = </span> -[ = <span class="src-sym"> -/[ = </span> -] = <span class="src-sym"> -/] = </span> -! = <span class="src-sym"> -/! = </span> -";" = <span class="src-sym"> -/; = </span> -( = <span class="src-sym"> -/( = </span> -) = <span class="src-sym"> -/) = </span> -, = <span class="src-sym"> -/, = </span> -{ = <span class="src-sym"> -/{ = </span> -} = <span class="src-sym"> -/} = </span> -""" = <span class="src-str"> -/" = </span> - -[highlightDocBlockSourceTokens] -;; this is for docblock tokens, using by phpDocumentor_HighlightParser -;; tagphptype is for "string" in @param string description, for example -docblock = <span class="src-doc"> -/docblock = </span> -tagphptype = <span class="src-doc-type"> -/tagphptype = </span> -tagvarname = <span class="src-doc-var"> -/tagvarname = </span> -coretag = <span class="src-doc-coretag"> -/coretag = </span> -tag = <span class="src-doc-tag"> -/tag = </span> -inlinetag = <span class="src-doc-inlinetag"> -/inlinetag = </span> -internal = <span class="src-doc-internal"> -/internal = </span> -closetemplate = <span class="src-doc-close-template"> -/closetemplate = </span> -docblocktemplate = <span class="src-doc-template"> -/docblocktemplate = </span> - -[highlightTutorialSourceTokens] -;; this is for XML DocBook-based tutorials, highlighted by phpDocumentor_TutorialHighlightParser -;; <tag> -opentag = <span class="tute-tag"> -/opentag = </span> -;; </tag> -closetag = <span class="tute-tag"> -/closetag = </span> -;; <tag attribute="value"> -attribute = <span class="tute-attribute-name"> -/attribute = </span> -;; <tag attribute="value"> -attributevalue = <span class="tute-attribute-value"> -/attributevalue = </span> -;; &entity; -entity = <span class="tute-entity"> -/entity = </span> -;; <!-- comment --> -comment = <span class="tute-comment"> -/comment = </span> -;; {@inline tag} -itag = <span class="tute-inline-tag"> -/itag = </span> - -;; used for translation of html in DocBlocks -[desctranslate] -ul = <ul> -/ul = </ul> -ol = <ol> -/ol = </ol> -li = <li> -/li = </li> -code = -/code = -var = <var> -/var = </var> -samp = <samp> -/samp = </samp> -kbd = <kbd> -/kbd = </kbd> -pre = <pre> -/pre = </pre> -p = <p> -/p = </p> -b = <strong> -/b = </strong> -i = <em> -/i = </em> -br = <br /> - -[ppage] -;; this is the DocBook package page translation section. All DocBook tags -;; that have a corresponding html tag must be listed here. Entities should -;; also be listed here -;; -;; examples: -;; 1) -;; tagname = newtagname -;; -;; This is the simplest case, where all attributes will be added into the -;; starting tag and the ending tag will be html/xml style </tranlatedtagname> -;; <tagname></tagname> becomes <newtagname></newtagname> and -;; <tagname attr="value"></tagname> becomes -;; <newtagname attr="value"></newtagname> -;; -;; 2) -;; tagname = newtagname -;; tagname->attr = newattrname -;; -;; in this case, everything will be like the first case, except tags like: -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="value"></newtagname> -;; -;; 3) -;; tagname = newtagname -;; tagname->attr = newattrname -;; tagname->attr+value = newvalue -;; -;; in this case, the value is also translated to another. This can be useful -;; for instances such as focus="middle" changing to align="center" or something -;; of that nature. -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 4) -;; tagname = newtagname -;; tagname->attr1 = newattrname -;; tagname->attr2 = newattrname -;; tagname->attr1+value|attr2+value = newvalue -;; -;; in this case, two attributes combine to make one new attribute, and the combined -;; value is translated into a new value -;; <tagname attr1="value1" attr2="value2"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 5) -;; tagname = newtagname -;; tagname!attr = dummy -;; -;; here, the attribute will be ignored. dummy is not used and may be any value -;; <tagname attr="value"></tagname> will become -;; <newtagname></newtagname> -;; -;; 6) -;; tagname = newtagname -;; tagname! = dummy -;; -;; here, all attributes will be ignored. dummy is not used and may be any value -;; <tagname attr1="value" attr2="foo"></tagname> will become -;; <newtagname></newtagname> -;; -;; 7) -;; tagname = newtagname -;; tagname/ = 1 -;; -;; here, the tag will be translated as a single tag with no closing tag, and all -;; attributes -;; <tagname attr="val">{text text}</tagname> will become -;; <newtagname attr="val" /> -;; -;; 8) -;; tagname = <starttaginfo /> -;; /tagname = closetagtext -;; -;; in this case, the text <starttaginfo> will be inserted exactly as entered for -;; <tagname> and closetagtext for </tagname> -;; <tagname attr="val"></tagname> will become -;; <starttaginfo />closetagtext -;; -;; 9) -;; $attr$my_attribute = newattrname -;; -;; tagname = newtagname -;; -;; in this case, all occurences of my_attribute in any tag will be changed to -;; newattrname. This is useful for changing things like role="php" to -;; class="php," for example. Note that the text "$attr$" MUST be on the line -;; start for phpDocumentor to recognize it. -;; -;; 10) -;; &entity; = translation text -;; " = " -;; " = """ -;; < = < -;; -;; Use this to control translation of entities to their appropriate values - - = -" = " -” = ” -“ = “ -& = & -< = < -> = > -© = © - -$attr$role = class - -abbrev = abbr - -blockquote = blockquote - -arg = span -arg->choice = class - -author = <span class="author"> -/author = </span> -author! = 0 - -authorblurb = <div class="author-blurb"> -/authorblurb = </div> - -authorgroup = <div class="authors"><h2 class="title">Authors</h2> -/authorgroup = </div> -authorgroup! = 0 - -caution = <span class="warning"> -/caution = </span> -caution! = 0 - -cmdsynopsis = <div class="cmd-synopsis"> -/cmdsynopsis = </div> - -command = <span class="cmd-title"> -/command = </span> - -copyright = <div class="notes"> -/copyright = </div> - -emphasis = em - -example = <div class="src-code"> -/example = </div> -example! = 0 - -formalpara = p - -graphic = img -graphic->fileref = src -graphic/ = - -function = -/function = () - -important = strong - -informalequation = blockquote - -informalexample = div - -inlineequation = em - -itemizedlist = ul - -listitem = li - -literal = code - -literallayout = span - -option = " " -/option = - -orderedlist = ol - -para = p - -programlisting = <div class="src-code"> -/programlisting = </div> -programlisting! = 0 - -refentry = div - -refnamediv = <div class="ref-title-box"> -/refnamediv = </div> -refnamediv! = 0 - -refname = <h1 class="ref-title"> -/refname = </h1> - -refpurpose = <h2 class="ref-purpose"> -/refpurpose = </h2> - -refsynopsisdiv = <div class="ref-synopsis"> -/refsynopsisdiv = </div> -refsynopsisdiv! = 0 - -refsect1 = span - -refsect2 = span - -refsect3 = -/refsect3 = <br /> - -releaseinfo = <div class="release-info">( -/releaseinfo = )</div> - -simpara = -/simpara = <br /> -simpara! = 0 - -subscript = sub - -superscript = super - -table = table - -table->colsep = rules -table->rowsep = rules -table->colsep+1|rowsep+1 =all -table->colsep+1|rowsep+0 =cols -table->colsep+0|rowsep+1 =rows - -table->frame =frame -table->frame+all =border -table->frame+none =void -table->frame+sides =vsides -table->frame+top =above -table->frame+topbot =hsides - -thead = thead - -tfoot = tfoot - -tbody = tbody - -colspec = col - -tgroup = colgroup -tgroup/ = 1 -tgroup->cols = span - -row = tr - -entry = td -entry->morerows = colspan -entry->morerows+1 =2 -entry->morerows+2 =3 -entry->morerows+3 =4 -entry->morerows+4 =5 -entry->morerows+5 =6 -entry->morerows+6 =7 -entry->morerows+7 =8 -entry->morerows+8 =9 -entry->morerows+9 =10 -entry->morerows+10 =11 -;; add more if you need more colspans - -warning = <span class="warning"> -/warning = </span> -warning! = 0 - -;; now begins the attributes that should be tags in cdata -[$attr$id] -open = a -;close = /a -cdata! = true -quotevalues = true -separator = "=" -;separateall = true -$id = name - -;; now begins the sections that deal with <title> -[refsynopsisdiv_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h1 class="title"> -close = </h1> - -[refsect1_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h2 class="title"> -close = </h2> - -[refsect2_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h3 class="title"> -close = </h3> - -[refsect3_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h4 class="title"> -close = </h4> - -[para_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <div class="title"> -close = </div> - -[formalpara_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <div class="title"> -close = </div> - -[example_title] -;tag_attr = true -;attr_name = title -;cdata_start = true -cdata_end = true -open = </td></tr><tr><td><strong> -close = </strong> - -[table_title] -;tag_attr = true -;attr_name = true -cdata_start = true -open = <caption> -close = </caption> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/basicindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/basicindex.tpl deleted file mode 100755 index f90100b4..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/basicindex.tpl +++ /dev/null @@ -1,57 +0,0 @@ -<div class="index-letter-menu"> -{section name=letter loop=$letters} - <a class="index-letter" href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> -{/section} -</div> - -{section name=index loop=$index} - <a name="{$index[index].letter}"></a> - <div class="index-letter-section"> - <div style="float: left" class="index-letter-title">{$index[index].letter}</div> - <div style="float: right"><a href="#top">top</a></div> - <div style="clear: both"></div> - </div> - <dl> - {section name=contents loop=$index[index].index} - <dt class="field"> - {if ($index[index].index[contents].title == "Variable")} - <img src="{$subdir}media/images/{if $index[index].index[contents].access == 'private'}Private{/if}{$index[index].index[contents].title}.png" alt="{$index[index].index[contents].title}" title="{$index[index].index[contents].title}" /> - <span class="var-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Global")} - <img src="{$subdir}media/images/{$index[index].index[contents].title}.png" alt="{$index[index].index[contents].title}" title="{$index[index].index[contents].title}" /> - <span class="var-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Method")} - <img src="{$subdir}media/images/{if $index[index].index[contents].constructor}Constructor{elseif $index[index].index[contents].destructor}Destructor{else}{if $index[index].index[contents].abstract}Abstract{/if}{if $index[index].index[contents].access == 'private'}Private{/if}{$index[index].index[contents].title}{/if}.png" alt="{$index[index].index[contents].title}" title="{$index[index].index[contents].title}" /> - <span class="method-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Function")} - <img src="{$subdir}media/images/{$index[index].index[contents].title}.png" alt="{$index[index].index[contents].title}" title="{$index[index].index[contents].title}" /> - <span class="method-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Constant")} - <img src="{$subdir}media/images/{$index[index].index[contents].title}.png" alt="{$index[index].index[contents].title}" title="{$index[index].index[contents].title}" /> - <span class="const-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Page") || ($index[index].index[contents].title == "Include")} - <img src="{$subdir}media/images/{$index[index].index[contents].title}.png" alt="{$index[index].index[contents].title}" title="{$index[index].index[contents].title}" /> - <span class="include-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Class")} - <img src="{$subdir}media/images/{if $index[index].index[contents].abstract}Abstract{/if}{if $index[index].index[contents].access == 'private'}Private{/if}{$index[index].index[contents].title}.png" alt="{$index[index].index[contents].title}" title="{$index[index].index[contents].title}" /> - {$index[index].index[contents].name} - {else} - <img src="{$subdir}media/images/{$index[index].index[contents].title}.png" alt="{$index[index].index[contents].title}" title="{$index[index].index[contents].title}" /> - {$index[index].index[contents].name} - {/if} - </dt> - <dd class="index-item-body"> - <div class="index-item-details">{$index[index].index[contents].link} in {$index[index].index[contents].file_name}</div> - {if $index[index].index[contents].description} - <div class="index-item-description">{$index[index].index[contents].description}</div> - {/if} - </dd> - {/section} - </dl> -{/section} - -<div class="index-letter-menu"> -{section name=letter loop=$letters} - <a class="index-letter" href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> -{/section} -</div> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/blank.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/blank.tpl deleted file mode 100755 index 6a05f27e..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/blank.tpl +++ /dev/null @@ -1,13 +0,0 @@ -<html> -<head> - <title>{$maintitle}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> -</head> -<body> -<div align="center"><h1>{$maintitle}</h1></div> -<b>Welcome to {$package}!</b><br /> -<br /> -This documentation was generated by <a href="{$phpdocwebsite}">phpDocumentor v{$phpdocversion}</a><br /> -</body> -</html>
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/class.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/class.tpl deleted file mode 100755 index 7a46002e..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/class.tpl +++ /dev/null @@ -1,437 +0,0 @@ -{include file="header.tpl" top3=true} - -<h2 class="class-name"><img src="{$subdir}media/images/{if $abstract}{if $access == 'private'}AbstractPrivate{else}Abstract{/if}{else}{if $access == 'private'}Private{/if}{/if}{if $is_interface}Interface{else}Class{/if}_logo.png" - alt="{if $abstract}{if $access == 'private'}AbstractPrivate{else}Abstract{/if}{else}{if $access == 'private'}Private{/if}{/if} Class" - title="{if $abstract}{if $access == 'private'}AbstractPrivate{else}Abstract{/if}{else}{if $access == 'private'}Private{/if}{/if} Class" - style="vertical-align: middle">{if $is_interface}Interface{/if} {$class_name}</h2> - -<a name="sec-description"></a> -<div class="info-box"> - <div class="info-box-title">Description</div> - <div class="nav-bar"> - {if $children || $vars || $ivars || $methods || $imethods || $consts || $iconsts} - <span class="disabled">Description</span> | - {/if} - {if $children} - <a href="#sec-descendents">Descendents</a> - {if $vars || $ivars || $methods || $imethods || $consts || $iconsts}|{/if} - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {if $methods || $imethods}|{/if} - {/if} - {if $methods || $imethods} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {if $implements} - <p class="implements"> - Implements interfaces: - <ul> - {foreach item="int" from=$implements}<li>{$int}</li>{/foreach} - </ul> - </p> - {/if} - {include file="docblock.tpl" type="class" sdesc=$sdesc desc=$desc} - <p class="notes"> - Located in <a class="field" href="{$page_link}">{$source_location}</a> (line <span class="field">{if $class_slink}{$class_slink}{else}{$line_number}{/if}</span>) - </p> - - {if $tutorial} - <hr class="separator" /> - <div class="notes">Tutorial: <span class="tutorial">{$tutorial}</span></div> - {/if} - - <pre>{section name=tree loop=$class_tree.classes}{$class_tree.classes[tree]}{$class_tree.distance[tree]}{/section}</pre> - - {if $conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with classes:</span><br /> - {section name=me loop=$conflicts.conflicts} - {$conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - </div> -</div> - -{if $children} - <a name="sec-descendents"></a> - <div class="info-box"> - <div class="info-box-title">Direct descendents</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - <span class="disabled">Descendents</span> - {if $vars || $ivars || $methods || $imethods || $consts || $iconsts}|{/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {if $methods || $imethods}|{/if} - {/if} - {if $methods || $imethods} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <table cellpadding="2" cellspacing="0" class="class-table"> - <tr> - <th class="class-table-header">Class</th> - <th class="class-table-header">Description</th> - </tr> - {section name=kids loop=$children} - <tr> - <td style="padding-right: 2em; white-space: nowrap"> - <img src="{$subdir}media/images/{if $children[kids].abstract}Abstract{/if}{if $children[kids].access == 'private'}Private{/if}Class.png" - alt="{if $children[kids].abstract}Abstract{/if}{if $children[kids].access == 'private'}Private{/if} class" - title="{if $children[kids].abstract}Abstract{/if}{if $children[kids].access == 'private'}Private{/if} class" - style="vertical-align: center"/> - {$children[kids].link} - </td> - <td> - {if $children[kids].sdesc} - {$children[kids].sdesc} - {else} - {$children[kids].desc} - {/if} - </td> - </tr> - {/section} - </table> - </div> - </div> -{/if} - -{if $consts} - <a name="sec-const-summary"></a> - <div class="info-box"> - <div class="info-box-title">Class Constant Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendants</a> | - {/if} - <span class="disabled">Constants</span> (<a href="#sec-consts">details</a>) - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - | - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <div class="const-summary"> - {section name=consts loop=$consts} - <div class="const-title"> - <img src="{$subdir}media/images/Constant.png" alt=" " /> - <a href="#{$consts[consts].const_name}" title="details" class="const-name">{$consts[consts].const_name}</a> = <span class="var-type">{$consts[consts].const_value}</span> - - </div> - {/section} - </div> - </div> - </div> -{/if} - -{if $vars} - <a name="sec-var-summary"></a> - <div class="info-box"> - <div class="info-box-title">Variable Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendants</a> | - {/if} - <span class="disabled">Vars</span> (<a href="#sec-vars">details</a>) - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <div class="var-summary"> - {section name=vars loop=$vars} - {if $vars[vars].static} - <div class="var-title"> - <img src="{$subdir}media/images/StaticVariable.png" alt=" " /> - static <span class="var-type">{$vars[vars].var_type}</span> - <a href="#{$vars[vars].var_name}" title="details" class="var-name">{$vars[vars].var_name}</a> - </div> - {/if} - {/section} - {section name=vars loop=$vars} - {if !$vars[vars].static} - <div class="var-title"> - <img src="{$subdir}media/images/{if $vars[vars].access == 'private'}PrivateVariable{else}Variable{/if}.png" alt=" " /> - <span class="var-type">{$vars[vars].var_type}</span> - <a href="#{$vars[vars].var_name}" title="details" class="var-name">{$vars[vars].var_name}</a> - </div> - {/if} - {/section} - </div> - </div> - </div> -{/if} - -{if $methods} - <a name="sec-method-summary"></a> - <div class="info-box"> - <div class="info-box-title">Method Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendants</a> | - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - | - {/if} - <span class="disabled">Methods</span> (<a href="#sec-methods">details</a>) - </div> - <div class="info-box-body"> - <div class="method-summary"> - {section name=methods loop=$methods} - {if $methods[methods].static} - <div class="method-definition"> - <img src="{$subdir}media/images/StaticMethod.png" alt=" "/> - {if $methods[methods].function_return} - static <span class="method-result">{$methods[methods].function_return}</span> - {/if} - <a href="#{$methods[methods].function_name}" title="details" class="method-name">{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}</a> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - {/if} - {/section} - {section name=methods loop=$methods} - {if !$methods[methods].static} - <div class="method-definition"> - <img src="{$subdir}media/images/{if $methods[methods].ifunction_call.constructor}Constructor{elseif $methods[methods].ifunction_call.destructor}Destructor{elseif $methods[methods].access == 'private'}{if $methods[methods].abstract}Abstract{/if}PrivateMethod{else}{if $methods[methods].abstract}Abstract{/if}Method{/if}.png" alt=" "/> - {if $methods[methods].function_return} - <span class="method-result">{$methods[methods].function_return}</span> - {/if} - <a href="#{$methods[methods].function_name}" title="details" class="method-name">{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}</a> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - {/if} - {/section} - </div> - </div> - </div> -{/if} - -{if $vars || $ivars} - <a name="sec-vars"></a> - <div class="info-box"> - <div class="info-box-title">Variables</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $methods} - <a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Vars</span> - {/if} - - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {include file="var.tpl"} - {if $ivars} - <h4>Inherited Variables</h4> - <A NAME='inherited_vars'><!-- --></A> - {section name=ivars loop=$ivars} - <p>Inherited from <span class="classname">{$ivars[ivars].parent_class}</span></p> - <blockquote> - {section name=ivars2 loop=$ivars[ivars].ivars} - <img src="{$subdir}media/images/{if $ivars[ivars].ivars[ivars2].access == 'private'}PrivateVariable{else}Variable{/if}.png" /> - <span class="var-title"> - <span class="var-name">{$ivars[ivars].ivars[ivars2].link}</span>{if $ivars[ivars].ivars[ivars2].ivar_sdesc}: {$ivars[ivars].ivars[ivars2].ivar_sdesc}{/if}<br> - </span> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{if $methods || $imethods} - <a name="sec-methods"></a> - <div class="info-box"> - <div class="info-box-title">Methods</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {/if} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Methods</span> - {/if} - </div> - <div class="info-box-body"> - {include file="method.tpl"} - {if $imethods} - <h4>Inherited Methods</h4> - <a name='inherited_methods'><!-- --></a> - {section name=imethods loop=$imethods} - <!-- =========== Summary =========== --> - <p>Inherited From <span class="classname">{$imethods[imethods].parent_class}</span></p> - <blockquote> - {section name=im2 loop=$imethods[imethods].imethods} - <img src="{$subdir}media/images/{if $imethods[imethods].imethods[im2].constructor}Constructor{elseif $imethods[imethods].imethods[im2].destructor}Destructor{elseif $imethods[imethods].imethods[im2].access == 'private'}{if $imethods[imethods].imethods[im2].abstract}Abstract{/if}PrivateMethod{else}{if $imethods[imethods].imethods[im2].abstract}Abstract{/if}Method{/if}.png" alt=" "/> - <span class="method-name">{$imethods[imethods].imethods[im2].link}</span>{if $imethods[imethods].imethods[im2].ifunction_sdesc}: {$imethods[imethods].imethods[im2].ifunction_sdesc}{/if}<br> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{if $consts || $iconsts} - <a name="sec-consts"></a> - <div class="info-box"> - <div class="info-box-title">Class Constants</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendants</a> | - {/if} - {if $methods} - <a href="#sec-var-summary">Constants</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Constants</span> - {/if} - - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {include file="const.tpl"} - {if $iconsts} - <h4>Inherited Constants</h4> - <A NAME='inherited_consts'><!-- --></A> - {section name=iconsts loop=$iconsts} - <p>Inherited from <span class="classname">{$iconsts[iconsts].parent_class}</span></p> - <blockquote> - {section name=iconsts2 loop=$iconsts[iconsts].iconsts} - <img src="{$subdir}media/images/{if $iconsts[iconsts].iconsts[iconsts2].access == 'private'}PrivateVariable{else}Variable{/if}.png" /> - <span class="const-title"> - <span class="const-name">{$iconsts[iconsts].iconsts[iconsts2].link}</span>{if $iconsts[iconsts].iconsts[iconsts2].iconst_sdesc}: {$iconsts[iconsts].iconsts[iconsts2].iconst_sdesc}{/if}<br> - </span> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{include file="footer.tpl" top3=true} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/classtrees.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/classtrees.tpl deleted file mode 100755 index 952e6d50..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/classtrees.tpl +++ /dev/null @@ -1,19 +0,0 @@ -{include file="header.tpl" top1=true} - -<!-- Start of Class Data --> -<H2> - {$smarty.capture.title} -</H2> -{if $interfaces} -{section name=classtrees loop=$interfaces} -<h2>Root interface {$interfaces[classtrees].class}</h2> -{$interfaces[classtrees].class_tree} -{/section} -{/if} -{if $classtrees} -{section name=classtrees loop=$classtrees} -<h2>Root class {$classtrees[classtrees].class}</h2> -{$classtrees[classtrees].class_tree} -{/section} -{/if} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/const.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/const.tpl deleted file mode 100644 index c26ff92d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/const.tpl +++ /dev/null @@ -1,18 +0,0 @@ -{section name=consts loop=$consts} -<a name="const{$consts[consts].const_name}" id="{$consts[consts].const_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="const-header"> - <img src="{$subdir}media/images/{if $consts[consts].access == 'private'}PrivateVariable{else}Variable{/if}.png" /> - <span class="const-title"> - <span class="const-name">{$consts[consts].const_name}</span> - = <span class="const-default">{$consts[consts].const_value|replace:"\n":"<br />"}</span> - (line <span class="line-number">{if $consts[consts].slink}{$consts[consts].slink}{else}{$consts[consts].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$consts[consts].sdesc desc=$consts[consts].desc tags=$consts[consts].tags} - -</div> -{/section} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/define.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/define.tpl deleted file mode 100755 index 94078960..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/define.tpl +++ /dev/null @@ -1,25 +0,0 @@ -{section name=def loop=$defines} -<a name="{$defines[def].define_link}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <img src="{$subdir}media/images/Constant.png" /> - <span class="const-title"> - <span class="const-name">{$defines[def].define_name}</span> = {$defines[def].define_value|replace:"\n":"<br />"} - (line <span class="line-number">{if $defines[def].slink}{$defines[def].slink}{else}{$defines[def].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$defines[def].sdesc desc=$defines[def].desc tags=$defines[def].tags} - - {if $globals[glob].global_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with constants:</span><br /> - {section name=me loop=$defines[def].define_conflicts.conflicts} - {$defines[def].define_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/docblock.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/docblock.tpl deleted file mode 100755 index 783d5271..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/docblock.tpl +++ /dev/null @@ -1,14 +0,0 @@ -<!-- ========== Info from phpDoc block ========= --> -{if $sdesc} -<p class="short-description">{$sdesc}</p> -{/if} -{if $desc} -<p class="description">{$desc}</p> -{/if} -{if $tags} - <ul class="tags"> - {section name=tags loop=$tags} - <li><span class="field">{$tags[tags].keyword}:</span> {$tags[tags].data}</li> - {/section} - </ul> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/elementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/elementindex.tpl deleted file mode 100755 index d5964f99..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/elementindex.tpl +++ /dev/null @@ -1,12 +0,0 @@ -{include file="header.tpl" noleftindex=true} -<a name="top"></a> -<h2>Full index</h2> -<h3>Package indexes</h3> -<ul> -{section name=p loop=$packageindex} - <li><a href="elementindex_{$packageindex[p].title}.html">{$packageindex[p].title}</a></li> -{/section} -</ul> -<br /> -{include file="basicindex.tpl" indexname="elementindex"} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/errors.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/errors.tpl deleted file mode 100755 index 0f526584..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/errors.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{include file="header.tpl" noleftindex=true} -{section name=files loop=$files} -<a href="#{$files[files].file}">{$files[files].file}</a><br> -{/section} -{foreach key=file item=issues from=$all} -<a name="{$file}"></a> -<h1>{$file}</h1> -{if count($issues.warnings)} -<h2>Warnings:</h2><br> -{section name=warnings loop=$issues.warnings} -<b>{$issues.warnings[warnings].name}</b> - {$issues.warnings[warnings].listing}<br> -{/section} -{/if} -{if count($issues.errors)} -<h2>Errors:</h2><br> -{section name=errors loop=$issues.errors} -<b>{$issues.errors[errors].name}</b> - {$issues.errors[errors].listing}<br> -{/section} -{/if} -{/foreach} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/examplesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/examplesource.tpl deleted file mode 100755 index 8abf74ce..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/examplesource.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl" title=$title} -<h1>{$title}</h1> -<div class="listing"> -{$source} -</div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/filesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/filesource.tpl deleted file mode 100755 index 239f7b41..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/filesource.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{capture name="tutle"}File Source for {$name}{/capture} -{include file="header.tpl" title=$smarty.capture.tutle} -<h1>Source for file {$name}</h1> -<p>Documentation is available at {$docs}</p> -<div class="src-code"> -{$source} -</div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/footer.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/footer.tpl deleted file mode 100755 index 8d0f79db..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/footer.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{if !$index} - <p class="notes" id="credit"> - Documentation generated on {$date} by <a href="{$phpdocwebsite}" target="_blank">phpDocumentor {$phpdocversion}</a> - </p> -{/if} - {if $top3}</div>{/if} -</body> -</html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/function.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/function.tpl deleted file mode 100755 index e62a98ae..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/function.tpl +++ /dev/null @@ -1,44 +0,0 @@ -{section name=func loop=$functions} -<a name="{$functions[func].function_dest}" id="{$functions[func].function_dest}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <img src="{$subdir}media/images/Function.png" /> - <span class="method-title">{$functions[func].function_name}</span> (line <span class="line-number">{if $functions[func].slink}{$functions[func].slink}{else}{$functions[func].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$functions[func].sdesc desc=$functions[func].desc tags=$functions[func].tags params=$functions[func].params function=false} - <div class="method-signature"> - <span class="method-result">{$functions[func].function_return}</span> - <span class="method-name"> - {if $functions[func].ifunction_call.returnsref}&{/if}{$functions[func].function_name} - </span> - {if count($functions[func].ifunction_call.params)} - ({section name=params loop=$functions[func].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $functions[func].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$functions[func].ifunction_call.params[params].type}</span> <span class="var-name">{$functions[func].ifunction_call.params[params].name}</span>{if $functions[func].ifunction_call.params[params].hasdefault} = <span class="var-default">{$functions[func].ifunction_call.params[params].default|escape:"html"}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $functions[func].params} - <ul class="parameters"> - {section name=params loop=$functions[func].params} - <li> - <span class="var-type">{$functions[func].params[params].datatype}</span> - <span class="var-name">{$functions[func].params[params].var}</span>{if $functions[func].params[params].data}<span class="var-description">: {$functions[func].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $functions[func].function_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with functions:</span><br /> - {section name=me loop=$functions[func].function_conflicts.conflicts} - {$functions[func].function_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/global.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/global.tpl deleted file mode 100755 index d37bda37..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/global.tpl +++ /dev/null @@ -1,27 +0,0 @@ -{section name=glob loop=$globals} -<a name="{$globals[glob].global_link}" id="{$globals[glob].global_link}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <img src="{$subdir}media/images/Global.png" /> - <span class="var-title"> - <span class="var-type">{$globals[glob].global_type}</span> - <span class="var-name">{$globals[glob].global_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$globals[glob].global_value|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $globals[glob].slink}{$globals[glob].slink}{else}{$globals[glob].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$globals[glob].sdesc desc=$globals[glob].desc tags=$globals[glob].tags} - - {if $globals[glob].global_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with global variables:</span><br /> - {section name=me loop=$globals[glob].global_conflicts.conflicts} - {$globals[glob].global_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/header.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/header.tpl deleted file mode 100755 index c22ba37d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/header.tpl +++ /dev/null @@ -1,12 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <!-- template designed by Marco Von Ballmoos --> - <title>{$title}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> - </head> - <body> - {if $top3}<div class="page-body">{/if} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/include.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/include.tpl deleted file mode 100755 index f264afd3..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/include.tpl +++ /dev/null @@ -1,17 +0,0 @@ -{section name=includes loop=$includes} -<a name="{$includes[includes].include_file}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <img src="{$subdir}media/images/Page.png" alt=" " /> - <span class="include-title"> - <span class="include-type">{$includes[includes].include_name}</span> - (<span class="include-name">{$includes[includes].include_value}</span>) - (line <span class="line-number">{if $includes[includes].slink}{$includes[includes].slink}{else}{$includes[includes].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$includes[includes].sdesc desc=$includes[includes].desc tags=$includes[includes].tags} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/index.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/index.tpl deleted file mode 100755 index 7cd61094..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/index.tpl +++ /dev/null @@ -1,24 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html - PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//FR" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> -<head> - <!-- Generated by phpDocumentor on {$date} --> - <title>{$title}</title> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> -</head> - -<FRAMESET rows='120,*'> - <FRAME src='packages.html' name='left_top' frameborder="1" bordercolor="#999999"> - <FRAMESET cols='25%,*'> - <FRAME src='{$start}' name='left_bottom' frameborder="1" bordercolor="#999999"> - <FRAME src='{$blank}.html' name='right' frameborder="1" bordercolor="#999999"> - </FRAMESET> - <NOFRAMES> - <H2>Frame Alert</H2> - <P>This document is designed to be viewed using the frames feature. - If you see this message, you are using a non-frame-capable web client.</P> - </NOFRAMES> -</FRAMESET> -</HTML> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/left_frame.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/left_frame.tpl deleted file mode 100755 index fe79e521..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/left_frame.tpl +++ /dev/null @@ -1,159 +0,0 @@ -{include file="header.tpl" top2=true} -<div class="package-title">{$package}</div> -<div class="package-details"> - - <dl class="tree"> - - <dt class="folder-title">Description</dt> - <dd> - <a href='{$classtreepage}.html' target='right'>Class trees</a><br /> - <a href='{$elementindex}.html' target='right'>Index of elements</a><br /> - {if $hastodos} - <a href="{$todolink}" target="right">Todo List</a><br /> - {/if} - </dd> - - {section name=p loop=$info} - - {if $info[p].subpackage == ""} - - {if $info[p].tutorials} - <dt class="folder-title"><img class="tree-icon" src="{$subdir}media/images/tutorial_folder.png" alt=" ">Tutorials/Manuals</dt> - <dd> - {if $info[p].tutorials.pkg} - <dl class="tree"> - <dt class="folder-title"><img class="tree-icon" src="{$subdir}media/images/package_folder.png" alt=" ">Package-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.pkg} - {$info[p].tutorials.pkg[ext]} - {/section} - </dd> - </dl> - {/if} - - {if $info[p].tutorials.cls} - <dl class="tree"> - <dt class="folder-title"><img class="tree-icon" src="{$subdir}media/images/class_folder.png" alt=" ">Class-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.cls} - {$info[p].tutorials.cls[ext]} - {/section} - </dd> - </dl> - {/if} - - {if $info[p].tutorials.proc} - <dl class="tree"> - <dt class="folder-title"><img class="tree-icon" src="{$subdir}media/images/function_folder.png" alt=" ">Function-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.proc} - {$info[p].tutorials.proc[ext]} - {/section} - </dd> - </dl> - {/if} - </dd> - {/if} - {if $info[p].hasinterfaces} - <dt class="folder-title"><img class="tree-icon" src="{$subdir}media/images/class_folder.png" alt=" ">Interfaces</dt> - {section name=class loop=$info[p].classes} - {if $info[p].classes[class].is_interface} - <dd><img class="tree-icon" src="{$subdir}media/images/Interface.png" alt="Interface"><a href='{$info[p].classes[class].link}' target='right'>{$info[p].classes[class].title}</a></dd> - {/if} - {/section} - {/if} - {if $info[p].hasclasses} - <dt class="folder-title"><img class="tree-icon" src="{$subdir}media/images/class_folder.png" alt=" ">Classes</dt> - {section name=class loop=$info[p].classes} - {if $info[p].classes[class].is_class} - <dd><img class="tree-icon" src="{$subdir}media/images/{if $info[p].classes[class].abstract}Abstract{/if}{if $info[p].classes[class].access == 'private'}Private{/if}Class.png" alt="Class"><a href='{$info[p].classes[class].link}' target='right'>{$info[p].classes[class].title}</a></dd> - {/if} - {/section} - {/if} - {if $info[p].functions} - <dt class="folder-title"><img class="tree-icon" src="{$subdir}media/images/function_folder.png" alt=" ">Functions</dt> - {section name=f loop=$info[p].functions} - <dd><img class="tree-icon" src="{$subdir}media/images/Function.png" alt="Function"><a href='{$info[p].functions[f].link}' target='right'>{$info[p].functions[f].title}</a></dd> - {/section} - {/if} - {if $info[p].files} - <dt class="folder-title"><img class="tree-icon" src="{$subdir}media/images/folder.png" alt=" ">Files</dt> - {section name=nonclass loop=$info[p].files} - <dd><img class="tree-icon" src="{$subdir}media/images/Page.png" alt="File"><a href='{$info[p].files[nonclass].link}' target='right'>{$info[p].files[nonclass].title}</a></dd> - {/section} - {/if} - - {else} - {if $info[p].tutorials} - <dt class="folder-title"><img class="tree-icon" src="{$subdir}media/images/tutorial_folder.png" alt=" ">Tutorials/Manuals</dt> - <dd> - {if $info[p].tutorials.pkg} - <dl class="tree"> - <dt class="folder-title"><img class="tree-icon" src="{$subdir}media/images/package_folder.png" alt=" ">Package-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.pkg} - {$info[p].tutorials.pkg[ext]} - {/section} - </dd> - </dl> - {/if} - - {if $info[p].tutorials.cls} - <dl class="tree"> - <dt class="folder-title"><img class="tree-icon" src="{$subdir}media/images/class_folder.png" alt=" ">Class-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.cls} - {$info[p].tutorials.cls[ext]} - {/section} - </dd> - </dl> - {/if} - - {if $info[p].tutorials.proc} - <dl class="tree"> - <dt class="folder-title"><img class="tree-icon" src="{$subdir}media/images/function_folder.png" alt=" ">Function-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.proc} - {$info[p].tutorials.proc[ext]} - {/section} - </dd> - </dl> - {/if} - </dd> - {/if} - - <dt class="sub-package"><img class="tree-icon" src="{$subdir}media/images/package.png" alt="Sub-package">{$info[p].subpackage}</dt> - <dd> - <dl class="tree"> - {if $info[p].subpackagetutorial} - <div><img class="tree-icon" src="{$subdir}media/images/tutorial.png" alt="Tutorial"><a href="{$info.0.subpackagetutorialnoa}" target="right">{$info.0.subpackagetutorialtitle}</a></div> - {/if} - {if $info[p].classes} - <dt class="folder-title"><img class="tree-icon" src="{$subdir}media/images/class_folder.png" alt=" ">Classes</dt> - {section name=class loop=$info[p].classes} - <dd><img class="tree-icon" src="{$subdir}media/images/{if $info[p].classes[class].abstract}Abstract{/if}{if $info[p].classes[class].access == 'private'}Private{/if}Class.png" alt="Class"><a href='{$info[p].classes[class].link}' target='right'>{$info[p].classes[class].title}</a></dd> - {/section} - {/if} - {if $info[p].functions} - <dt class="folder-title"><img class="tree-icon" src="{$subdir}media/images/function_folder.png" alt=" ">Functions</dt> - {section name=f loop=$info[p].functions} - <dd><img class="tree-icon" src="{$subdir}media/images/Function.png" alt="Function"><a href='{$info[p].functions[f].link}' target='right'>{$info[p].functions[f].title}</a></dd> - {/section} - {/if} - {if $info[p].files} - <dt class="folder-title"><img class="tree-icon" src="{$subdir}media/images/folder.png" alt=" ">Files</dt> - {section name=nonclass loop=$info[p].files} - <dd><img class="tree-icon" src="{$subdir}media/images/Page.png" alt="File"><a href='{$info[p].files[nonclass].link}' target='right'>{$info[p].files[nonclass].title}</a></dd> - {/section} - {/if} - </dl> - </dd> - - {/if} - - {/section} - </dl> -</div> -<p class="notes"><a href="{$phpdocwebsite}" target="_blank">phpDocumentor v <span class="field">{$phpdocversion}</span></a></p> -</BODY> -</HTML> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/banner.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/banner.css deleted file mode 100755 index 032b037f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/banner.css +++ /dev/null @@ -1,33 +0,0 @@ -body -{ - background-color: #EEEEEE; - margin: 0px; - padding: 0px; -} - -/* Banner (top bar) classes */ - -.banner { } - -.banner-menu -{ - text-align: right; - clear: both; - padding: .5em; - border-top: 2px solid #AAAAAA; -} - -.banner-title -{ - text-align: right; - font-size: 20pt; - font-weight: bold; - margin: .2em; -} - -.package-selector -{ - background-color: #DDDDDD; - border: 1px solid #AAAAAA; - color: #000090; -} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractClass.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractClass.png Binary files differdeleted file mode 100644 index afa9d1d9..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractClass.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractClass_logo.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractClass_logo.png Binary files differdeleted file mode 100644 index 8f65c390..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractClass_logo.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractMethod.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractMethod.png Binary files differdeleted file mode 100644 index 605ccbe5..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractMethod.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractPrivateClass.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractPrivateClass.png Binary files differdeleted file mode 100644 index 53d76c63..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractPrivateClass.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractPrivateClass_logo.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractPrivateClass_logo.png Binary files differdeleted file mode 100644 index 4e68f570..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractPrivateClass_logo.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractPrivateMethod.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractPrivateMethod.png Binary files differdeleted file mode 100644 index 41cc9f02..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/AbstractPrivateMethod.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Class.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Class.png Binary files differdeleted file mode 100755 index cf548d27..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Class.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Class_logo.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Class_logo.png Binary files differdeleted file mode 100644 index 6f223c47..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Class_logo.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Constant.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Constant.png Binary files differdeleted file mode 100755 index a9c6f28b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Constant.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Constructor.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Constructor.png Binary files differdeleted file mode 100755 index 3f16222b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Constructor.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Destructor.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Destructor.png Binary files differdeleted file mode 100755 index f28528f0..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Destructor.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Function.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Function.png Binary files differdeleted file mode 100755 index 902fe258..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Function.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Global.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Global.png Binary files differdeleted file mode 100755 index 7281bd2a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Global.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/I.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/I.png Binary files differdeleted file mode 100755 index e8512fb9..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/I.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Index.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Index.png Binary files differdeleted file mode 100755 index 6558ec39..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Index.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Interface.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Interface.png Binary files differdeleted file mode 100644 index e6cd51ed..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Interface.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Interface_logo.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Interface_logo.png Binary files differdeleted file mode 100644 index 6f223c47..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Interface_logo.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/L.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/L.png Binary files differdeleted file mode 100755 index eb334eda..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/L.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Lminus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Lminus.png Binary files differdeleted file mode 100755 index f7c43c0a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Lminus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Lplus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Lplus.png Binary files differdeleted file mode 100755 index 848ec2fc..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Lplus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Method.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Method.png Binary files differdeleted file mode 100755 index 9b215784..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Method.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Page.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Page.png Binary files differdeleted file mode 100755 index ffe7986e..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Page.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Page_logo.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Page_logo.png Binary files differdeleted file mode 100644 index 44ce0b3c..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Page_logo.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/PrivateClass.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/PrivateClass.png Binary files differdeleted file mode 100755 index 470e6d56..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/PrivateClass.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/PrivateClass_logo.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/PrivateClass_logo.png Binary files differdeleted file mode 100644 index 590e0064..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/PrivateClass_logo.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/PrivateMethod.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/PrivateMethod.png Binary files differdeleted file mode 100755 index d01f2b31..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/PrivateMethod.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/PrivateVariable.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/PrivateVariable.png Binary files differdeleted file mode 100755 index d76b21d4..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/PrivateVariable.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/StaticMethod.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/StaticMethod.png Binary files differdeleted file mode 100755 index 9b215784..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/StaticMethod.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/StaticVariable.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/StaticVariable.png Binary files differdeleted file mode 100755 index 8e820193..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/StaticVariable.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/T.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/T.png Binary files differdeleted file mode 100755 index 30173254..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/T.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Tminus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Tminus.png Binary files differdeleted file mode 100755 index 2260e424..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Tminus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Tplus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Tplus.png Binary files differdeleted file mode 100755 index 2c8d8f4f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Tplus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Variable.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Variable.png Binary files differdeleted file mode 100755 index 8e820193..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/Variable.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/blank.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/blank.png Binary files differdeleted file mode 100755 index cee9cd37..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/blank.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/class_folder.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/class_folder.png Binary files differdeleted file mode 100755 index 84e9587a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/class_folder.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/empty.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/empty.png Binary files differdeleted file mode 100644 index d5683865..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/empty.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/file.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/file.png Binary files differdeleted file mode 100755 index 0bb2427f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/file.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/folder.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/folder.png Binary files differdeleted file mode 100755 index a2d79f8d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/folder.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/function_folder.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/function_folder.png Binary files differdeleted file mode 100755 index 8b3d6e3b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/function_folder.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/next_button.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/next_button.png Binary files differdeleted file mode 100755 index cdbc615d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/next_button.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/next_button_disabled.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/next_button_disabled.png Binary files differdeleted file mode 100755 index 4a11780f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/next_button_disabled.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/package.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/package.png Binary files differdeleted file mode 100755 index b04cf566..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/package.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/package_folder.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/package_folder.png Binary files differdeleted file mode 100755 index 6162bafd..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/package_folder.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/previous_button.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/previous_button.png Binary files differdeleted file mode 100755 index 327fdbc2..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/previous_button.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/previous_button_disabled.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/previous_button_disabled.png Binary files differdeleted file mode 100755 index c02ff64b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/previous_button_disabled.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/private_class_logo.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/private_class_logo.png Binary files differdeleted file mode 100644 index 590e0064..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/private_class_logo.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/tutorial.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/tutorial.png Binary files differdeleted file mode 100755 index bc197375..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/tutorial.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/tutorial_folder.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/tutorial_folder.png Binary files differdeleted file mode 100755 index 2a468b2a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/tutorial_folder.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/up_button.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/up_button.png Binary files differdeleted file mode 100755 index ff36c593..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/images/up_button.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/stylesheet.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/stylesheet.css deleted file mode 100755 index 96729b65..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/media/stylesheet.css +++ /dev/null @@ -1,146 +0,0 @@ -a { color: #000090; text-decoration: none; } -a:hover, a:active, a:focus { color: highlighttext; background-color: highlight; text-decoration: none; } - -body { background: #FFFFFF; } -body, table { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10pt; } - -a img { border: 0px; } - -/* Page layout/boxes */ - -.info-box { } -.info-box-title { margin: 1em 0em 0em 0em; font-weight: normal; font-size: 14pt; color: #999999; border-bottom: 2px solid #999999; } -.info-box-body { border: 1px solid #999999; padding: .5em; } -.nav-bar { font-size: 8pt; white-space: nowrap; text-align: right; padding: .2em; margin: 0em 0em 1em 0em; } - -.oddrow { background-color: #F8F8F8; border: 1px solid #AAAAAA; padding: .5em; margin-bottom: 1em} -.evenrow { border: 1px solid #AAAAAA; padding: .5em; margin-bottom: 1em} - -.page-body { max-width: 800px; margin: auto; } -.tree { white-space: nowrap; font: icon } -.tree dd { margin-left: 19px } -.tree dl { margin: 0px } -.tree-icon { vertical-align: middle; border: 0px; margin-right: 3px } - -/* Index formatting classes */ - -.index-item-body { margin-top: .5em; margin-bottom: .5em} -.index-item-description { margin-top: .25em } -.index-item-details { font-weight: normal; font-style: italic; font-size: 8pt } -.index-letter-section { background-color: #EEEEEE; border: 1px dotted #999999; padding: .5em; margin-bottom: 1em} -.index-letter-title { font-size: 12pt; font-weight: bold } -.index-letter-menu { text-align: center; margin: 1em } -.index-letter { font-size: 12pt } - -/* Docbook classes */ - -.description {} -.short-description { font-weight: bold; color: #666666; } -.tags { padding-left: 0em; margin-left: 3em; color: #666666; list-style-type: square; } -.parameters { padding-left: 0em; margin-left: 3em; color: #014fbe; list-style-type: square; } -.redefinitions { font-size: 8pt; padding-left: 0em; margin-left: 2em; } -.package { font-weight: bold; } -.package-title { font-weight: bold; font-size: 14pt; border-bottom: 1px solid black } -.package-details { font-size: 85%; } -.sub-package { font-weight: bold; } -.tutorial { border-width: thin; border-color: #0066ff; } -.tutorial-nav-box { width: 100%; border: 1px solid #999999; background-color: #F8F8F8; } -.folder-title { font-style: italic; font-family: Verdana, Arial, Helvetica, sans-serif } - -/* Generic formatting */ - -.field { font-weight: bold; } -.detail { font-size: 8pt; } -.notes { font-style: italic; font-size: 8pt; } -.separator { background-color: #999999; height: 2px; } -.warning { color: #FF6600; } -.disabled { font-style: italic; color: #999999; } - -/* Code elements */ - -.line-number { } - -.class-table { width: 100%; } -.class-table-header { border-bottom: 1px dotted #666666; text-align: left} -.class-name { color: #0000AA; font-weight: bold; } - -.method-summary { color: #009000; padding-left: 1em; font-size: 8pt; } -.method-header { } -.method-definition { margin-bottom: .2em } -.method-title { color: #009000; font-weight: bold; } -.method-name { font-weight: bold; } -.method-signature { font-size: 85%; color: #666666; margin: .5em 0em } -.method-result { font-style: italic; } - -.var-summary { padding-left: 1em; font-size: 8pt; } -.var-header { } -.var-title { color: #014fbe; margin-bottom: .3em } -.var-type { font-style: italic; } -.var-name { font-weight: bold; } -.var-default {} -.var-description { font-weight: normal; color: #000000; } - -.include-title { color: #014fbe;} -.include-type { font-style: italic; } -.include-name { font-weight: bold; } - -.const-title { color: #FF6600; } -.const-name { font-weight: bold; } - -/* Syntax highlighting */ - -.src-code { font-family: 'Courier New', Courier, monospace; font-weight: normal; } -.src-line { font-family: 'Courier New', Courier, monospace; font-weight: normal; } - -.src-code a:link { padding: 1px; text-decoration: underline; color: #0000DD; } -.src-code a:visited { text-decoration: underline; color: #0000DD; } -.src-code a:active { background-color: #FFFF66; color: #008000; } -.src-code a:hover { background-color: #FFFF66; text-decoration: overline underline; color: #008000; } - -.src-comm { color: #666666; } -.src-id { color: #FF6600; font-style: italic; } -.src-inc { color: #0000AA; font-weight: bold; } -.src-key { color: #0000AA; font-weight: bold; } -.src-num { color: #CC0000; } -.src-str { color: #CC0000; } -.src-sym { } -.src-var { } - -.src-php { font-weight: bold; } - -.src-doc { color: #666666; } -.src-doc-close-template { color: #666666 } -.src-doc-coretag { color: #008000; } -.src-doc-inlinetag {} -.src-doc-internal {} -.src-doc-tag { color: #0080CC; } -.src-doc-template { color: #666666 } -.src-doc-type { font-style: italic; color: #444444 } -.src-doc-var { color: #444444 } - -.tute-tag { color: #009999 } -.tute-attribute-name { color: #0000FF } -.tute-attribute-value { color: #0099FF } -.tute-entity { font-weight: bold; } -.tute-comment { font-style: italic } -.tute-inline-tag { color: #636311; font-weight: bold } - -/* tutorial */ - -.authors { } -.author { font-style: italic; font-weight: bold } -.author-blurb { margin: .5em 0em .5em 2em; font-size: 85%; font-weight: normal; font-style: normal } -.example { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; } -*[class="example"] { line-height : 1.0em; } -.listing { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; white-space: nowrap; } -*[class="listing"] { line-height : 1.0em; } -.release-info { font-size: 85%; font-style: italic; margin: 1em 0em } -.ref-title-box { } -.ref-title { } -.ref-purpose { font-style: italic; color: #666666 } -.ref-synopsis { } -.title { font-weight: bold; border-bottom: 1px solid #999999; color: #999999; } -.cmd-synopsis { margin: 1em 0em } -.cmd-title { font-weight: bold } -.toc { margin-left: 2em; padding-left: 0em } - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/method.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/method.tpl deleted file mode 100755 index 413cc5ea..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/method.tpl +++ /dev/null @@ -1,151 +0,0 @@ -<A NAME='method_detail'></A> -{section name=methods loop=$methods} -{if $methods[methods].static} -<a name="method{$methods[methods].function_name}" id="{$methods[methods].function_name}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="method-header"> - <img src="{$subdir}media/images/StaticMethod.png" /> - <span class="method-title">static {$methods[methods].function_name}</span> (line <span class="line-number">{if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags params=$methods[methods].params function=false} - - <div class="method-signature"> - <span class="method-result">{$methods[methods].function_return}</span> - <span class="method-name"> - {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name} - </span> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $methods[methods].params} - <ul class="parameters"> - {section name=params loop=$methods[methods].params} - <li> - <span class="var-type">{$methods[methods].params[params].datatype}</span> - <span class="var-name">{$methods[methods].params[params].var}</span>{if $methods[methods].params[params].data}<span class="var-description">: {$methods[methods].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $methods[methods].method_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$methods[methods].method_overrides.link}</dt> - {if $methods[methods].method_overrides.sdesc} - <dd>{$methods[methods].method_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} - - {if $methods[methods].descmethod} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=dm loop=$methods[methods].descmethod} - <li> - {$methods[methods].descmethod[dm].link} - {if $methods[methods].descmethod[dm].sdesc} - : {$methods[methods].descmethod[dm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} -</div> -{/if} -{/section} -{section name=methods loop=$methods} -{if !$methods[methods].static} -<a name="method{$methods[methods].function_name}" id="{$methods[methods].function_name}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="method-header"> - <img src="{$subdir}media/images/{if $methods[methods].ifunction_call.constructor}Constructor{elseif $methods[methods].ifunction_call.destructor}Destructor{else}{if $methods[methods].abstract}Abstract{/if}{if $methods[methods].access == 'private'}Private{/if}Method{/if}.png" /> - <span class="method-title">{if $methods[methods].ifunction_call.constructor}Constructor {elseif $methods[methods].ifunction_call.destructor}Destructor {/if}{$methods[methods].function_name}</span> (line <span class="line-number">{if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags params=$methods[methods].params function=false} - - <div class="method-signature"> - <span class="method-result">{$methods[methods].function_return}</span> - <span class="method-name"> - {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name} - </span> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $methods[methods].params} - <ul class="parameters"> - {section name=params loop=$methods[methods].params} - <li> - <span class="var-type">{$methods[methods].params[params].datatype}</span> - <span class="var-name">{$methods[methods].params[params].var}</span>{if $methods[methods].params[params].data}<span class="var-description">: {$methods[methods].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $methods[methods].method_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$methods[methods].method_overrides.link}</dt> - {if $methods[methods].method_overrides.sdesc} - <dd>{$methods[methods].method_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} - - {if $methods[methods].descmethod} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=dm loop=$methods[methods].descmethod} - <li> - {$methods[methods].descmethod[dm].link} - {if $methods[methods].descmethod[dm].sdesc} - : {$methods[methods].descmethod[dm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} -</div> -{/if} -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/page.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/page.tpl deleted file mode 100755 index 2cffc22d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/page.tpl +++ /dev/null @@ -1,214 +0,0 @@ -{include file="header.tpl" top3=true} - -<h2 class="file-name"><img src="{$subdir}media/images/Page_logo.png" alt="File" style="vertical-align: middle">{$source_location}</h2> - -<a name="sec-description"></a> -<div class="info-box"> - <div class="info-box-title">Description</div> - <div class="nav-bar"> - {if $classes || $includes || $defines || $globals || $functions} - <span class="disabled">Description</span> | - {/if} - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="docblock.tpl" desc=$desc sdesc=$sdesc tags=$tags} - - {if $tutorial} - <hr class="separator" /> - <div class="notes">Tutorial: <span class="tutorial">{$tutorial}</div> - {/if} - </div> -</div> - -{if $classes} - <a name="sec-classes"></a> - <div class="info-box"> - <div class="info-box-title">Classes</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - <span class="disabled">Classes</span> - {if $includes || $defines || $globals || $functions}|{/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - <table cellpadding="2" cellspacing="0" class="class-table"> - <tr> - <th class="class-table-header">Class</th> - <th class="class-table-header">Description</th> - </tr> - {section name=classes loop=$classes} - <tr> - <td style="padding-right: 2em; vertical-align: top; white-space: nowrap"> - <img src="{$subdir}media/images/{if $classes[classes].abstract}Abstract{/if}{if $classes[classes].access == 'private'}Private{/if}Class.png" - alt="{if $classes[classes].abstract}Abstract{/if}{if $classes[classes].access == 'private'}Private{/if} class" - title="{if $classes[classes].abstract}Abstract{/if}{if $classes[classes].access == 'private'}Private{/if} class"/> - {$classes[classes].link} - </td> - <td> - {if $classes[classes].sdesc} - {$classes[classes].sdesc} - {else} - {$classes[classes].desc} - {/if} - </td> - </tr> - {/section} - </table> - </div> - </div> -{/if} - -{if $includes} - <a name="sec-includes"></a> - <div class="info-box"> - <div class="info-box-title">Includes</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - <span class="disabled">Includes</span> - {if $defines || $globals || $functions}|{/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="include.tpl"} - </div> - </div> -{/if} - -{if $defines} - <a name="sec-constants"></a> - <div class="info-box"> - <div class="info-box-title">Constants</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - <span class="disabled">Constants</span> - {if $globals || $functions}|{/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="define.tpl"} - </div> - </div> -{/if} - -{if $globals} - <a name="sec-variables"></a> - <div class="info-box"> - <div class="info-box-title">Variables</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - <span class="disabled">Variables</span> - {if $functions}|{/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="global.tpl"} - </div> - </div> -{/if} - -{if $functions} - <a name="sec-functions"></a> - <div class="info-box"> - <div class="info-box-title">Functions</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - <span class="disabled">Functions</span> - </div> - <div class="info-box-body"> - {include file="function.tpl"} - </div> - </div> -{/if} - -{include file="footer.tpl" top3=true} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/pkgelementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/pkgelementindex.tpl deleted file mode 100755 index dc283ad0..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/pkgelementindex.tpl +++ /dev/null @@ -1,17 +0,0 @@ -{include file="header.tpl"} -<a name="top"></a> -<h2>[{$package}] element index</h2> -{if count($packageindex) > 1} - <h3>Package indexes</h3> - <ul> - {section name=p loop=$packageindex} - {if $packageindex[p].title != $package} - <li><a href="elementindex_{$packageindex[p].title}.html">{$packageindex[p].title}</a></li> - {/if} - {/section} - </ul> -{/if} -<a href="elementindex.html">All elements</a> -<br /> -{include file="basicindex.tpl" indexname=elementindex_$package} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/ric.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/ric.tpl deleted file mode 100755 index ad792475..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/ric.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl"} -<div align="center"><h1>{$name}</h1></div> -<pre> -{$contents|htmlentities} -</pre> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/todolist.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/todolist.tpl deleted file mode 100755 index f929ccdb..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/todolist.tpl +++ /dev/null @@ -1,14 +0,0 @@ -{include file="header.tpl" title="Todo List"} -<div align="center"><h1>Todo List</h1></div> -{foreach from=$todos key=todopackage item=todo} -<h2>{$todopackage}</h2> -{section name=todo loop=$todo} -<h3>{$todo[todo].link}</h3> -<ul> -{section name=t loop=$todo[todo].todos} - <li>{$todo[todo].todos[t]}</li> -{/section} -</ul> -{/section} -{/foreach} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/top_frame.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/top_frame.tpl deleted file mode 100755 index 69beb10c..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/top_frame.tpl +++ /dev/null @@ -1,45 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <!-- template designed by Marco Von Ballmoos --> - <title>{$title}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - <link rel="stylesheet" href="{$subdir}media/banner.css" /> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> - </head> - <body> - <div class="banner"> - <div class="banner-title">{$package}</div> - <div class="banner-menu"> - <form> - <table cellpadding="0" cellspacing="0" style="width: 100%"> - <tr> - <td> - {if count($ric) >= 1} - {assign var="last_ric_name" value=""} - {section name=ric loop=$ric} - {if $last_ric_name != ""} | {/if} - <a href="{$ric[ric].file}" target="right">{$ric[ric].name}</a> - {assign var="last_ric_name" value=$ric[ric].name} - {/section} - {/if} - </td> - <td style="width: 2em"> </td> - <td style="text-align: right"> - {if count($packages) > 1} - <span class="field">Packages</span> - <select class="package-selector" onchange="window.parent.left_bottom.location=this[selectedIndex].value"> - {section name=p loop=$packages} - <option value="{$packages[p].link}">{$packages[p].title}</option> - {/section} - </select> - {/if} - </td> - </tr> - </table> - </form> - </div> - </div> - </body> - </html>
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/tutorial.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/tutorial.tpl deleted file mode 100755 index 3b9109d1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/tutorial.tpl +++ /dev/null @@ -1,13 +0,0 @@ -{include file="header.tpl" title=$title top3=true} - -{if $nav} - {include file="tutorial_nav.tpl" prev=$prev next=$next up=$up prevtitle=$prevtitle nexttitle=$nexttitle uptitle=$uptitle} -{/if} - -{$contents} - -{if $nav} - {include file="tutorial_nav.tpl" prev=$prev next=$next up=$up prevtitle=$prevtitle nexttitle=$nexttitle uptitle=$uptitle} -{/if} - -{include file="footer.tpl" top3=true}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/tutorial_nav.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/tutorial_nav.tpl deleted file mode 100755 index 3cd7893d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/tutorial_nav.tpl +++ /dev/null @@ -1,41 +0,0 @@ -<table class="tutorial-nav-box"> - <tr> - <td style="width: 30%"> - {if $prev} - <a href="{$prev}"><img src="{$subdir}media/images/previous_button.png" alt="Previous"></a> - {else} - <span class="disabled"><img src="{$subdir}media/images/previous_button_disabled.png" alt="Previous"></span> - {/if} - </td> - <td style="text-align: center"> - {if $up} - <a href="{$up}"><img src="{$subdir}media/images/up_button.png" alt="Up"></a> - {/if} - </td> - <td style="text-align: right; width: 30%"> - {if $next} - <a href="{$next}"><img src="{$subdir}media/images/next_button.png" alt="Next"></a> - {else} - <span class="disabled"><img src="{$subdir}media/images/next_button_disabled.png" alt="Next"></span> - {/if} - </td> - </tr> - <tr> - <td style="width: 30%"> - {if $prevtitle} - <span class="detail">{$prevtitle}</span> - {/if} - </td> - <td style="text-align: center"> - {if $uptitle} - <span class="detail">{$uptitle}</span> - {/if} - </td> - <td style="text-align: right; width: 30%"> - {if $nexttitle} - <span class="detail">{$nexttitle}</span> - {/if} - </td> - </tr> -</table> -
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/tutorial_toc.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/tutorial_toc.tpl deleted file mode 100755 index 3482249b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/tutorial_toc.tpl +++ /dev/null @@ -1,40 +0,0 @@ -{if count($toc)} -<h1 class="title">Table of Contents</h1> -<ul class="toc"> - {assign var="lastcontext" value='refsect1'} - {section name=toc loop=$toc} - - {if $toc[toc].tagname != $lastcontext} - {if $lastcontext == 'refsect1'} - <ul class="toc"> - <li>{$toc[toc].link}</li> - {else} - {if $lastcontext == 'refsect2'} - {if $toc[toc].tagname == 'refsect1'} - </ul> - <li>{$toc[toc].link}</li> - {/if} - {if $toc[toc].tagname == 'refsect3'} - <ul class="toc"> - <li>{$toc[toc].link}</li> - {/if} - {else} - </ul> - </ul> - <li>{$toc[toc].link}</li> - {/if} - {/if} - {assign var="lastcontext" value=$toc[toc].tagname} - {else} - <li>{$toc[toc].link}</li> - {/if} - {/section} - {if $lastcontext == 'refsect2'} - </ul> - {/if} - {if $lastcontext == 'refsect3'} - </ul> - </ul> - {/if} -</ul> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/tutorial_tree.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/tutorial_tree.tpl deleted file mode 100755 index 18c8b05a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/tutorial_tree.tpl +++ /dev/null @@ -1,6 +0,0 @@ -<div><img class="tree-icon" src="{$subdir}media/images/tutorial.png" alt="Tutorial"><a href="{$main.link}" target="right">{$main.title|strip_tags}</a></div> -{if $haskids} -<div style="margin-left: 19px"> - {$kids} -</div> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/var.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/var.tpl deleted file mode 100755 index 1da110cc..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/earthli/templates/var.tpl +++ /dev/null @@ -1,94 +0,0 @@ -{section name=vars loop=$vars} -{if $vars[vars].static} -<a name="var{$vars[vars].var_name}" id="{$vars[vars].var_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="var-header"> - <img src="{$subdir}media/images/{if $vars[vars].access == 'private'}PrivateVariable{else}Variable{/if}.png" /> - <span class="var-title"> - static <span class="var-type">{$vars[vars].var_type}</span> - <span class="var-name">{$vars[vars].var_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$vars[vars].var_default|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} - - {if $vars[vars].var_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$vars[vars].var_overrides.link}</dt> - {if $vars[vars].var_overrides.sdesc} - <dd>{$vars[vars].var_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - - {if $vars[vars].descvar} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=vm loop=$vars[vars].descvar} - <li> - {$vars[vars].descvar[vm].link} - {if $vars[vars].descvar[vm].sdesc} - : {$vars[vars].descvar[vm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} - -</div> -{/if} -{/section} - -{section name=vars loop=$vars} -{if !$vars[vars].static} -<a name="var{$vars[vars].var_name}" id="{$vars[vars].var_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="var-header"> - <img src="{$subdir}media/images/{if $vars[vars].access == 'private'}PrivateVariable{else}Variable{/if}.png" /> - <span class="var-title"> - <span class="var-type">{$vars[vars].var_type}</span> - <span class="var-name">{$vars[vars].var_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$vars[vars].var_default|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} - - {if $vars[vars].var_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$vars[vars].var_overrides.link}</dt> - {if $vars[vars].var_overrides.sdesc} - <dd>{$vars[vars].var_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - - {if $vars[vars].descvar} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=vm loop=$vars[vars].descvar} - <li> - {$vars[vars].descvar[vm].link} - {if $vars[vars].descvar[vm].sdesc} - : {$vars[vars].descvar[vm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} - -</div> -{/if} -{/section} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/options.ini b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/options.ini deleted file mode 100755 index fc1211f8..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/options.ini +++ /dev/null @@ -1,576 +0,0 @@ -preservedocbooktags = false - -;; used to highlight the {@source} inline tag, @filesource tag, and @example tag -[highlightSourceTokens] -;; format: -;; T_CONSTANTNAME = open -;; /T_CONSTANTNAME = close - -T_INCLUDE = <span class="src-inc"> -/T_INCLUDE = </span> -T_INCLUDE_ONCE = <span class="src-inc"> -/T_INCLUDE_ONCE = </span> -T_REQUIRE_ONCE = <span class="src-inc"> -/T_REQUIRE_ONCE = </span> -T_REQUIRE_ONCE = <span class="src-inc"> -/T_REQUIRE_ONCE = </span> - -T_CONSTANT_ENCAPSED_STRING = <span class="src-str"> -/T_CONSTANT_ENCAPSED_STRING = </span> -T_STRING_VARNAME = <span class="src-str"> -/T_STRING_VARNAME = </span> - -T_STRING = <span class="src-id"> -/T_STRING = </span> - -T_DNUMBER = <span class="src-num"> -/T_DNUMBER = </span> -T_LNUMBER = <span class="src-num"> -/T_LNUMBER = </span> - -T_VARIABLE = <span class="src-var"> -/T_VARIABLE = </span> - -T_COMMENT = <span class="src-comm"> -/T_COMMENT = </span> -T_ML_COMMENT = <span class="src-comm"> -/T_ML_COMMENT = </span> - -T_OBJECT_OPERATOR = <span class="src-sym"> -/T_OBJECT_OPERATOR = </span> - -T_ABSTRACT = <span class="src-key"> -/T_ABSTRACT = </span> -T_CLONE = <span class="src-key"> -/T_CLONE = </span> -T_HALT_COMPILER = <span class="src-key"> -/T_HALT_COMPILER = </span> -T_ARRAY = <span class="src-key"> -/T_ARRAY = </span> -T_AS = <span class="src-key"> -/T_AS = </span> -T_BREAK = <span class="src-key"> -/T_BREAK = </span> -T_CLASS = <span class="src-key"> -/T_CLASS = </span> -T_CASE = <span class="src-key"> -/T_CASE = </span> -T_CONST = <span class="src-key"> -/T_CONST = </span> -T_CONTINUE = <span class="src-key"> -/T_CONTINUE = </span> -T_DECLARE = <span class="src-key"> -/T_DECLARE = </span> -T_DEFAULT = <span class="src-key"> -/T_DEFAULT = </span> -T_ELSE = <span class="src-key"> -/T_ELSE = </span> -T_ELSEIF = <span class="src-key"> -/T_ELSEIF = </span> -T_EMPTY = <span class="src-key"> -/T_EMPTY = </span> -T_ENDDECLARE = <span class="src-key"> -/T_ENDDECLARE = </span> -T_ENDFOR = <span class="src-key"> -/T_ENDFOR = </span> -T_ENDSWITCH = <span class="src-key"> -/T_ENDSWITCH = </span> -T_ENDFOREACH = <span class="src-key"> -/T_ENDFOREACH = </span> -T_ENDIF = <span class="src-key"> -/T_ENDIF = </span> -T_ENDWHILE = <span class="src-key"> -/T_ENDWHILE = </span> -T_EXIT = <span class="src-key"> -/T_EXIT = </span> -T_EXTENDS = <span class="src-key"> -/T_EXTENDS = </span> -T_FINAL = <span class="src-key"> -/T_FINAL = </span> -T_FOR = <span class="src-key"> -/T_FOR = </span> -T_FOREACH = <span class="src-key"> -/T_FOREACH = </span> -T_FUNCTION = <span class="src-key"> -/T_FUNCTION = </span> -T_GLOBAL = <span class="src-key"> -/T_GLOBAL = </span> -T_IF = <span class="src-key"> -/T_IF = </span> -T_IMPLEMENTS = <span class="src-key"> -/T_IMPLEMENTS = </span> -T_INTERFACE = <span class="src-key"> -/T_INTERFACE = </span> -T_LOGICAL_AND = <span class="src-key"> -/T_LOGICAL_AND = </span> -T_LOGICAL_OR = <span class="src-key"> -/T_LOGICAL_OR = </span> -T_LOGICAL_XOR = <span class="src-key"> -/T_LOGICAL_XOR = </span> -T_NEW = <span class="src-key"> -/T_NEW = </span> -T_PRIVATE = <span class="src-key"> -/T_PRIVATE = </span> -T_PROTECTED = <span class="src-key"> -/T_PROTECTED = </span> -T_PUBLIC = <span class="src-key"> -/T_PUBLIC = </span> -T_RETURN = <span class="src-key"> -/T_RETURN = </span> -T_STATIC = <span class="src-key"> -/T_STATIC = </span> -T_SWITCH = <span class="src-key"> -/T_SWITCH = </span> -T_VAR = <span class="src-key"> -/T_VAR = </span> -T_WHILE = <span class="src-key"> -/T_WHILE = </span> - -T_DOUBLE_COLON = <span class="src-sym"> -/T_DOUBLE_COLON = </span> - -T_OPEN_TAG = <span class="src-php"> -/T_OPEN_TAG = </span> -T_OPEN_TAG_WITH_ECHO = <span class="src-php"> -/T_OPEN_TAG_WITH_ECHO = </span> -T_CLOSE_TAG = <span class="src-php"> -/T_CLOSE_TAG = </span> - - -[highlightSource] -;; this is for highlighting things that aren't tokens like "&" -;; format: -;; word = open -;; /word = close -@ = <span class="src-sym"> -/@ = </span> -& = <span class="src-sym"> -/& = </span> -[ = <span class="src-sym"> -/[ = </span> -] = <span class="src-sym"> -/] = </span> -! = <span class="src-sym"> -/! = </span> -";" = <span class="src-sym"> -/; = </span> -( = <span class="src-sym"> -/( = </span> -) = <span class="src-sym"> -/) = </span> -, = <span class="src-sym"> -/, = </span> -{ = <span class="src-sym"> -/{ = </span> -} = <span class="src-sym"> -/} = </span> -""" = <span class="src-str"> -/" = </span> - -[highlightDocBlockSourceTokens] -;; this is for docblock tokens, using by phpDocumentor_HighlightParser -;; tagphptype is for "string" in @param string description, for example -docblock = <span class="src-doc"> -/docblock = </span> -tagphptype = <span class="src-doc-type"> -/tagphptype = </span> -tagvarname = <span class="src-doc-var"> -/tagvarname = </span> -coretag = <span class="src-doc-coretag"> -/coretag = </span> -tag = <span class="src-doc-tag"> -/tag = </span> -inlinetag = <span class="src-doc-inlinetag"> -/inlinetag = </span> -internal = <span class="src-doc-internal"> -/internal = </span> -closetemplate = <span class="src-doc-close-template"> -/closetemplate = </span> -docblocktemplate = <span class="src-doc-template"> -/docblocktemplate = </span> - -[highlightTutorialSourceTokens] -;; this is for XML DocBook-based tutorials, highlighted by phpDocumentor_TutorialHighlightParser -;; <tag> -opentag = <span class="tute-tag"> -/opentag = </span> -;; </tag> -closetag = <span class="tute-tag"> -/closetag = </span> -;; <tag attribute="value"> -attribute = <span class="tute-attribute-name"> -/attribute = </span> -;; <tag attribute="value"> -attributevalue = <span class="tute-attribute-value"> -/attributevalue = </span> -;; &entity; -entity = <span class="tute-entity"> -/entity = </span> -;; <!-- comment --> -comment = <span class="tute-comment"> -/comment = </span> -;; {@inline tag} -itag = <span class="tute-inline-tag"> -/itag = </span> - -;; used for translation of html in DocBlocks -[desctranslate] -ul = <ul> -/ul = </ul> -ol = <ol> -/ol = </ol> -li = <li> -/li = </li> -code = -/code = -var = <var> -/var = </var> -samp = <samp> -/samp = </samp> -kbd = <kbd> -/kbd = </kbd> -pre = <pre> -/pre = </pre> -p = <p> -/p = </p> -b = <strong> -/b = </strong> -i = <em> -/i = </em> -br = <br /> - -[ppage] -;; this is the DocBook package page translation section. All DocBook tags -;; that have a corresponding html tag must be listed here. Entities should -;; also be listed here -;; -;; examples: -;; 1) -;; tagname = newtagname -;; -;; This is the simplest case, where all attributes will be added into the -;; starting tag and the ending tag will be html/xml style </tranlatedtagname> -;; <tagname></tagname> becomes <newtagname></newtagname> and -;; <tagname attr="value"></tagname> becomes -;; <newtagname attr="value"></newtagname> -;; -;; 2) -;; tagname = newtagname -;; tagname->attr = newattrname -;; -;; in this case, everything will be like the first case, except tags like: -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="value"></newtagname> -;; -;; 3) -;; tagname = newtagname -;; tagname->attr = newattrname -;; tagname->attr+value = newvalue -;; -;; in this case, the value is also translated to another. This can be useful -;; for instances such as focus="middle" changing to align="center" or something -;; of that nature. -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 4) -;; tagname = newtagname -;; tagname->attr1 = newattrname -;; tagname->attr2 = newattrname -;; tagname->attr1+value|attr2+value = newvalue -;; -;; in this case, two attributes combine to make one new attribute, and the combined -;; value is translated into a new value -;; <tagname attr1="value1" attr2="value2"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 5) -;; tagname = newtagname -;; tagname!attr = dummy -;; -;; here, the attribute will be ignored. dummy is not used and may be any value -;; <tagname attr="value"></tagname> will become -;; <newtagname></newtagname> -;; -;; 6) -;; tagname = newtagname -;; tagname! = dummy -;; -;; here, all attributes will be ignored. dummy is not used and may be any value -;; <tagname attr1="value" attr2="foo"></tagname> will become -;; <newtagname></newtagname> -;; -;; 7) -;; tagname = newtagname -;; tagname/ = 1 -;; -;; here, the tag will be translated as a single tag with no closing tag, and all -;; attributes -;; <tagname attr="val">{text text}</tagname> will become -;; <newtagname attr="val" /> -;; -;; 8) -;; tagname = <starttaginfo /> -;; /tagname = closetagtext -;; -;; in this case, the text <starttaginfo> will be inserted exactly as entered for -;; <tagname> and closetagtext for </tagname> -;; <tagname attr="val"></tagname> will become -;; <starttaginfo />closetagtext -;; -;; 9) -;; $attr$my_attribute = newattrname -;; -;; tagname = newtagname -;; -;; in this case, all occurences of my_attribute in any tag will be changed to -;; newattrname. This is useful for changing things like role="php" to -;; class="php," for example. Note that the text "$attr$" MUST be on the line -;; start for phpDocumentor to recognize it. -;; -;; 10) -;; &entity; = translation text -;; " = " -;; " = """ -;; < = < -;; -;; Use this to control translation of entities to their appropriate values - - = -" = " -” = ” -“ = “ -& = & -< = < -> = > -© = © - -$attr$role = class - -abbrev = abbr - -blockquote = blockquote - -arg = span -arg->choice = class - -author = <span class="author"> -/author = </span> -author! = 0 - -authorblurb = <div class="author-blurb"> -/authorblurb = </div> - -authorgroup = <div class="authors"><h2 class="title">Authors</h2> -/authorgroup = </div> -authorgroup! = 0 - -caution = <span class="warning"> -/caution = </span> -caution! = 0 - -cmdsynopsis = <div class="cmd-synopsis"> -/cmdsynopsis = </div> - -command = <span class="cmd-title"> -/command = </span> - -copyright = <div class="notes"> -/copyright = </div> - -emphasis = em - -example = <div class="src-code"> -/example = </div> -example! = 0 - -function = -/function = () - -formalpara = p - -graphic = img -graphic->fileref = src -graphic/ = - -important = strong - -informalequation = blockquote - -informalexample = div - -inlineequation = em - -itemizedlist = ul - -listitem = li - -literal = code - -literallayout = span - -option = " " -/option = - -orderedlist = ol - -para = p - -programlisting = <div class="src-code"> -/programlisting = </div> -programlisting! = 0 - -refentry = div - -refnamediv = <div class="ref-title-box"> -/refnamediv = </div> -refnamediv! = 0 - -refname = <h1 class="ref-title"> -/refname = </h1> - -refpurpose = <h2 class="ref-purpose"> -/refpurpose = </h2> - -refsynopsisdiv = <div class="ref-synopsis"> -/refsynopsisdiv = </div> -refsynopsisdiv! = 0 - -refsect1 = span - -refsect2 = span - -refsect3 = -/refsect3 = <br /> - -releaseinfo = <div class="release-info">( -/releaseinfo = )</div> - -simpara = -/simpara = <br /> -simpara! = 0 - -subscript = sub - -superscript = super - -table = table - -table->colsep = rules -table->rowsep = rules -table->colsep+1|rowsep+1 =all -table->colsep+1|rowsep+0 =cols -table->colsep+0|rowsep+1 =rows - -table->frame =frame -table->frame+all =border -table->frame+none =void -table->frame+sides =vsides -table->frame+top =above -table->frame+topbot =hsides - -thead = thead - -tfoot = tfoot - -tbody = tbody - -colspec = col - -tgroup = colgroup -tgroup/ = 1 -tgroup->cols = span - -row = tr - -entry = td -entry->morerows = colspan -entry->morerows+1 =2 -entry->morerows+2 =3 -entry->morerows+3 =4 -entry->morerows+4 =5 -entry->morerows+5 =6 -entry->morerows+6 =7 -entry->morerows+7 =8 -entry->morerows+8 =9 -entry->morerows+9 =10 -entry->morerows+10 =11 -;; add more if you need more colspans - -warning = <span class="warning"> -/warning = </span> -warning! = 0 - -;; now begins the attributes that should be tags in cdata -[$attr$id] -open = a -;close = /a -cdata! = true -quotevalues = true -separator = "=" -;separateall = true -$id = name - -;; now begins the sections that deal with <title> -[refsynopsisdiv_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h1 class="title"> -close = </h1> - -[refsect1_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h2 class="title"> -close = </h2> - -[refsect2_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h3 class="title"> -close = </h3> - -[refsect3_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h4 class="title"> -close = </h4> - -[para_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <div class="title"> -close = </div> - -[formalpara_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <div class="title"> -close = </div> - -[example_title] -;tag_attr = true -;attr_name = title -;cdata_start = true -cdata_end = true -open = </td></tr><tr><td><strong> -close = </strong> - -[table_title] -;tag_attr = true -;attr_name = true -cdata_start = true -open = <caption> -close = </caption> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/basicindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/basicindex.tpl deleted file mode 100755 index 951ee264..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/basicindex.tpl +++ /dev/null @@ -1,47 +0,0 @@ -<div class="index-letter-menu"> -{section name=letter loop=$letters} - <a class="index-letter" href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> -{/section} -</div> - -{section name=index loop=$index} - <a name="{$index[index].letter}"></a> - <div class="index-letter-section"> - <div style="float: left" class="index-letter-title">{$index[index].letter}</div> - <div style="float: right"><a href="#top">top</a></div> - <div style="clear: both"></div> - </div> - <dl> - {section name=contents loop=$index[index].index} - <dt class="field"> - {if ($index[index].index[contents].title == "Variable")} - <span class="var-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Global")} - <span class="var-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Method")} - <span class="method-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Function")} - <span class="method-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Constant")} - <span class="const-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Page") || ($index[index].index[contents].title == "Include")} - <span class="include-title">{$index[index].index[contents].name}</span> - {else} - {$index[index].index[contents].name} - {/if} - </dt> - <dd class="index-item-body"> - <div class="index-item-details">{$index[index].index[contents].link} in {$index[index].index[contents].file_name}</div> - {if $index[index].index[contents].description} - <div class="index-item-description">{$index[index].index[contents].description}</div> - {/if} - </dd> - {/section} - </dl> -{/section} - -<div class="index-letter-menu"> -{section name=letter loop=$letters} - <a class="index-letter" href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> -{/section} -</div> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/blank.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/blank.tpl deleted file mode 100755 index 6a05f27e..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/blank.tpl +++ /dev/null @@ -1,13 +0,0 @@ -<html> -<head> - <title>{$maintitle}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> -</head> -<body> -<div align="center"><h1>{$maintitle}</h1></div> -<b>Welcome to {$package}!</b><br /> -<br /> -This documentation was generated by <a href="{$phpdocwebsite}">phpDocumentor v{$phpdocversion}</a><br /> -</body> -</html>
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/class.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/class.tpl deleted file mode 100755 index 9ab7c455..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/class.tpl +++ /dev/null @@ -1,429 +0,0 @@ -{include file="header.tpl" top3=true} - -<h2 class="class-name">{if $is_interface}Interface{else}Class{/if} {$class_name}</h2> - -<a name="sec-description"></a> -<div class="info-box"> - <div class="info-box-title">Description</div> - <div class="nav-bar"> - {if $children || $vars || $ivars || $methods || $imethods || $consts || $iconsts } - <span class="disabled">Description</span> | - {/if} - {if $children} - <a href="#sec-descendents">Descendents</a> - {if $vars || $ivars || $methods || $imethods || $consts || $iconsts}|{/if} - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {if $methods || $imethods}|{/if} - {/if} - {if $methods || $imethods} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {if $implements} - <p class="implements"> - Implements interfaces: - <ul> - {foreach item="int" from=$implements}<li>{$int}</li>{/foreach} - </ul> - </p> - {/if} - {include file="docblock.tpl" type="class" sdesc=$sdesc desc=$desc} - <p class="notes"> - Located in <a class="field" href="{$page_link}">{$source_location}</a> (line <span class="field">{if $class_slink}{$class_slink}{else}{$line_number}{/if}</span>) - </p> - - {if $tutorial} - <hr class="separator" /> - <div class="notes">Tutorial: <span class="tutorial">{$tutorial}</span></div> - {/if} - - <pre>{section name=tree loop=$class_tree.classes}{$class_tree.classes[tree]}{$class_tree.distance[tree]}{/section}</pre> - - {if $conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with classes:</span><br /> - {section name=me loop=$conflicts.conflicts} - {$conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - </div> -</div> - -{if $children} - <a name="sec-descendents"></a> - <div class="info-box"> - <div class="info-box-title">Direct descendents</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - <span class="disabled">Descendents</span> - {if $vars || $ivars || $methods || $imethods}|{/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {if $methods || $imethods}|{/if} - {/if} - {if $methods || $imethods} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <table cellpadding="2" cellspacing="0" class="class-table"> - <tr> - <th class="class-table-header">Class</th> - <th class="class-table-header">Description</th> - </tr> - {section name=kids loop=$children} - <tr> - <td style="padding-right: 2em">{$children[kids].link}</td> - <td> - {if $children[kids].sdesc} - {$children[kids].sdesc} - {else} - {$children[kids].desc} - {/if} - </td> - </tr> - {/section} - </table> - </div> - </div> -{/if} - -{if $consts} - <a name="sec-const-summary"></a> - <div class="info-box"> - <div class="info-box-title">Class Constant Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendants</a> | - {/if} - <span class="disabled">Constants</span> (<a href="#sec-consts">details</a>) - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - | - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <div class="const-summary"> - {section name=consts loop=$consts} - <div class="const-title"> - <img src="{$subdir}media/images/Constant.png" alt=" " /> - <a href="#{$consts[consts].const_name}" title="details" class="const-name">{$consts[consts].const_name}</a> = <span class="var-type">{$consts[consts].const_value}</span> - - </div> - {/section} - </div> - </div> - </div> -{/if} - -{if $vars} - <a name="sec-var-summary"></a> - <div class="info-box"> - <div class="info-box-title">Variable Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - <span class="disabled">Vars</span> (<a href="#sec-vars">details</a>) - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <div class="var-summary"> - {section name=vars loop=$vars} - {if $vars[vars].static} - <div class="var-title"> - static <span class="var-type">{$vars[vars].var_type}</span> - <a href="#{$vars[vars].var_name}" title="details" class="var-name">{$vars[vars].var_name}</a> - </div> - {/if} - {/section} - {section name=vars loop=$vars} - {if !$vars[vars].static} - <div class="var-title"> - <span class="var-type">{$vars[vars].var_type}</span> - <a href="#{$vars[vars].var_name}" title="details" class="var-name">{$vars[vars].var_name}</a> - </div> - {/if} - {/section} - </div> - </div> - </div> -{/if} - -{if $methods} - <a name="sec-method-summary"></a> - <div class="info-box"> - <div class="info-box-title">Method Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - | - {/if} - <span class="disabled">Methods</span> (<a href="#sec-methods">details</a>) - </div> - <div class="info-box-body"> - <div class="method-summary"> - {section name=methods loop=$methods} - {if $methods[methods].static} - <div class="method-definition"> - static {if $methods[methods].function_return} - <span class="method-result">{$methods[methods].function_return}</span> - {/if} - <a href="#{$methods[methods].function_name}" title="details" class="method-name">{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}</a> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - {/if} - {/section} - {section name=methods loop=$methods} - {if !$methods[methods].static} - <div class="method-definition"> - {if $methods[methods].function_return} - <span class="method-result">{$methods[methods].function_return}</span> - {/if} - <a href="#{$methods[methods].function_name}" title="details" class="method-name">{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}</a> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - {/if} - {/section} - </div> - </div> - </div> -{/if} - -{if $vars || $ivars} - <a name="sec-vars"></a> - <div class="info-box"> - <div class="info-box-title">Variables</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $methods} - <a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Vars</span> - {/if} - - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {include file="var.tpl"} - {if $ivars} - <h4>Inherited Variables</h4> - <A NAME='inherited_vars'><!-- --></A> - {section name=ivars loop=$ivars} - <p>Inherited from <span class="classname">{$ivars[ivars].parent_class}</span></p> - <blockquote> - {section name=ivars2 loop=$ivars[ivars].ivars} - <span class="var-title"> - <span class="var-name">{$ivars[ivars].ivars[ivars2].link}</span>{if $ivars[ivars].ivars[ivars2].ivar_sdesc}: {$ivars[ivars].ivars[ivars2].ivar_sdesc}{/if}<br> - </span> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{if $methods || $imethods} - <a name="sec-methods"></a> - <div class="info-box"> - <div class="info-box-title">Methods</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Methods</span> - {/if} - </div> - <div class="info-box-body"> - {include file="method.tpl"} - {if $imethods} - <h4>Inherited Methods</h4> - <a name='inherited_methods'><!-- --></a> - {section name=imethods loop=$imethods} - <!-- =========== Summary =========== --> - <p>Inherited From <span class="classname">{$imethods[imethods].parent_class}</span></p> - <blockquote> - {section name=im2 loop=$imethods[imethods].imethods} - <span class="method-name">{$imethods[imethods].imethods[im2].link}</span>{if $imethods[imethods].imethods[im2].ifunction_sdesc}: {$imethods[imethods].imethods[im2].ifunction_sdesc}{/if}<br> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{if $consts || $iconsts} - <a name="sec-consts"></a> - <div class="info-box"> - <div class="info-box-title">Class Constants</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendants</a> | - {/if} - {if $methods} - <a href="#sec-var-summary">Constants</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Constants</span> - {/if} - - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {include file="const.tpl"} - {if $iconsts} - <h4>Inherited Constants</h4> - <A NAME='inherited_vars'><!-- --></A> - {section name=iconsts loop=$iconsts} - <p>Inherited from <span class="classname">{$iconsts[iconsts].parent_class}</span></p> - <blockquote> - {section name=iconsts2 loop=$iconsts[iconsts].iconsts} - <img src="{$subdir}media/images/{if $iconsts[iconsts].iconsts[iconsts2].access == 'private'}PrivateVariable{else}Variable{/if}.png" /> - <span class="const-title"> - <span class="const-name">{$iconsts[iconsts].iconsts[iconsts2].link}</span>{if $iconsts[iconsts].iconsts[iconsts2].iconst_sdesc}: {$iconsts[iconsts].iconsts[iconsts2].iconst_sdesc}{/if}<br> - </span> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{include file="footer.tpl" top3=true} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/classtrees.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/classtrees.tpl deleted file mode 100755 index 952e6d50..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/classtrees.tpl +++ /dev/null @@ -1,19 +0,0 @@ -{include file="header.tpl" top1=true} - -<!-- Start of Class Data --> -<H2> - {$smarty.capture.title} -</H2> -{if $interfaces} -{section name=classtrees loop=$interfaces} -<h2>Root interface {$interfaces[classtrees].class}</h2> -{$interfaces[classtrees].class_tree} -{/section} -{/if} -{if $classtrees} -{section name=classtrees loop=$classtrees} -<h2>Root class {$classtrees[classtrees].class}</h2> -{$classtrees[classtrees].class_tree} -{/section} -{/if} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/const.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/const.tpl deleted file mode 100644 index c26ff92d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/const.tpl +++ /dev/null @@ -1,18 +0,0 @@ -{section name=consts loop=$consts} -<a name="const{$consts[consts].const_name}" id="{$consts[consts].const_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="const-header"> - <img src="{$subdir}media/images/{if $consts[consts].access == 'private'}PrivateVariable{else}Variable{/if}.png" /> - <span class="const-title"> - <span class="const-name">{$consts[consts].const_name}</span> - = <span class="const-default">{$consts[consts].const_value|replace:"\n":"<br />"}</span> - (line <span class="line-number">{if $consts[consts].slink}{$consts[consts].slink}{else}{$consts[consts].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$consts[consts].sdesc desc=$consts[consts].desc tags=$consts[consts].tags} - -</div> -{/section} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/define.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/define.tpl deleted file mode 100755 index 0da5d864..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/define.tpl +++ /dev/null @@ -1,24 +0,0 @@ -{section name=def loop=$defines} -<a name="{$defines[def].define_link}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="const-title"> - <span class="const-name">{$defines[def].define_name}</span> = {$defines[def].define_value|replace:"\n":"<br />"} - (line <span class="line-number">{if $defines[def].slink}{$defines[def].slink}{else}{$defines[def].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$defines[def].sdesc desc=$defines[def].desc tags=$defines[def].tags} - - {if $globals[glob].global_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with constants:</span><br /> - {section name=me loop=$defines[def].define_conflicts.conflicts} - {$defines[def].define_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/docblock.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/docblock.tpl deleted file mode 100755 index 783d5271..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/docblock.tpl +++ /dev/null @@ -1,14 +0,0 @@ -<!-- ========== Info from phpDoc block ========= --> -{if $sdesc} -<p class="short-description">{$sdesc}</p> -{/if} -{if $desc} -<p class="description">{$desc}</p> -{/if} -{if $tags} - <ul class="tags"> - {section name=tags loop=$tags} - <li><span class="field">{$tags[tags].keyword}:</span> {$tags[tags].data}</li> - {/section} - </ul> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/elementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/elementindex.tpl deleted file mode 100755 index d5964f99..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/elementindex.tpl +++ /dev/null @@ -1,12 +0,0 @@ -{include file="header.tpl" noleftindex=true} -<a name="top"></a> -<h2>Full index</h2> -<h3>Package indexes</h3> -<ul> -{section name=p loop=$packageindex} - <li><a href="elementindex_{$packageindex[p].title}.html">{$packageindex[p].title}</a></li> -{/section} -</ul> -<br /> -{include file="basicindex.tpl" indexname="elementindex"} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/errors.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/errors.tpl deleted file mode 100755 index 0f526584..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/errors.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{include file="header.tpl" noleftindex=true} -{section name=files loop=$files} -<a href="#{$files[files].file}">{$files[files].file}</a><br> -{/section} -{foreach key=file item=issues from=$all} -<a name="{$file}"></a> -<h1>{$file}</h1> -{if count($issues.warnings)} -<h2>Warnings:</h2><br> -{section name=warnings loop=$issues.warnings} -<b>{$issues.warnings[warnings].name}</b> - {$issues.warnings[warnings].listing}<br> -{/section} -{/if} -{if count($issues.errors)} -<h2>Errors:</h2><br> -{section name=errors loop=$issues.errors} -<b>{$issues.errors[errors].name}</b> - {$issues.errors[errors].listing}<br> -{/section} -{/if} -{/foreach} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/examplesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/examplesource.tpl deleted file mode 100755 index 8abf74ce..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/examplesource.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl" title=$title} -<h1>{$title}</h1> -<div class="listing"> -{$source} -</div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/filesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/filesource.tpl deleted file mode 100755 index 239f7b41..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/filesource.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{capture name="tutle"}File Source for {$name}{/capture} -{include file="header.tpl" title=$smarty.capture.tutle} -<h1>Source for file {$name}</h1> -<p>Documentation is available at {$docs}</p> -<div class="src-code"> -{$source} -</div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/footer.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/footer.tpl deleted file mode 100755 index 8d0f79db..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/footer.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{if !$index} - <p class="notes" id="credit"> - Documentation generated on {$date} by <a href="{$phpdocwebsite}" target="_blank">phpDocumentor {$phpdocversion}</a> - </p> -{/if} - {if $top3}</div>{/if} -</body> -</html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/function.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/function.tpl deleted file mode 100755 index b6880059..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/function.tpl +++ /dev/null @@ -1,44 +0,0 @@ -{section name=func loop=$functions} -<a name="{$functions[func].function_dest}" id="{$functions[func].function_dest}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="method-title">{$functions[func].function_name}</span> (line <span class="line-number">{if $functions[func].slink}{$functions[func].slink}{else}{$functions[func].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$functions[func].sdesc desc=$functions[func].desc tags=$functions[func].tags params=$functions[func].params function=false} - - <div class="method-signature"> - <span class="method-result">{$functions[func].function_return}</span> - <span class="method-name"> - {if $functions[func].ifunction_call.returnsref}&{/if}{$functions[func].function_name} - </span> - {if count($functions[func].ifunction_call.params)} - ({section name=params loop=$functions[func].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $functions[func].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$functions[func].ifunction_call.params[params].type}</span> <span class="var-name">{$functions[func].ifunction_call.params[params].name}</span>{if $functions[func].ifunction_call.params[params].hasdefault} = <span class="var-default">{$functions[func].ifunction_call.params[params].default|escape:"html"}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $functions[func].params} - <ul class="parameters"> - {section name=params loop=$functions[func].params} - <li> - <span class="var-type">{$functions[func].params[params].datatype}</span> - <span class="var-name">{$functions[func].params[params].var}</span>{if $functions[func].params[params].data}<span class="var-description">: {$functions[func].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $functions[func].function_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with functions:</span><br /> - {section name=me loop=$functions[func].function_conflicts.conflicts} - {$functions[func].function_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/global.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/global.tpl deleted file mode 100755 index eab7e0b0..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/global.tpl +++ /dev/null @@ -1,26 +0,0 @@ -{section name=glob loop=$globals} -<a name="{$globals[glob].global_link}" id="{$globals[glob].global_link}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="var-title"> - <span class="var-type">{$globals[glob].global_type}</span> - <span class="var-name">{$globals[glob].global_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$globals[glob].global_value|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $globals[glob].slink}{$globals[glob].slink}{else}{$globals[glob].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$globals[glob].sdesc desc=$globals[glob].desc tags=$globals[glob].tags} - - {if $globals[glob].global_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with global variables:</span><br /> - {section name=me loop=$globals[glob].global_conflicts.conflicts} - {$globals[glob].global_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/header.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/header.tpl deleted file mode 100755 index 09fc9856..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/header.tpl +++ /dev/null @@ -1,18 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <!-- template designed by Marco Von Ballmoos --> - <title>{$title}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - {if $top2} - <link rel="stylesheet" href="{$subdir}media/banner.css" /> - <style> - body {ldelim} padding: 1em; {rdelim} - </style> - {/if} - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> - </head> - <body> - {if $top3}<div class="page-body">{/if} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/include.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/include.tpl deleted file mode 100755 index c2419e5f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/include.tpl +++ /dev/null @@ -1,16 +0,0 @@ -{section name=includes loop=$includes} -<a name="{$includes[includes].include_file}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="include-title"> - <span class="include-type">{$includes[includes].include_name}</span> - (<span class="include-name">{$includes[includes].include_value}</span>) - (line <span class="line-number">{if $includes[includes].slink}{$includes[includes].slink}{else}{$includes[includes].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$includes[includes].sdesc desc=$includes[includes].desc tags=$includes[includes].tags} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/index.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/index.tpl deleted file mode 100755 index 7cd61094..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/index.tpl +++ /dev/null @@ -1,24 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html - PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//FR" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> -<head> - <!-- Generated by phpDocumentor on {$date} --> - <title>{$title}</title> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> -</head> - -<FRAMESET rows='120,*'> - <FRAME src='packages.html' name='left_top' frameborder="1" bordercolor="#999999"> - <FRAMESET cols='25%,*'> - <FRAME src='{$start}' name='left_bottom' frameborder="1" bordercolor="#999999"> - <FRAME src='{$blank}.html' name='right' frameborder="1" bordercolor="#999999"> - </FRAMESET> - <NOFRAMES> - <H2>Frame Alert</H2> - <P>This document is designed to be viewed using the frames feature. - If you see this message, you are using a non-frame-capable web client.</P> - </NOFRAMES> -</FRAMESET> -</HTML> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/left_frame.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/left_frame.tpl deleted file mode 100755 index eb3f670d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/left_frame.tpl +++ /dev/null @@ -1,159 +0,0 @@ -{include file="header.tpl" top2=true} -<div class="package-title">{$package}</div> -<div class="package-details"> - - <dl class="tree"> - - <dt class="folder-title">Description</dt> - <dd> - <a href='{$classtreepage}.html' target='right'>Class trees</a><br /> - <a href='{$elementindex}.html' target='right'>Index of elements</a><br /> - {if $hastodos} - <a href="{$todolink}" target="right">Todo List</a><br /> - {/if} - </dd> - - {section name=p loop=$info} - - {if $info[p].subpackage == ""} - - {if $info[p].tutorials} - <dt class="folder-title">Tutorials/Manuals</dt> - <dd> - {if $info[p].tutorials.pkg} - <dl class="tree"> - <dt class="folder-title">Package-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.pkg} - {$info[p].tutorials.pkg[ext]} - {/section} - </dd> - </dl> - {/if} - - {if $info[p].tutorials.cls} - <dl class="tree"> - <dt class="folder-title">Class-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.cls} - {$info[p].tutorials.cls[ext]} - {/section} - </dd> - </dl> - {/if} - - {if $info[p].tutorials.proc} - <dl class="tree"> - <dt class="folder-title">Function-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.proc} - {$info[p].tutorials.proc[ext]} - {/section} - </dd> - </dl> - {/if} - </dd> - {/if} - {if $info[p].hasinterfaces} - <dt class="folder-title">Interfaces</dt> - {section name=class loop=$info[p].classes} - {if $info[p].classes[class].is_interface} - <dd><a href='{$info[p].classes[class].link}' target='right'>{$info[p].classes[class].title}</a></dd> - {/if} - {/section} - {/if} - {if $info[p].hasclasses} - <dt class="folder-title">Classes</dt> - {section name=class loop=$info[p].classes} - {if $info[p].classes[class].is_class} - <dd><a href='{$info[p].classes[class].link}' target='right'>{$info[p].classes[class].title}</a></dd> - {/if} - {/section} - {/if} - {if $info[p].functions} - <dt class="folder-title">Functions</dt> - {section name=f loop=$info[p].functions} - <dd><a href='{$info[p].functions[f].link}' target='right'>{$info[p].functions[f].title}</a></dd> - {/section} - {/if} - {if $info[p].files} - <dt class="folder-title">Files</dt> - {section name=nonclass loop=$info[p].files} - <dd><a href='{$info[p].files[nonclass].link}' target='right'>{$info[p].files[nonclass].title}</a></dd> - {/section} - {/if} - - {else} - {if $info[p].tutorials} - <dt class="folder-title">Tutorials/Manuals</dt> - <dd> - {if $info[p].tutorials.pkg} - <dl class="tree"> - <dt class="folder-title">Package-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.pkg} - {$info[p].tutorials.pkg[ext]} - {/section} - </dd> - </dl> - {/if} - - {if $info[p].tutorials.cls} - <dl class="tree"> - <dt class="folder-title">Class-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.cls} - {$info[p].tutorials.cls[ext]} - {/section} - </dd> - </dl> - {/if} - - {if $info[p].tutorials.proc} - <dl class="tree"> - <dt class="folder-title">Function-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.proc} - {$info[p].tutorials.proc[ext]} - {/section} - </dd> - </dl> - {/if} - </dd> - {/if} - - <dt class="sub-package">{$info[p].subpackage}</dt> - <dd> - <dl class="tree"> - {if $info[p].subpackagetutorial} - <div><a href="{$info.0.subpackagetutorialnoa}" target="right">{$info.0.subpackagetutorialtitle}</a></div> - {/if} - {if $info[p].classes} - <dt class="folder-title">Classes</dt> - {section name=class loop=$info[p].classes} - <dd><a href='{$info[p].classes[class].link}' target='right'>{$info[p].classes[class].title}</a></dd> - {/section} - {/if} - {if $info[p].functions} - <dt class="folder-title">Functions</dt> - {section name=f loop=$info[p].functions} - <dd><a href='{$info[p].functions[f].link}' target='right'>{$info[p].functions[f].title}</a></dd> - {/section} - {/if} - {if $info[p].files} - <dt class="folder-title">Files</dt> - {section name=nonclass loop=$info[p].files} - <dd><a href='{$info[p].files[nonclass].link}' target='right'>{$info[p].files[nonclass].title}</a></dd> - {/section} - {/if} - </dl> - </dd> - - {/if} - - {/section} - </dl> -</div> -<p class="notes"><a href="{$phpdocwebsite}" target="_blank">phpDocumentor v <span class="field">{$phpdocversion}</span></a></p> -</BODY> -</HTML> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/media/banner.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/media/banner.css deleted file mode 100755 index 4f7db5da..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/media/banner.css +++ /dev/null @@ -1,32 +0,0 @@ -body -{ - background: #EEEEEE url(bg_left.png) repeat; - margin: 0px; - padding: 0px; -} - -/* Banner (top bar) classes */ - -.banner { } - -.banner-menu -{ - clear: both; - padding: .5em; - border-top: 2px solid #999999; -} - -.banner-title -{ - text-align: right; - font-size: 20pt; - font-weight: bold; - margin: .2em; -} - -.package-selector -{ - background-color: #EEEEEE; - border: 1px solid black; - color: #0000C0; -} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/media/bg_left.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/media/bg_left.png Binary files differdeleted file mode 100755 index 1c331f09..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/media/bg_left.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/media/stylesheet.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/media/stylesheet.css deleted file mode 100755 index 26a31801..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/media/stylesheet.css +++ /dev/null @@ -1,154 +0,0 @@ -a -{ - color: #336699; - text-decoration: underline; -} - -a:hover, a:active, a:focus -{ - text-decoration: underline; - color: #6699CC -} - -body { background: #FFFFFF; font-family: "Courier New", Courier, fixed; font-size: 10pt } -table { font-size: 10pt } -p, li { line-height: 140% } -a img { border: 0px; } -dd { margin-left: 0px; padding-left: 1em; } - -/* Page layout/boxes */ - -.info-box {} -.info-box-title { margin: 1em 0em 0em 0em; padding: .25em; font-weight: normal; font-size: 14pt; border: 1px solid #336699; background-color: #EEEEEE } -.info-box-body { border: 1px solid #999999; padding: .5em; } -.nav-bar { font-size: 8pt; white-space: nowrap; text-align: right; padding: .2em; margin: 0em 0em 1em 0em; } - -.oddrow { background-color: #F4F4F4; border: 1px solid #AAAAAA; padding: .5em; margin-bottom: 1em} -.evenrow { border: 1px solid #AAAAAA; padding: .5em; margin-bottom: 1em} - -.page-body { max-width: 800px; margin: auto; } -.menu-body { background: #EEEEEE url(bg_left.css) repeat } -.tree dl { margin: 0px } -.tree a { text-decoration: none } -.tree a:hover, .tree a:active, .tree a:focus { text-decoration: underline } - -/* Index formatting classes */ - -.index-item-body { margin-top: .5em; margin-bottom: .5em} -.index-item-description { margin-top: .25em } -.index-item-details { font-weight: normal; font-style: italic; font-size: 8pt } -.index-letter-section { background-color: #EEEEEE; border: 1px dotted #999999; padding: .5em; margin-bottom: 1em} -.index-letter-title { font-size: 12pt; font-weight: bold } -.index-letter-menu { text-align: center; margin: 1em } -.index-letter { font-size: 12pt } - -/* Docbook classes */ - -.description {} -.short-description { font-weight: bold; color: #666666; } -.tags { padding-left: 0em; margin-left: 3em; color: #666666; list-style-type: square; } -.parameters { padding-left: 0em; margin-left: 3em; font-style: italic; list-style-type: square; } -.redefinitions { font-size: 8pt; padding-left: 0em; margin-left: 2em; } -.package { } -.package-title { font-weight: bold; font-size: 14pt; border-bottom: 1px solid black } -.package-details { font-size: 85%; } -.sub-package { font-weight: bold; font-size: 120% } -.tutorial { border-width: thin; border-color: #0066ff } -.tutorial-nav-box { width: 100%; border: 1px solid #AAAAAA; background: #EEEEEE url(bg_left.png) repeat; } -.nav-button-disabled { color: #AAAAAA; } -.nav-button:active, -.nav-button:focus, -.nav-button:hover { background-color: #CCCCCC; outline: 1px solid #999999; text-decoration: none } -.folder-title { font-style: italic } - -/* Generic formatting */ - -.field { font-weight: bold; } -.detail { font-size: 8pt; } -.notes { font-style: italic; font-size: 8pt; } -.separator { background-color: #999999; height: 2px; } -.warning { color: #CC0000; } -.disabled { font-style: italic; color: #999999; } - -/* Code elements */ - -.line-number { } - -.class-table { width: 100%; } -.class-table-header { border-bottom: 1px dotted #666666; text-align: left; background-color: DDDDFF } -.class-name { color: #000000; font-weight: bold; } - -.method-summary { padding-left: 1em; font-size: 8pt } -.method-header { } -.method-definition { margin-bottom: .3em } -.method-title { font-weight: bold } -.method-name { font-weight: bold; } -.method-signature { font-size: 85%; color: #666666; margin: .5em 0em } -.method-result { font-style: italic; } - -.var-summary { padding-left: 1em; font-size: 8pt; } -.var-header { } -.var-title { margin-bottom: .3em } -.var-type { font-style: italic; border: 1px dashed #336699 } -.var-name { font-weight: bold; } -.var-default { border: 1px dashed #336699 } -.var-description { font-weight: normal; color: #000000; } - -.include-title { } -.include-type { font-style: italic; } -.include-name { font-weight: bold; } - -.const-title { } -.const-name { font-weight: bold; } - -/* Syntax highlighting */ - -.src-code { border: 1px solid #336699; padding: 1em; - font-family: 'Courier New', Courier, monospace; font-weight: normal; } -.src-line { font-family: 'Courier New', Courier, monospace; font-weight: normal; } - -.src-comm { color: green; } -.src-id { } -.src-inc { color: #0000FF; } -.src-key { color: #0000FF; } -.src-num { color: #CC0000; } -.src-str { color: #66cccc; } -.src-sym { font-weight: bold; } -.src-var { } - -.src-php { font-weight: bold; } - -.src-doc { color: #009999 } -.src-doc-close-template { color: #0000FF } -.src-doc-coretag { color: #0099FF; font-weight: bold } -.src-doc-inlinetag { color: #0099FF } -.src-doc-internal { color: #6699cc } -.src-doc-tag { color: #0080CC } -.src-doc-template { color: #0000FF } -.src-doc-type { font-style: italic } -.src-doc-var { font-style: italic } - -.tute-tag { color: #009999 } -.tute-attribute-name { color: #0000FF } -.tute-attribute-value { color: #0099FF } -.tute-entity { font-weight: bold; } -.tute-comment { font-style: italic } -.tute-inline-tag { color: #636311; font-weight: bold } - -/* tutorial */ - -.authors { } -.author { font-style: italic; font-weight: bold } -.author-blurb { margin: .5em 0em .5em 2em; font-size: 85%; font-weight: normal; font-style: normal } -.example { border: 1px solid #336699; background-color: #F4F4F4; padding: .5em; } -.listing { border: 1px solid #336699; background-color: #F4F4F4; padding: .5em; white-space: nowrap; } -.release-info { font-size: 85%; font-style: italic; margin: 1em 0em } -.ref-title-box { } -.ref-title { } -.ref-purpose { font-style: italic; color: #666666 } -.ref-synopsis { } -.title { font-weight: bold; border-bottom: 1px solid #336699; padding: 2px } -.cmd-synopsis { margin: 1em 0em } -.cmd-title { font-weight: bold } -.toc { margin-left: 2em; padding-left: 0em } - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/method.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/method.tpl deleted file mode 100755 index 06d57a12..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/method.tpl +++ /dev/null @@ -1,149 +0,0 @@ -<A NAME='method_detail'></A> -{section name=methods loop=$methods} -{if $methods[methods].static} -<a name="method{$methods[methods].function_name}" id="{$methods[methods].function_name}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="method-header"> - <span class="method-title">static {$methods[methods].function_name}</span> (line <span class="line-number">{if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags params=$methods[methods].params function=false} - - <div class="method-signature"> - static <span class="method-result">{$methods[methods].function_return}</span> - <span class="method-name"> - {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name} - </span> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $methods[methods].params} - <ul class="parameters"> - {section name=params loop=$methods[methods].params} - <li> - <span class="var-type">{$methods[methods].params[params].datatype}</span> - <span class="var-name">{$methods[methods].params[params].var}</span>{if $methods[methods].params[params].data}<span class="var-description">: {$methods[methods].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $methods[methods].method_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$methods[methods].method_overrides.link}</dt> - {if $methods[methods].method_overrides.sdesc} - <dd>{$methods[methods].method_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} - - {if $methods[methods].descmethod} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=dm loop=$methods[methods].descmethod} - <li> - {$methods[methods].descmethod[dm].link} - {if $methods[methods].descmethod[dm].sdesc} - : {$methods[methods].descmethod[dm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} -</div> -{/if} -{/section} -{section name=methods loop=$methods} -{if !$methods[methods].static} -<a name="method{$methods[methods].function_name}" id="{$methods[methods].function_name}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="method-header"> - <span class="method-title">{if $methods[methods].ifunction_call.constructor}Constructor {elseif $methods[methods].ifunction_call.destructor}Destructor {/if}{$methods[methods].function_name}</span> (line <span class="line-number">{if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags params=$methods[methods].params function=false} - - <div class="method-signature"> - <span class="method-result">{$methods[methods].function_return}</span> - <span class="method-name"> - {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name} - </span> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $methods[methods].params} - <ul class="parameters"> - {section name=params loop=$methods[methods].params} - <li> - <span class="var-type">{$methods[methods].params[params].datatype}</span> - <span class="var-name">{$methods[methods].params[params].var}</span>{if $methods[methods].params[params].data}<span class="var-description">: {$methods[methods].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $methods[methods].method_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$methods[methods].method_overrides.link}</dt> - {if $methods[methods].method_overrides.sdesc} - <dd>{$methods[methods].method_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} - - {if $methods[methods].descmethod} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=dm loop=$methods[methods].descmethod} - <li> - {$methods[methods].descmethod[dm].link} - {if $methods[methods].descmethod[dm].sdesc} - : {$methods[methods].descmethod[dm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} -</div> -{/if} -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/page.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/page.tpl deleted file mode 100755 index b5980236..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/page.tpl +++ /dev/null @@ -1,211 +0,0 @@ -{include file="header.tpl" top3=true} - -<h2 class="file-name">{$source_location}</h2> - -<a name="sec-description"></a> -<div class="info-box"> - <div class="info-box-title">Description</div> - <div class="nav-bar"> - {if $classes || $includes || $defines || $globals || $functions} - <span class="disabled">Description</span> | - {/if} - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="docblock.tpl" desc=$desc sdesc=$sdesc tags=$tags} - - {if $tutorial} - <hr class="separator" /> - <div class="notes">Tutorial: <span class="tutorial">{$tutorial}</div> - {/if} - </div> -</div> - -{if $classes} - <a name="sec-classes"></a> - <div class="info-box"> - <div class="info-box-title">Classes</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - <span class="disabled">Classes</span> - {if $includes || $defines || $globals || $functions}|{/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - <table cellpadding="2" cellspacing="0" class="class-table"> - <tr> - <th class="class-table-header">Class</th> - <th class="class-table-header">Description</th> - </tr> - {section name=classes loop=$classes} - <tr> - <td style="padding-right: 2em; vertical-align: top"> - {$classes[classes].link} - </td> - <td> - {if $classes[classes].sdesc} - {$classes[classes].sdesc} - {else} - {$classes[classes].desc} - {/if} - </td> - </tr> - {/section} - </table> - </div> - </div> -{/if} - -{if $includes} - <a name="sec-includes"></a> - <div class="info-box"> - <div class="info-box-title">Includes</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - <span class="disabled">Includes</span> - {if $defines || $globals || $functions}|{/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="include.tpl"} - </div> - </div> -{/if} - -{if $defines} - <a name="sec-constants"></a> - <div class="info-box"> - <div class="info-box-title">Constants</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - <span class="disabled">Constants</span> - {if $globals || $functions}|{/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="define.tpl"} - </div> - </div> -{/if} - -{if $globals} - <a name="sec-variables"></a> - <div class="info-box"> - <div class="info-box-title">Variables</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - <span class="disabled">Variables</span> - {if $functions}|{/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="global.tpl"} - </div> - </div> -{/if} - -{if $functions} - <a name="sec-functions"></a> - <div class="info-box"> - <div class="info-box-title">Functions</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - <span class="disabled">Functions</span> - </div> - <div class="info-box-body"> - {include file="function.tpl"} - </div> - </div> -{/if} - -{include file="footer.tpl" top3=true} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/pkgelementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/pkgelementindex.tpl deleted file mode 100755 index dc283ad0..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/pkgelementindex.tpl +++ /dev/null @@ -1,17 +0,0 @@ -{include file="header.tpl"} -<a name="top"></a> -<h2>[{$package}] element index</h2> -{if count($packageindex) > 1} - <h3>Package indexes</h3> - <ul> - {section name=p loop=$packageindex} - {if $packageindex[p].title != $package} - <li><a href="elementindex_{$packageindex[p].title}.html">{$packageindex[p].title}</a></li> - {/if} - {/section} - </ul> -{/if} -<a href="elementindex.html">All elements</a> -<br /> -{include file="basicindex.tpl" indexname=elementindex_$package} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/ric.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/ric.tpl deleted file mode 100755 index eff734c1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/ric.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl"} -<h1 align="center">{$name}</h1> -<pre> -{$contents|htmlentities} -</pre> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/todolist.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/todolist.tpl deleted file mode 100755 index f929ccdb..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/todolist.tpl +++ /dev/null @@ -1,14 +0,0 @@ -{include file="header.tpl" title="Todo List"} -<div align="center"><h1>Todo List</h1></div> -{foreach from=$todos key=todopackage item=todo} -<h2>{$todopackage}</h2> -{section name=todo loop=$todo} -<h3>{$todo[todo].link}</h3> -<ul> -{section name=t loop=$todo[todo].todos} - <li>{$todo[todo].todos[t]}</li> -{/section} -</ul> -{/section} -{/foreach} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/top_frame.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/top_frame.tpl deleted file mode 100755 index 36d1e5a1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/top_frame.tpl +++ /dev/null @@ -1,45 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <!-- template designed by Marco Von Ballmoos --> - <title>{$title}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - <link rel="stylesheet" href="{$subdir}media/banner.css" /> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> - </head> - <body> - <div class="banner"> - <div class="banner-title">{$package}</div> - <div class="banner-menu"> - <form> - <table cellpadding="0" cellspacing="0" style="width: 100%"> - <tr> - <td> - {if count($ric) >= 1} - {assign var="last_ric_name" value=""} - {section name=ric loop=$ric} - {if $last_ric_name != ""} | {/if} - <a href="{$ric[ric].file}" target="right">{$ric[ric].name}</a> - {assign var="last_ric_name" value=$ric[ric].name} - {/section} - {/if} - </td> - <td style="width: 2em"> </td> - <td style="text-align: right"> - {if count($packages) > 1} - <span class="field">Packages</span> - <select class="package-selector" onchange="window.parent.left_bottom.location=this[selectedIndex].value"> - {section name=p loop=$packages} - <option value="{$packages[p].link}">{$packages[p].title}</option> - {/section} - </select> - {/if} - </td> - </tr> - </table> - </form> - </div> - </div> - </body> - </html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/tutorial.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/tutorial.tpl deleted file mode 100755 index 3b9109d1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/tutorial.tpl +++ /dev/null @@ -1,13 +0,0 @@ -{include file="header.tpl" title=$title top3=true} - -{if $nav} - {include file="tutorial_nav.tpl" prev=$prev next=$next up=$up prevtitle=$prevtitle nexttitle=$nexttitle uptitle=$uptitle} -{/if} - -{$contents} - -{if $nav} - {include file="tutorial_nav.tpl" prev=$prev next=$next up=$up prevtitle=$prevtitle nexttitle=$nexttitle uptitle=$uptitle} -{/if} - -{include file="footer.tpl" top3=true}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/tutorial_nav.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/tutorial_nav.tpl deleted file mode 100755 index 89952301..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/tutorial_nav.tpl +++ /dev/null @@ -1,41 +0,0 @@ -<table class="tutorial-nav-box"> - <tr> - <td style="width: 30%"> - {if $prev} - <a href="{$prev}" class="nav-button">Previous</a> - {else} - <span class="nav-button-disabled">Previous</span> - {/if} - </td> - <td style="text-align: center"> - {if $up} - <a href="{$up}" class="nav-button">Up</a> - {/if} - </td> - <td style="text-align: right; width: 30%"> - {if $next} - <a href="{$next}" class="nav-button">Next</a> - {else} - <span class="nav-button-disabled">Next</span> - {/if} - </td> - </tr> - <tr> - <td style="width: 30%"> - {if $prevtitle} - <span class="detail">{$prevtitle}</span> - {/if} - </td> - <td style="text-align: center"> - {if $uptitle} - <span class="detail">{$uptitle}</span> - {/if} - </td> - <td style="text-align: right; width: 30%"> - {if $nexttitle} - <span class="detail">{$nexttitle}</span> - {/if} - </td> - </tr> -</table> -
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/tutorial_toc.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/tutorial_toc.tpl deleted file mode 100755 index 3482249b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/tutorial_toc.tpl +++ /dev/null @@ -1,40 +0,0 @@ -{if count($toc)} -<h1 class="title">Table of Contents</h1> -<ul class="toc"> - {assign var="lastcontext" value='refsect1'} - {section name=toc loop=$toc} - - {if $toc[toc].tagname != $lastcontext} - {if $lastcontext == 'refsect1'} - <ul class="toc"> - <li>{$toc[toc].link}</li> - {else} - {if $lastcontext == 'refsect2'} - {if $toc[toc].tagname == 'refsect1'} - </ul> - <li>{$toc[toc].link}</li> - {/if} - {if $toc[toc].tagname == 'refsect3'} - <ul class="toc"> - <li>{$toc[toc].link}</li> - {/if} - {else} - </ul> - </ul> - <li>{$toc[toc].link}</li> - {/if} - {/if} - {assign var="lastcontext" value=$toc[toc].tagname} - {else} - <li>{$toc[toc].link}</li> - {/if} - {/section} - {if $lastcontext == 'refsect2'} - </ul> - {/if} - {if $lastcontext == 'refsect3'} - </ul> - </ul> - {/if} -</ul> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/tutorial_tree.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/tutorial_tree.tpl deleted file mode 100755 index 617b5654..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/tutorial_tree.tpl +++ /dev/null @@ -1,6 +0,0 @@ -<div><a href="{$main.link}" target="right">{$main.title|strip_tags}</a></div> -{if $haskids} -<div style="margin-left: 1em"> - {$kids} -</div> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/var.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/var.tpl deleted file mode 100755 index fccf6892..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/l0l33t/templates/var.tpl +++ /dev/null @@ -1,92 +0,0 @@ -{section name=vars loop=$vars} -{if $vars[vars].static} -<a name="var{$vars[vars].var_name}" id="{$vars[vars].var_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="var-header"> - <span class="var-title"> - static <span class="var-type">{$vars[vars].var_type}</span> - <span class="var-name">{$vars[vars].var_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$vars[vars].var_default|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} - - {if $vars[vars].var_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$vars[vars].var_overrides.link}</dt> - {if $vars[vars].var_overrides.sdesc} - <dd>{$vars[vars].var_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - - {if $vars[vars].descvar} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=vm loop=$vars[vars].descvar} - <li> - {$vars[vars].descvar[vm].link} - {if $vars[vars].descvar[vm].sdesc} - : {$vars[vars].descvar[vm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} - -</div> -{/if} -{/section} - -{section name=vars loop=$vars} -{if !$vars[vars].static} -<a name="var{$vars[vars].var_name}" id="{$vars[vars].var_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="var-header"> - <span class="var-title"> - <span class="var-type">{$vars[vars].var_type}</span> - <span class="var-name">{$vars[vars].var_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$vars[vars].var_default|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} - - {if $vars[vars].var_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$vars[vars].var_overrides.link}</dt> - {if $vars[vars].var_overrides.sdesc} - <dd>{$vars[vars].var_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - - {if $vars[vars].descvar} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=vm loop=$vars[vars].descvar} - <li> - {$vars[vars].descvar[vm].link} - {if $vars[vars].descvar[vm].sdesc} - : {$vars[vars].descvar[vm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} - -</div> -{/if} -{/section} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/options.ini b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/options.ini deleted file mode 100755 index 084809be..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/options.ini +++ /dev/null @@ -1,577 +0,0 @@ -preservedocbooktags = false - -;; used to highlight the {@source} inline tag, @filesource tag, and @example tag -[highlightSourceTokens] -;; format: -;; T_CONSTANTNAME = open -;; /T_CONSTANTNAME = close - -T_INCLUDE = <span class="src-inc"> -/T_INCLUDE = </span> -T_INCLUDE_ONCE = <span class="src-inc"> -/T_INCLUDE_ONCE = </span> -T_REQUIRE_ONCE = <span class="src-inc"> -/T_REQUIRE_ONCE = </span> -T_REQUIRE_ONCE = <span class="src-inc"> -/T_REQUIRE_ONCE = </span> - -T_CONSTANT_ENCAPSED_STRING = <span class="src-str"> -/T_CONSTANT_ENCAPSED_STRING = </span> -T_STRING_VARNAME = <span class="src-str"> -/T_STRING_VARNAME = </span> - -T_STRING = <span class="src-id"> -/T_STRING = </span> - -T_DNUMBER = <span class="src-num"> -/T_DNUMBER = </span> -T_LNUMBER = <span class="src-num"> -/T_LNUMBER = </span> - -T_VARIABLE = <span class="src-var"> -/T_VARIABLE = </span> - -T_COMMENT = <span class="src-comm"> -/T_COMMENT = </span> -T_ML_COMMENT = <span class="src-comm"> -/T_ML_COMMENT = </span> - -T_OBJECT_OPERATOR = <span class="src-sym"> -/T_OBJECT_OPERATOR = </span> - -T_ABSTRACT = <span class="src-key"> -/T_ABSTRACT = </span> -T_CLONE = <span class="src-key"> -/T_CLONE = </span> -T_HALT_COMPILER = <span class="src-key"> -/T_HALT_COMPILER = </span> -T_ARRAY = <span class="src-key"> -/T_ARRAY = </span> -T_AS = <span class="src-key"> -/T_AS = </span> -T_BREAK = <span class="src-key"> -/T_BREAK = </span> -T_CLASS = <span class="src-key"> -/T_CLASS = </span> -T_CASE = <span class="src-key"> -/T_CASE = </span> -T_CONST = <span class="src-key"> -/T_CONST = </span> -T_CONTINUE = <span class="src-key"> -/T_CONTINUE = </span> -T_DECLARE = <span class="src-key"> -/T_DECLARE = </span> -T_DEFAULT = <span class="src-key"> -/T_DEFAULT = </span> -T_ELSE = <span class="src-key"> -/T_ELSE = </span> -T_ELSEIF = <span class="src-key"> -/T_ELSEIF = </span> -T_EMPTY = <span class="src-key"> -/T_EMPTY = </span> -T_ENDDECLARE = <span class="src-key"> -/T_ENDDECLARE = </span> -T_ENDFOR = <span class="src-key"> -/T_ENDFOR = </span> -T_ENDSWITCH = <span class="src-key"> -/T_ENDSWITCH = </span> -T_ENDFOREACH = <span class="src-key"> -/T_ENDFOREACH = </span> -T_ENDIF = <span class="src-key"> -/T_ENDIF = </span> -T_ENDWHILE = <span class="src-key"> -/T_ENDWHILE = </span> -T_EXIT = <span class="src-key"> -/T_EXIT = </span> -T_EXTENDS = <span class="src-key"> -/T_EXTENDS = </span> -T_FINAL = <span class="src-key"> -/T_FINAL = </span> -T_FOR = <span class="src-key"> -/T_FOR = </span> -T_FOREACH = <span class="src-key"> -/T_FOREACH = </span> -T_FUNCTION = <span class="src-key"> -/T_FUNCTION = </span> -T_GLOBAL = <span class="src-key"> -/T_GLOBAL = </span> -T_IF = <span class="src-key"> -/T_IF = </span> -T_IMPLEMENTS = <span class="src-key"> -/T_IMPLEMENTS = </span> -T_INTERFACE = <span class="src-key"> -/T_INTERFACE = </span> -T_LOGICAL_AND = <span class="src-key"> -/T_LOGICAL_AND = </span> -T_LOGICAL_OR = <span class="src-key"> -/T_LOGICAL_OR = </span> -T_LOGICAL_XOR = <span class="src-key"> -/T_LOGICAL_XOR = </span> -T_NEW = <span class="src-key"> -/T_NEW = </span> -T_PRIVATE = <span class="src-key"> -/T_PRIVATE = </span> -T_PROTECTED = <span class="src-key"> -/T_PROTECTED = </span> -T_PUBLIC = <span class="src-key"> -/T_PUBLIC = </span> -T_RETURN = <span class="src-key"> -/T_RETURN = </span> -T_STATIC = <span class="src-key"> -/T_STATIC = </span> -T_SWITCH = <span class="src-key"> -/T_SWITCH = </span> -T_VAR = <span class="src-key"> -/T_VAR = </span> -T_WHILE = <span class="src-key"> -/T_WHILE = </span> - -T_DOUBLE_COLON = <span class="src-sym"> -/T_DOUBLE_COLON = </span> - -T_OPEN_TAG = <span class="src-php"> -/T_OPEN_TAG = </span> -T_OPEN_TAG_WITH_ECHO = <span class="src-php"> -/T_OPEN_TAG_WITH_ECHO = </span> -T_CLOSE_TAG = <span class="src-php"> -/T_CLOSE_TAG = </span> - - -[highlightSource] -;; this is for highlighting things that aren't tokens like "&" -;; format: -;; word = open -;; /word = close -@ = <span class="src-sym"> -/@ = </span> -& = <span class="src-sym"> -/& = </span> -[ = <span class="src-sym"> -/[ = </span> -] = <span class="src-sym"> -/] = </span> -! = <span class="src-sym"> -/! = </span> -";" = <span class="src-sym"> -/; = </span> -( = <span class="src-sym"> -/( = </span> -) = <span class="src-sym"> -/) = </span> -, = <span class="src-sym"> -/, = </span> -{ = <span class="src-sym"> -/{ = </span> -} = <span class="src-sym"> -/} = </span> -""" = <span class="src-str"> -/" = </span> - -[highlightDocBlockSourceTokens] -;; this is for docblock tokens, using by phpDocumentor_HighlightParser -;; tagphptype is for "string" in @param string description, for example -docblock = <span class="src-doc"> -/docblock = </span> -tagphptype = <span class="src-doc-type"> -/tagphptype = </span> -tagvarname = <span class="src-doc-var"> -/tagvarname = </span> -coretag = <span class="src-doc-coretag"> -/coretag = </span> -tag = <span class="src-doc-tag"> -/tag = </span> -inlinetag = <span class="src-doc-inlinetag"> -/inlinetag = </span> -internal = <span class="src-doc-internal"> -/internal = </span> -closetemplate = <span class="src-doc-close-template"> -/closetemplate = </span> -docblocktemplate = <span class="src-doc-template"> -/docblocktemplate = </span> - -[highlightTutorialSourceTokens] -;; this is for XML DocBook-based tutorials, highlighted by phpDocumentor_TutorialHighlightParser -;; <tag> -opentag = <span class="tute-tag"> -/opentag = </span> -;; </tag> -closetag = <span class="tute-tag"> -/closetag = </span> -;; <tag attribute="value"> -attribute = <span class="tute-attribute-name"> -/attribute = </span> -;; <tag attribute="value"> -attributevalue = <span class="tute-attribute-value"> -/attributevalue = </span> -;; &entity; -entity = <span class="tute-entity"> -/entity = </span> -;; <!-- comment --> -comment = <span class="tute-comment"> -/comment = </span> -;; {@inline tag} -itag = <span class="tute-inline-tag"> -/itag = </span> - -;; used for translation of html in DocBlocks -[desctranslate] -ul = <ul> -/ul = </ul> -ol = <ol> -/ol = </ol> -li = <li> -/li = </li> -code = -/code = -var = <var> -/var = </var> -samp = <samp> -/samp = </samp> -kbd = <kbd> -/kbd = </kbd> -pre = <pre> -/pre = </pre> -p = <p> -/p = </p> -b = <strong> -/b = </strong> -i = <em> -/i = </em> -br = <br /> - -[ppage] -;; this is the DocBook package page translation section. All DocBook tags -;; that have a corresponding html tag must be listed here. Entities should -;; also be listed here -;; -;; examples: -;; 1) -;; tagname = newtagname -;; -;; This is the simplest case, where all attributes will be added into the -;; starting tag and the ending tag will be html/xml style </tranlatedtagname> -;; <tagname></tagname> becomes <newtagname></newtagname> and -;; <tagname attr="value"></tagname> becomes -;; <newtagname attr="value"></newtagname> -;; -;; 2) -;; tagname = newtagname -;; tagname->attr = newattrname -;; -;; in this case, everything will be like the first case, except tags like: -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="value"></newtagname> -;; -;; 3) -;; tagname = newtagname -;; tagname->attr = newattrname -;; tagname->attr+value = newvalue -;; -;; in this case, the value is also translated to another. This can be useful -;; for instances such as focus="middle" changing to align="center" or something -;; of that nature. -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 4) -;; tagname = newtagname -;; tagname->attr1 = newattrname -;; tagname->attr2 = newattrname -;; tagname->attr1+value|attr2+value = newvalue -;; -;; in this case, two attributes combine to make one new attribute, and the combined -;; value is translated into a new value -;; <tagname attr1="value1" attr2="value2"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 5) -;; tagname = newtagname -;; tagname!attr = dummy -;; -;; here, the attribute will be ignored. dummy is not used and may be any value -;; <tagname attr="value"></tagname> will become -;; <newtagname></newtagname> -;; -;; 6) -;; tagname = newtagname -;; tagname! = dummy -;; -;; here, all attributes will be ignored. dummy is not used and may be any value -;; <tagname attr1="value" attr2="foo"></tagname> will become -;; <newtagname></newtagname> -;; -;; 7) -;; tagname = newtagname -;; tagname/ = 1 -;; -;; here, the tag will be translated as a single tag with no closing tag, and all -;; attributes -;; <tagname attr="val">{text text}</tagname> will become -;; <newtagname attr="val" /> -;; -;; 8) -;; tagname = <starttaginfo /> -;; /tagname = closetagtext -;; -;; in this case, the text <starttaginfo> will be inserted exactly as entered for -;; <tagname> and closetagtext for </tagname> -;; <tagname attr="val"></tagname> will become -;; <starttaginfo />closetagtext -;; -;; 9) -;; $attr$my_attribute = newattrname -;; -;; tagname = newtagname -;; -;; in this case, all occurences of my_attribute in any tag will be changed to -;; newattrname. This is useful for changing things like role="php" to -;; class="php," for example. Note that the text "$attr$" MUST be on the line -;; start for phpDocumentor to recognize it. -;; -;; 10) -;; &entity; = translation text -;; " = " -;; " = """ -;; < = < -;; -;; Use this to control translation of entities to their appropriate values - - = -" = " -” = ” -“ = “ -& = & -< = < -> = > -© = © - - -$attr$role = class - -abbrev = abbr - -blockquote = blockquote - -arg = span -arg->choice = class - -author = <span class="author"> -/author = </span> -author! = 0 - -authorblurb = <div class="author-blurb"> -/authorblurb = </div> - -authorgroup = <div class="authors"><h2 class="title">Authors</h2> -/authorgroup = </div> -authorgroup! = 0 - -caution = <span class="warning"> -/caution = </span> -caution! = 0 - -cmdsynopsis = <div class="cmd-synopsis"> -/cmdsynopsis = </div> - -command = <span class="cmd-title"> -/command = </span> - -copyright = <div class="notes"> -/copyright = </div> - -emphasis = em - -example = <div class="src-code"> -/example = </div> -example! = 0 - -function = -/function = () - -formalpara = p - -graphic = img -graphic->fileref = src -graphic/ = - -important = strong - -informalequation = blockquote - -informalexample = div - -inlineequation = em - -itemizedlist = ul - -listitem = li - -literal = code - -literallayout = span - -option = " " -/option = - -orderedlist = ol - -para = p - -programlisting = <div class="src-code"> -/programlisting = </div> -programlisting! = 0 - -refentry = div - -refnamediv = <div class="ref-title-box"> -/refnamediv = </div> -refnamediv! = 0 - -refname = <h1 class="ref-title"> -/refname = </h1> - -refpurpose = <h2 class="ref-purpose"> -/refpurpose = </h2> - -refsynopsisdiv = <div class="ref-synopsis"> -/refsynopsisdiv = </div> -refsynopsisdiv! = 0 - -refsect1 = span - -refsect2 = span - -refsect3 = -/refsect3 = <br /> - -releaseinfo = <div class="release-info">( -/releaseinfo = )</div> - -simpara = -/simpara = <br /> -simpara! = 0 - -subscript = sub - -superscript = super - -table = table - -table->colsep = rules -table->rowsep = rules -table->colsep+1|rowsep+1 =all -table->colsep+1|rowsep+0 =cols -table->colsep+0|rowsep+1 =rows - -table->frame =frame -table->frame+all =border -table->frame+none =void -table->frame+sides =vsides -table->frame+top =above -table->frame+topbot =hsides - -thead = thead - -tfoot = tfoot - -tbody = tbody - -colspec = col - -tgroup = colgroup -tgroup/ = 1 -tgroup->cols = span - -row = tr - -entry = td -entry->morerows = colspan -entry->morerows+1 =2 -entry->morerows+2 =3 -entry->morerows+3 =4 -entry->morerows+4 =5 -entry->morerows+5 =6 -entry->morerows+6 =7 -entry->morerows+7 =8 -entry->morerows+8 =9 -entry->morerows+9 =10 -entry->morerows+10 =11 -;; add more if you need more colspans - -warning = <span class="warning"> -/warning = </span> -warning! = 0 - -;; now begins the attributes that should be tags in cdata -[$attr$id] -open = a -;close = /a -cdata! = true -quotevalues = true -separator = "=" -;separateall = true -$id = name - -;; now begins the sections that deal with <title> -[refsynopsisdiv_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h1 class="title"> -close = </h1> - -[refsect1_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h2 class="title"> -close = </h2> - -[refsect2_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h3 class="title"> -close = </h3> - -[refsect3_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h4 class="title"> -close = </h4> - -[para_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <div class="title"> -close = </div> - -[formalpara_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <div class="title"> -close = </div> - -[example_title] -;tag_attr = true -;attr_name = title -;cdata_start = true -cdata_end = true -open = </td></tr><tr><td><strong> -close = </strong> - -[table_title] -;tag_attr = true -;attr_name = true -cdata_start = true -open = <caption> -close = </caption> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/basicindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/basicindex.tpl deleted file mode 100755 index 951ee264..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/basicindex.tpl +++ /dev/null @@ -1,47 +0,0 @@ -<div class="index-letter-menu"> -{section name=letter loop=$letters} - <a class="index-letter" href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> -{/section} -</div> - -{section name=index loop=$index} - <a name="{$index[index].letter}"></a> - <div class="index-letter-section"> - <div style="float: left" class="index-letter-title">{$index[index].letter}</div> - <div style="float: right"><a href="#top">top</a></div> - <div style="clear: both"></div> - </div> - <dl> - {section name=contents loop=$index[index].index} - <dt class="field"> - {if ($index[index].index[contents].title == "Variable")} - <span class="var-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Global")} - <span class="var-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Method")} - <span class="method-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Function")} - <span class="method-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Constant")} - <span class="const-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Page") || ($index[index].index[contents].title == "Include")} - <span class="include-title">{$index[index].index[contents].name}</span> - {else} - {$index[index].index[contents].name} - {/if} - </dt> - <dd class="index-item-body"> - <div class="index-item-details">{$index[index].index[contents].link} in {$index[index].index[contents].file_name}</div> - {if $index[index].index[contents].description} - <div class="index-item-description">{$index[index].index[contents].description}</div> - {/if} - </dd> - {/section} - </dl> -{/section} - -<div class="index-letter-menu"> -{section name=letter loop=$letters} - <a class="index-letter" href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> -{/section} -</div> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/blank.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/blank.tpl deleted file mode 100755 index 6a05f27e..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/blank.tpl +++ /dev/null @@ -1,13 +0,0 @@ -<html> -<head> - <title>{$maintitle}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> -</head> -<body> -<div align="center"><h1>{$maintitle}</h1></div> -<b>Welcome to {$package}!</b><br /> -<br /> -This documentation was generated by <a href="{$phpdocwebsite}">phpDocumentor v{$phpdocversion}</a><br /> -</body> -</html>
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/class.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/class.tpl deleted file mode 100755 index 9ab7c455..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/class.tpl +++ /dev/null @@ -1,429 +0,0 @@ -{include file="header.tpl" top3=true} - -<h2 class="class-name">{if $is_interface}Interface{else}Class{/if} {$class_name}</h2> - -<a name="sec-description"></a> -<div class="info-box"> - <div class="info-box-title">Description</div> - <div class="nav-bar"> - {if $children || $vars || $ivars || $methods || $imethods || $consts || $iconsts } - <span class="disabled">Description</span> | - {/if} - {if $children} - <a href="#sec-descendents">Descendents</a> - {if $vars || $ivars || $methods || $imethods || $consts || $iconsts}|{/if} - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {if $methods || $imethods}|{/if} - {/if} - {if $methods || $imethods} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {if $implements} - <p class="implements"> - Implements interfaces: - <ul> - {foreach item="int" from=$implements}<li>{$int}</li>{/foreach} - </ul> - </p> - {/if} - {include file="docblock.tpl" type="class" sdesc=$sdesc desc=$desc} - <p class="notes"> - Located in <a class="field" href="{$page_link}">{$source_location}</a> (line <span class="field">{if $class_slink}{$class_slink}{else}{$line_number}{/if}</span>) - </p> - - {if $tutorial} - <hr class="separator" /> - <div class="notes">Tutorial: <span class="tutorial">{$tutorial}</span></div> - {/if} - - <pre>{section name=tree loop=$class_tree.classes}{$class_tree.classes[tree]}{$class_tree.distance[tree]}{/section}</pre> - - {if $conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with classes:</span><br /> - {section name=me loop=$conflicts.conflicts} - {$conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - </div> -</div> - -{if $children} - <a name="sec-descendents"></a> - <div class="info-box"> - <div class="info-box-title">Direct descendents</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - <span class="disabled">Descendents</span> - {if $vars || $ivars || $methods || $imethods}|{/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {if $methods || $imethods}|{/if} - {/if} - {if $methods || $imethods} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <table cellpadding="2" cellspacing="0" class="class-table"> - <tr> - <th class="class-table-header">Class</th> - <th class="class-table-header">Description</th> - </tr> - {section name=kids loop=$children} - <tr> - <td style="padding-right: 2em">{$children[kids].link}</td> - <td> - {if $children[kids].sdesc} - {$children[kids].sdesc} - {else} - {$children[kids].desc} - {/if} - </td> - </tr> - {/section} - </table> - </div> - </div> -{/if} - -{if $consts} - <a name="sec-const-summary"></a> - <div class="info-box"> - <div class="info-box-title">Class Constant Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendants</a> | - {/if} - <span class="disabled">Constants</span> (<a href="#sec-consts">details</a>) - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - | - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <div class="const-summary"> - {section name=consts loop=$consts} - <div class="const-title"> - <img src="{$subdir}media/images/Constant.png" alt=" " /> - <a href="#{$consts[consts].const_name}" title="details" class="const-name">{$consts[consts].const_name}</a> = <span class="var-type">{$consts[consts].const_value}</span> - - </div> - {/section} - </div> - </div> - </div> -{/if} - -{if $vars} - <a name="sec-var-summary"></a> - <div class="info-box"> - <div class="info-box-title">Variable Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - <span class="disabled">Vars</span> (<a href="#sec-vars">details</a>) - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <div class="var-summary"> - {section name=vars loop=$vars} - {if $vars[vars].static} - <div class="var-title"> - static <span class="var-type">{$vars[vars].var_type}</span> - <a href="#{$vars[vars].var_name}" title="details" class="var-name">{$vars[vars].var_name}</a> - </div> - {/if} - {/section} - {section name=vars loop=$vars} - {if !$vars[vars].static} - <div class="var-title"> - <span class="var-type">{$vars[vars].var_type}</span> - <a href="#{$vars[vars].var_name}" title="details" class="var-name">{$vars[vars].var_name}</a> - </div> - {/if} - {/section} - </div> - </div> - </div> -{/if} - -{if $methods} - <a name="sec-method-summary"></a> - <div class="info-box"> - <div class="info-box-title">Method Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - | - {/if} - <span class="disabled">Methods</span> (<a href="#sec-methods">details</a>) - </div> - <div class="info-box-body"> - <div class="method-summary"> - {section name=methods loop=$methods} - {if $methods[methods].static} - <div class="method-definition"> - static {if $methods[methods].function_return} - <span class="method-result">{$methods[methods].function_return}</span> - {/if} - <a href="#{$methods[methods].function_name}" title="details" class="method-name">{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}</a> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - {/if} - {/section} - {section name=methods loop=$methods} - {if !$methods[methods].static} - <div class="method-definition"> - {if $methods[methods].function_return} - <span class="method-result">{$methods[methods].function_return}</span> - {/if} - <a href="#{$methods[methods].function_name}" title="details" class="method-name">{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}</a> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - {/if} - {/section} - </div> - </div> - </div> -{/if} - -{if $vars || $ivars} - <a name="sec-vars"></a> - <div class="info-box"> - <div class="info-box-title">Variables</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $methods} - <a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Vars</span> - {/if} - - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {include file="var.tpl"} - {if $ivars} - <h4>Inherited Variables</h4> - <A NAME='inherited_vars'><!-- --></A> - {section name=ivars loop=$ivars} - <p>Inherited from <span class="classname">{$ivars[ivars].parent_class}</span></p> - <blockquote> - {section name=ivars2 loop=$ivars[ivars].ivars} - <span class="var-title"> - <span class="var-name">{$ivars[ivars].ivars[ivars2].link}</span>{if $ivars[ivars].ivars[ivars2].ivar_sdesc}: {$ivars[ivars].ivars[ivars2].ivar_sdesc}{/if}<br> - </span> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{if $methods || $imethods} - <a name="sec-methods"></a> - <div class="info-box"> - <div class="info-box-title">Methods</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Methods</span> - {/if} - </div> - <div class="info-box-body"> - {include file="method.tpl"} - {if $imethods} - <h4>Inherited Methods</h4> - <a name='inherited_methods'><!-- --></a> - {section name=imethods loop=$imethods} - <!-- =========== Summary =========== --> - <p>Inherited From <span class="classname">{$imethods[imethods].parent_class}</span></p> - <blockquote> - {section name=im2 loop=$imethods[imethods].imethods} - <span class="method-name">{$imethods[imethods].imethods[im2].link}</span>{if $imethods[imethods].imethods[im2].ifunction_sdesc}: {$imethods[imethods].imethods[im2].ifunction_sdesc}{/if}<br> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{if $consts || $iconsts} - <a name="sec-consts"></a> - <div class="info-box"> - <div class="info-box-title">Class Constants</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendants</a> | - {/if} - {if $methods} - <a href="#sec-var-summary">Constants</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Constants</span> - {/if} - - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {include file="const.tpl"} - {if $iconsts} - <h4>Inherited Constants</h4> - <A NAME='inherited_vars'><!-- --></A> - {section name=iconsts loop=$iconsts} - <p>Inherited from <span class="classname">{$iconsts[iconsts].parent_class}</span></p> - <blockquote> - {section name=iconsts2 loop=$iconsts[iconsts].iconsts} - <img src="{$subdir}media/images/{if $iconsts[iconsts].iconsts[iconsts2].access == 'private'}PrivateVariable{else}Variable{/if}.png" /> - <span class="const-title"> - <span class="const-name">{$iconsts[iconsts].iconsts[iconsts2].link}</span>{if $iconsts[iconsts].iconsts[iconsts2].iconst_sdesc}: {$iconsts[iconsts].iconsts[iconsts2].iconst_sdesc}{/if}<br> - </span> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{include file="footer.tpl" top3=true} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/classtrees.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/classtrees.tpl deleted file mode 100755 index 952e6d50..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/classtrees.tpl +++ /dev/null @@ -1,19 +0,0 @@ -{include file="header.tpl" top1=true} - -<!-- Start of Class Data --> -<H2> - {$smarty.capture.title} -</H2> -{if $interfaces} -{section name=classtrees loop=$interfaces} -<h2>Root interface {$interfaces[classtrees].class}</h2> -{$interfaces[classtrees].class_tree} -{/section} -{/if} -{if $classtrees} -{section name=classtrees loop=$classtrees} -<h2>Root class {$classtrees[classtrees].class}</h2> -{$classtrees[classtrees].class_tree} -{/section} -{/if} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/const.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/const.tpl deleted file mode 100644 index c26ff92d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/const.tpl +++ /dev/null @@ -1,18 +0,0 @@ -{section name=consts loop=$consts} -<a name="const{$consts[consts].const_name}" id="{$consts[consts].const_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="const-header"> - <img src="{$subdir}media/images/{if $consts[consts].access == 'private'}PrivateVariable{else}Variable{/if}.png" /> - <span class="const-title"> - <span class="const-name">{$consts[consts].const_name}</span> - = <span class="const-default">{$consts[consts].const_value|replace:"\n":"<br />"}</span> - (line <span class="line-number">{if $consts[consts].slink}{$consts[consts].slink}{else}{$consts[consts].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$consts[consts].sdesc desc=$consts[consts].desc tags=$consts[consts].tags} - -</div> -{/section} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/define.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/define.tpl deleted file mode 100755 index 0da5d864..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/define.tpl +++ /dev/null @@ -1,24 +0,0 @@ -{section name=def loop=$defines} -<a name="{$defines[def].define_link}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="const-title"> - <span class="const-name">{$defines[def].define_name}</span> = {$defines[def].define_value|replace:"\n":"<br />"} - (line <span class="line-number">{if $defines[def].slink}{$defines[def].slink}{else}{$defines[def].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$defines[def].sdesc desc=$defines[def].desc tags=$defines[def].tags} - - {if $globals[glob].global_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with constants:</span><br /> - {section name=me loop=$defines[def].define_conflicts.conflicts} - {$defines[def].define_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/docblock.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/docblock.tpl deleted file mode 100755 index 783d5271..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/docblock.tpl +++ /dev/null @@ -1,14 +0,0 @@ -<!-- ========== Info from phpDoc block ========= --> -{if $sdesc} -<p class="short-description">{$sdesc}</p> -{/if} -{if $desc} -<p class="description">{$desc}</p> -{/if} -{if $tags} - <ul class="tags"> - {section name=tags loop=$tags} - <li><span class="field">{$tags[tags].keyword}:</span> {$tags[tags].data}</li> - {/section} - </ul> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/elementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/elementindex.tpl deleted file mode 100755 index d5964f99..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/elementindex.tpl +++ /dev/null @@ -1,12 +0,0 @@ -{include file="header.tpl" noleftindex=true} -<a name="top"></a> -<h2>Full index</h2> -<h3>Package indexes</h3> -<ul> -{section name=p loop=$packageindex} - <li><a href="elementindex_{$packageindex[p].title}.html">{$packageindex[p].title}</a></li> -{/section} -</ul> -<br /> -{include file="basicindex.tpl" indexname="elementindex"} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/errors.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/errors.tpl deleted file mode 100755 index 0f526584..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/errors.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{include file="header.tpl" noleftindex=true} -{section name=files loop=$files} -<a href="#{$files[files].file}">{$files[files].file}</a><br> -{/section} -{foreach key=file item=issues from=$all} -<a name="{$file}"></a> -<h1>{$file}</h1> -{if count($issues.warnings)} -<h2>Warnings:</h2><br> -{section name=warnings loop=$issues.warnings} -<b>{$issues.warnings[warnings].name}</b> - {$issues.warnings[warnings].listing}<br> -{/section} -{/if} -{if count($issues.errors)} -<h2>Errors:</h2><br> -{section name=errors loop=$issues.errors} -<b>{$issues.errors[errors].name}</b> - {$issues.errors[errors].listing}<br> -{/section} -{/if} -{/foreach} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/examplesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/examplesource.tpl deleted file mode 100755 index 8abf74ce..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/examplesource.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl" title=$title} -<h1>{$title}</h1> -<div class="listing"> -{$source} -</div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/filesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/filesource.tpl deleted file mode 100755 index 239f7b41..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/filesource.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{capture name="tutle"}File Source for {$name}{/capture} -{include file="header.tpl" title=$smarty.capture.tutle} -<h1>Source for file {$name}</h1> -<p>Documentation is available at {$docs}</p> -<div class="src-code"> -{$source} -</div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/footer.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/footer.tpl deleted file mode 100755 index 8d0f79db..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/footer.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{if !$index} - <p class="notes" id="credit"> - Documentation generated on {$date} by <a href="{$phpdocwebsite}" target="_blank">phpDocumentor {$phpdocversion}</a> - </p> -{/if} - {if $top3}</div>{/if} -</body> -</html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/function.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/function.tpl deleted file mode 100755 index b6880059..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/function.tpl +++ /dev/null @@ -1,44 +0,0 @@ -{section name=func loop=$functions} -<a name="{$functions[func].function_dest}" id="{$functions[func].function_dest}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="method-title">{$functions[func].function_name}</span> (line <span class="line-number">{if $functions[func].slink}{$functions[func].slink}{else}{$functions[func].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$functions[func].sdesc desc=$functions[func].desc tags=$functions[func].tags params=$functions[func].params function=false} - - <div class="method-signature"> - <span class="method-result">{$functions[func].function_return}</span> - <span class="method-name"> - {if $functions[func].ifunction_call.returnsref}&{/if}{$functions[func].function_name} - </span> - {if count($functions[func].ifunction_call.params)} - ({section name=params loop=$functions[func].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $functions[func].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$functions[func].ifunction_call.params[params].type}</span> <span class="var-name">{$functions[func].ifunction_call.params[params].name}</span>{if $functions[func].ifunction_call.params[params].hasdefault} = <span class="var-default">{$functions[func].ifunction_call.params[params].default|escape:"html"}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $functions[func].params} - <ul class="parameters"> - {section name=params loop=$functions[func].params} - <li> - <span class="var-type">{$functions[func].params[params].datatype}</span> - <span class="var-name">{$functions[func].params[params].var}</span>{if $functions[func].params[params].data}<span class="var-description">: {$functions[func].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $functions[func].function_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with functions:</span><br /> - {section name=me loop=$functions[func].function_conflicts.conflicts} - {$functions[func].function_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/global.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/global.tpl deleted file mode 100755 index eab7e0b0..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/global.tpl +++ /dev/null @@ -1,26 +0,0 @@ -{section name=glob loop=$globals} -<a name="{$globals[glob].global_link}" id="{$globals[glob].global_link}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="var-title"> - <span class="var-type">{$globals[glob].global_type}</span> - <span class="var-name">{$globals[glob].global_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$globals[glob].global_value|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $globals[glob].slink}{$globals[glob].slink}{else}{$globals[glob].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$globals[glob].sdesc desc=$globals[glob].desc tags=$globals[glob].tags} - - {if $globals[glob].global_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with global variables:</span><br /> - {section name=me loop=$globals[glob].global_conflicts.conflicts} - {$globals[glob].global_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/header.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/header.tpl deleted file mode 100755 index c22ba37d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/header.tpl +++ /dev/null @@ -1,12 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <!-- template designed by Marco Von Ballmoos --> - <title>{$title}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> - </head> - <body> - {if $top3}<div class="page-body">{/if} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/include.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/include.tpl deleted file mode 100755 index c2419e5f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/include.tpl +++ /dev/null @@ -1,16 +0,0 @@ -{section name=includes loop=$includes} -<a name="{$includes[includes].include_file}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="include-title"> - <span class="include-type">{$includes[includes].include_name}</span> - (<span class="include-name">{$includes[includes].include_value}</span>) - (line <span class="line-number">{if $includes[includes].slink}{$includes[includes].slink}{else}{$includes[includes].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$includes[includes].sdesc desc=$includes[includes].desc tags=$includes[includes].tags} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/index.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/index.tpl deleted file mode 100755 index 7cd61094..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/index.tpl +++ /dev/null @@ -1,24 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html - PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//FR" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> -<head> - <!-- Generated by phpDocumentor on {$date} --> - <title>{$title}</title> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> -</head> - -<FRAMESET rows='120,*'> - <FRAME src='packages.html' name='left_top' frameborder="1" bordercolor="#999999"> - <FRAMESET cols='25%,*'> - <FRAME src='{$start}' name='left_bottom' frameborder="1" bordercolor="#999999"> - <FRAME src='{$blank}.html' name='right' frameborder="1" bordercolor="#999999"> - </FRAMESET> - <NOFRAMES> - <H2>Frame Alert</H2> - <P>This document is designed to be viewed using the frames feature. - If you see this message, you are using a non-frame-capable web client.</P> - </NOFRAMES> -</FRAMESET> -</HTML> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/left_frame.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/left_frame.tpl deleted file mode 100755 index eb3f670d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/left_frame.tpl +++ /dev/null @@ -1,159 +0,0 @@ -{include file="header.tpl" top2=true} -<div class="package-title">{$package}</div> -<div class="package-details"> - - <dl class="tree"> - - <dt class="folder-title">Description</dt> - <dd> - <a href='{$classtreepage}.html' target='right'>Class trees</a><br /> - <a href='{$elementindex}.html' target='right'>Index of elements</a><br /> - {if $hastodos} - <a href="{$todolink}" target="right">Todo List</a><br /> - {/if} - </dd> - - {section name=p loop=$info} - - {if $info[p].subpackage == ""} - - {if $info[p].tutorials} - <dt class="folder-title">Tutorials/Manuals</dt> - <dd> - {if $info[p].tutorials.pkg} - <dl class="tree"> - <dt class="folder-title">Package-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.pkg} - {$info[p].tutorials.pkg[ext]} - {/section} - </dd> - </dl> - {/if} - - {if $info[p].tutorials.cls} - <dl class="tree"> - <dt class="folder-title">Class-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.cls} - {$info[p].tutorials.cls[ext]} - {/section} - </dd> - </dl> - {/if} - - {if $info[p].tutorials.proc} - <dl class="tree"> - <dt class="folder-title">Function-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.proc} - {$info[p].tutorials.proc[ext]} - {/section} - </dd> - </dl> - {/if} - </dd> - {/if} - {if $info[p].hasinterfaces} - <dt class="folder-title">Interfaces</dt> - {section name=class loop=$info[p].classes} - {if $info[p].classes[class].is_interface} - <dd><a href='{$info[p].classes[class].link}' target='right'>{$info[p].classes[class].title}</a></dd> - {/if} - {/section} - {/if} - {if $info[p].hasclasses} - <dt class="folder-title">Classes</dt> - {section name=class loop=$info[p].classes} - {if $info[p].classes[class].is_class} - <dd><a href='{$info[p].classes[class].link}' target='right'>{$info[p].classes[class].title}</a></dd> - {/if} - {/section} - {/if} - {if $info[p].functions} - <dt class="folder-title">Functions</dt> - {section name=f loop=$info[p].functions} - <dd><a href='{$info[p].functions[f].link}' target='right'>{$info[p].functions[f].title}</a></dd> - {/section} - {/if} - {if $info[p].files} - <dt class="folder-title">Files</dt> - {section name=nonclass loop=$info[p].files} - <dd><a href='{$info[p].files[nonclass].link}' target='right'>{$info[p].files[nonclass].title}</a></dd> - {/section} - {/if} - - {else} - {if $info[p].tutorials} - <dt class="folder-title">Tutorials/Manuals</dt> - <dd> - {if $info[p].tutorials.pkg} - <dl class="tree"> - <dt class="folder-title">Package-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.pkg} - {$info[p].tutorials.pkg[ext]} - {/section} - </dd> - </dl> - {/if} - - {if $info[p].tutorials.cls} - <dl class="tree"> - <dt class="folder-title">Class-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.cls} - {$info[p].tutorials.cls[ext]} - {/section} - </dd> - </dl> - {/if} - - {if $info[p].tutorials.proc} - <dl class="tree"> - <dt class="folder-title">Function-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.proc} - {$info[p].tutorials.proc[ext]} - {/section} - </dd> - </dl> - {/if} - </dd> - {/if} - - <dt class="sub-package">{$info[p].subpackage}</dt> - <dd> - <dl class="tree"> - {if $info[p].subpackagetutorial} - <div><a href="{$info.0.subpackagetutorialnoa}" target="right">{$info.0.subpackagetutorialtitle}</a></div> - {/if} - {if $info[p].classes} - <dt class="folder-title">Classes</dt> - {section name=class loop=$info[p].classes} - <dd><a href='{$info[p].classes[class].link}' target='right'>{$info[p].classes[class].title}</a></dd> - {/section} - {/if} - {if $info[p].functions} - <dt class="folder-title">Functions</dt> - {section name=f loop=$info[p].functions} - <dd><a href='{$info[p].functions[f].link}' target='right'>{$info[p].functions[f].title}</a></dd> - {/section} - {/if} - {if $info[p].files} - <dt class="folder-title">Files</dt> - {section name=nonclass loop=$info[p].files} - <dd><a href='{$info[p].files[nonclass].link}' target='right'>{$info[p].files[nonclass].title}</a></dd> - {/section} - {/if} - </dl> - </dd> - - {/if} - - {/section} - </dl> -</div> -<p class="notes"><a href="{$phpdocwebsite}" target="_blank">phpDocumentor v <span class="field">{$phpdocversion}</span></a></p> -</BODY> -</HTML> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/media/banner.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/media/banner.css deleted file mode 100755 index 065e76bc..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/media/banner.css +++ /dev/null @@ -1,32 +0,0 @@ -body -{ - background-color: #FFFFFF; - margin: 0px; - padding: 0px; -} - -/* Banner (top bar) classes */ - -.banner { } - -.banner-menu -{ - clear: both; - padding: .5em; - border-top: 2px solid #999999; -} - -.banner-title -{ - text-align: right; - font-size: 20pt; - font-weight: bold; - margin: .2em; -} - -.package-selector -{ - background-color: #EEEEEE; - border: 1px solid black; - color: #0000C0; -} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/media/stylesheet.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/media/stylesheet.css deleted file mode 100755 index 43834a16..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/media/stylesheet.css +++ /dev/null @@ -1,141 +0,0 @@ -a { color: #0000C0; text-decoration: underline; } -a:hover { text-decoration: underline; background-color: #FFFFFF } -a:active { text-decoration: underline; background-color: #FFFFFF } - -body, table { background-color: #EEEEEE; font-family: Verdana, Arial, sans-serif; font-size: 10pt } -p, li { line-height: 140% } -a img { border: 0px; } -dd { margin-left: 0px; padding-left: 1em; } - -/* Page layout/boxes */ - -.info-box {} -.info-box-title { margin: 1em 0em 0em 0em; padding: .25em; font-weight: normal; font-size: 14pt; border: 2px solid #999999; background-color: #FFFFFF } -.info-box-body { border: 1px solid #999999; padding: .5em; } -.nav-bar { font-size: 8pt; white-space: nowrap; text-align: right; padding: .2em; margin: 0em 0em 1em 0em; } - -.oddrow { background-color: #F8F8F8; border: 1px solid #AAAAAA; padding: .5em; margin-bottom: 1em} -.evenrow { border: 1px solid #AAAAAA; padding: .5em; margin-bottom: 1em} - -.page-body { max-width: 800px; margin: auto; } -.tree dl { margin: 0px } - -/* Index formatting classes */ - -.index-item-body { margin-top: .5em; margin-bottom: .5em} -.index-item-description { margin-top: .25em } -.index-item-details { font-weight: normal; font-style: italic; font-size: 8pt } -.index-letter-section { background-color: #EEEEEE; border: 1px dotted #999999; padding: .5em; margin-bottom: 1em} -.index-letter-title { font-size: 12pt; font-weight: bold } -.index-letter-menu { text-align: center; margin: 1em } -.index-letter { font-size: 12pt } - -/* Docbook classes */ - -.description {} -.short-description { font-weight: bold; color: #666666; } -.tags { padding-left: 0em; margin-left: 3em; color: #666666; list-style-type: square; } -.parameters { padding-left: 0em; margin-left: 3em; font-style: italic; list-style-type: square; } -.redefinitions { font-size: 8pt; padding-left: 0em; margin-left: 2em; } -.package { } -.package-title { font-weight: bold; font-size: 14pt; border-bottom: 1px solid black } -.package-details { font-size: 85%; } -.sub-package { font-weight: bold; font-size: 120% } -.tutorial { border-width: thin; border-color: #0066ff } -.tutorial-nav-box { width: 100%; border: 1px solid #AAAAAA; background-color: #DDDDFF; } -.nav-button-disabled { color: #AAAAAA; } -.nav-button:active, -.nav-button:focus, -.nav-button:hover { background-color: #CCCCCC; outline: 1px solid #999999; text-decoration: none } -.folder-title { font-style: italic } - -/* Generic formatting */ - -.field { font-weight: bold; } -.detail { font-size: 8pt; } -.notes { font-style: italic; font-size: 8pt; } -.separator { background-color: #999999; height: 2px; } -.warning { color: #FF6600; } -.disabled { font-style: italic; color: #999999; } - -/* Code elements */ - -.line-number { } - -.class-table { width: 100%; } -.class-table-header { border-bottom: 1px dotted #666666; text-align: left; background-color: DDDDFF } -.class-name { color: #000000; font-weight: bold; } - -.method-summary { padding-left: 1em; font-size: 8pt } -.method-header { background-color: #DDDDFF; padding: 1px; } -.method-definition { margin-bottom: .3em } -.method-title { font-weight: bold } -.method-name { font-weight: bold; } -.method-signature { font-size: 85%; color: #666666; margin: .5em 0em } -.method-result { font-style: italic; } - -.var-summary { padding-left: 1em; font-size: 8pt; } -.var-header { background-color: #DDDDFF; padding: 1px; } -.var-title { margin-bottom: .3em } -.var-type { font-style: italic; } -.var-name { font-weight: bold; } -.var-default {} -.var-description { font-weight: normal; color: #000000; } - -.include-title { } -.include-type { font-style: italic; } -.include-name { font-weight: bold; } - -.const-title { } -.const-name { font-weight: bold; } - -/* Syntax highlighting */ - -.src-code { border: 1px solid #999999; padding: 1em; - font-family: 'Courier New', Courier, monospace; font-weight: normal; } -.src-line { font-family: 'Courier New', Courier, monospace; font-weight: normal; } -.src-comm { color: green; } -.src-id { } -.src-inc { color: #0000FF; } -.src-key { color: #0000FF; } -.src-num { color: #CC0000; } -.src-str { color: #66cccc; } -.src-sym { font-weight: bold; } -.src-var { } - -.src-php { font-weight: bold; } - -.src-doc { color: #009999 } -.src-doc-close-template { color: #0000FF } -.src-doc-coretag { color: #0099FF; font-weight: bold } -.src-doc-inlinetag { color: #0099FF } -.src-doc-internal { color: #6699cc } -.src-doc-tag { color: #0080CC } -.src-doc-template { color: #0000FF } -.src-doc-type { font-style: italic } -.src-doc-var { font-style: italic } - -.tute-tag { color: #009999 } -.tute-attribute-name { color: #0000FF } -.tute-attribute-value { color: #0099FF } -.tute-entity { font-weight: bold; } -.tute-comment { font-style: italic } -.tute-inline-tag { color: #636311; font-weight: bold } - -/* tutorial */ - -.authors { } -.author { font-style: italic; font-weight: bold } -.author-blurb { margin: .5em 0em .5em 2em; font-size: 85%; font-weight: normal; font-style: normal } -.example { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; } -.listing { border: 1px dashed #999999; background-color: #EEEEEE; padding: .5em; white-space: nowrap; } -.release-info { font-size: 85%; font-style: italic; margin: 1em 0em } -.ref-title-box { } -.ref-title { } -.ref-purpose { font-style: italic; color: #666666 } -.ref-synopsis { } -.title { font-weight: bold; border: 2px solid #999999; background-color: #FFFFFF; padding: 2px } -.cmd-synopsis { margin: 1em 0em } -.cmd-title { font-weight: bold } -.toc { margin-left: 2em; padding-left: 0em } - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/method.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/method.tpl deleted file mode 100755 index 06d57a12..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/method.tpl +++ /dev/null @@ -1,149 +0,0 @@ -<A NAME='method_detail'></A> -{section name=methods loop=$methods} -{if $methods[methods].static} -<a name="method{$methods[methods].function_name}" id="{$methods[methods].function_name}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="method-header"> - <span class="method-title">static {$methods[methods].function_name}</span> (line <span class="line-number">{if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags params=$methods[methods].params function=false} - - <div class="method-signature"> - static <span class="method-result">{$methods[methods].function_return}</span> - <span class="method-name"> - {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name} - </span> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $methods[methods].params} - <ul class="parameters"> - {section name=params loop=$methods[methods].params} - <li> - <span class="var-type">{$methods[methods].params[params].datatype}</span> - <span class="var-name">{$methods[methods].params[params].var}</span>{if $methods[methods].params[params].data}<span class="var-description">: {$methods[methods].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $methods[methods].method_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$methods[methods].method_overrides.link}</dt> - {if $methods[methods].method_overrides.sdesc} - <dd>{$methods[methods].method_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} - - {if $methods[methods].descmethod} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=dm loop=$methods[methods].descmethod} - <li> - {$methods[methods].descmethod[dm].link} - {if $methods[methods].descmethod[dm].sdesc} - : {$methods[methods].descmethod[dm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} -</div> -{/if} -{/section} -{section name=methods loop=$methods} -{if !$methods[methods].static} -<a name="method{$methods[methods].function_name}" id="{$methods[methods].function_name}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="method-header"> - <span class="method-title">{if $methods[methods].ifunction_call.constructor}Constructor {elseif $methods[methods].ifunction_call.destructor}Destructor {/if}{$methods[methods].function_name}</span> (line <span class="line-number">{if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags params=$methods[methods].params function=false} - - <div class="method-signature"> - <span class="method-result">{$methods[methods].function_return}</span> - <span class="method-name"> - {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name} - </span> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $methods[methods].params} - <ul class="parameters"> - {section name=params loop=$methods[methods].params} - <li> - <span class="var-type">{$methods[methods].params[params].datatype}</span> - <span class="var-name">{$methods[methods].params[params].var}</span>{if $methods[methods].params[params].data}<span class="var-description">: {$methods[methods].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $methods[methods].method_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$methods[methods].method_overrides.link}</dt> - {if $methods[methods].method_overrides.sdesc} - <dd>{$methods[methods].method_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} - - {if $methods[methods].descmethod} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=dm loop=$methods[methods].descmethod} - <li> - {$methods[methods].descmethod[dm].link} - {if $methods[methods].descmethod[dm].sdesc} - : {$methods[methods].descmethod[dm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} -</div> -{/if} -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/page.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/page.tpl deleted file mode 100755 index b5980236..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/page.tpl +++ /dev/null @@ -1,211 +0,0 @@ -{include file="header.tpl" top3=true} - -<h2 class="file-name">{$source_location}</h2> - -<a name="sec-description"></a> -<div class="info-box"> - <div class="info-box-title">Description</div> - <div class="nav-bar"> - {if $classes || $includes || $defines || $globals || $functions} - <span class="disabled">Description</span> | - {/if} - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="docblock.tpl" desc=$desc sdesc=$sdesc tags=$tags} - - {if $tutorial} - <hr class="separator" /> - <div class="notes">Tutorial: <span class="tutorial">{$tutorial}</div> - {/if} - </div> -</div> - -{if $classes} - <a name="sec-classes"></a> - <div class="info-box"> - <div class="info-box-title">Classes</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - <span class="disabled">Classes</span> - {if $includes || $defines || $globals || $functions}|{/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - <table cellpadding="2" cellspacing="0" class="class-table"> - <tr> - <th class="class-table-header">Class</th> - <th class="class-table-header">Description</th> - </tr> - {section name=classes loop=$classes} - <tr> - <td style="padding-right: 2em; vertical-align: top"> - {$classes[classes].link} - </td> - <td> - {if $classes[classes].sdesc} - {$classes[classes].sdesc} - {else} - {$classes[classes].desc} - {/if} - </td> - </tr> - {/section} - </table> - </div> - </div> -{/if} - -{if $includes} - <a name="sec-includes"></a> - <div class="info-box"> - <div class="info-box-title">Includes</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - <span class="disabled">Includes</span> - {if $defines || $globals || $functions}|{/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="include.tpl"} - </div> - </div> -{/if} - -{if $defines} - <a name="sec-constants"></a> - <div class="info-box"> - <div class="info-box-title">Constants</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - <span class="disabled">Constants</span> - {if $globals || $functions}|{/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="define.tpl"} - </div> - </div> -{/if} - -{if $globals} - <a name="sec-variables"></a> - <div class="info-box"> - <div class="info-box-title">Variables</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - <span class="disabled">Variables</span> - {if $functions}|{/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="global.tpl"} - </div> - </div> -{/if} - -{if $functions} - <a name="sec-functions"></a> - <div class="info-box"> - <div class="info-box-title">Functions</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - <span class="disabled">Functions</span> - </div> - <div class="info-box-body"> - {include file="function.tpl"} - </div> - </div> -{/if} - -{include file="footer.tpl" top3=true} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/pkgelementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/pkgelementindex.tpl deleted file mode 100755 index dc283ad0..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/pkgelementindex.tpl +++ /dev/null @@ -1,17 +0,0 @@ -{include file="header.tpl"} -<a name="top"></a> -<h2>[{$package}] element index</h2> -{if count($packageindex) > 1} - <h3>Package indexes</h3> - <ul> - {section name=p loop=$packageindex} - {if $packageindex[p].title != $package} - <li><a href="elementindex_{$packageindex[p].title}.html">{$packageindex[p].title}</a></li> - {/if} - {/section} - </ul> -{/if} -<a href="elementindex.html">All elements</a> -<br /> -{include file="basicindex.tpl" indexname=elementindex_$package} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/ric.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/ric.tpl deleted file mode 100755 index eff734c1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/ric.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl"} -<h1 align="center">{$name}</h1> -<pre> -{$contents|htmlentities} -</pre> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/todolist.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/todolist.tpl deleted file mode 100755 index f929ccdb..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/todolist.tpl +++ /dev/null @@ -1,14 +0,0 @@ -{include file="header.tpl" title="Todo List"} -<div align="center"><h1>Todo List</h1></div> -{foreach from=$todos key=todopackage item=todo} -<h2>{$todopackage}</h2> -{section name=todo loop=$todo} -<h3>{$todo[todo].link}</h3> -<ul> -{section name=t loop=$todo[todo].todos} - <li>{$todo[todo].todos[t]}</li> -{/section} -</ul> -{/section} -{/foreach} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/top_frame.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/top_frame.tpl deleted file mode 100755 index 36d1e5a1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/top_frame.tpl +++ /dev/null @@ -1,45 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <!-- template designed by Marco Von Ballmoos --> - <title>{$title}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - <link rel="stylesheet" href="{$subdir}media/banner.css" /> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> - </head> - <body> - <div class="banner"> - <div class="banner-title">{$package}</div> - <div class="banner-menu"> - <form> - <table cellpadding="0" cellspacing="0" style="width: 100%"> - <tr> - <td> - {if count($ric) >= 1} - {assign var="last_ric_name" value=""} - {section name=ric loop=$ric} - {if $last_ric_name != ""} | {/if} - <a href="{$ric[ric].file}" target="right">{$ric[ric].name}</a> - {assign var="last_ric_name" value=$ric[ric].name} - {/section} - {/if} - </td> - <td style="width: 2em"> </td> - <td style="text-align: right"> - {if count($packages) > 1} - <span class="field">Packages</span> - <select class="package-selector" onchange="window.parent.left_bottom.location=this[selectedIndex].value"> - {section name=p loop=$packages} - <option value="{$packages[p].link}">{$packages[p].title}</option> - {/section} - </select> - {/if} - </td> - </tr> - </table> - </form> - </div> - </div> - </body> - </html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/tutorial.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/tutorial.tpl deleted file mode 100755 index 3b9109d1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/tutorial.tpl +++ /dev/null @@ -1,13 +0,0 @@ -{include file="header.tpl" title=$title top3=true} - -{if $nav} - {include file="tutorial_nav.tpl" prev=$prev next=$next up=$up prevtitle=$prevtitle nexttitle=$nexttitle uptitle=$uptitle} -{/if} - -{$contents} - -{if $nav} - {include file="tutorial_nav.tpl" prev=$prev next=$next up=$up prevtitle=$prevtitle nexttitle=$nexttitle uptitle=$uptitle} -{/if} - -{include file="footer.tpl" top3=true}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/tutorial_nav.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/tutorial_nav.tpl deleted file mode 100755 index 89952301..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/tutorial_nav.tpl +++ /dev/null @@ -1,41 +0,0 @@ -<table class="tutorial-nav-box"> - <tr> - <td style="width: 30%"> - {if $prev} - <a href="{$prev}" class="nav-button">Previous</a> - {else} - <span class="nav-button-disabled">Previous</span> - {/if} - </td> - <td style="text-align: center"> - {if $up} - <a href="{$up}" class="nav-button">Up</a> - {/if} - </td> - <td style="text-align: right; width: 30%"> - {if $next} - <a href="{$next}" class="nav-button">Next</a> - {else} - <span class="nav-button-disabled">Next</span> - {/if} - </td> - </tr> - <tr> - <td style="width: 30%"> - {if $prevtitle} - <span class="detail">{$prevtitle}</span> - {/if} - </td> - <td style="text-align: center"> - {if $uptitle} - <span class="detail">{$uptitle}</span> - {/if} - </td> - <td style="text-align: right; width: 30%"> - {if $nexttitle} - <span class="detail">{$nexttitle}</span> - {/if} - </td> - </tr> -</table> -
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/tutorial_toc.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/tutorial_toc.tpl deleted file mode 100755 index 3482249b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/tutorial_toc.tpl +++ /dev/null @@ -1,40 +0,0 @@ -{if count($toc)} -<h1 class="title">Table of Contents</h1> -<ul class="toc"> - {assign var="lastcontext" value='refsect1'} - {section name=toc loop=$toc} - - {if $toc[toc].tagname != $lastcontext} - {if $lastcontext == 'refsect1'} - <ul class="toc"> - <li>{$toc[toc].link}</li> - {else} - {if $lastcontext == 'refsect2'} - {if $toc[toc].tagname == 'refsect1'} - </ul> - <li>{$toc[toc].link}</li> - {/if} - {if $toc[toc].tagname == 'refsect3'} - <ul class="toc"> - <li>{$toc[toc].link}</li> - {/if} - {else} - </ul> - </ul> - <li>{$toc[toc].link}</li> - {/if} - {/if} - {assign var="lastcontext" value=$toc[toc].tagname} - {else} - <li>{$toc[toc].link}</li> - {/if} - {/section} - {if $lastcontext == 'refsect2'} - </ul> - {/if} - {if $lastcontext == 'refsect3'} - </ul> - </ul> - {/if} -</ul> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/tutorial_tree.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/tutorial_tree.tpl deleted file mode 100755 index 617b5654..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/tutorial_tree.tpl +++ /dev/null @@ -1,6 +0,0 @@ -<div><a href="{$main.link}" target="right">{$main.title|strip_tags}</a></div> -{if $haskids} -<div style="margin-left: 1em"> - {$kids} -</div> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/var.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/var.tpl deleted file mode 100755 index fccf6892..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpdoc.de/templates/var.tpl +++ /dev/null @@ -1,92 +0,0 @@ -{section name=vars loop=$vars} -{if $vars[vars].static} -<a name="var{$vars[vars].var_name}" id="{$vars[vars].var_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="var-header"> - <span class="var-title"> - static <span class="var-type">{$vars[vars].var_type}</span> - <span class="var-name">{$vars[vars].var_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$vars[vars].var_default|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} - - {if $vars[vars].var_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$vars[vars].var_overrides.link}</dt> - {if $vars[vars].var_overrides.sdesc} - <dd>{$vars[vars].var_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - - {if $vars[vars].descvar} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=vm loop=$vars[vars].descvar} - <li> - {$vars[vars].descvar[vm].link} - {if $vars[vars].descvar[vm].sdesc} - : {$vars[vars].descvar[vm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} - -</div> -{/if} -{/section} - -{section name=vars loop=$vars} -{if !$vars[vars].static} -<a name="var{$vars[vars].var_name}" id="{$vars[vars].var_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="var-header"> - <span class="var-title"> - <span class="var-type">{$vars[vars].var_type}</span> - <span class="var-name">{$vars[vars].var_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$vars[vars].var_default|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} - - {if $vars[vars].var_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$vars[vars].var_overrides.link}</dt> - {if $vars[vars].var_overrides.sdesc} - <dd>{$vars[vars].var_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - - {if $vars[vars].descvar} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=vm loop=$vars[vars].descvar} - <li> - {$vars[vars].descvar[vm].link} - {if $vars[vars].descvar[vm].sdesc} - : {$vars[vars].descvar[vm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} - -</div> -{/if} -{/section} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/options.ini b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/options.ini deleted file mode 100755 index c785503d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/options.ini +++ /dev/null @@ -1,507 +0,0 @@ -preservedocbooktags = false - -;; used to highlight the {@source} inline tag, @filesource tag, and @example tag -[highlightSourceTokens] -;; format: -;; T_CONSTANTNAME = open -;; /T_CONSTANTNAME = close -T_ABSTRACT = <font color="blue"> -/T_ABSTRACT = </font> -T_CLONE = <font color="blue"> -/T_CLONE = </font> -T_HALT_COMPILER = <font color="red"> -/T_HALT_COMPILER = </font> -T_PUBLIC = <font color="blue"> -/T_PUBLIC = </font> -T_PRIVATE = <font color="blue"> -/T_PRIVATE = </font> -T_PROTECTED = <font color="blue"> -/T_PROTECTED = </font> -T_FINAL = <font color="blue"> -/T_FINAL = </font> -T_IMPLEMENTS = <font color="blue"> -/T_IMPLEMENTS = </font> -T_CLASS = <font color="blue"> -/T_CLASS = </font> -T_INTERFACE = <font color="blue"> -/T_INTERFACE = </font> -T_INCLUDE = <font color="blue"> -/T_INCLUDE = </font> -T_INCLUDE_ONCE = <font color="blue"> -/T_INCLUDE_ONCE = </font> -T_REQUIRE_ONCE = <font color="blue"> -/T_REQUIRE_ONCE = </font> -T_FUNCTION = <font color="blue"> -/T_FUNCTION = </font> -T_VARIABLE = <strong> -/T_VARIABLE = </strong> -T_CONSTANT_ENCAPSED_STRING = <font color="#66cccc"> -/T_CONSTANT_ENCAPSED_STRING = </font> -T_COMMENT = <font color="green"> -/T_COMMENT = </font> -T_OBJECT_OPERATOR = <strong> -/T_OBJECT_OPERATOR = </strong> -T_RETURN = <font color="blue"> -/T_RETURN = </font> -T_STATIC = <font color="blue"> -/T_STATIC = </font> -T_SWITCH = <font color="blue"> -/T_SWITCH = </font> -T_IF = <font color="blue"> -/T_IF = </font> -T_FOREACH = <font color="blue"> -/T_FOREACH = </font> -T_FOR = <font color="blue"> -/T_FOR = </font> -T_VAR = <font color="blue"> -/T_VAR = </font> -T_EXTENDS = <font color="blue"> -/T_EXTENDS = </font> -T_RETURN = <font color="blue"> -/T_RETURN = </font> -T_GLOBAL = <font color="blue"> -/T_GLOBAL = </font> -T_DOUBLE_COLON = <strong> -/T_DOUBLE_COLON = </strong> -T_OBJECT_OPERATOR = <strong> -/T_OBJECT_OPERATOR = </strong> -T_OPEN_TAG = <strong> -/T_OPEN_TAG = </strong> -T_CLOSE_TAG = <strong> -/T_CLOSE_TAG = </strong> - -[highlightSource] -;; this is for highlighting things that aren't tokens like "&" -;; format: -;; word = open -;; /word = close -@ = <strong> -/@ = </strong> -& = <strong> -/& = </strong> -[ = <strong> -/[ = </strong> -] = <strong> -/] = </strong> -! = <strong> -/! = </strong> -";" = <strong> -/; = </strong> -( = <strong> -/( = </strong> -) = <strong> -/) = </strong> -, = <strong> -/, = </strong> -{ = <strong> -/{ = </strong> -} = <strong> -/} = </strong> -""" = <font color="#66cccc"> -/" = </font> - -[highlightDocBlockSourceTokens] -;; this is for docblock tokens, using by phpDocumentor_HighlightParser -;; tagphptype is for "string" in @param string description, for example -docblock = <font color="#009999"> -/docblock = </font> -tagphptype = <em> -/tagphptype = </em> -tagvarname = <strong> -/tagvarname = </strong> -coretag = <strong><font color = "#0099FF"> -/coretag = </font></strong> -tag = <strong><font color="#009999"> -/tag = </font></strong> -inlinetag = <em><font color="#0099FF"> -/inlinetag = </font></em> -internal = <em><font color = "#6699cc"> -/internal = </font></em> -closetemplate = <strong><font color="blue"> -/closetemplate = </font></strong> -docblocktemplate = <font color="blue"> -/docblocktemplate = </font color="blue"> - -[highlightTutorialSourceTokens] -;; this is for XML DocBook-based tutorials, highlighted by phpDocumentor_TutorialHighlightParser -;; <tag> -opentag = <span class="tute-tag"> -/opentag = </span> -;; </tag> -closetag = <span class="tute-tag"> -/closetag = </span> -;; <tag attribute="value"> -attribute = <span class="tute-attribute-name"> -/attribute = </span> -;; <tag attribute="value"> -attributevalue = <span class="tute-attribute-value"> -/attributevalue = </span> -;; &entity; -entity = <span class="tute-entity"> -/entity = </span> -;; <!-- comment --> -comment = <span class="tute-comment"> -/comment = </span> -;; {@inline tag} -itag = <span class="tute-inline-tag"> -/itag = </span> - -;; used for translation of html in DocBlocks -[desctranslate] -ul = <ul> -/ul = </ul> -ol = <ol> -/ol = </ol> -li = <li> -/li = </li> -code = -/code = -var = <var> -/var = </var> -samp = <samp> -/samp = </samp> -kbd = <kbd> -/kbd = </kbd> -pre = <pre> -/pre = </pre> -p = <p> -/p = </p> -b = <strong> -/b = </strong> -i = <em> -/i = </em> -br = <br /> - -[ppage] -;; this is the DocBook package page translation section. All DocBook tags -;; that have a corresponding html tag must be listed here -;; -;; examples: -;; 1) -;; tagname = newtagname -;; -;; This is the simplest case, where all attributes will be added into the -;; starting tag and the ending tag will be html/xml style </tranlatedtagname> -;; <tagname></tagname> becomes <newtagname></newtagname> and -;; <tagname attr="value"></tagname> becomes -;; <newtagname attr="value"></newtagname> -;; -;; 2) -;; tagname = newtagname -;; tagname->attr = newattrname -;; -;; in this case, everything will be like the first case, except tags like: -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="value"></newtagname> -;; -;; 3) -;; tagname = newtagname -;; tagname->attr = newattrname -;; tagname->attr+value = newvalue -;; -;; in this case, the value is also translated to another. This can be useful -;; for instances such as focus="middle" changing to align="center" or something -;; of that nature. -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 4) -;; tagname = newtagname -;; tagname->attr1 = newattrname -;; tagname->attr2 = newattrname -;; tagname->attr1+value|attr2+value = newvalue -;; -;; in this case, two attributes combine to make one new attribute, and the combined -;; value is translated into a new value -;; <tagname attr1="value1" attr2="value2"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 5) -;; tagname = newtagname -;; tagname!attr = dummy -;; -;; here, the attribute will be ignored. dummy is not used and may be any value -;; <tagname attr="value"></tagname> will become -;; <newtagname></newtagname> -;; -;; 6) -;; tagname = newtagname -;; tagname! = dummy -;; -;; here, all attributes will be ignored. dummy is not used and may be any value -;; <tagname attr1="value" attr2="foo"></tagname> will become -;; <newtagname></newtagname> -;; -;; 7) -;; tagname = newtagname -;; tagname/ = 1 -;; -;; here, the tag will be translated as a single tag with no closing tag, and all -;; attributes -;; <tagname attr="val">{text text}</tagname> will become -;; <newtagname attr="val" /> -;; -;; 8) -;; tagname = <starttaginfo /> -;; /tagname = closetagtext -;; -;; in this case, the text <starttaginfo> will be inserted exactly as entered for -;; <tagname> and closetagtext for </tagname> -;; <tagname attr="val"></tagname> will become -;; <starttaginfo />closetagtext -;; -;; 9) -;; $attr$my_attribute = newattrname -;; -;; tagname = newtagname -;; -;; in this case, all occurences of my_attribute in any tag will be changed to -;; newattrname. This is useful for changing things like role="php" to -;; class="php," for example. Note that the text "$attr$" MUST be on the line -;; start for phpDocumentor to recognize it. -;; -;; 10) -;; &entity; = translation text -;; " = " -;; " = """ -;; < = < -;; -;; Use this to control translation of entities to their appropriate values - - = -" = " -” = ” -“ = “ -& = & -< = < -> = > -© = © - -$attr$role = class - -abbrev = abbr - -blockquote = blockquote - -arg = span -arg->choice = class - -author = <font size="-1"><strong>by <em> -/author = </em></strong></font> -author! = 0 - -authorblurb = blockquote - -authorgroup = <strong>Authors:</strong><br /> -/authorgroup = -authorgroup! = 0 - -caution = <table border="1"><th align="center">Caution</th><tr><td> -/caution = </td></tr></table> -caution! = 0 - -command = <b class="cmd"> -/command = </b> - -cmdsynopsis = <div id="cmdsynopsis"> -/cmdsynopsis = </div> - -copyright = <em> -/copyright = </em><br /> - -emphasis = strong - -example = <table class="src-code" width="100%" border="1"><tr><td> -/example = </td></tr></table> -example! = 0 - -function = -/function = () - -formalpara = p - -graphic = img -graphic->fileref = src -graphic/ = - -important = u - -informalequation = blockquote - -informalexample = pre - -inlineequation = em - -itemizedlist = ul - -listitem = li - -literal = code - -literallayout = pre - -option = " " -/option = - -orderedlist = ol - -para = p - -programlisting = <table border="0" bgcolor="#E0E0E0" cellpadding="5"><tr><td><div class="src-code"> -/programlisting = </div></td></tr></table> -programlisting! = 0 - -refentry = div - -refnamediv = <div class="refname"> -/refnamediv = </div> -refnamediv! = 0 - -refname = h1 - -refpurpose = <h2 class="refpurpose"><em> -/refpurpose = </em></h2> - -refsynopsisdiv = <div class="refsynopsis"> -/refsynopsisdiv = </div> -refsynopsisdiv! = 0 - -refsect1 = span - -refsect2 = -/refsect2 = <hr /> - -refsect3 = -/refsect3 = <br /> - -releaseinfo = ( -/releaseinfo = )<br /> - -simpara = -/simpara = <br /> -simpara! = 0 - -subscript = sub - -superscript = super - -table = table - -table->colsep = rules -table->rowsep = rules -table->colsep+1|rowsep+1 = all -table->colsep+1|rowsep+0 = cols -table->colsep+0|rowsep+1 = rows - -table->frame = frame -table->frame+all = border -table->frame+none = void -table->frame+sides = vsides -table->frame+top = above -table->frame+topbot = hsides - -thead = thead - -tfoot = tfoot - -tbody = tbody - -colspec = col - -tgroup = colgroup -tgroup/ = 1 -tgroup->cols = span - -row = tr - -entry = td -entry->morerows = colspan -entry->morerows+1 = 2 -entry->morerows+2 = 3 -entry->morerows+3 = 4 -entry->morerows+4 = 5 -entry->morerows+5 = 6 -entry->morerows+6 = 7 -entry->morerows+7 = 8 -entry->morerows+8 = 9 -entry->morerows+9 = 10 -entry->morerows+10 = 11 -;; add more if you need more colspans - -warning = <table border="1"><tr><td> -/warning = </td></tr></table> -warning! = 0 - -;; now begins the attributes that should be tags in cdata -[$attr$id] -open = a -;close = /a -cdata! = true -quotevalues = true -separator = "=" -;separateall = true -$id = name - -;; now begins the sections that deal with <title> -[refsynopsisdiv_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h1 class="title" align="center"> -close = </h1> - -[refsect1_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h2 class="title" align="center"> -close = </h1> - -[refsect2_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h2 class="title" align="center"> -close = </h2> - -[refsect3_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h3 class="title" align="center"> -close = </h3> - -[para_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <strong class="title" align="center"> -close = </strong> - -[formalpara_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <strong class="title" align="center"> -close = </strong> - -[example_title] -;tag_attr = true -;attr_name = title -;cdata_start = true -cdata_end = true -open = </td></tr><tr><td><strong> -close = </strong> - -[table_title] -;tag_attr = true -;attr_name = true -cdata_start = true -open = <caption> -close = </caption> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/basicindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/basicindex.tpl deleted file mode 100755 index f6f906cc..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/basicindex.tpl +++ /dev/null @@ -1,24 +0,0 @@ -{section name=letter loop=$letters} - <a href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> -{/section} - -<br /><br /> -<table border="0" width="100%"> -{section name=index loop=$index} -<thead> - <tr> - <td><strong>{$index[index].letter}</strong></td> - <td align='right'><a name="{$index[index].letter}"> </a> - <a href="#top">top</a><br /></td> - </tr> -</thead> -<tbody> - {section name=contents loop=$index[index].index} - <tr> - <td> <strong>{$index[index].index[contents].name}</strong></td> - <td width="100%" align="left" valign="top">{$index[index].index[contents].listing}</td> - </tr> - {/section} -</tbody> -{/section} -</table> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/blank.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/blank.tpl deleted file mode 100755 index 6a05f27e..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/blank.tpl +++ /dev/null @@ -1,13 +0,0 @@ -<html> -<head> - <title>{$maintitle}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> -</head> -<body> -<div align="center"><h1>{$maintitle}</h1></div> -<b>Welcome to {$package}!</b><br /> -<br /> -This documentation was generated by <a href="{$phpdocwebsite}">phpDocumentor v{$phpdocversion}</a><br /> -</body> -</html>
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/class.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/class.tpl deleted file mode 100755 index b9dda927..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/class.tpl +++ /dev/null @@ -1,95 +0,0 @@ -{include file="header.tpl" top3=true} -<!-- Start of Class Data --> -<h2> - {if $is_interface}Interface{else}Class{/if} {$class_name} -</h2> (line <span class="linenumber">{if $class_slink}{$class_slink}{else}{$line_number}{/if}</span>) -<div class="tab-pane" id="tabPane1"> -<script type="text/javascript"> -tp1 = new WebFXTabPane( document.getElementById( "tabPane1" )); -</script> - -<div class="tab-page" id="Description"> -<h2 class="tab">Description</h2> -<pre> -{section name=tree loop=$class_tree.classes}{$class_tree.classes[tree]}{$class_tree.distance[tree]}{/section} -</pre> -{if $tutorial} -<div class="maintutorial">Class Tutorial: {$tutorial}</div> -{/if} -{if $conflicts.conflict_type} - <div align="left"><span class="font10bold" style="color:#FF0000">Warning:</span> Conflicts with classes:<br /> - {section name=me loop=$conflicts.conflicts} - {$conflicts.conflicts[me]}<br /> - {/section} - </div> -{/if} -<p> - <b><i>Located in File: <a href="{$page_link}">{$source_location}</a></i></b><br> -</p> -{include file="docblock.tpl" type="class" sdesc=$sdesc desc=$desc} -<br /><hr /> -{if $children} -<span class="type">Classes extended from {$class_name}:</span> - {section name=kids loop=$children} - <dl> - <dt>{$children[kids].link}</dt> - <dd>{$children[kids].sdesc}</dd> - </dl> - {/section}</p> -{/if} -</div> -<script type="text/javascript">tp1.addTabPage( document.getElementById( "Description" ) );</script> -<div class="tab-page" id="tabPage1"> -{include file="var.tpl"} -</div> -<div class="tab-page" id="constantsTabpage"> -{include file="const.tpl"} -</div> -<div class="tab-page" id="tabPage2"> -{include file="method.tpl"} -</div> -<div class="tab-page" id="iVars"> -<h2 class="tab">Inherited Variables</h2> -<script type="text/javascript">tp1.addTabPage( document.getElementById( "iVars" ) );</script> -<!-- =========== VAR INHERITED SUMMARY =========== --> -<A NAME='var_inherited_summary'><!-- --></A> -<h3>Inherited Class Variable Summary</h3> - - {section name=ivars loop=$ivars} - <!-- =========== Summary =========== --> - <h4>Inherited From Class {$ivars[ivars].parent_class}</h4> - {section name=ivars2 loop=$ivars[ivars].ivars} - <h4> -<img src="{$subdir}media/images/PublicProperty.gif" border="0" /><strong class="property"> {$ivars[ivars].ivars[ivars2].link}</strong> - {$ivars[ivars].ivars[ivars2].sdesc} - </h4> - {/section} - {/section} -</div> -<div class="tab-page" id="iMethods"> -<h2 class="tab">Inherited Methods</h2> -<script type="text/javascript">tp1.addTabPage( document.getElementById( "iMethods" ) );</script> -<!-- =========== INHERITED METHOD SUMMARY =========== --> -<A NAME='functions_inherited'><!-- --></A> -<h3>Inherited Method Summary</h3> - - {section name=imethods loop=$imethods} - <!-- =========== Summary =========== --> - <h4>Inherited From Class {$imethods[imethods].parent_class}</h4> - {section name=im2 loop=$imethods[imethods].imethods} - <h4> -<img src="{$subdir}media/images/{if $imethods[imethods].imethods[im2].constructor}Constructor{elseif $imethods[imethods].imethods[im2].destructor}Destructor{else}PublicMethod{/if}.gif" border="0" /><strong class="method"> {$imethods[imethods].imethods[im2].link}</strong> - {$imethods[imethods].imethods[im2].sdesc} - </h4> - - {/section} - <br /> - {/section} -</div> -</div> -<script type="text/javascript"> -//<![CDATA[ - -setupAllTabs(); - -//]]> -</script> -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/classtrees.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/classtrees.tpl deleted file mode 100755 index 952e6d50..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/classtrees.tpl +++ /dev/null @@ -1,19 +0,0 @@ -{include file="header.tpl" top1=true} - -<!-- Start of Class Data --> -<H2> - {$smarty.capture.title} -</H2> -{if $interfaces} -{section name=classtrees loop=$interfaces} -<h2>Root interface {$interfaces[classtrees].class}</h2> -{$interfaces[classtrees].class_tree} -{/section} -{/if} -{if $classtrees} -{section name=classtrees loop=$classtrees} -<h2>Root class {$classtrees[classtrees].class}</h2> -{$classtrees[classtrees].class_tree} -{/section} -{/if} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/const.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/const.tpl deleted file mode 100644 index d9f36e58..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/const.tpl +++ /dev/null @@ -1,21 +0,0 @@ - -<h2 class="tab">Class Constants</h2> -<!-- ============ VARIABLE DETAIL =========== --> -<strong>Summary:</strong><br /> -{section name=consts loop=$consts} -<div class="const-title"> - <a href="#{$consts[consts].const_dest}" title="details" class="property"><strong>{$consts[consts].const_name}</strong></a> -</div> -{/section} -<hr /> -{section name=consts loop=$consts} -<a name="{$consts[consts].const_dest}" id="{$consts[consts].const_dest}"><!-- --></A> -<div style="background='{cycle values="#ffffff,#eeeeee"}'"> -<h4> -<img src="{$subdir}media/images/Constant.gif" border="0" /> <strong class="property">{$consts[consts].const_name} = {$consts[consts].const_value|replace:"\n":"<br />"}</strong> (line <span class="linenumber">{if $consts[consts].slink}{$consts[consts].slink}{else}{$consts[consts].line_number}{/if}</span>) - </h4> -{include file="docblock.tpl" sdesc=$consts[consts].sdesc desc=$consts[consts].desc tags=$consts[consts].tags} -</div> -{/section} -<script type="text/javascript">tp1.addTabPage( document.getElementById( "constantsTabpage" ) );</script> - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/define.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/define.tpl deleted file mode 100755 index 68339e53..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/define.tpl +++ /dev/null @@ -1,24 +0,0 @@ -<!-- ============ CONSTANT DETAIL =========== --> - -<A NAME='constant_detail'></A> -<h2 class="tab">Constants</h2> - -<script type="text/javascript">tp1.addTabPage( document.getElementById( "tabPage3" ) );</script> - -{section name=def loop=$defines} -<a name="{$defines[def].define_link}"><!-- --></a> -<div style="background='{cycle values="#ffffff,#eeeeee"}'"> -<h4> - <img src="{$subdir}media/images/Constant.gif" border="0" /> <strong class="property">{$defines[def].define_name}</strong> (line <span class="linenumber">{if $defines[def].slink}{$defines[def].slink}{else}{$defines[def].line_number}{/if}</span>) - </h4> -<h4>{$defines[def].define_name} : {$defines[def].define_value|replace:"\n":"<br />"}</h4> -{if $defines[def].define_conflicts.conflict_type} - <p><span class="warning">Warning:</span> Conflicts with constants:<br /> - {section name=me loop=$defines[def].define_conflicts.conflicts} - {$defines[def].define_conflicts.conflicts[me]}<br /> - {/section} - </p> -{/if} -{include file="docblock.tpl" sdesc=$defines[def].sdesc desc=$defines[def].desc tags=$defines[def].tags} -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/docblock.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/docblock.tpl deleted file mode 100755 index 7b1e17d7..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/docblock.tpl +++ /dev/null @@ -1,30 +0,0 @@ -<!-- ========== Info from phpDoc block ========= --> -{if $sdesc} -<h5>{$sdesc}</h5> -{/if} -{if $desc} -<div class="desc">{$desc}</div> -{/if} -{if $function} - {if $params} - <h4>Parameters</h4> - <ul> - {section name=params loop=$params} - <li><strong>{$params[params].datatype} {$params[params].var}</strong>: {$params[params].data}</li> - {/section} - </ul> - {/if} - - <h4>Info</h4> - <ul> - {section name=tags loop=$tags} - <li><strong>{$tags[tags].keyword}</strong> - {$tags[tags].data}</li> - {/section} - </ul> -{else} -<ul> - {section name=tags loop=$tags} - <li><strong>{$tags[tags].keyword}:</strong> - {$tags[tags].data}</li> - {/section} -</ul> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/elementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/elementindex.tpl deleted file mode 100755 index fcb310a8..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/elementindex.tpl +++ /dev/null @@ -1,13 +0,0 @@ -{include file="header.tpl" noleftindex=true} -<a name="top"></a> -<h1>Index of All Elements</h1> -<a name="top"> </a> -<strong>Indexes by package:</strong><br /> -<ul> -{section name=p loop=$packageindex} -<li><a href="elementindex_{$packageindex[p].title}.html">{$packageindex[p].title}</a></li> -{/section} -</ul> -<br /> -{include file="basicindex.tpl" indexname="elementindex"} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/errors.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/errors.tpl deleted file mode 100755 index 0f526584..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/errors.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{include file="header.tpl" noleftindex=true} -{section name=files loop=$files} -<a href="#{$files[files].file}">{$files[files].file}</a><br> -{/section} -{foreach key=file item=issues from=$all} -<a name="{$file}"></a> -<h1>{$file}</h1> -{if count($issues.warnings)} -<h2>Warnings:</h2><br> -{section name=warnings loop=$issues.warnings} -<b>{$issues.warnings[warnings].name}</b> - {$issues.warnings[warnings].listing}<br> -{/section} -{/if} -{if count($issues.errors)} -<h2>Errors:</h2><br> -{section name=errors loop=$issues.errors} -<b>{$issues.errors[errors].name}</b> - {$issues.errors[errors].listing}<br> -{/section} -{/if} -{/foreach} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/examplesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/examplesource.tpl deleted file mode 100755 index 5aef23d7..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/examplesource.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl" title=$title} -<h1 align="center">{$title}</h1> -<div class="src-code"> -{$source} -</div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/filesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/filesource.tpl deleted file mode 100755 index 3d93199e..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/filesource.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{capture name="tutle"}File Source for {$name}{/capture} -{include file="header.tpl" title=$smarty.capture.tutle} -<h1 align="center">Source for file {$name}</h1> -<p>Documentation is available at {$docs}</p> -<div class="src-code"> -{$source} -</div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/footer.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/footer.tpl deleted file mode 100755 index 9088c4fc..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/footer.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{if !$index} - <div id="credit"> - <hr /> - Documentation generated on {$date} by <a href="{$phpdocwebsite}" target="_blank">phpDocumentor {$phpdocversion}</a> - </div> -{/if} -</body> -</html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/function.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/function.tpl deleted file mode 100755 index 6348dd0e..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/function.tpl +++ /dev/null @@ -1,29 +0,0 @@ -<!-- ============ FUNCTION DETAIL =========== --> - -<h2 class="tab">Functions</h2> - -<script type="text/javascript">tp1.addTabPage( document.getElementById( "tabPage4" ) );</script> - -{section name=func loop=$functions} -<a name="{$functions[func].function_dest}" id="{$functions[func].function_dest}"><!-- --></a> -<div style="background='{cycle values="#ffffff,#eeeeee"}'"> -<h4> - <img src="{$subdir}media/images/PublicMethod.gif" border="0" /> <strong class="method">{$functions[func].function_name}</strong> (line <span class="linenumber">{if $functions[func].slink}{$functions[func].slink}{else}{$functions[func].line_number}{/if}</span>) - </h4> -<h4><i>{$functions[func].function_return}</i> <strong>{if $functions[func].ifunction_call.returnsref}&{/if}{$functions[func].function_name}( -{if count($functions[func].ifunction_call.params)} -{section name=params loop=$functions[func].ifunction_call.params} -{if $smarty.section.params.iteration != 1}, {/if}{if $functions[func].ifunction_call.params[params].hasdefault}[{/if}{$functions[func].ifunction_call.params[params].type} {$functions[func].ifunction_call.params[params].name}{if $functions[func].ifunction_call.params[params].hasdefault} = {$functions[func].ifunction_call.params[params].default|escape:"html"}]{/if} -{/section} -{/if})</strong></h4> -{if $functions[func].function_conflicts.conflict_type} -<div align="left"><span class="warning">Warning:</span> Conflicts with functions:<br /> -{section name=me loop=$functions[func].function_conflicts.conflicts} -{$functions[func].function_conflicts.conflicts[me]}<br /> -{/section} -</div> -{/if} - -{include file="docblock.tpl" sdesc=$functions[func].sdesc desc=$functions[func].desc tags=$functions[func].tags params=$functions[func].params function=true} -</div> -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/global.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/global.tpl deleted file mode 100755 index 42303bf1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/global.tpl +++ /dev/null @@ -1,24 +0,0 @@ -<!-- ============ GLOBAL DETAIL =========== --> - -<h2 class="tab">Global Variables</h2> - -<script type="text/javascript">tp1.addTabPage( document.getElementById( "tabPage2" ) );</script> - -{section name=glob loop=$globals} -<a name="{$globals[glob].global_link}" id="{$globals[glob].global_link}"><!-- --></a> -<div style="background='{cycle values="#ffffff,#eeeeee"}'"> -<h4> - <img src="{$subdir}media/images/Constants.gif" border="0" /> <strong class="Property">{$globals[glob].global_name}</strong> (line <span class="linenumber">{if $globals[glob].slink}{$globals[glob].slink}{else}{$globals[glob].line_number}{/if}</span>) - </h4> -<h4><i>{$globals[glob].global_type}</i> {$globals[glob].global_name} : {$globals[glob].global_value|replace:"\n":"<br />"}</h4> -{if $globals[glob].global_conflicts.conflict_type} - <p><span class="warning">Warning:</span> Conflicts with global variables:<br /> - {section name=me loop=$globals[glob].global_conflicts.conflicts} - {$globals[glob].global_conflicts.conflicts[me]}<br /> - {/section} - </p> -{/if} - -{include file="docblock.tpl" sdesc=$globals[glob].sdesc desc=$globals[glob].desc tags=$globals[glob].tags} -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/header.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/header.tpl deleted file mode 100755 index 378f67e3..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/header.tpl +++ /dev/null @@ -1,97 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html - PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> -<head> - <title>{$title}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> -{if $top2 || $top3} - <script src="{$subdir}media/lib/classTree.js"></script> -<link id="webfx-tab-style-sheet" type="text/css" rel="stylesheet" href="{$subdir}media/lib/tab.webfx.css" /> -<script type="text/javascript" src="{$subdir}media/lib/tabpane.js"></script> -{/if} -{if $top2} - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> -{/if} -{if $top3 || $top2} - <script language="javascript" type="text/javascript" src="{$subdir}media/lib/ua.js"></script> -<script language="javascript" type="text/javascript"> - var imgPlus = new Image(); - var imgMinus = new Image(); - imgPlus.src = "{$subdir}media/images/plus.gif"; - imgMinus.src = "{$subdir}media/images/minus.gif"; - - function showNode(Node){ldelim} - switch(navigator.family){ldelim} - case 'nn4': - // Nav 4.x code fork... - var oTable = document.layers["span" + Node]; - var oImg = document.layers["img" + Node]; - break; - case 'ie4': - // IE 4/5 code fork... - var oTable = document.all["span" + Node]; - var oImg = document.all["img" + Node]; - break; - case 'gecko': - // Standards Compliant code fork... - var oTable = document.getElementById("span" + Node); - var oImg = document.getElementById("img" + Node); - break; - {rdelim} - oImg.src = imgMinus.src; - oTable.style.display = "block"; - {rdelim} - - function hideNode(Node){ldelim} - switch(navigator.family){ldelim} - case 'nn4': - // Nav 4.x code fork... - var oTable = document.layers["span" + Node]; - var oImg = document.layers["img" + Node]; - break; - case 'ie4': - // IE 4/5 code fork... - var oTable = document.all["span" + Node]; - var oImg = document.all["img" + Node]; - break; - case 'gecko': - // Standards Compliant code fork... - var oTable = document.getElementById("span" + Node); - var oImg = document.getElementById("img" + Node); - break; - {rdelim} - oImg.src = imgPlus.src; - oTable.style.display = "none"; - {rdelim} - - function nodeIsVisible(Node){ldelim} - switch(navigator.family){ldelim} - case 'nn4': - // Nav 4.x code fork... - var oTable = document.layers["span" + Node]; - break; - case 'ie4': - // IE 4/5 code fork... - var oTable = document.all["span" + Node]; - break; - case 'gecko': - // Standards Compliant code fork... - var oTable = document.getElementById("span" + Node); - break; - {rdelim} - return (oTable && oTable.style.display == "block"); - {rdelim} - - function toggleNodeVisibility(Node){ldelim} - if (nodeIsVisible(Node)){ldelim} - hideNode(Node); - {rdelim}else{ldelim} - showNode(Node); - {rdelim} - {rdelim} -</script> -{/if} -<!-- template designed by Julien Damon based on PHPEdit's generated templates, and tweaked by Greg Beaver --> -<body bgcolor="#ffffff" {if $top2} topmargin="3" leftmargin="3" rightmargin="2" bottommargin="3"{/if}> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/include.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/include.tpl deleted file mode 100755 index 56e66a9d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/include.tpl +++ /dev/null @@ -1,16 +0,0 @@ -<!-- ============ Includes DETAIL =========== --> - -<h2 class="tab">Include/Require Statements</h2> -<script type="text/javascript">tp1.addTabPage( document.getElementById( "tabPage1" ) );</script> - - -{section name=includes loop=$includes} -<a name="{$includes[includes].include_file}"><!-- --></a> -<div style="background='{cycle values="#ffffff,#eeeeee"}'"> -<h4> - <img src="{$subdir}media/images/file.png" border="0" /> <strong class="Property">{$includes[includes].include_value}</strong> (line <span class="linenumber">{if $includes[includes].slink}{$includes[includes].slink}{else}{$includes[includes].line_number}{/if}</span>) - </h4> -<h4>{$includes[includes].include_name} : {$includes[includes].include_value}</h4> -{include file="docblock.tpl" sdesc=$includes[includes].sdesc desc=$includes[includes].desc tags=$includes[includes].tags} -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/index.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/index.tpl deleted file mode 100755 index a0ade4f5..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/index.tpl +++ /dev/null @@ -1,24 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html - PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//FR" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> -<head> - <!-- Generated by phpDocumentor on {$date} --> - <title>{$title}</title> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> -</head> - -<FRAMESET cols='220,*'> - <FRAMESET rows='220,*'> - <FRAME src='packages.html' name='left_top'> - <FRAME src='{$start}' name='left_bottom'> - </FRAMESET> - <FRAME src='{$blank}.html' name='right'> - <NOFRAMES> - <H2>Frame Alert</H2> - <P>This document is designed to be viewed using the frames feature. - If you see this message, you are using a non-frame-capable web client.</P> - </NOFRAMES> -</FRAMESET> -</HTML> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/left_frame.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/left_frame.tpl deleted file mode 100755 index dd5f2607..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/left_frame.tpl +++ /dev/null @@ -1,166 +0,0 @@ -{include file="header.tpl" top2=true} -{if $hastodos} -<div id="todolist"> -<p><a href="{$todolink}" target="right">Todo List</a></p> -</div> -{/if} -<h3>Navigation: {$info.0.package}</h3> -<script language="Javascript"> -if (document.getElementById) {ldelim} -{section name=p loop=$info} -{if $info[p].subpackage == ""} -{if $info[p].packagetutorial} - var tree = new WebFXTree('Help : {$info[p].packagetutorialtitle|strip_tags}', '{$info[p].packagetutorialnoa}'); -{else} - var tree = new WebFXTree('Help : {$info[p].package}', '{$info[p].packagedoc}.html'); -{/if} - tree.setBehavior('classic'); - tree.openIcon = 'media/images/Disk.gif'; - tree.icon = 'media/images/Disk.gif'; - - var elements = new WebFXTreeItem('Index of elements', '{$elementindex}.html'); - elements.openIcon = 'media/images/file.png'; - elements.icon = 'media/images/file.png'; - tree.add(elements); - - var tree_function = new WebFXTreeItem('Function(s)', '{$packagedoc}'); - tree_function.openIcon = 'media/images/Functions.gif'; - tree_function.icon = 'media/images/Functions.gif'; - {section name=nonclass loop=$info[p].functions} - var fic = new WebFXTreeItem('{$info[p].functions[nonclass].title}', '{$info[p].functions[nonclass].link}'); - fic.openIcon = 'media/images/PublicMethod.gif'; - fic.icon = 'media/images/PublicMethod.gif'; - tree_function.add(fic); - {/section} - tree.add(tree_function); - - var tree_interface = new WebFXTreeItem('Interface(s)', '{$classtreepage}.html'); - tree_interface.openIcon = 'media/images/classFolder.gif'; - tree_interface.icon = 'media/images/classFolder.gif'; - {section name=class loop=$info[p].classes} - {if $info[p].classes[class].is_interface} - var classe = new WebFXTreeItem('{$info[p].classes[class].title}', '{$info[p].classes[class].link}'); - classe.openIcon = 'media/images/Class.gif'; - classe.icon = 'media/images/Class.gif'; - tree_interface.add(classe); - {/if} - {/section} - tree.add(tree_interface); - - var tree_classe = new WebFXTreeItem('Class(es)', '{$classtreepage}.html'); - tree_classe.openIcon = 'media/images/classFolder.gif'; - tree_classe.icon = 'media/images/classFolder.gif'; - {section name=class loop=$info[p].classes} - {if $info[p].classes[class].is_class} - var classe = new WebFXTreeItem('{$info[p].classes[class].title}', '{$info[p].classes[class].link}'); - classe.openIcon = 'media/images/Class.gif'; - classe.icon = 'media/images/Class.gif'; - tree_classe.add(classe); - {/if} - {/section} - tree.add(tree_classe); - - var tree_file = new WebFXTreeItem('File(s)', '{$packagedoc}'); - tree_file.openIcon = 'media/images/FolderOpened.gif'; - tree_file.icon = 'media/images/foldericon.png'; - {section name=nonclass loop=$info[p].files} - var file = new WebFXTreeItem('{$info[p].files[nonclass].title}', '{$info[p].files[nonclass].link}'); - file.openIcon = 'media/images/file.png'; - file.icon = 'media/images/file.png'; - tree_file.add(file); - {/section} - tree.add(tree_file); -{else} -{if $info[p].subpackagetutorial} - var subpackagetree = new WebFXTreeItem('Subpackage : {$info[p].subpackagetutorialtitle|strip_tags}', '{$info[p].subpackagetutorialnoa}'); -{else} - var subpackagetree = new WebFXTreeItem('Subpackage : {$info[p].subpackage}', '{$packagedoc}'); -{/if} - subpackagetree.openIcon = 'media/images/Disk.gif'; - subpackagetree.icon = 'media/images/Disk.gif'; - - var subpackagetree_function = new WebFXTreeItem('Function(s)', '{$packagedoc}'); - subpackagetree_function.openIcon = 'media/images/Functions.gif'; - subpackagetree_function.icon = 'media/images/Functions.gif'; - {section name=nonclass loop=$info[p].functions} - var fic = new WebFXTreeItem('{$info[p].functions[nonclass].title}', '{$info[p].functions[nonclass].link}'); - fic.openIcon = 'media/images/PublicMethod.gif'; - fic.icon = 'media/images/PublicMethod.gif'; - subpackagetree_function.add(fic); - {/section} - subpackagetree.add(subpackagetree_function); - - var subpackagetree_classe = new WebFXTreeItem('Class(es)', '{$classtreepage}.html'); - subpackagetree_classe.openIcon = 'media/images/classFolder.gif'; - subpackagetree_classe.icon = 'media/images/classFolder.gif'; - {section name=class loop=$info[p].classes} - var classe = new WebFXTreeItem('{$info[p].classes[class].title}', '{$info[p].classes[class].link}'); - classe.openIcon = 'media/images/Class.gif'; - classe.icon = 'media/images/Class.gif'; - subpackagetree_classe.add(classe); - {/section} - subpackagetree.add(subpackagetree_classe); - - var subpackagetree_file = new WebFXTreeItem('File(s)', '{$packagedoc}'); - subpackagetree_file.openIcon = 'media/images/FolderOpened.gif'; - subpackagetree_file.icon = 'media/images/foldericon.png'; - {section name=nonclass loop=$info[p].files} - var file = new WebFXTreeItem('{$info[p].files[nonclass].title}', '{$info[p].files[nonclass].link}'); - file.openIcon = 'media/images/file.png'; - file.icon = 'media/images/file.png'; - subpackagetree_file.add(file); - {/section} - subpackagetree.add(subpackagetree_file); - - tree.add(subpackagetree); -{/if} -{/section} - document.write(tree); -{rdelim} -</script> -<br /> -{if $hastutorials} -<div class="tutorialist"> -{section name=p loop=$info} -{if count($info[p].tutorials)} -<h3>Tutorials/Manuals:{if $info[p].subpackage} {$info[p].subpackage}{/if}</h3> -{if $info[p].tutorials.pkg} -<strong>Package-level:</strong> -<script language="Javascript"> -if (document.getElementById) {ldelim} -{section name=ext loop=$info[p].tutorials.pkg} -{$info[p].tutorials.pkg[ext]} -{/section} -{rdelim} -</script> -{/if} -{if $info[p].tutorials.cls} -<strong>Class-level:</strong> -<script language="Javascript"> -if (document.getElementById) {ldelim} -{section name=ext loop=$info[p].tutorials.cls} -{$info[p].tutorials.cls[ext]} -{/section} -{rdelim} -</script> -{/if} -{if $info[p].tutorials.proc} -<strong>Procedural-level:</strong> -<script language="Javascript"> -if (document.getElementById) {ldelim} -{section name=ext loop=$info[p].tutorials.proc} -{$info[p].tutorials.proc[ext]} -{/section} -{rdelim} -{/if} -</script> -{/if} -{/section} -{/if} -</div> -<br /> -<span CLASS="small"><a href="{$phpdocwebsite}" target="_blank">phpDocumentor v <b>{$phpdocversion}</b></a><br /> -<br /> -<i>HTML layout inspired by </i><a href="http://www.phpedit.com" target="right">PHPEdit</a></span> -</body> -</html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Class.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Class.gif Binary files differdeleted file mode 100755 index ada36bbb..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Class.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Constant.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Constant.gif Binary files differdeleted file mode 100755 index d9ca9cfa..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Constant.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Constants.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Constants.gif Binary files differdeleted file mode 100755 index eba8d08f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Constants.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Constructor.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Constructor.gif Binary files differdeleted file mode 100755 index f153cfb4..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Constructor.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Destructor.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Destructor.gif Binary files differdeleted file mode 100755 index bf3d62b3..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Destructor.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Disk.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Disk.gif Binary files differdeleted file mode 100755 index 7ab08fd0..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Disk.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/FolderClosed.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/FolderClosed.gif Binary files differdeleted file mode 100755 index 68c6563c..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/FolderClosed.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/FolderOpened.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/FolderOpened.gif Binary files differdeleted file mode 100755 index 8b012d55..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/FolderOpened.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Functions.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Functions.gif Binary files differdeleted file mode 100755 index bc2def80..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Functions.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/GhostClass.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/GhostClass.gif Binary files differdeleted file mode 100755 index 44124540..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/GhostClass.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/I.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/I.png Binary files differdeleted file mode 100755 index e8512fb9..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/I.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/L.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/L.png Binary files differdeleted file mode 100755 index eb334eda..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/L.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Lminus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Lminus.png Binary files differdeleted file mode 100755 index f7c43c0a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Lminus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Lplus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Lplus.png Binary files differdeleted file mode 100755 index 848ec2fc..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Lplus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PrivateDataMember.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PrivateDataMember.gif Binary files differdeleted file mode 100755 index 346380de..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PrivateDataMember.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PrivateMethod.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PrivateMethod.gif Binary files differdeleted file mode 100755 index dcd2b203..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PrivateMethod.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PrivateProperty.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PrivateProperty.gif Binary files differdeleted file mode 100755 index a21fffa0..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PrivateProperty.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/ProtectedDataMember.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/ProtectedDataMember.gif Binary files differdeleted file mode 100755 index 882fa7db..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/ProtectedDataMember.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/ProtectedMethod.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/ProtectedMethod.gif Binary files differdeleted file mode 100755 index b25197b2..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/ProtectedMethod.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/ProtectedProperty.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/ProtectedProperty.gif Binary files differdeleted file mode 100755 index 94892fe4..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/ProtectedProperty.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PublicDataMember.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PublicDataMember.gif Binary files differdeleted file mode 100755 index 5a799e0c..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PublicDataMember.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PublicMethod.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PublicMethod.gif Binary files differdeleted file mode 100755 index 571fd9ce..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PublicMethod.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PublicProperty.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PublicProperty.gif Binary files differdeleted file mode 100755 index 634ff5cb..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/PublicProperty.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/T.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/T.png Binary files differdeleted file mode 100755 index 30173254..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/T.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Tminus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Tminus.png Binary files differdeleted file mode 100755 index 2260e424..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Tminus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Tplus.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Tplus.png Binary files differdeleted file mode 100755 index 2c8d8f4f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Tplus.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Types.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Types.gif Binary files differdeleted file mode 100755 index 7c13fd59..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Types.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Variable.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Variable.gif Binary files differdeleted file mode 100755 index 63b3f553..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Variable.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Vars.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Vars.gif Binary files differdeleted file mode 100755 index 3963c3c1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/Vars.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/blank.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/blank.png Binary files differdeleted file mode 100755 index cee9cd37..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/blank.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/classFolder.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/classFolder.gif Binary files differdeleted file mode 100755 index 5492345f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/classFolder.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/error.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/error.gif Binary files differdeleted file mode 100755 index e323ff06..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/error.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/file.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/file.png Binary files differdeleted file mode 100755 index 0bb2427f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/file.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/foldericon.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/foldericon.png Binary files differdeleted file mode 100755 index 2684748b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/foldericon.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/minus.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/minus.gif Binary files differdeleted file mode 100755 index 9e998f1b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/minus.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/msgError.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/msgError.gif Binary files differdeleted file mode 100755 index 93c6d36a..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/msgError.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/msgFatalError.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/msgFatalError.gif Binary files differdeleted file mode 100755 index 6257bbe5..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/msgFatalError.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/msgHint.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/msgHint.gif Binary files differdeleted file mode 100755 index 0b23fbfe..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/msgHint.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/msgInformation.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/msgInformation.gif Binary files differdeleted file mode 100755 index 1cc5c9ba..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/msgInformation.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/msgWarning.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/msgWarning.gif Binary files differdeleted file mode 100755 index e0757783..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/msgWarning.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/openfoldericon.png b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/openfoldericon.png Binary files differdeleted file mode 100755 index 15fcd567..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/openfoldericon.png +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/plus.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/plus.gif Binary files differdeleted file mode 100755 index cade83c7..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/plus.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/spacer.gif b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/spacer.gif Binary files differdeleted file mode 100755 index 1fa6d01f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/images/spacer.gif +++ /dev/null diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/lib/classTree.js b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/lib/classTree.js deleted file mode 100755 index 7f57c474..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/lib/classTree.js +++ /dev/null @@ -1,454 +0,0 @@ -/*----------------------------------------\ -| Cross Browser Tree Widget 1.1 | -|-----------------------------------------| -| Created by Emil A. Eklund (eae@eae.net) | -| For WebFX (http://webfx.eae.net/) | -|-----------------------------------------| -| This script is provided as is without | -| any warranty whatsoever. It may be used | -| free of charge for non commerical sites | -| For commerical use contact the author | -| of this script for further details. | -|-----------------------------------------| -| Created 2000-12-11 | Updated 2001-09-06 | -\----------------------------------------*/ - -var webFXTreeConfig = { - rootIcon : 'media/images/Class.gif', - openRootIcon : 'media/images/Class.gif', - folderIcon : 'media/images/Class.gif', - openFolderIcon : 'media/images/Class.gif', - fileIcon : 'media/images/Class.gif', - iIcon : 'media/images/I.png', - lIcon : 'media/images/L.png', - lMinusIcon : 'media/images/Lminus.png', - lPlusIcon : 'media/images/Lplus.png', - tIcon : 'media/images/T.png', - tMinusIcon : 'media/images/Tminus.png', - tPlusIcon : 'media/images/Tplus.png', - blankIcon : 'media/images/blank.png', - defaultText : 'Tree Item', - defaultAction : 'javascript:void(0);', - defaultTarget : 'right', - defaultBehavior : 'classic' -}; - -var webFXTreeHandler = { - idCounter : 0, - idPrefix : "webfx-tree-object-", - all : {}, - behavior : null, - selected : null, - getId : function() { return this.idPrefix + this.idCounter++; }, - toggle : function (oItem) { this.all[oItem.id.replace('-plus','')].toggle(); }, - select : function (oItem) { this.all[oItem.id.replace('-icon','')].select(); }, - focus : function (oItem) { this.all[oItem.id.replace('-anchor','')].focus(); }, - blur : function (oItem) { this.all[oItem.id.replace('-anchor','')].blur(); }, - keydown : function (oItem) { return this.all[oItem.id].keydown(window.event.keyCode); }, - cookies : new WebFXCookie() -}; - -/* - * WebFXCookie class - */ - -function WebFXCookie() { - if (document.cookie.length) { this.cookies = ' ' + document.cookie; } -} - -WebFXCookie.prototype.setCookie = function (key, value) { - document.cookie = key + "=" + escape(value); -} - -WebFXCookie.prototype.getCookie = function (key) { - if (this.cookies) { - var start = this.cookies.indexOf(' ' + key + '='); - if (start == -1) { return null; } - var end = this.cookies.indexOf(";", start); - if (end == -1) { end = this.cookies.length; } - end -= start; - var cookie = this.cookies.substr(start,end); - return unescape(cookie.substr(cookie.indexOf('=') + 1, cookie.length - cookie.indexOf('=') + 1)); - } - else { return null; } -} - -/* - * WebFXTreeAbstractNode class - */ - -function WebFXTreeAbstractNode(sText, sAction, sTarget) { - this.childNodes = []; - this.id = webFXTreeHandler.getId(); - this.text = sText || webFXTreeConfig.defaultText; - this.action = sAction || webFXTreeConfig.defaultAction; - this.targetWindow = sTarget || webFXTreeConfig.defaultTarget; - this._last = false; - webFXTreeHandler.all[this.id] = this; -} - -WebFXTreeAbstractNode.prototype.add = function (node) { - node.parentNode = this; - this.childNodes[this.childNodes.length] = node; - var root = this; - if (this.childNodes.length >=2) { - this.childNodes[this.childNodes.length -2]._last = false; - } - while (root.parentNode) { root = root.parentNode; } - if (root.rendered) { - if (this.childNodes.length >= 2) { - document.getElementById(this.childNodes[this.childNodes.length -2].id + '-plus').src = ((this.childNodes[this.childNodes.length -2].folder)?webFXTreeConfig.tMinusIcon:webFXTreeConfig.tIcon); - if (this.childNodes[this.childNodes.length -2].folder) { - this.childNodes[this.childNodes.length -2].plusIcon = webFXTreeConfig.tPlusIcon; - this.childNodes[this.childNodes.length -2].minusIcon = webFXTreeConfig.tMinusIcon; - } - this.childNodes[this.childNodes.length -2]._last = false; - } - this._last = true; - var foo = this; - while (foo.parentNode) { - for (var i = 0; i < foo.parentNode.childNodes.length; i++) { - if (foo.id == foo.parentNode.childNodes[i].id) { break; } - } - if (++i == foo.parentNode.childNodes.length) { foo.parentNode._last = true; } - else { foo.parentNode._last = false; } - foo = foo.parentNode; - } - document.getElementById(this.id + '-cont').insertAdjacentHTML("beforeEnd", node.toString()); - if ((!this.folder) && (!this.openIcon)) { - this.icon = webFXTreeConfig.folderIcon; - this.openIcon = webFXTreeConfig.openFolderIcon; - } - this.folder = true; - this.indent(); - this.expand(); - } - return node; -} - -WebFXTreeAbstractNode.prototype.toggle = function() { - if (this.folder) { - if (this.open) { this.collapse(); } - else { this.expand(); } - } -} - -WebFXTreeAbstractNode.prototype.select = function() { - document.getElementById(this.id + '-anchor').focus(); -} - -WebFXTreeAbstractNode.prototype.focus = function() { - webFXTreeHandler.selected = this; - if ((this.openIcon) && (webFXTreeHandler.behavior != 'classic')) { document.getElementById(this.id + '-icon').src = this.openIcon; } - document.getElementById(this.id + '-anchor').style.backgroundColor = 'highlight'; - document.getElementById(this.id + '-anchor').style.color = 'highlighttext'; - document.getElementById(this.id + '-anchor').focus(); -} - -WebFXTreeAbstractNode.prototype.blur = function() { - if ((this.openIcon) && (webFXTreeHandler.behavior != 'classic')) { document.getElementById(this.id + '-icon').src = this.icon; } - document.getElementById(this.id + '-anchor').style.backgroundColor = 'transparent'; - document.getElementById(this.id + '-anchor').style.color = 'menutext'; -} - -WebFXTreeAbstractNode.prototype.doExpand = function() { - if (webFXTreeHandler.behavior == 'classic') { document.getElementById(this.id + '-icon').src = this.openIcon; } - if (this.childNodes.length) { document.getElementById(this.id + '-cont').style.display = 'block'; } - this.open = true; - webFXTreeHandler.cookies.setCookie(this.id.substr(18,this.id.length - 18), '1'); -} - -WebFXTreeAbstractNode.prototype.doCollapse = function() { - if (webFXTreeHandler.behavior == 'classic') { document.getElementById(this.id + '-icon').src = this.icon; } - if (this.childNodes.length) { document.getElementById(this.id + '-cont').style.display = 'none'; } - this.open = false; - webFXTreeHandler.cookies.setCookie(this.id.substr(18,this.id.length - 18), '0'); -} - -WebFXTreeAbstractNode.prototype.expandAll = function() { - this.expandChildren(); - if ((this.folder) && (!this.open)) { this.expand(); } -} - -WebFXTreeAbstractNode.prototype.expandChildren = function() { - for (var i = 0; i < this.childNodes.length; i++) { - this.childNodes[i].expandAll(); -} } - -WebFXTreeAbstractNode.prototype.collapseAll = function() { - if ((this.folder) && (this.open)) { this.collapse(); } - this.collapseChildren(); -} - -WebFXTreeAbstractNode.prototype.collapseChildren = function() { - for (var i = 0; i < this.childNodes.length; i++) { - this.childNodes[i].collapseAll(); -} } - -WebFXTreeAbstractNode.prototype.indent = function(lvl, del, last, level) { - /* - * Since we only want to modify items one level below ourself, - * and since the rightmost indentation position is occupied by - * the plus icon we set this to -2 - */ - if (lvl == null) { lvl = -2; } - var state = 0; - for (var i = this.childNodes.length - 1; i >= 0 ; i--) { - state = this.childNodes[i].indent(lvl + 1, del, last, level); - if (state) { return; } - } - if (del) { - if (level >= this._level) { - if (this.folder) { - document.getElementById(this.id + '-plus').src = (this.open)?webFXTreeConfig.lMinusIcon:webFXTreeConfig.lPlusIcon; - this.plusIcon = webFXTreeConfig.lPlusIcon; - this.minusIcon = webFXTreeConfig.lMinusIcon; - } - else { document.getElementById(this.id + '-plus').src = webFXTreeConfig.lIcon; } - return 1; - } - } - var foo = document.getElementById(this.id + '-indent-' + lvl); - if (foo) { - if ((del) && (last)) { foo._last = true; } - if (foo._last) { foo.src = webFXTreeConfig.blankIcon; } - else { foo.src = webFXTreeConfig.iIcon; } - } - return 0; -} - -/* - * WebFXTree class - */ - -function WebFXTree(sText, sAction, sBehavior, sIcon, sOpenIcon) { - this.base = WebFXTreeAbstractNode; - this.base(sText, sAction); - this.icon = sIcon || webFXTreeConfig.rootIcon; - this.openIcon = sOpenIcon || webFXTreeConfig.openRootIcon; - /* Defaults to open */ - this.open = (webFXTreeHandler.cookies.getCookie(this.id.substr(18,this.id.length - 18)) == '0')?false:true; - this.folder = true; - this.rendered = false; - if (!webFXTreeHandler.behavior) { webFXTreeHandler.behavior = sBehavior || webFXTreeConfig.defaultBehavior; } - this.targetWindow = 'right'; -} - -WebFXTree.prototype = new WebFXTreeAbstractNode; - -WebFXTree.prototype.setBehavior = function (sBehavior) { - webFXTreeHandler.behavior = sBehavior; -}; - -WebFXTree.prototype.getBehavior = function (sBehavior) { - return webFXTreeHandler.behavior; -}; - -WebFXTree.prototype.getSelected = function() { - if (webFXTreeHandler.selected) { return webFXTreeHandler.selected; } - else { return null; } -} - -WebFXTree.prototype.remove = function() { } - -WebFXTree.prototype.expand = function() { - this.doExpand(); -} - -WebFXTree.prototype.collapse = function() { - this.focus(); - this.doCollapse(); -} - -WebFXTree.prototype.getFirst = function() { - return null; -} - -WebFXTree.prototype.getLast = function() { - return null; -} - -WebFXTree.prototype.getNextSibling = function() { - return null; -} - -WebFXTree.prototype.getPreviousSibling = function() { - return null; -} - -WebFXTree.prototype.keydown = function(key) { - if (key == 39) { this.expand(); return false; } - if (key == 37) { this.collapse(); return false; } - if ((key == 40) && (this.open)) { this.childNodes[0].select(); return false; } - return true; -} - -WebFXTree.prototype.toString = function() { - var str = "<div id=\"" + this.id + "\" ondblclick=\"webFXTreeHandler.toggle(this);\" class=\"webfx-tree-item\" onkeydown=\"return webFXTreeHandler.keydown(this)\">"; - str += "<img id=\"" + this.id + "-icon\" class=\"webfx-tree-icon\" src=\"" + ((webFXTreeHandler.behavior == 'classic' && this.open)?this.openIcon:this.icon) + "\" onclick=\"webFXTreeHandler.select(this);\"><a href=\"" + this.action + "\" id=\"" + this.id + "-anchor\" target=\"" + this.targetWindow + "\" onfocus=\"webFXTreeHandler.focus(this);\" onblur=\"webFXTreeHandler.blur(this);\">" + this.text + "</a></div>"; - str += "<div id=\"" + this.id + "-cont\" class=\"webfx-tree-container\" style=\"display: " + ((this.open)?'block':'none') + ";\">"; - for (var i = 0; i < this.childNodes.length; i++) { - str += this.childNodes[i].toString(i, this.childNodes.length); - } - str += "</div>"; - this.rendered = true; - return str; -}; - -/* - * WebFXTreeItem class - */ - -function WebFXTreeItem(sText, sAction, eParent, sIcon, sOpenIcon) { - this.base = WebFXTreeAbstractNode; - this.base(sText, sAction); - /* Defaults to close */ - this.open = (webFXTreeHandler.cookies.getCookie(this.id.substr(18,this.id.length - 18)) == '1')?true:false; - if (eParent) { eParent.add(this); } - if (sIcon) { this.icon = sIcon; } - if (sOpenIcon) { this.openIcon = sOpenIcon; } -} - -WebFXTreeItem.prototype = new WebFXTreeAbstractNode; - -WebFXTreeItem.prototype.remove = function() { - var parentNode = this.parentNode; - var prevSibling = this.getPreviousSibling(true); - var nextSibling = this.getNextSibling(true); - var folder = this.parentNode.folder; - var last = ((nextSibling) && (nextSibling.parentNode) && (nextSibling.parentNode.id == parentNode.id))?false:true; - this.getPreviousSibling().focus(); - this._remove(); - if (parentNode.childNodes.length == 0) { - parentNode.folder = false; - parentNode.open = false; - } - if (last) { - if (parentNode.id == prevSibling.id) { - document.getElementById(parentNode.id + '-icon').src = webFXTreeConfig.fileIcon; - } - else { } - } - if ((!prevSibling.parentNode) || (prevSibling.parentNode != parentNode)) { - parentNode.indent(null, true, last, this._level); - } - if (document.getElementById(prevSibling.id + '-plus')) { - if (nextSibling) { - if ((parentNode == prevSibling) && (parentNode.getNextSibling)) { document.getElementById(prevSibling.id + '-plus').src = webFXTreeConfig.tIcon; } - else if (nextSibling.parentNode != prevSibling) { document.getElementById(prevSibling.id + '-plus').src = webFXTreeConfig.lIcon; } - } - else { document.getElementById(prevSibling.id + '-plus').src = webFXTreeConfig.lIcon; } - } -} - -WebFXTreeItem.prototype._remove = function() { - for (var i = this.childNodes.length - 1; i >= 0; i--) { - this.childNodes[i]._remove(); - } - for (var i = 0; i < this.parentNode.childNodes.length; i++) { - if (this.id == this.parentNode.childNodes[i].id) { - for (var j = i; j < this.parentNode.childNodes.length; j++) { - this.parentNode.childNodes[i] = this.parentNode.childNodes[i+1] - } - this.parentNode.childNodes.length = this.parentNode.childNodes.length - 1; - if (i + 1 == this.parentNode.childNodes.length) { this.parentNode._last = true; } - } - } - webFXTreeHandler.all[this.id] = null; - if (document.getElementById(this.id)) { - document.getElementById(this.id).innerHTML = ""; - document.getElementById(this.id).removeNode(); - } -} - -WebFXTreeItem.prototype.expand = function() { - this.doExpand(); - document.getElementById(this.id + '-plus').src = this.minusIcon; -} - -WebFXTreeItem.prototype.collapse = function() { - this.focus(); - this.doCollapse(); - document.getElementById(this.id + '-plus').src = this.plusIcon; -} - -WebFXTreeItem.prototype.getFirst = function() { - return this.childNodes[0]; -} - -WebFXTreeItem.prototype.getLast = function() { - if (this.childNodes[this.childNodes.length - 1].open) { return this.childNodes[this.childNodes.length - 1].getLast(); } - else { return this.childNodes[this.childNodes.length - 1]; } -} - -WebFXTreeItem.prototype.getNextSibling = function() { - for (var i = 0; i < this.parentNode.childNodes.length; i++) { - if (this == this.parentNode.childNodes[i]) { break; } - } - if (++i == this.parentNode.childNodes.length) { return this.parentNode.getNextSibling(); } - else { return this.parentNode.childNodes[i]; } -} - -WebFXTreeItem.prototype.getPreviousSibling = function(b) { - for (var i = 0; i < this.parentNode.childNodes.length; i++) { - if (this == this.parentNode.childNodes[i]) { break; } - } - if (i == 0) { return this.parentNode; } - else { - if ((this.parentNode.childNodes[--i].open) || (b && this.parentNode.childNodes[i].folder)) { return this.parentNode.childNodes[i].getLast(); } - else { return this.parentNode.childNodes[i]; } -} } - -WebFXTreeItem.prototype.keydown = function(key) { - if ((key == 39) && (this.folder)) { - if (!this.open) { this.expand(); return false; } - else { this.getFirst().select(); return false; } - } - else if (key == 37) { - if (this.open) { this.collapse(); return false; } - else { this.parentNode.select(); return false; } - } - else if (key == 40) { - if (this.open) { this.getFirst().select(); return false; } - else { - var sib = this.getNextSibling(); - if (sib) { sib.select(); return false; } - } } - else if (key == 38) { this.getPreviousSibling().select(); return false; } - return true; -} - -WebFXTreeItem.prototype.toString = function (nItem, nItemCount) { - var foo = this.parentNode; - var indent = ''; - if (nItem + 1 == nItemCount) { this.parentNode._last = true; } - var i = 0; - while (foo.parentNode) { - foo = foo.parentNode; - indent = "<img id=\"" + this.id + "-indent-" + i + "\" src=\"" + ((foo._last)?webFXTreeConfig.blankIcon:webFXTreeConfig.iIcon) + "\">" + indent; - i++; - } - this._level = i; - if (this.childNodes.length) { this.folder = 1; } - else { this.open = false; } - if ((this.folder) || (webFXTreeHandler.behavior != 'classic')) { - if (!this.icon) { this.icon = webFXTreeConfig.folderIcon; } - if (!this.openIcon) { this.openIcon = webFXTreeConfig.openFolderIcon; } - } - else if (!this.icon) { this.icon = webFXTreeConfig.fileIcon; } - var label = this.text; - label = label.replace('<', '<'); - label = label.replace('>', '>'); - var str = "<div id=\"" + this.id + "\" ondblclick=\"webFXTreeHandler.toggle(this);\" class=\"webfx-tree-item\" onkeydown=\"return webFXTreeHandler.keydown(this)\">"; - str += indent; - str += "<img id=\"" + this.id + "-plus\" src=\"" + ((this.folder)?((this.open)?((this.parentNode._last)?webFXTreeConfig.lMinusIcon:webFXTreeConfig.tMinusIcon):((this.parentNode._last)?webFXTreeConfig.lPlusIcon:webFXTreeConfig.tPlusIcon)):((this.parentNode._last)?webFXTreeConfig.lIcon:webFXTreeConfig.tIcon)) + "\" onclick=\"webFXTreeHandler.toggle(this);\">" - str += "<img id=\"" + this.id + "-icon\" src=\"" + ((webFXTreeHandler.behavior == 'classic' && this.open)?this.openIcon:this.icon) + "\" onclick=\"webFXTreeHandler.select(this);\"><a href=\"" + this.action + "\" id=\"" + this.id + "-anchor\" target=\"" + this.targetWindow + "\" onfocus=\"webFXTreeHandler.focus(this);\" onblur=\"webFXTreeHandler.blur(this);\">" + label + "</a></div>"; - str += "<div id=\"" + this.id + "-cont\" class=\"webfx-tree-container\" style=\"display: " + ((this.open)?'block':'none') + ";\">"; - for (var i = 0; i < this.childNodes.length; i++) { - str += this.childNodes[i].toString(i,this.childNodes.length); - } - str += "</div>"; - this.plusIcon = ((this.parentNode._last)?webFXTreeConfig.lPlusIcon:webFXTreeConfig.tPlusIcon); - this.minusIcon = ((this.parentNode._last)?webFXTreeConfig.lMinusIcon:webFXTreeConfig.tMinusIcon); - return str; -}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/lib/tab.webfx.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/lib/tab.webfx.css deleted file mode 100755 index 6552ea01..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/lib/tab.webfx.css +++ /dev/null @@ -1,86 +0,0 @@ -/* - -bright: rgb(234,242,255); -normal: rgb(120,172,255); -dark: rgb(0,66,174); - -*/ - - - - -.dynamic-tab-pane-control.tab-pane { - position: relative; - width: 100%; -} - -.dynamic-tab-pane-control .tab-row .tab { - font-family: Verdana, Helvetica, Arial; - font-size: 12px; - cursor: Default; - display: inline; - margin: 1px -5px 1px 5px; - float: left; - padding: 3px 6px 3px 6px; - background: rgb(234,242,255); - border: 1px solid; - border-color: rgb(120,172,255); - border-left: 0; - border-bottom: 0; - border-top: 0; - - cursor: hand; - cursor: pointer; - - z-index: 1; - position: relative; - top: 0; -} - -.dynamic-tab-pane-control .tab-row .tab.selected { - border: 1px solid rgb(120,172,255); - border-bottom: 0; - z-index: 3; - padding: 2px 6px 5px 6px; - margin: 1px -6px -2px 0px; - top: -2px; - background: white; -} - -.dynamic-tab-pane-control .tab-row .tab a { - font-family: Verdana, Helvetica, Arial; - font-size: 13px; - color: rgb(0,66,174); - text-decoration: none; - cursor: hand; - cursor: pointer; -} - -.dynamic-tab-pane-control .tab-row .hover a { - color: rgb(0,66,174); -} - -.dynamic-tab-pane-control .tab-row .tab.selected a { - font-weight: bold; -} - -.dynamic-tab-pane-control .tab-page { - clear: both; - border: 1px solid rgb(120,172,255); - background: White; - z-index: 2; - position: relative; - top: -2px; - color: Black; - font-family: Verdana, Helvetica, Arial; - font-size: 13px; - padding: 10px; -} - -.dynamic-tab-pane-control .tab-row { - z-index: 1; - white-space: nowrap; - background: rgb(234,242,255); - height: 1.85em; - width: 100%; -} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/lib/tabpane.js b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/lib/tabpane.js deleted file mode 100755 index f1418bee..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/lib/tabpane.js +++ /dev/null @@ -1,308 +0,0 @@ -/* - * Tab Pane - * - * This script was created by Erik Arvidsson (erik(at)eae.net) - * for WebFX (http://webfx.eae.net) - * Copyright 2002 - * - * For usage see license at http://webfx.eae.net/license.html - * - * Version: 1.0 - * Created: 2002-01-?? First working version - * Updated: 2002-02-17 Cleaned up for 1.0 public version - * - * Dependencies: *.css - a css file to define the layout - * - */ - - -// This function is used to define if the browser supports the needed -// features -function hasSupport() { - - if (typeof hasSupport.support != "undefined") - return hasSupport.support; - - var ie55 = /msie 5\.[56789]/i.test( navigator.userAgent ); - - hasSupport.support = ( typeof document.implementation != "undefined" && - document.implementation.hasFeature( "html", "1.0" ) || ie55 ) - - // IE55 has a serious DOM1 bug... Patch it! - if ( ie55 ) { - document._getElementsByTagName = document.getElementsByTagName; - document.getElementsByTagName = function ( sTagName ) { - if ( sTagName == "*" ) - return document.all; - else - return document._getElementsByTagName( sTagName ); - }; - } - - return hasSupport.support; -} - -/////////////////////////////////////////////////////////////////////////////////// -// The constructor for tab panes -// -// el : HTMLElement The html element used to represent the tab pane -// bUseCookie : Boolean Optional. Default is true. Used to determine whether to us -// persistance using cookies or not -// -function WebFXTabPane( el, bUseCookie ) { - if ( !hasSupport() || el == null ) return; - - this.element = el; - this.element.tabPane = this; - this.pages = []; - this.selectedIndex = null; - this.useCookie = bUseCookie != null ? bUseCookie : false; - - // add class name tag to class name - this.element.className = this.classNameTag + " " + this.element.className; - - // add tab row - this.tabRow = document.createElement( "div" ); - this.tabRow.className = "tab-row"; - el.insertBefore( this.tabRow, el.firstChild ); - - var tabIndex = 0; - if ( this.useCookie ) { - tabIndex = Number( WebFXTabPane.getCookie( "webfxtab_" + this.element.id ) ); - if ( isNaN( tabIndex ) ) - tabIndex = 0; - } - - this.selectedIndex = tabIndex; - - // loop through child nodes and add them - var cs = el.childNodes; - var n; - for (var i = 0; i < cs.length; i++) { - if (cs[i].nodeType == 1 && cs[i].className == "tab-page") { - this.addTabPage( cs[i] ); - } - } -} - -WebFXTabPane.prototype = { - - classNameTag: "dynamic-tab-pane-control", - - setSelectedIndex: function ( n ) { - if (this.selectedIndex != n) { - if (this.selectedIndex != null && this.pages[ this.selectedIndex ] != null ) - this.pages[ this.selectedIndex ].hide(); - this.selectedIndex = n; - this.pages[ this.selectedIndex ].show(); - - if ( this.useCookie ) - WebFXTabPane.setCookie( "webfxtab_" + this.element.id, n ); // session cookie - } - }, - - getSelectedIndex: function () { - return this.selectedIndex; - }, - - addTabPage: function ( oElement ) { - if ( !hasSupport() ) return; - - if ( oElement.tabPage == this ) // already added - return oElement.tabPage; - - var n = this.pages.length; - var tp = this.pages[n] = new WebFXTabPage( oElement, this, n ); - tp.tabPane = this; - - // move the tab out of the box - this.tabRow.appendChild( tp.tab ); - - if ( n == this.selectedIndex ) - tp.show(); - else - tp.hide(); - - return tp; - } -}; - -// Cookie handling -WebFXTabPane.setCookie = function ( sName, sValue, nDays ) { - var expires = ""; - if ( nDays ) { - var d = new Date(); - d.setTime( d.getTime() + nDays * 24 * 60 * 60 * 1000 ); - expires = "; expires=" + d.toGMTString(); - } - - document.cookie = sName + "=" + sValue + expires + "; path=/"; -}; - -WebFXTabPane.getCookie = function (sName) { - var re = new RegExp( "(\;|^)[^;]*(" + sName + ")\=([^;]*)(;|$)" ); - var res = re.exec( document.cookie ); - return res != null ? res[3] : null; -}; - -WebFXTabPane.removeCookie = function ( name ) { - setCookie( name, "", -1 ); -}; - - - - - - - - -/////////////////////////////////////////////////////////////////////////////////// -// The constructor for tab pages. This one should not be used. -// Use WebFXTabPage.addTabPage instead -// -// el : HTMLElement The html element used to represent the tab pane -// tabPane : WebFXTabPane The parent tab pane -// nindex : Number The index of the page in the parent pane page array -// -function WebFXTabPage( el, tabPane, nIndex ) { - if ( !hasSupport() || el == null ) return; - - this.element = el; - this.element.tabPage = this; - this.index = nIndex; - - var cs = el.childNodes; - for (var i = 0; i < cs.length; i++) { - if (cs[i].nodeType == 1 && cs[i].className == "tab") { - this.tab = cs[i]; - break; - } - } - - // insert a tag around content to support keyboard navigation - var a = document.createElement( "A" ); - a.href = "javascript:void 0;"; - while ( this.tab.hasChildNodes() ) - a.appendChild( this.tab.firstChild ); - this.tab.appendChild( a ); - - - anchor = ''; - if ( document.URL.indexOf( '#' ) != -1 ) { - anchor = document.URL.substr( document.URL.indexOf( '#' ) + 1); - } - j = 0; - if ( anchor.length > 0 ) { - finalList = new Array(); - listOfAnchors = el.getElementsByTagName('A'); - for (i=0; i<listOfAnchors.length; i++) { - if (listOfAnchors[i].name.length) { - finalList[j++] = listOfAnchors[i].name; - } - } - for(i=0; i<finalList.length; i++) { - if ( anchor == finalList[i] ) { - if (tabPane.selectedIndex != nIndex) tabPane.pages[ tabPane.selectedIndex ].hide(); - tabPane.selectedIndex = nIndex ; - } - } - } - - // hook up events, using DOM0 - var oThis = this; - this.tab.onclick = function () { oThis.select(); }; - this.tab.onmouseover = function () { WebFXTabPage.tabOver( oThis ); }; - this.tab.onmouseout = function () { WebFXTabPage.tabOut( oThis ); }; -} - -WebFXTabPage.prototype = { - show: function () { - var el = this.tab; - var s = el.className + " selected"; - s = s.replace(/ +/g, " "); - el.className = s; - - this.element.style.display = "block"; - }, - - hide: function () { - var el = this.tab; - var s = el.className; - s = s.replace(/ selected/g, ""); - el.className = s; - - this.element.style.display = "none"; - }, - - select: function () { - this.tabPane.setSelectedIndex( this.index ); - } -}; - -WebFXTabPage.tabOver = function ( tabpage ) { - var el = tabpage.tab; - var s = el.className + " hover"; - s = s.replace(/ +/g, " "); - el.className = s; -}; - -WebFXTabPage.tabOut = function ( tabpage ) { - var el = tabpage.tab; - var s = el.className; - s = s.replace(/ hover/g, ""); - el.className = s; -}; - - -// This function initializes all uninitialized tab panes and tab pages -function setupAllTabs() { - if ( !hasSupport() ) return; - - var all = document.getElementsByTagName( "*" ); - var l = all.length; - var tabPaneRe = /tab\-pane/; - var tabPageRe = /tab\-page/; - var cn, el; - var parentTabPane; - - for ( var i = 0; i < l; i++ ) { - el = all[i] - cn = el.className; - - // no className - if ( cn == "" ) continue; - - // uninitiated tab pane - if ( tabPaneRe.test( cn ) && !el.tabPane ) - new WebFXTabPane( el ); - - // unitiated tab page wit a valid tab pane parent - else if ( tabPageRe.test( cn ) && !el.tabPage && - tabPaneRe.test( el.parentNode.className ) ) { - el.parentNode.tabPane.addTabPage( el ); - } - } -} - - -// initialization hook up - -// DOM2 -if ( typeof window.addEventListener != "undefined" ) - window.addEventListener( "load", setupAllTabs, false ); - -// IE -else if ( typeof window.attachEvent != "undefined" ) - window.attachEvent( "onload", setupAllTabs ); - -else { - if ( window.onload != null ) { - var oldOnload = window.onload; - window.onload = function ( e ) { - oldOnload( e ); - setupAllTabs(); - }; - } - else - window.onload = setupAllTabs; -}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/lib/ua.js b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/lib/ua.js deleted file mode 100755 index c06fa313..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/lib/ua.js +++ /dev/null @@ -1,111 +0,0 @@ -/* -ua.js revision 0.200 2001-12-03 - -Contributor(s): Bob Clary, Netscape Communications, Copyright 2001 - -Netscape grants you a royalty free license to use, modify and -distribute this software provided that this copyright notice -appears on all copies. This software is provided "AS IS," -without a warranty of any kind. -*/ - -function xbDetectBrowser() -{ - var oldOnError = window.onerror; - var element = null; - - window.onerror = null; - - // work around bug in xpcdom Mozilla 0.9.1 - window.saveNavigator = window.navigator; - - navigator.OS = ''; - navigator.version = parseFloat(navigator.appVersion); - navigator.org = ''; - navigator.family = ''; - - var platform; - if (typeof(window.navigator.platform) != 'undefined') - { - platform = window.navigator.platform.toLowerCase(); - if (platform.indexOf('win') != -1) - navigator.OS = 'win'; - else if (platform.indexOf('mac') != -1) - navigator.OS = 'mac'; - else if (platform.indexOf('unix') != -1 || platform.indexOf('linux') != -1 || platform.indexOf('sun') != -1) - navigator.OS = 'nix'; - } - - var i = 0; - var ua = window.navigator.userAgent.toLowerCase(); - if (ua.indexOf('opera') != -1) - { - i = ua.indexOf('opera'); - navigator.family = 'opera'; - navigator.org = 'opera'; - navigator.version = parseFloat('0' + ua.substr(i+6), 10); - } - else if ((i = ua.indexOf('msie')) != -1) - { - navigator.org = 'microsoft'; - navigator.version = parseFloat('0' + ua.substr(i+5), 10); - - if (navigator.version < 4) - navigator.family = 'ie3'; - else - navigator.family = 'ie4' - } - else if (ua.indexOf('gecko') != -1) - { - navigator.family = 'gecko'; - var rvStart = navigator.userAgent.indexOf('rv:') + 3; - var rvEnd = navigator.userAgent.indexOf(')', rvStart); - var rv = navigator.userAgent.substring(rvStart, rvEnd); - var decIndex = rv.indexOf('.'); - if (decIndex != -1) - { - rv = rv.replace(/\./g, '') - rv = rv.substring(0, decIndex-1) + '.' + rv.substr(decIndex) - } - navigator.version = parseFloat(rv); - - if (ua.indexOf('netscape') != -1) - navigator.org = 'netscape'; - else if (ua.indexOf('compuserve') != -1) - navigator.org = 'compuserve'; - else - navigator.org = 'mozilla'; - } - else if ((ua.indexOf('mozilla') !=-1) && (ua.indexOf('spoofer')==-1) && (ua.indexOf('compatible') == -1) && (ua.indexOf('opera')==-1)&& (ua.indexOf('webtv')==-1) && (ua.indexOf('hotjava')==-1)) - { - var is_major = parseFloat(navigator.appVersion); - - if (is_major < 4) - navigator.version = is_major; - else - { - i = ua.lastIndexOf('/') - navigator.version = parseFloat('0' + ua.substr(i+1), 10); - } - navigator.org = 'netscape'; - navigator.family = 'nn' + parseInt(navigator.appVersion); - } - else if ((i = ua.indexOf('aol')) != -1 ) - { - // aol - navigator.family = 'aol'; - navigator.org = 'aol'; - navigator.version = parseFloat('0' + ua.substr(i+4), 10); - } - else if ((i = ua.indexOf('hotjava')) != -1 ) - { - // hotjava - navigator.family = 'hotjava'; - navigator.org = 'sun'; - navigator.version = parseFloat(navigator.appVersion); - } - - window.onerror = oldOnError; -} - -xbDetectBrowser(); diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/stylesheet.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/stylesheet.css deleted file mode 100755 index 7b1662d2..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/media/stylesheet.css +++ /dev/null @@ -1,230 +0,0 @@ - -body { background: #FFFFFF; } -body, table { - font-family: Verdana, Arial, Helvetica, sans-serif; - text-align: left; - font-size: 11px; -} - -table.none td.btCell { background-color: #fff; vertical-align: top; } -table.none tr.highlight td.btCell { background-color: #f5f5f5; vertical-align: top; } -table.none th.btHead { background-color: #e5e5e5; vertical-align: top; } -table.btHeader, th.btHeader { - background-color: #014f9d; - color: #fff; - text-align: left; - vertical-align: top; -} -table.btHeaderProminent, th.btHeaderProminent { - background-color: #9d0119; - color: #fff; - text-align: left; - vertical-align: top; -} -div.showHideIndent { margin-left: 14px; } -td.left, th.left, th.syntaxLanguage { vertical-align: top; text-align: left; border-right: 1px solid #ceced8; border-bottom: solid 1px #ceced8; } -th.noborder { border: none; } -th.border { border: 1px solid #ceced8; } -td.border { border-bottom: 1px solid #ceced8; } -th.syntaxLanguage { font-size: 11px; line-height: 13px; vertical-align: top; } -.faq, .property { color: #000090; } -.method { color: #009000; } -.event { color: #900000; } - -table.default th.syntaxLanguage { font-size: 0.7em; vertical-align: baseline; } -.small { font-size: 85%; line-height: 120%; } - -a { - color: #000090; - -} - -div.maintutorial { - border-width: thin; - border-color: #0066ff; -} - -.source, .src-code { - border-width: thin; - border-style: dashed; - border-color: #8899dd; - margin: 1em; - padding: 0.5em; - font-family: 'Courier New', Courier, monospace; font-weight: normal; -} -.src-line { font-family: 'Courier New', Courier, monospace; font-weight: normal; } - -.var-type { - font-style : italic; -} - -.var-title { - margin-left : 20px; -} - -.method-summary { - margin-left : 20px; -} - -/*------------------------------------------------------------------------------ - Show/Hide blocks -------------------------------------------------------------------------------*/ - -.shown { display: inline; } -.hidden { display: none; } -img.showHideImg, .showHideControl { cursor: hand; } -img.showHideImg { margin-right: 3px; } - -.showHideActionText -{ - font-size: 0.7em; -} - -.showHideActionTextContent -{ - font-weight: bold; -} - -.showHideActionTextContentHover -{ - text-decoration: underline; - font-weight: bold; - background-color: #ceced8; -} -ol { - margin: 0.2em 0em 0.2em 24px; - padding: 0em; -} -ul li { - margin: 0.2em 0em 0.2em 0em; padding: 0em; - list-style-position: outside; - list-style-type: square; -} -span.li { - color: #000000; -} -ul { - color: #014fbe; - margin: 3px 0em 3px 16px; -} -p { - margin: 6px 0em 6px 0em; -} -h1 { margin: 1em 0em 1.2em 0em; font-size: 160%; line-height: 130%;} -h2 { font-size: 125%; line-height: 120%;} -h1, h2, h3, h4 { - padding: 0em; - margin: 1.5em 0em .25em 0em; - text-align: left; - font-weight: normal; -} -h3 { margin-top: 0.5em; font-size: 110%; } -h4 { margin: 0.25em 0em .25em 0em;; font-size: 100%; } - -.Headline { - color: #000000; - font-family: Verdana,Arial,Helvetica,sans-serif; - font-size: 9pt; - font-weight: bold; - font-style: normal; -/* margin-left : -1.5em;*/ - text-align : left; - margin-top : 1.0em; - margin-bottom : 0.5em; -} - -.HelpContent { - margin-left : 1.5em; -} - -table.HelpTable { - border: 0px; - padding: 0px; - margin: 0px; -} - -tr.HelpTable { -} - -th.HelpTable { - border: 1px dotted; - background-color: #F0F0F0; - margin: 1px; - padding: 5px; -} - -td.HelpTable { - border: 1px dotted; - background-color: #F9F9F9; - margin: 1px; - padding: 5px; -} - -pre.depreciated { - font-family: Verdana,Arial,Helvetica,sans-serif; - font-size: 9pt; - border: 1px dotted #909090; - background-color: #F0F0F0; - margin-left: 10px; - margin-right: 10px; - margin-top: 10px; - margin-bottom: 10px; - padding: 5px; -} - -/*------------------------------------------------------------------------------ - webfx-tree -------------------------------------------------------------------------------*/ -.webfx-tree-container { - margin: 0px; - padding: 0px; - font: icon; - white-space: nowrap; -} - -.webfx-tree-item { - padding: 0px; - margin: 0px; - font: icon; - color: black; - white-space: nowrap; -} - -.webfx-tree-item a, .webfx-tree-item a:active, .webfx-tree-item a:hover { - margin-left: 3px; - padding: 1px 2px 1px 2px; -} - -.webfx-tree-item a { - color: black; - text-decoration: none; -} - -.webfx-tree-item a:hover { - color: blue; - text-decoration: underline; -} - -.webfx-tree-item a:active { - background: highlight; - color: highlighttext; - text-decoration: none; -} - -.webfx-tree-item img { - vertical-align: middle; - border: 0px; -} - -.webfx-tree-icon { - width: 16px; - height: 16px; -} - - -.tute-tag { color: #009999 } -.tute-attribute-name { color: #0000FF } -.tute-attribute-value { color: #0099FF } -.tute-entity { font-weight: bold; } -.tute-comment { font-style: italic } -.tute-inline-tag { color: #636311; font-weight: bold } diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/method.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/method.tpl deleted file mode 100755 index 4c96f2f2..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/method.tpl +++ /dev/null @@ -1,126 +0,0 @@ -<h2 class="tab">Method Detail</h2> -<!-- ============ METHOD DETAIL =========== --> -<strong>Summary:</strong><br /> -<div class="method-summary"> -{section name=methods loop=$methods} -{if $methods[methods].static} - <div class="method-definition"> - static {if $methods[methods].function_return} - <span class="method-result">{$methods[methods].function_return}</span> - {/if} - <a href="#{$methods[methods].method_dest}" title="details" class="method-name">{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}</a> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> -{/if} -{/section} -{section name=methods loop=$methods} -{if !$methods[methods].static} - <div class="method-definition"> - {if $methods[methods].function_return} - <span class="method-result">{$methods[methods].function_return}</span> - {/if} - <a href="#{$methods[methods].method_dest}" title="details" class="method-name">{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}</a> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> -{/if} -{/section} -</div> -<hr /> -<A NAME='method_detail'></A> - - -{section name=methods loop=$methods} -{if $methods[methods].static} -<a name="{$methods[methods].method_dest}" id="{$methods[methods].method_dest}"><!-- --></a> -<div style="background='{cycle values="#ffffff,#eeeeee"}'"><h4> -<img src="{$subdir}media/images/PublicMethod.gif" border="0" /> <strong class="method">Static Method {$methods[methods].function_name}</strong> (line <span class="linenumber">{if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}</span>) - </h4> -<h4><i>{$methods[methods].function_return}</i> <strong>{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}( -{if count($methods[methods].ifunction_call.params)} -{section name=params loop=$methods[methods].ifunction_call.params} -{if $smarty.section.params.iteration != 1}, {/if} -{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}{$methods[methods].ifunction_call.params[params].type} -{$methods[methods].ifunction_call.params[params].name}{if $methods[methods].ifunction_call.params[params].hasdefault} = {$methods[methods].ifunction_call.params[params].default}]{/if} -{/section} -{/if})</strong></h4> -{if $methods[methods].descmethod} - <p>Overridden in child classes as:<br /> - {section name=dm loop=$methods[methods].descmethod} - <dl> - <dt>{$methods[methods].descmethod[dm].link}</dt> - <dd>{$methods[methods].descmethod[dm].sdesc}</dd> - </dl> - {/section}</p> -{/if} - -{if $methods[methods].method_overrides} -<p><strong>Overrides :</strong> {$methods[methods].method_overrides.link} {$methods[methods].method_overrides.sdesc|default:"parent method not documented"}</p> -{/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} -{include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags params=$methods[methods].params function=true} -</div> -{/if} -{/section} -{section name=methods loop=$methods} -{if !$methods[methods].static} -<a name="{$methods[methods].method_dest}" id="{$methods[methods].method_dest}"><!-- --></a> -<div style="background='{cycle values="#ffffff,#eeeeee"}'"><h4> -<img src="{$subdir}media/images/{if $methods[methods].ifunction_call.constructor}Constructor{elseif $methods[methods].ifunction_call.destructor}Destructor{else}PublicMethod{/if}.gif" border="0" /> <strong class="method">{if $methods[methods].ifunction_call.constructor}Constructor {elseif $methods[methods].ifunction_call.destructor}Destructor {else}Method {/if}{$methods[methods].function_name}</strong> (line <span class="linenumber">{if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}</span>) - </h4> -<h4><i>{$methods[methods].function_return}</i> <strong>{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}( -{if count($methods[methods].ifunction_call.params)} -{section name=params loop=$methods[methods].ifunction_call.params} -{if $smarty.section.params.iteration != 1}, {/if} -{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}{$methods[methods].ifunction_call.params[params].type} -{$methods[methods].ifunction_call.params[params].name}{if $methods[methods].ifunction_call.params[params].hasdefault} = {$methods[methods].ifunction_call.params[params].default}]{/if} -{/section} -{/if})</strong></h4> -{if $methods[methods].descmethod} - <p>Overridden in child classes as:<br /> - {section name=dm loop=$methods[methods].descmethod} - <dl> - <dt>{$methods[methods].descmethod[dm].link}</dt> - <dd>{$methods[methods].descmethod[dm].sdesc}</dd> - </dl> - {/section}</p> -{/if} - -{if $methods[methods].method_overrides} -<p><strong>Overrides :</strong> {$methods[methods].method_overrides.link} {$methods[methods].method_overrides.sdesc|default:"parent method not documented"}</p> -{/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} -{include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags params=$methods[methods].params function=true} -</div> -{/if} -{/section} -<script type="text/javascript">tp1.addTabPage( document.getElementById( "tabPage2" ) );</script> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/page.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/page.tpl deleted file mode 100755 index 5a9da0e4..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/page.tpl +++ /dev/null @@ -1,53 +0,0 @@ -{include file="header.tpl" top3=true} -<h2>File: {$source_location}</h2> -<div class="tab-pane" id="tabPane1"> -<script type="text/javascript"> -tp1 = new WebFXTabPane( document.getElementById( "tabPane1" ) ); -</script> - -<div class="tab-page" id="Description"> -<h2 class="tab">Description</h2> -{if $tutorial} -<div class="maintutorial">Main Tutorial: {$tutorial}</div> -{/if} -{include file="docblock.tpl" desc=$desc sdesc=$sdesc tags=$tags} -<!-- =========== Used Classes =========== --> -<A NAME='classes_summary'><!-- --></A> -<h3>Classes defined in this file</h3> - -<TABLE CELLPADDING='3' CELLSPACING='0' WIDTH='100%' CLASS="border"> - <THEAD> - <TR><TD STYLE="width:20%"><h4>CLASS NAME</h4></TD><TD STYLE="width: 80%"><h4>DESCRIPTION</h4></TD></TR> - </THEAD> - <TBODY> - {section name=classes loop=$classes} - <TR BGCOLOR='white' CLASS='TableRowColor'> - <TD>{$classes[classes].link}</TD> - <TD>{$classes[classes].sdesc}</TD> - </TR> - {/section} - </TBODY> -</TABLE> -</div> -<script type="text/javascript">tp1.addTabPage( document.getElementById( "Description" ) );</script> -<div class="tab-page" id="tabPage1"> -{include file="include.tpl"} -</div> -<div class="tab-page" id="tabPage2"> -{include file="global.tpl"} -</div> -<div class="tab-page" id="tabPage3"> -{include file="define.tpl"} -</div> -<div class="tab-page" id="tabPage4"> -{include file="function.tpl"} -</div> -</div> -<script type="text/javascript"> -//<![CDATA[ - -setupAllTabs(); - -//]]> -</script> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/pkgelementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/pkgelementindex.tpl deleted file mode 100755 index c29ea982..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/pkgelementindex.tpl +++ /dev/null @@ -1,17 +0,0 @@ -{include file="header.tpl"} -<a name="top"></a> -<h2>Element Index, Package {$package}</h2> -{if count($packageindex) > 1} -<strong>Indexes by package:</strong><br> -{/if} -<ul> -{section name=p loop=$packageindex} -{if $packageindex[p].title != $package} -<li><a href="elementindex_{$packageindex[p].title}.html">{$packageindex[p].title}</a></li> -{/if} -{/section} -</ul> -<a href="elementindex.html"><strong>Index of all elements</strong></a> -<br /> -{include file="basicindex.tpl" indexname=elementindex_$package} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/ric.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/ric.tpl deleted file mode 100755 index ad792475..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/ric.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl"} -<div align="center"><h1>{$name}</h1></div> -<pre> -{$contents|htmlentities} -</pre> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/todolist.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/todolist.tpl deleted file mode 100755 index f929ccdb..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/todolist.tpl +++ /dev/null @@ -1,14 +0,0 @@ -{include file="header.tpl" title="Todo List"} -<div align="center"><h1>Todo List</h1></div> -{foreach from=$todos key=todopackage item=todo} -<h2>{$todopackage}</h2> -{section name=todo loop=$todo} -<h3>{$todo[todo].link}</h3> -<ul> -{section name=t loop=$todo[todo].todos} - <li>{$todo[todo].todos[t]}</li> -{/section} -</ul> -{/section} -{/foreach} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/top_frame.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/top_frame.tpl deleted file mode 100755 index 806283f4..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/top_frame.tpl +++ /dev/null @@ -1,16 +0,0 @@ -{include file="header.tpl" top1=true} -{if count($ric) >= 1} -<ul> -{section name=ric loop=$ric} - <li><a href="{$ric[ric].file}" target="right">{$ric[ric].name}</a></li> -{/section} -</ul> -{/if} -<h1>Packages</h1> -<ul> -{section name=p loop=$packages} - <li><a class="package" href='{$packages[p].link}' target='left_bottom'>{$packages[p].title}</a></li> -{/section} -</ul> -</body> -</html>
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/tutorial.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/tutorial.tpl deleted file mode 100755 index a943522c..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/tutorial.tpl +++ /dev/null @@ -1,32 +0,0 @@ -{include file="header.tpl" title=$title} -{if $nav} -<table width="100%" border="0" cellpadding="0" cellspacing="0"> -<tr> -<td width="10%" align="left" valign="bottom">{if $prev}<a href= -"{$prev}">{/if}Prev{if $prev}</a>{/if}</td> -<td width="80%" align="center" valign="bottom"></td> -<td width="10%" align="right" valign="bottom">{if $next}<a href= -"{$next}">{/if}Next{if $next}</a>{/if}</td> -</tr> -</table> -{/if} -{$contents} -{if $nav} -<table width="100%" border="0" cellpadding="0" cellspacing="0"> -<tr> -<td width="33%" align="left" valign="top">{if $prev}<a href="{$prev}">{/if} -Prev{if $prev}</a>{/if}</td> -<td width="34%" align="center" valign="top">{if $up}<a href= -"{$up}">Up</a>{else} {/if}</td> -<td width="33%" align="right" valign="top">{if $next}<a href= -"{$next}">{/if}Next{if $next}</a>{/if}</td> -</tr> - -<tr> -<td width="33%" align="left" valign="top">{if $prevtitle}{$prevtitle}{/if}</td> -<td width="34%" align="center" valign="top">{if $uptitle}{$uptitle}{/if}</td> -<td width="33%" align="right" valign="top">{if $nexttitle}{$nexttitle}{/if}</td> -</tr> -</table> -{/if} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/tutorial_toc.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/tutorial_toc.tpl deleted file mode 100755 index 3d22d403..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/tutorial_toc.tpl +++ /dev/null @@ -1,29 +0,0 @@ -{if count($toc)} -<h1 align="center">Table of Contents</h1> -<ul> -{section name=toc loop=$toc} -{if $toc[toc].tagname == 'refsect1'} -{assign var="context" value="refsect1"} -{$toc[toc].link}<br /> -{/if} -{if $toc[toc].tagname == 'refsect2'} -{assign var="context" value="refsect2"} - {$toc[toc].link}<br /> -{/if} -{if $toc[toc].tagname == 'refsect3'} -{assign var="context" value="refsect3"} - {$toc[toc].link}<br /> -{/if} -{if $toc[toc].tagname == 'table'} -{if $context == 'refsect2'} {/if} -{if $context == 'refsect3'} {/if} -Table: {$toc[toc].link} -{/if} -{if $toc[toc].tagname == 'example'} -{if $context == 'refsect2'} {/if} -{if $context == 'refsect3'} {/if} -Table: {$toc[toc].link} -{/if} -{/section} -</ul> -{/if}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/tutorial_tree.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/tutorial_tree.tpl deleted file mode 100755 index 23459a96..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/tutorial_tree.tpl +++ /dev/null @@ -1,13 +0,0 @@ - var {$name}tree = new WebFXTree{if $subtree}Item{/if}('{$main.title|strip_tags}','{$main.link}'); -{if !$subtree} {$name}tree.setBehavior('classic'); -{/if} {$name}tree.openIcon = 'media/images/msgInformation.gif'; - {$name}tree.icon = 'media/images/{if $subtree}msgInformation.gif{else}FolderClosed.gif{/if}'; -{if $kids} -{$kids} - -{/if}{if $subtree} {$parent}tree.add({$name}tree); -{else} - document.write({$name}tree); -{/if} - - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/var.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/var.tpl deleted file mode 100755 index 7b293351..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phpedit/templates/var.tpl +++ /dev/null @@ -1,49 +0,0 @@ - -<h2 class="tab">Class Variables</h2> -<!-- ============ VARIABLE DETAIL =========== --> -<strong>Summary:</strong><br /> -{section name=vars loop=$vars} -{if $vars[vars].static} -<div class="var-title"> - static <span class="var-type">{$vars[vars].var_type}</span> - <a href="#{$vars[vars].var_dest}" title="details" class="property"><strong>{$vars[vars].var_name}</strong></a> -</div> -{/if} -{/section} -{section name=vars loop=$vars} -{if !$vars[vars].static} -<div class="var-title"> - <span class="var-type">{$vars[vars].var_type}</span> - <a href="#{$vars[vars].var_dest}" title="details" class="property"><strong>{$vars[vars].var_name}</strong></a> -</div> -{/if} -{/section} -<hr /> -{section name=vars loop=$vars} -{if $vars[vars].static} -<a name="{$vars[vars].var_dest}" id="{$vars[vars].var_dest}"><!-- --></A> -<div style="background='{cycle values="#ffffff,#eeeeee"}'"> -<h4> -<img src="{$subdir}media/images/PublicProperty.gif" border="0" /> <strong class="property">static {$vars[vars].var_name}{if $vars[vars].var_default} = {$vars[vars].var_default|replace:"\n":"<br />"}{/if}</strong> (line <span class="linenumber">{if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}</span>) - </h4> -<h4>Data type : {$vars[vars].var_type}</h4> -{if $vars[vars].var_overrides}<p><strong>Overrides:</strong> {$vars[vars].var_overrides}<br></p>{/if} -{include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} -</div> -{/if} -{/section} -{section name=vars loop=$vars} -{if !$vars[vars].static} -<a name="{$vars[vars].var_dest}" id="{$vars[vars].var_dest}"><!-- --></A> -<div style="background='{cycle values="#ffffff,#eeeeee"}'"> -<h4> -<img src="{$subdir}media/images/PublicProperty.gif" border="0" /> <strong class="property">{$vars[vars].var_name}{if $vars[vars].var_default} = {$vars[vars].var_default|replace:"\n":"<br />"}{/if}</strong> (line <span class="linenumber">{if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}</span>) - </h4> -<h4>Data type : {$vars[vars].var_type}</h4> -{if $vars[vars].var_overrides}<p><strong>Overrides:</strong> {$vars[vars].var_overrides}<br></p>{/if} -{include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} -</div> -{/if} -{/section} -<script type="text/javascript">tp1.addTabPage( document.getElementById( "tabPage1" ) );</script> - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/options.ini b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/options.ini deleted file mode 100755 index 084809be..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/options.ini +++ /dev/null @@ -1,577 +0,0 @@ -preservedocbooktags = false - -;; used to highlight the {@source} inline tag, @filesource tag, and @example tag -[highlightSourceTokens] -;; format: -;; T_CONSTANTNAME = open -;; /T_CONSTANTNAME = close - -T_INCLUDE = <span class="src-inc"> -/T_INCLUDE = </span> -T_INCLUDE_ONCE = <span class="src-inc"> -/T_INCLUDE_ONCE = </span> -T_REQUIRE_ONCE = <span class="src-inc"> -/T_REQUIRE_ONCE = </span> -T_REQUIRE_ONCE = <span class="src-inc"> -/T_REQUIRE_ONCE = </span> - -T_CONSTANT_ENCAPSED_STRING = <span class="src-str"> -/T_CONSTANT_ENCAPSED_STRING = </span> -T_STRING_VARNAME = <span class="src-str"> -/T_STRING_VARNAME = </span> - -T_STRING = <span class="src-id"> -/T_STRING = </span> - -T_DNUMBER = <span class="src-num"> -/T_DNUMBER = </span> -T_LNUMBER = <span class="src-num"> -/T_LNUMBER = </span> - -T_VARIABLE = <span class="src-var"> -/T_VARIABLE = </span> - -T_COMMENT = <span class="src-comm"> -/T_COMMENT = </span> -T_ML_COMMENT = <span class="src-comm"> -/T_ML_COMMENT = </span> - -T_OBJECT_OPERATOR = <span class="src-sym"> -/T_OBJECT_OPERATOR = </span> - -T_ABSTRACT = <span class="src-key"> -/T_ABSTRACT = </span> -T_CLONE = <span class="src-key"> -/T_CLONE = </span> -T_HALT_COMPILER = <span class="src-key"> -/T_HALT_COMPILER = </span> -T_ARRAY = <span class="src-key"> -/T_ARRAY = </span> -T_AS = <span class="src-key"> -/T_AS = </span> -T_BREAK = <span class="src-key"> -/T_BREAK = </span> -T_CLASS = <span class="src-key"> -/T_CLASS = </span> -T_CASE = <span class="src-key"> -/T_CASE = </span> -T_CONST = <span class="src-key"> -/T_CONST = </span> -T_CONTINUE = <span class="src-key"> -/T_CONTINUE = </span> -T_DECLARE = <span class="src-key"> -/T_DECLARE = </span> -T_DEFAULT = <span class="src-key"> -/T_DEFAULT = </span> -T_ELSE = <span class="src-key"> -/T_ELSE = </span> -T_ELSEIF = <span class="src-key"> -/T_ELSEIF = </span> -T_EMPTY = <span class="src-key"> -/T_EMPTY = </span> -T_ENDDECLARE = <span class="src-key"> -/T_ENDDECLARE = </span> -T_ENDFOR = <span class="src-key"> -/T_ENDFOR = </span> -T_ENDSWITCH = <span class="src-key"> -/T_ENDSWITCH = </span> -T_ENDFOREACH = <span class="src-key"> -/T_ENDFOREACH = </span> -T_ENDIF = <span class="src-key"> -/T_ENDIF = </span> -T_ENDWHILE = <span class="src-key"> -/T_ENDWHILE = </span> -T_EXIT = <span class="src-key"> -/T_EXIT = </span> -T_EXTENDS = <span class="src-key"> -/T_EXTENDS = </span> -T_FINAL = <span class="src-key"> -/T_FINAL = </span> -T_FOR = <span class="src-key"> -/T_FOR = </span> -T_FOREACH = <span class="src-key"> -/T_FOREACH = </span> -T_FUNCTION = <span class="src-key"> -/T_FUNCTION = </span> -T_GLOBAL = <span class="src-key"> -/T_GLOBAL = </span> -T_IF = <span class="src-key"> -/T_IF = </span> -T_IMPLEMENTS = <span class="src-key"> -/T_IMPLEMENTS = </span> -T_INTERFACE = <span class="src-key"> -/T_INTERFACE = </span> -T_LOGICAL_AND = <span class="src-key"> -/T_LOGICAL_AND = </span> -T_LOGICAL_OR = <span class="src-key"> -/T_LOGICAL_OR = </span> -T_LOGICAL_XOR = <span class="src-key"> -/T_LOGICAL_XOR = </span> -T_NEW = <span class="src-key"> -/T_NEW = </span> -T_PRIVATE = <span class="src-key"> -/T_PRIVATE = </span> -T_PROTECTED = <span class="src-key"> -/T_PROTECTED = </span> -T_PUBLIC = <span class="src-key"> -/T_PUBLIC = </span> -T_RETURN = <span class="src-key"> -/T_RETURN = </span> -T_STATIC = <span class="src-key"> -/T_STATIC = </span> -T_SWITCH = <span class="src-key"> -/T_SWITCH = </span> -T_VAR = <span class="src-key"> -/T_VAR = </span> -T_WHILE = <span class="src-key"> -/T_WHILE = </span> - -T_DOUBLE_COLON = <span class="src-sym"> -/T_DOUBLE_COLON = </span> - -T_OPEN_TAG = <span class="src-php"> -/T_OPEN_TAG = </span> -T_OPEN_TAG_WITH_ECHO = <span class="src-php"> -/T_OPEN_TAG_WITH_ECHO = </span> -T_CLOSE_TAG = <span class="src-php"> -/T_CLOSE_TAG = </span> - - -[highlightSource] -;; this is for highlighting things that aren't tokens like "&" -;; format: -;; word = open -;; /word = close -@ = <span class="src-sym"> -/@ = </span> -& = <span class="src-sym"> -/& = </span> -[ = <span class="src-sym"> -/[ = </span> -] = <span class="src-sym"> -/] = </span> -! = <span class="src-sym"> -/! = </span> -";" = <span class="src-sym"> -/; = </span> -( = <span class="src-sym"> -/( = </span> -) = <span class="src-sym"> -/) = </span> -, = <span class="src-sym"> -/, = </span> -{ = <span class="src-sym"> -/{ = </span> -} = <span class="src-sym"> -/} = </span> -""" = <span class="src-str"> -/" = </span> - -[highlightDocBlockSourceTokens] -;; this is for docblock tokens, using by phpDocumentor_HighlightParser -;; tagphptype is for "string" in @param string description, for example -docblock = <span class="src-doc"> -/docblock = </span> -tagphptype = <span class="src-doc-type"> -/tagphptype = </span> -tagvarname = <span class="src-doc-var"> -/tagvarname = </span> -coretag = <span class="src-doc-coretag"> -/coretag = </span> -tag = <span class="src-doc-tag"> -/tag = </span> -inlinetag = <span class="src-doc-inlinetag"> -/inlinetag = </span> -internal = <span class="src-doc-internal"> -/internal = </span> -closetemplate = <span class="src-doc-close-template"> -/closetemplate = </span> -docblocktemplate = <span class="src-doc-template"> -/docblocktemplate = </span> - -[highlightTutorialSourceTokens] -;; this is for XML DocBook-based tutorials, highlighted by phpDocumentor_TutorialHighlightParser -;; <tag> -opentag = <span class="tute-tag"> -/opentag = </span> -;; </tag> -closetag = <span class="tute-tag"> -/closetag = </span> -;; <tag attribute="value"> -attribute = <span class="tute-attribute-name"> -/attribute = </span> -;; <tag attribute="value"> -attributevalue = <span class="tute-attribute-value"> -/attributevalue = </span> -;; &entity; -entity = <span class="tute-entity"> -/entity = </span> -;; <!-- comment --> -comment = <span class="tute-comment"> -/comment = </span> -;; {@inline tag} -itag = <span class="tute-inline-tag"> -/itag = </span> - -;; used for translation of html in DocBlocks -[desctranslate] -ul = <ul> -/ul = </ul> -ol = <ol> -/ol = </ol> -li = <li> -/li = </li> -code = -/code = -var = <var> -/var = </var> -samp = <samp> -/samp = </samp> -kbd = <kbd> -/kbd = </kbd> -pre = <pre> -/pre = </pre> -p = <p> -/p = </p> -b = <strong> -/b = </strong> -i = <em> -/i = </em> -br = <br /> - -[ppage] -;; this is the DocBook package page translation section. All DocBook tags -;; that have a corresponding html tag must be listed here. Entities should -;; also be listed here -;; -;; examples: -;; 1) -;; tagname = newtagname -;; -;; This is the simplest case, where all attributes will be added into the -;; starting tag and the ending tag will be html/xml style </tranlatedtagname> -;; <tagname></tagname> becomes <newtagname></newtagname> and -;; <tagname attr="value"></tagname> becomes -;; <newtagname attr="value"></newtagname> -;; -;; 2) -;; tagname = newtagname -;; tagname->attr = newattrname -;; -;; in this case, everything will be like the first case, except tags like: -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="value"></newtagname> -;; -;; 3) -;; tagname = newtagname -;; tagname->attr = newattrname -;; tagname->attr+value = newvalue -;; -;; in this case, the value is also translated to another. This can be useful -;; for instances such as focus="middle" changing to align="center" or something -;; of that nature. -;; <tagname attr="value"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 4) -;; tagname = newtagname -;; tagname->attr1 = newattrname -;; tagname->attr2 = newattrname -;; tagname->attr1+value|attr2+value = newvalue -;; -;; in this case, two attributes combine to make one new attribute, and the combined -;; value is translated into a new value -;; <tagname attr1="value1" attr2="value2"></tagname> will become -;; <newtagname newattrname="newvalue"></newtagname> -;; -;; 5) -;; tagname = newtagname -;; tagname!attr = dummy -;; -;; here, the attribute will be ignored. dummy is not used and may be any value -;; <tagname attr="value"></tagname> will become -;; <newtagname></newtagname> -;; -;; 6) -;; tagname = newtagname -;; tagname! = dummy -;; -;; here, all attributes will be ignored. dummy is not used and may be any value -;; <tagname attr1="value" attr2="foo"></tagname> will become -;; <newtagname></newtagname> -;; -;; 7) -;; tagname = newtagname -;; tagname/ = 1 -;; -;; here, the tag will be translated as a single tag with no closing tag, and all -;; attributes -;; <tagname attr="val">{text text}</tagname> will become -;; <newtagname attr="val" /> -;; -;; 8) -;; tagname = <starttaginfo /> -;; /tagname = closetagtext -;; -;; in this case, the text <starttaginfo> will be inserted exactly as entered for -;; <tagname> and closetagtext for </tagname> -;; <tagname attr="val"></tagname> will become -;; <starttaginfo />closetagtext -;; -;; 9) -;; $attr$my_attribute = newattrname -;; -;; tagname = newtagname -;; -;; in this case, all occurences of my_attribute in any tag will be changed to -;; newattrname. This is useful for changing things like role="php" to -;; class="php," for example. Note that the text "$attr$" MUST be on the line -;; start for phpDocumentor to recognize it. -;; -;; 10) -;; &entity; = translation text -;; " = " -;; " = """ -;; < = < -;; -;; Use this to control translation of entities to their appropriate values - - = -" = " -” = ” -“ = “ -& = & -< = < -> = > -© = © - - -$attr$role = class - -abbrev = abbr - -blockquote = blockquote - -arg = span -arg->choice = class - -author = <span class="author"> -/author = </span> -author! = 0 - -authorblurb = <div class="author-blurb"> -/authorblurb = </div> - -authorgroup = <div class="authors"><h2 class="title">Authors</h2> -/authorgroup = </div> -authorgroup! = 0 - -caution = <span class="warning"> -/caution = </span> -caution! = 0 - -cmdsynopsis = <div class="cmd-synopsis"> -/cmdsynopsis = </div> - -command = <span class="cmd-title"> -/command = </span> - -copyright = <div class="notes"> -/copyright = </div> - -emphasis = em - -example = <div class="src-code"> -/example = </div> -example! = 0 - -function = -/function = () - -formalpara = p - -graphic = img -graphic->fileref = src -graphic/ = - -important = strong - -informalequation = blockquote - -informalexample = div - -inlineequation = em - -itemizedlist = ul - -listitem = li - -literal = code - -literallayout = span - -option = " " -/option = - -orderedlist = ol - -para = p - -programlisting = <div class="src-code"> -/programlisting = </div> -programlisting! = 0 - -refentry = div - -refnamediv = <div class="ref-title-box"> -/refnamediv = </div> -refnamediv! = 0 - -refname = <h1 class="ref-title"> -/refname = </h1> - -refpurpose = <h2 class="ref-purpose"> -/refpurpose = </h2> - -refsynopsisdiv = <div class="ref-synopsis"> -/refsynopsisdiv = </div> -refsynopsisdiv! = 0 - -refsect1 = span - -refsect2 = span - -refsect3 = -/refsect3 = <br /> - -releaseinfo = <div class="release-info">( -/releaseinfo = )</div> - -simpara = -/simpara = <br /> -simpara! = 0 - -subscript = sub - -superscript = super - -table = table - -table->colsep = rules -table->rowsep = rules -table->colsep+1|rowsep+1 =all -table->colsep+1|rowsep+0 =cols -table->colsep+0|rowsep+1 =rows - -table->frame =frame -table->frame+all =border -table->frame+none =void -table->frame+sides =vsides -table->frame+top =above -table->frame+topbot =hsides - -thead = thead - -tfoot = tfoot - -tbody = tbody - -colspec = col - -tgroup = colgroup -tgroup/ = 1 -tgroup->cols = span - -row = tr - -entry = td -entry->morerows = colspan -entry->morerows+1 =2 -entry->morerows+2 =3 -entry->morerows+3 =4 -entry->morerows+4 =5 -entry->morerows+5 =6 -entry->morerows+6 =7 -entry->morerows+7 =8 -entry->morerows+8 =9 -entry->morerows+9 =10 -entry->morerows+10 =11 -;; add more if you need more colspans - -warning = <span class="warning"> -/warning = </span> -warning! = 0 - -;; now begins the attributes that should be tags in cdata -[$attr$id] -open = a -;close = /a -cdata! = true -quotevalues = true -separator = "=" -;separateall = true -$id = name - -;; now begins the sections that deal with <title> -[refsynopsisdiv_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h1 class="title"> -close = </h1> - -[refsect1_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h2 class="title"> -close = </h2> - -[refsect2_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h3 class="title"> -close = </h3> - -[refsect3_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <h4 class="title"> -close = </h4> - -[para_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <div class="title"> -close = </div> - -[formalpara_title] -;tag_attr = true -;attr_name = title -cdata_start = true -;cdata_end = true -open = <div class="title"> -close = </div> - -[example_title] -;tag_attr = true -;attr_name = title -;cdata_start = true -cdata_end = true -open = </td></tr><tr><td><strong> -close = </strong> - -[table_title] -;tag_attr = true -;attr_name = true -cdata_start = true -open = <caption> -close = </caption> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/basicindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/basicindex.tpl deleted file mode 100755 index 951ee264..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/basicindex.tpl +++ /dev/null @@ -1,47 +0,0 @@ -<div class="index-letter-menu"> -{section name=letter loop=$letters} - <a class="index-letter" href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> -{/section} -</div> - -{section name=index loop=$index} - <a name="{$index[index].letter}"></a> - <div class="index-letter-section"> - <div style="float: left" class="index-letter-title">{$index[index].letter}</div> - <div style="float: right"><a href="#top">top</a></div> - <div style="clear: both"></div> - </div> - <dl> - {section name=contents loop=$index[index].index} - <dt class="field"> - {if ($index[index].index[contents].title == "Variable")} - <span class="var-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Global")} - <span class="var-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Method")} - <span class="method-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Function")} - <span class="method-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Constant")} - <span class="const-title">{$index[index].index[contents].name}</span> - {elseif ($index[index].index[contents].title == "Page") || ($index[index].index[contents].title == "Include")} - <span class="include-title">{$index[index].index[contents].name}</span> - {else} - {$index[index].index[contents].name} - {/if} - </dt> - <dd class="index-item-body"> - <div class="index-item-details">{$index[index].index[contents].link} in {$index[index].index[contents].file_name}</div> - {if $index[index].index[contents].description} - <div class="index-item-description">{$index[index].index[contents].description}</div> - {/if} - </dd> - {/section} - </dl> -{/section} - -<div class="index-letter-menu"> -{section name=letter loop=$letters} - <a class="index-letter" href="{$indexname}.html#{$letters[letter].letter}">{$letters[letter].letter}</a> -{/section} -</div> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/blank.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/blank.tpl deleted file mode 100755 index 6a05f27e..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/blank.tpl +++ /dev/null @@ -1,13 +0,0 @@ -<html> -<head> - <title>{$maintitle}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> -</head> -<body> -<div align="center"><h1>{$maintitle}</h1></div> -<b>Welcome to {$package}!</b><br /> -<br /> -This documentation was generated by <a href="{$phpdocwebsite}">phpDocumentor v{$phpdocversion}</a><br /> -</body> -</html>
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/class.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/class.tpl deleted file mode 100755 index 9ab7c455..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/class.tpl +++ /dev/null @@ -1,429 +0,0 @@ -{include file="header.tpl" top3=true} - -<h2 class="class-name">{if $is_interface}Interface{else}Class{/if} {$class_name}</h2> - -<a name="sec-description"></a> -<div class="info-box"> - <div class="info-box-title">Description</div> - <div class="nav-bar"> - {if $children || $vars || $ivars || $methods || $imethods || $consts || $iconsts } - <span class="disabled">Description</span> | - {/if} - {if $children} - <a href="#sec-descendents">Descendents</a> - {if $vars || $ivars || $methods || $imethods || $consts || $iconsts}|{/if} - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {if $methods || $imethods}|{/if} - {/if} - {if $methods || $imethods} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {if $implements} - <p class="implements"> - Implements interfaces: - <ul> - {foreach item="int" from=$implements}<li>{$int}</li>{/foreach} - </ul> - </p> - {/if} - {include file="docblock.tpl" type="class" sdesc=$sdesc desc=$desc} - <p class="notes"> - Located in <a class="field" href="{$page_link}">{$source_location}</a> (line <span class="field">{if $class_slink}{$class_slink}{else}{$line_number}{/if}</span>) - </p> - - {if $tutorial} - <hr class="separator" /> - <div class="notes">Tutorial: <span class="tutorial">{$tutorial}</span></div> - {/if} - - <pre>{section name=tree loop=$class_tree.classes}{$class_tree.classes[tree]}{$class_tree.distance[tree]}{/section}</pre> - - {if $conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with classes:</span><br /> - {section name=me loop=$conflicts.conflicts} - {$conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - </div> -</div> - -{if $children} - <a name="sec-descendents"></a> - <div class="info-box"> - <div class="info-box-title">Direct descendents</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - <span class="disabled">Descendents</span> - {if $vars || $ivars || $methods || $imethods}|{/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {if $methods || $imethods}|{/if} - {/if} - {if $methods || $imethods} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <table cellpadding="2" cellspacing="0" class="class-table"> - <tr> - <th class="class-table-header">Class</th> - <th class="class-table-header">Description</th> - </tr> - {section name=kids loop=$children} - <tr> - <td style="padding-right: 2em">{$children[kids].link}</td> - <td> - {if $children[kids].sdesc} - {$children[kids].sdesc} - {else} - {$children[kids].desc} - {/if} - </td> - </tr> - {/section} - </table> - </div> - </div> -{/if} - -{if $consts} - <a name="sec-const-summary"></a> - <div class="info-box"> - <div class="info-box-title">Class Constant Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendants</a> | - {/if} - <span class="disabled">Constants</span> (<a href="#sec-consts">details</a>) - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - | - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <div class="const-summary"> - {section name=consts loop=$consts} - <div class="const-title"> - <img src="{$subdir}media/images/Constant.png" alt=" " /> - <a href="#{$consts[consts].const_name}" title="details" class="const-name">{$consts[consts].const_name}</a> = <span class="var-type">{$consts[consts].const_value}</span> - - </div> - {/section} - </div> - </div> - </div> -{/if} - -{if $vars} - <a name="sec-var-summary"></a> - <div class="info-box"> - <div class="info-box-title">Variable Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - <span class="disabled">Vars</span> (<a href="#sec-vars">details</a>) - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - <div class="var-summary"> - {section name=vars loop=$vars} - {if $vars[vars].static} - <div class="var-title"> - static <span class="var-type">{$vars[vars].var_type}</span> - <a href="#{$vars[vars].var_name}" title="details" class="var-name">{$vars[vars].var_name}</a> - </div> - {/if} - {/section} - {section name=vars loop=$vars} - {if !$vars[vars].static} - <div class="var-title"> - <span class="var-type">{$vars[vars].var_type}</span> - <a href="#{$vars[vars].var_name}" title="details" class="var-name">{$vars[vars].var_name}</a> - </div> - {/if} - {/section} - </div> - </div> - </div> -{/if} - -{if $methods} - <a name="sec-method-summary"></a> - <div class="info-box"> - <div class="info-box-title">Method Summary</span></div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - | - {/if} - <span class="disabled">Methods</span> (<a href="#sec-methods">details</a>) - </div> - <div class="info-box-body"> - <div class="method-summary"> - {section name=methods loop=$methods} - {if $methods[methods].static} - <div class="method-definition"> - static {if $methods[methods].function_return} - <span class="method-result">{$methods[methods].function_return}</span> - {/if} - <a href="#{$methods[methods].function_name}" title="details" class="method-name">{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}</a> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - {/if} - {/section} - {section name=methods loop=$methods} - {if !$methods[methods].static} - <div class="method-definition"> - {if $methods[methods].function_return} - <span class="method-result">{$methods[methods].function_return}</span> - {/if} - <a href="#{$methods[methods].function_name}" title="details" class="method-name">{if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name}</a> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - {/if} - {/section} - </div> - </div> - </div> -{/if} - -{if $vars || $ivars} - <a name="sec-vars"></a> - <div class="info-box"> - <div class="info-box-title">Variables</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $methods} - <a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Vars</span> - {/if} - - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {include file="var.tpl"} - {if $ivars} - <h4>Inherited Variables</h4> - <A NAME='inherited_vars'><!-- --></A> - {section name=ivars loop=$ivars} - <p>Inherited from <span class="classname">{$ivars[ivars].parent_class}</span></p> - <blockquote> - {section name=ivars2 loop=$ivars[ivars].ivars} - <span class="var-title"> - <span class="var-name">{$ivars[ivars].ivars[ivars2].link}</span>{if $ivars[ivars].ivars[ivars2].ivar_sdesc}: {$ivars[ivars].ivars[ivars2].ivar_sdesc}{/if}<br> - </span> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{if $methods || $imethods} - <a name="sec-methods"></a> - <div class="info-box"> - <div class="info-box-title">Methods</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendents</a> | - {/if} - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {/if} - {if $consts || $iconsts} - {if $consts} - <a href="#sec-const-summary">Constants</a> (<a href="#sec-consts">details</a>) - {else} - <a href="#sec-consts">Constants</a> - {/if} - {/if} - {if $methods} - <a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Methods</span> - {/if} - </div> - <div class="info-box-body"> - {include file="method.tpl"} - {if $imethods} - <h4>Inherited Methods</h4> - <a name='inherited_methods'><!-- --></a> - {section name=imethods loop=$imethods} - <!-- =========== Summary =========== --> - <p>Inherited From <span class="classname">{$imethods[imethods].parent_class}</span></p> - <blockquote> - {section name=im2 loop=$imethods[imethods].imethods} - <span class="method-name">{$imethods[imethods].imethods[im2].link}</span>{if $imethods[imethods].imethods[im2].ifunction_sdesc}: {$imethods[imethods].imethods[im2].ifunction_sdesc}{/if}<br> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{if $consts || $iconsts} - <a name="sec-consts"></a> - <div class="info-box"> - <div class="info-box-title">Class Constants</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $children} - <a href="#sec-descendents">Descendants</a> | - {/if} - {if $methods} - <a href="#sec-var-summary">Constants</a> (<span class="disabled">details</span>) - {else} - <span class="disabled">Constants</span> - {/if} - - {if $vars || $ivars} - {if $vars} - <a href="#sec-var-summary">Vars</a> (<a href="#sec-vars">details</a>) - {else} - <a href="#sec-vars">Vars</a> - {/if} - {/if} - {if $methods || $imethods} - | - {if $methods} - <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) - {else} - <a href="#sec-methods">Methods</a> - {/if} - {/if} - </div> - <div class="info-box-body"> - {include file="const.tpl"} - {if $iconsts} - <h4>Inherited Constants</h4> - <A NAME='inherited_vars'><!-- --></A> - {section name=iconsts loop=$iconsts} - <p>Inherited from <span class="classname">{$iconsts[iconsts].parent_class}</span></p> - <blockquote> - {section name=iconsts2 loop=$iconsts[iconsts].iconsts} - <img src="{$subdir}media/images/{if $iconsts[iconsts].iconsts[iconsts2].access == 'private'}PrivateVariable{else}Variable{/if}.png" /> - <span class="const-title"> - <span class="const-name">{$iconsts[iconsts].iconsts[iconsts2].link}</span>{if $iconsts[iconsts].iconsts[iconsts2].iconst_sdesc}: {$iconsts[iconsts].iconsts[iconsts2].iconst_sdesc}{/if}<br> - </span> - {/section} - </blockquote> - {/section} - {/if} - </div> - </div> -{/if} - -{include file="footer.tpl" top3=true} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/classtrees.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/classtrees.tpl deleted file mode 100755 index 952e6d50..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/classtrees.tpl +++ /dev/null @@ -1,19 +0,0 @@ -{include file="header.tpl" top1=true} - -<!-- Start of Class Data --> -<H2> - {$smarty.capture.title} -</H2> -{if $interfaces} -{section name=classtrees loop=$interfaces} -<h2>Root interface {$interfaces[classtrees].class}</h2> -{$interfaces[classtrees].class_tree} -{/section} -{/if} -{if $classtrees} -{section name=classtrees loop=$classtrees} -<h2>Root class {$classtrees[classtrees].class}</h2> -{$classtrees[classtrees].class_tree} -{/section} -{/if} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/const.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/const.tpl deleted file mode 100644 index c26ff92d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/const.tpl +++ /dev/null @@ -1,18 +0,0 @@ -{section name=consts loop=$consts} -<a name="const{$consts[consts].const_name}" id="{$consts[consts].const_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="const-header"> - <img src="{$subdir}media/images/{if $consts[consts].access == 'private'}PrivateVariable{else}Variable{/if}.png" /> - <span class="const-title"> - <span class="const-name">{$consts[consts].const_name}</span> - = <span class="const-default">{$consts[consts].const_value|replace:"\n":"<br />"}</span> - (line <span class="line-number">{if $consts[consts].slink}{$consts[consts].slink}{else}{$consts[consts].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$consts[consts].sdesc desc=$consts[consts].desc tags=$consts[consts].tags} - -</div> -{/section} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/define.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/define.tpl deleted file mode 100755 index 0da5d864..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/define.tpl +++ /dev/null @@ -1,24 +0,0 @@ -{section name=def loop=$defines} -<a name="{$defines[def].define_link}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="const-title"> - <span class="const-name">{$defines[def].define_name}</span> = {$defines[def].define_value|replace:"\n":"<br />"} - (line <span class="line-number">{if $defines[def].slink}{$defines[def].slink}{else}{$defines[def].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$defines[def].sdesc desc=$defines[def].desc tags=$defines[def].tags} - - {if $globals[glob].global_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with constants:</span><br /> - {section name=me loop=$defines[def].define_conflicts.conflicts} - {$defines[def].define_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/docblock.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/docblock.tpl deleted file mode 100755 index 783d5271..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/docblock.tpl +++ /dev/null @@ -1,14 +0,0 @@ -<!-- ========== Info from phpDoc block ========= --> -{if $sdesc} -<p class="short-description">{$sdesc}</p> -{/if} -{if $desc} -<p class="description">{$desc}</p> -{/if} -{if $tags} - <ul class="tags"> - {section name=tags loop=$tags} - <li><span class="field">{$tags[tags].keyword}:</span> {$tags[tags].data}</li> - {/section} - </ul> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/elementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/elementindex.tpl deleted file mode 100755 index d5964f99..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/elementindex.tpl +++ /dev/null @@ -1,12 +0,0 @@ -{include file="header.tpl" noleftindex=true} -<a name="top"></a> -<h2>Full index</h2> -<h3>Package indexes</h3> -<ul> -{section name=p loop=$packageindex} - <li><a href="elementindex_{$packageindex[p].title}.html">{$packageindex[p].title}</a></li> -{/section} -</ul> -<br /> -{include file="basicindex.tpl" indexname="elementindex"} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/errors.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/errors.tpl deleted file mode 100755 index 0f526584..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/errors.tpl +++ /dev/null @@ -1,21 +0,0 @@ -{include file="header.tpl" noleftindex=true} -{section name=files loop=$files} -<a href="#{$files[files].file}">{$files[files].file}</a><br> -{/section} -{foreach key=file item=issues from=$all} -<a name="{$file}"></a> -<h1>{$file}</h1> -{if count($issues.warnings)} -<h2>Warnings:</h2><br> -{section name=warnings loop=$issues.warnings} -<b>{$issues.warnings[warnings].name}</b> - {$issues.warnings[warnings].listing}<br> -{/section} -{/if} -{if count($issues.errors)} -<h2>Errors:</h2><br> -{section name=errors loop=$issues.errors} -<b>{$issues.errors[errors].name}</b> - {$issues.errors[errors].listing}<br> -{/section} -{/if} -{/foreach} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/examplesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/examplesource.tpl deleted file mode 100755 index 8abf74ce..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/examplesource.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl" title=$title} -<h1>{$title}</h1> -<div class="listing"> -{$source} -</div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/filesource.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/filesource.tpl deleted file mode 100755 index 239f7b41..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/filesource.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{capture name="tutle"}File Source for {$name}{/capture} -{include file="header.tpl" title=$smarty.capture.tutle} -<h1>Source for file {$name}</h1> -<p>Documentation is available at {$docs}</p> -<div class="src-code"> -{$source} -</div> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/footer.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/footer.tpl deleted file mode 100755 index 8d0f79db..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/footer.tpl +++ /dev/null @@ -1,8 +0,0 @@ -{if !$index} - <p class="notes" id="credit"> - Documentation generated on {$date} by <a href="{$phpdocwebsite}" target="_blank">phpDocumentor {$phpdocversion}</a> - </p> -{/if} - {if $top3}</div>{/if} -</body> -</html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/function.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/function.tpl deleted file mode 100755 index b6880059..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/function.tpl +++ /dev/null @@ -1,44 +0,0 @@ -{section name=func loop=$functions} -<a name="{$functions[func].function_dest}" id="{$functions[func].function_dest}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="method-title">{$functions[func].function_name}</span> (line <span class="line-number">{if $functions[func].slink}{$functions[func].slink}{else}{$functions[func].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$functions[func].sdesc desc=$functions[func].desc tags=$functions[func].tags params=$functions[func].params function=false} - - <div class="method-signature"> - <span class="method-result">{$functions[func].function_return}</span> - <span class="method-name"> - {if $functions[func].ifunction_call.returnsref}&{/if}{$functions[func].function_name} - </span> - {if count($functions[func].ifunction_call.params)} - ({section name=params loop=$functions[func].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $functions[func].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$functions[func].ifunction_call.params[params].type}</span> <span class="var-name">{$functions[func].ifunction_call.params[params].name}</span>{if $functions[func].ifunction_call.params[params].hasdefault} = <span class="var-default">{$functions[func].ifunction_call.params[params].default|escape:"html"}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $functions[func].params} - <ul class="parameters"> - {section name=params loop=$functions[func].params} - <li> - <span class="var-type">{$functions[func].params[params].datatype}</span> - <span class="var-name">{$functions[func].params[params].var}</span>{if $functions[func].params[params].data}<span class="var-description">: {$functions[func].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $functions[func].function_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with functions:</span><br /> - {section name=me loop=$functions[func].function_conflicts.conflicts} - {$functions[func].function_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/global.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/global.tpl deleted file mode 100755 index eab7e0b0..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/global.tpl +++ /dev/null @@ -1,26 +0,0 @@ -{section name=glob loop=$globals} -<a name="{$globals[glob].global_link}" id="{$globals[glob].global_link}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="var-title"> - <span class="var-type">{$globals[glob].global_type}</span> - <span class="var-name">{$globals[glob].global_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$globals[glob].global_value|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $globals[glob].slink}{$globals[glob].slink}{else}{$globals[glob].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$globals[glob].sdesc desc=$globals[glob].desc tags=$globals[glob].tags} - - {if $globals[glob].global_conflicts.conflict_type} - <hr class="separator" /> - <div><span class="warning">Conflicts with global variables:</span><br /> - {section name=me loop=$globals[glob].global_conflicts.conflicts} - {$globals[glob].global_conflicts.conflicts[me]}<br /> - {/section} - </div> - {/if} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/header.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/header.tpl deleted file mode 100755 index c22ba37d..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/header.tpl +++ /dev/null @@ -1,12 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <!-- template designed by Marco Von Ballmoos --> - <title>{$title}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> - </head> - <body> - {if $top3}<div class="page-body">{/if} - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/include.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/include.tpl deleted file mode 100755 index c2419e5f..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/include.tpl +++ /dev/null @@ -1,16 +0,0 @@ -{section name=includes loop=$includes} -<a name="{$includes[includes].include_file}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div> - <span class="include-title"> - <span class="include-type">{$includes[includes].include_name}</span> - (<span class="include-name">{$includes[includes].include_value}</span>) - (line <span class="line-number">{if $includes[includes].slink}{$includes[includes].slink}{else}{$includes[includes].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$includes[includes].sdesc desc=$includes[includes].desc tags=$includes[includes].tags} - -</div> -{/section}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/index.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/index.tpl deleted file mode 100755 index 7cd61094..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/index.tpl +++ /dev/null @@ -1,24 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html - PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//FR" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> -<head> - <!-- Generated by phpDocumentor on {$date} --> - <title>{$title}</title> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> -</head> - -<FRAMESET rows='120,*'> - <FRAME src='packages.html' name='left_top' frameborder="1" bordercolor="#999999"> - <FRAMESET cols='25%,*'> - <FRAME src='{$start}' name='left_bottom' frameborder="1" bordercolor="#999999"> - <FRAME src='{$blank}.html' name='right' frameborder="1" bordercolor="#999999"> - </FRAMESET> - <NOFRAMES> - <H2>Frame Alert</H2> - <P>This document is designed to be viewed using the frames feature. - If you see this message, you are using a non-frame-capable web client.</P> - </NOFRAMES> -</FRAMESET> -</HTML> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/left_frame.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/left_frame.tpl deleted file mode 100755 index 0a06fba6..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/left_frame.tpl +++ /dev/null @@ -1,159 +0,0 @@ -{include file="header.tpl" top2=true} -<div class="package-title">{$package}</div> -<div class="package-details"> - - <dl class="tree"> - - <dt class="folder-title">Description</dt> - <dd> - <a href='{$classtreepage}.html' target='right'>Class trees</a><br /> - <a href='{$elementindex}.html' target='right'>Index of elements</a><br /> - {if $hastodos} - <a href="{$todolink}" target="right">Todo List</a><br /> - {/if} - </dd> - - {section name=p loop=$info} - - {if $info[p].subpackage == ""} - - {if $info[p].tutorials} - <dt class="folder-title">Tutorials/Manuals</dt> - <dd> - {if $info[p].tutorials.pkg} - <dl class="tree"> - <dt class="folder-title">Package-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.pkg} - {$info[p].tutorials.pkg[ext]} - {/section} - </dd> - </dl> - {/if} - - {if $info[p].tutorials.cls} - <dl class="tree"> - <dt class="folder-title">Class-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.cls} - {$info[p].tutorials.cls[ext]} - {/section} - </dd> - </dl> - {/if} - - {if $info[p].tutorials.proc} - <dl class="tree"> - <dt class="folder-title">Function-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.proc} - {$info[p].tutorials.proc[ext]} - {/section} - </dd> - </dl> - {/if} - </dd> - {/if} - {if $info[p].hasinterfaces} - <dt class="folder-title">Interfaces</dt> - {section name=class loop=$info[p].classes} - {if $info[p].classes[class].is_interface} - <dd><a href='{$info[p].classes[class].link}' target='right'>{$info[p].classes[class].title}</a></dd> - {/if} - {/section} - {/if} - {if $info[p].hasclasses} - <dt class="folder-title">Classes</dt> - {section name=class loop=$info[p].classes} - {if $info[p].classes[class].is_class} - <dd><a href='{$info[p].classes[class].link}' target='right'>{$info[p].classes[class].title}</a></dd> - {/if} - {/section} - {/if} - {if $info[p].functions} - <dt class="folder-title">Functions</dt> - {section name=f loop=$info[p].functions} - <dd><a href='{$info[p].functions[f].link}' target='right'>{$info[p].functions[f].title}</a></dd> - {/section} - {/if} - {if $info[p].files} - <dt class="folder-title">Files</dt> - {section name=nonclass loop=$info[p].files} - <dd><a href='{$info[p].files[nonclass].link}' target='right'>{$info[p].files[nonclass].title}</a></dd> - {/section} - {/if} - - {else} - {if $info[p].tutorials} - <dt class="folder-title">Tutorials/Manuals</dt> - <dd> - {if $info[p].tutorials.pkg} - <dl class="tree"> - <dt class="folder-title">Package-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.pkg} - {$info[p].tutorials.pkg[ext]} - {/section} - </dd> - </dl> - {/if} - - {if $info[p].tutorials.cls} - <dl class="tree"> - <dt class="folder-title">Class-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.cls} - {$info[p].tutorials.cls[ext]} - {/section} - </dd> - </dl> - {/if} - - {if $info[p].tutorials.proc} - <dl class="tree"> - <dt class="folder-title">Function-level</dt> - <dd> - {section name=ext loop=$info[p].tutorials.proc} - {$info[p].tutorials.proc[ext]} - {/section} - </dd> - </dl> - {/if} - </dd> - {/if} - - <dt class="sub-package">{$info[p].subpackage}</dt> - <dd> - <dl class="tree"> - {if $info[p].subpackagetutorial} - <div><a href="{$info.0.subpackagetutorialnoa}" target="right">{$info.0.subpackagetutorialtitle}</a></div> - {/if} - {if $info[p].classes} - <dt class="folder-title">Classes</dt> - {section name=class loop=$info[p].classes} - <dd><a href='{$info[p].classes[class].link}' target='right'>{$info[p].classes[class].title}</a></dd> - {/section} - {/if} - {if $info[p].functions} - <dt class="folder-title">Functions</dt> - {section name=f loop=$info[p].functions} - <dd><a href='{$info[p].functions[f].link}' target='right'>{$info[p].functions[f].title}</a></dd> - {/section} - {/if} - {if $info[p].files} - <dt class="folder-title">Files</dt> - {section name=nonclass loop=$info[p].files} - <dd><a href='{$info[p].files[nonclass].link}' target='right'>{$info[p].files[nonclass].title}</a></dd> - {/section} - {/if} - </dl> - </dd> - - {/if} - - {/section} - </dl> -</div> -<p class="notes"><a href="{$phpdocwebsite}" target="_blank">phpDocumentor v <span class="field">{$phpdocversion}</span></a></p> -</BODY> -</HTML> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/media/banner.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/media/banner.css deleted file mode 100755 index ba1a7ba5..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/media/banner.css +++ /dev/null @@ -1,32 +0,0 @@ -body -{ - background-color: #DDDDDD; - margin: 0px; - padding: 0px; -} - -/* Banner (top bar) classes */ - -.banner { } - -.banner-menu -{ - clear: both; - padding: .5em; - border-top: 2px solid #999999; -} - -.banner-title -{ - text-align: right; - font-size: 20pt; - font-weight: bold; - margin: .2em; -} - -.package-selector -{ - background-color: #CCCCCC; - border: 1px solid black; - color: blue; -} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/media/stylesheet.css b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/media/stylesheet.css deleted file mode 100755 index 051586b3..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/media/stylesheet.css +++ /dev/null @@ -1,142 +0,0 @@ -a { color: #0000FF; text-decoration: none; } -a:hover { color: #FF0000; text-decoration: underline; } -a:active { color: #FF0000; text-decoration: underline; } - -body { background-color: #EEEEEE; font-family: Verdana, Arial, sans-serif } -body, table { font-size: 10pt } -a img { border: 0px; } -dd { margin-left: 0px; padding-left: 1em; } - -/* Page layout/boxes */ - -.info-box {} -.info-box-title { margin: 1em 0em 0em 0em; padding: .25em; font-weight: normal; font-size: 14pt; border: 2px solid #999999; background-color: #DDDDDD } -.info-box-body { border: 1px solid #999999; padding: .5em; background-color: #F8F8F8; } -.nav-bar { font-size: 8pt; white-space: nowrap; text-align: right; padding: .2em; margin: 0em 0em 1em 0em; } - -.oddrow { background-color: #DDDDDD; border: 1px solid #999999; padding: .5em; margin-bottom: 1em} -.evenrow { background-color: #DDDDDD; border: 1px solid #999999; padding: .5em; margin-bottom: 1em} - -.page-body { max-width: 800px; margin: auto; } -.tree dl { margin: 0px } - -/* Index formatting classes */ - -.index-item-body { margin-top: .5em; margin-bottom: .5em} -.index-item-description { margin-top: .25em } -.index-item-details { font-weight: normal; font-style: italic; font-size: 8pt } -.index-letter-section { background-color: #EEEEEE; border: 1px dotted #999999; padding: .5em; margin-bottom: 1em} -.index-letter-title { font-size: 12pt; font-weight: bold } -.index-letter-menu { text-align: center; margin: 1em } -.index-letter { font-size: 12pt } - -/* Docbook classes */ - -.description {} -.short-description { font-weight: bold; color: #666666; } -.tags { padding-left: 0em; margin-left: 3em; color: #666666; list-style-type: square; } -.parameters { padding-left: 0em; margin-left: 3em; font-style: italic; list-style-type: square; } -.redefinitions { font-size: 8pt; padding-left: 0em; margin-left: 2em; } -.package { } -.package-title { font-weight: bold; font-size: 14pt; border-bottom: 1px solid black } -.package-details { font-size: 85%; } -.sub-package { font-weight: bold; font-size: 120% } -.tutorial { border-width: thin; border-color: #0066ff } -.tutorial-nav-box { width: 100%; border: 2px solid #999999; background-color: #DDDDDD } -.nav-button-disabled { color: #999999; } -.nav-button:active, -.nav-button:focus, -.nav-button:hover { background-color: #AAAAAA; outline: 1px solid #666666; text-decoration: none } -.folder-title { font-style: italic } - -/* Generic formatting */ - -.field { font-weight: bold; } -.detail { font-size: 8pt; } -.notes { font-style: italic; font-size: 8pt; } -.separator { background-color: #999999; height: 2px; } -.warning { color: #FF6600; } -.disabled { font-style: italic; color: #999999; } - -/* Code elements */ - -.line-number { } - -.class-table { width: 100%; } -.class-table-header { border-bottom: 1px dotted #666666; text-align: left} -.class-name { color: #000000; font-weight: bold; } - -.method-summary { padding-left: 1em; font-size: 8pt } -.method-header { } -.method-definition { margin-bottom: .3em } -.method-title { font-weight: bold; } -.method-name { font-weight: bold; } -.method-signature { font-size: 85%; color: #0066BB; margin: .5em 0em } -.method-result { font-style: italic; } - -.var-summary { padding-left: 1em; font-size: 8pt; } -.var-header { } -.var-title { margin-bottom: .3em } -.var-type { color: red; font-weight: bold } -.var-name { font-weight: bold; } -.var-default {} -.var-description { font-weight: normal; color: #000000; } - -.include-title { } -.include-type { font-style: italic; } -.include-name { font-weight: bold; } - -.const-title { } -.const-name { font-weight: bold; } - -/* Syntax highlighting */ - -.src-code { border: 1px solid #336699; padding: 1em; background-color: #EEEEEE; - font-family: 'Courier New', Courier, monospace; font-weight: normal; } -.src-line { font-family: 'Courier New', Courier, monospace; font-weight: normal; } - -.src-comm { color: #666666; } -.src-id { } -.src-inc { color: #0000FF; } -.src-key { color: #0000FF; } -.src-num { color: #CC0000; } -.src-str { color: #66cccc; } -.src-sym { font-weight: bold; } -.src-var { } - -.src-php { font-weight: bold; } - -.src-doc { color: #009999 } -.src-doc-close-template { color: #0000FF } -.src-doc-coretag { color: #0099FF; font-weight: bold } -.src-doc-inlinetag { color: #0099FF } -.src-doc-internal { color: #6699cc } -.src-doc-tag { color: #0080CC } -.src-doc-template { color: #0000FF } -.src-doc-type { font-style: italic } -.src-doc-var { font-style: italic } - -.tute-tag { color: #009999 } -.tute-attribute-name { color: #0000FF } -.tute-attribute-value { color: #0099FF } -.tute-entity { font-weight: bold; } -.tute-comment { font-style: italic } -.tute-inline-tag { color: #636311; font-weight: bold } - -/* tutorial */ - -.authors { } -.author { font-style: italic; font-weight: bold } -.author-blurb { margin: .5em 0em .5em 2em; font-size: 85%; font-weight: normal; font-style: normal } -.example { background-color: #DDDDDD; border: 1px solid #999999; padding: .5em; } -.listing { background-color: #DDDDDD; border: 1px solid #999999; padding: .5em; white-space: nowrap; } -.release-info { font-size: 85%; font-style: italic; margin: 1em 0em } -.ref-title-box { } -.ref-title { } -.ref-purpose { font-style: italic; color: #666666 } -.ref-synopsis { } -.title { font-weight: bold; border-bottom: 1px solid #888888; color: #888888; } -.cmd-synopsis { margin: 1em 0em } -.cmd-title { font-weight: bold } -.toc { margin-left: 2em; padding-left: 0em } - diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/method.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/method.tpl deleted file mode 100755 index 06d57a12..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/method.tpl +++ /dev/null @@ -1,149 +0,0 @@ -<A NAME='method_detail'></A> -{section name=methods loop=$methods} -{if $methods[methods].static} -<a name="method{$methods[methods].function_name}" id="{$methods[methods].function_name}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="method-header"> - <span class="method-title">static {$methods[methods].function_name}</span> (line <span class="line-number">{if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags params=$methods[methods].params function=false} - - <div class="method-signature"> - static <span class="method-result">{$methods[methods].function_return}</span> - <span class="method-name"> - {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name} - </span> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $methods[methods].params} - <ul class="parameters"> - {section name=params loop=$methods[methods].params} - <li> - <span class="var-type">{$methods[methods].params[params].datatype}</span> - <span class="var-name">{$methods[methods].params[params].var}</span>{if $methods[methods].params[params].data}<span class="var-description">: {$methods[methods].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $methods[methods].method_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$methods[methods].method_overrides.link}</dt> - {if $methods[methods].method_overrides.sdesc} - <dd>{$methods[methods].method_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} - - {if $methods[methods].descmethod} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=dm loop=$methods[methods].descmethod} - <li> - {$methods[methods].descmethod[dm].link} - {if $methods[methods].descmethod[dm].sdesc} - : {$methods[methods].descmethod[dm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} -</div> -{/if} -{/section} -{section name=methods loop=$methods} -{if !$methods[methods].static} -<a name="method{$methods[methods].function_name}" id="{$methods[methods].function_name}"><!-- --></a> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="method-header"> - <span class="method-title">{if $methods[methods].ifunction_call.constructor}Constructor {elseif $methods[methods].ifunction_call.destructor}Destructor {/if}{$methods[methods].function_name}</span> (line <span class="line-number">{if $methods[methods].slink}{$methods[methods].slink}{else}{$methods[methods].line_number}{/if}</span>) - </div> - - {include file="docblock.tpl" sdesc=$methods[methods].sdesc desc=$methods[methods].desc tags=$methods[methods].tags params=$methods[methods].params function=false} - - <div class="method-signature"> - <span class="method-result">{$methods[methods].function_return}</span> - <span class="method-name"> - {if $methods[methods].ifunction_call.returnsref}&{/if}{$methods[methods].function_name} - </span> - {if count($methods[methods].ifunction_call.params)} - ({section name=params loop=$methods[methods].ifunction_call.params}{if $smarty.section.params.iteration != 1}, {/if}{if $methods[methods].ifunction_call.params[params].hasdefault}[{/if}<span class="var-type">{$methods[methods].ifunction_call.params[params].type}</span> <span class="var-name">{$methods[methods].ifunction_call.params[params].name}</span>{if $methods[methods].ifunction_call.params[params].hasdefault} = <span class="var-default">{$methods[methods].ifunction_call.params[params].default}</span>]{/if}{/section}) - {else} - () - {/if} - </div> - - {if $methods[methods].params} - <ul class="parameters"> - {section name=params loop=$methods[methods].params} - <li> - <span class="var-type">{$methods[methods].params[params].datatype}</span> - <span class="var-name">{$methods[methods].params[params].var}</span>{if $methods[methods].params[params].data}<span class="var-description">: {$methods[methods].params[params].data}</span>{/if} - </li> - {/section} - </ul> - {/if} - - {if $methods[methods].method_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$methods[methods].method_overrides.link}</dt> - {if $methods[methods].method_overrides.sdesc} - <dd>{$methods[methods].method_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - {if $methods[methods].method_implements} - <hr class="separator" /> - <div class="notes">Implementation of:</div> - {section name=imp loop=$methods[methods].method_implements} - <dl> - <dt>{$methods[methods].method_implements[imp].link}</dt> - {if $methods[methods].method_implements[imp].sdesc} - <dd>{$methods[methods].method_implements[imp].sdesc}</dd> - {/if} - </dl> - {/section} - {/if} - - {if $methods[methods].descmethod} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=dm loop=$methods[methods].descmethod} - <li> - {$methods[methods].descmethod[dm].link} - {if $methods[methods].descmethod[dm].sdesc} - : {$methods[methods].descmethod[dm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} -</div> -{/if} -{/section} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/page.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/page.tpl deleted file mode 100755 index b5980236..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/page.tpl +++ /dev/null @@ -1,211 +0,0 @@ -{include file="header.tpl" top3=true} - -<h2 class="file-name">{$source_location}</h2> - -<a name="sec-description"></a> -<div class="info-box"> - <div class="info-box-title">Description</div> - <div class="nav-bar"> - {if $classes || $includes || $defines || $globals || $functions} - <span class="disabled">Description</span> | - {/if} - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="docblock.tpl" desc=$desc sdesc=$sdesc tags=$tags} - - {if $tutorial} - <hr class="separator" /> - <div class="notes">Tutorial: <span class="tutorial">{$tutorial}</div> - {/if} - </div> -</div> - -{if $classes} - <a name="sec-classes"></a> - <div class="info-box"> - <div class="info-box-title">Classes</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - <span class="disabled">Classes</span> - {if $includes || $defines || $globals || $functions}|{/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - <table cellpadding="2" cellspacing="0" class="class-table"> - <tr> - <th class="class-table-header">Class</th> - <th class="class-table-header">Description</th> - </tr> - {section name=classes loop=$classes} - <tr> - <td style="padding-right: 2em; vertical-align: top"> - {$classes[classes].link} - </td> - <td> - {if $classes[classes].sdesc} - {$classes[classes].sdesc} - {else} - {$classes[classes].desc} - {/if} - </td> - </tr> - {/section} - </table> - </div> - </div> -{/if} - -{if $includes} - <a name="sec-includes"></a> - <div class="info-box"> - <div class="info-box-title">Includes</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - <span class="disabled">Includes</span> - {if $defines || $globals || $functions}|{/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="include.tpl"} - </div> - </div> -{/if} - -{if $defines} - <a name="sec-constants"></a> - <div class="info-box"> - <div class="info-box-title">Constants</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - <span class="disabled">Constants</span> - {if $globals || $functions}|{/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="define.tpl"} - </div> - </div> -{/if} - -{if $globals} - <a name="sec-variables"></a> - <div class="info-box"> - <div class="info-box-title">Variables</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - <span class="disabled">Variables</span> - {if $functions}|{/if} - {if $functions} - <a href="#sec-functions">Functions</a> - {/if} - </div> - <div class="info-box-body"> - {include file="global.tpl"} - </div> - </div> -{/if} - -{if $functions} - <a name="sec-functions"></a> - <div class="info-box"> - <div class="info-box-title">Functions</div> - <div class="nav-bar"> - <a href="#sec-description">Description</a> | - {if $classes} - <a href="#sec-classes">Classes</a> - {if $includes || $defines || $globals || $functions}|{/if} - {/if} - {if $includes} - <a href="#sec-includes">Includes</a> - {if $defines || $globals || $functions}|{/if} - {/if} - {if $defines} - <a href="#sec-constants">Constants</a> - {if $globals || $functions}|{/if} - {/if} - {if $globals} - <a href="#sec-variables">Variables</a> - {if $functions}|{/if} - {/if} - <span class="disabled">Functions</span> - </div> - <div class="info-box-body"> - {include file="function.tpl"} - </div> - </div> -{/if} - -{include file="footer.tpl" top3=true} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/pkgelementindex.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/pkgelementindex.tpl deleted file mode 100755 index dc283ad0..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/pkgelementindex.tpl +++ /dev/null @@ -1,17 +0,0 @@ -{include file="header.tpl"} -<a name="top"></a> -<h2>[{$package}] element index</h2> -{if count($packageindex) > 1} - <h3>Package indexes</h3> - <ul> - {section name=p loop=$packageindex} - {if $packageindex[p].title != $package} - <li><a href="elementindex_{$packageindex[p].title}.html">{$packageindex[p].title}</a></li> - {/if} - {/section} - </ul> -{/if} -<a href="elementindex.html">All elements</a> -<br /> -{include file="basicindex.tpl" indexname=elementindex_$package} -{include file="footer.tpl"} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/ric.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/ric.tpl deleted file mode 100755 index eff734c1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/ric.tpl +++ /dev/null @@ -1,6 +0,0 @@ -{include file="header.tpl"} -<h1 align="center">{$name}</h1> -<pre> -{$contents|htmlentities} -</pre> -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/todolist.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/todolist.tpl deleted file mode 100755 index f929ccdb..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/todolist.tpl +++ /dev/null @@ -1,14 +0,0 @@ -{include file="header.tpl" title="Todo List"} -<div align="center"><h1>Todo List</h1></div> -{foreach from=$todos key=todopackage item=todo} -<h2>{$todopackage}</h2> -{section name=todo loop=$todo} -<h3>{$todo[todo].link}</h3> -<ul> -{section name=t loop=$todo[todo].todos} - <li>{$todo[todo].todos[t]}</li> -{/section} -</ul> -{/section} -{/foreach} -{include file="footer.tpl"}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/top_frame.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/top_frame.tpl deleted file mode 100755 index 36d1e5a1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/top_frame.tpl +++ /dev/null @@ -1,45 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - <html xmlns="http://www.w3.org/1999/xhtml"> - <head> - <!-- template designed by Marco Von Ballmoos --> - <title>{$title}</title> - <link rel="stylesheet" href="{$subdir}media/stylesheet.css" /> - <link rel="stylesheet" href="{$subdir}media/banner.css" /> - <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> - </head> - <body> - <div class="banner"> - <div class="banner-title">{$package}</div> - <div class="banner-menu"> - <form> - <table cellpadding="0" cellspacing="0" style="width: 100%"> - <tr> - <td> - {if count($ric) >= 1} - {assign var="last_ric_name" value=""} - {section name=ric loop=$ric} - {if $last_ric_name != ""} | {/if} - <a href="{$ric[ric].file}" target="right">{$ric[ric].name}</a> - {assign var="last_ric_name" value=$ric[ric].name} - {/section} - {/if} - </td> - <td style="width: 2em"> </td> - <td style="text-align: right"> - {if count($packages) > 1} - <span class="field">Packages</span> - <select class="package-selector" onchange="window.parent.left_bottom.location=this[selectedIndex].value"> - {section name=p loop=$packages} - <option value="{$packages[p].link}">{$packages[p].title}</option> - {/section} - </select> - {/if} - </td> - </tr> - </table> - </form> - </div> - </div> - </body> - </html> diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/tutorial.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/tutorial.tpl deleted file mode 100755 index 3b9109d1..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/tutorial.tpl +++ /dev/null @@ -1,13 +0,0 @@ -{include file="header.tpl" title=$title top3=true} - -{if $nav} - {include file="tutorial_nav.tpl" prev=$prev next=$next up=$up prevtitle=$prevtitle nexttitle=$nexttitle uptitle=$uptitle} -{/if} - -{$contents} - -{if $nav} - {include file="tutorial_nav.tpl" prev=$prev next=$next up=$up prevtitle=$prevtitle nexttitle=$nexttitle uptitle=$uptitle} -{/if} - -{include file="footer.tpl" top3=true}
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/tutorial_nav.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/tutorial_nav.tpl deleted file mode 100755 index 89952301..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/tutorial_nav.tpl +++ /dev/null @@ -1,41 +0,0 @@ -<table class="tutorial-nav-box"> - <tr> - <td style="width: 30%"> - {if $prev} - <a href="{$prev}" class="nav-button">Previous</a> - {else} - <span class="nav-button-disabled">Previous</span> - {/if} - </td> - <td style="text-align: center"> - {if $up} - <a href="{$up}" class="nav-button">Up</a> - {/if} - </td> - <td style="text-align: right; width: 30%"> - {if $next} - <a href="{$next}" class="nav-button">Next</a> - {else} - <span class="nav-button-disabled">Next</span> - {/if} - </td> - </tr> - <tr> - <td style="width: 30%"> - {if $prevtitle} - <span class="detail">{$prevtitle}</span> - {/if} - </td> - <td style="text-align: center"> - {if $uptitle} - <span class="detail">{$uptitle}</span> - {/if} - </td> - <td style="text-align: right; width: 30%"> - {if $nexttitle} - <span class="detail">{$nexttitle}</span> - {/if} - </td> - </tr> -</table> -
\ No newline at end of file diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/tutorial_toc.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/tutorial_toc.tpl deleted file mode 100755 index 3482249b..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/tutorial_toc.tpl +++ /dev/null @@ -1,40 +0,0 @@ -{if count($toc)} -<h1 class="title">Table of Contents</h1> -<ul class="toc"> - {assign var="lastcontext" value='refsect1'} - {section name=toc loop=$toc} - - {if $toc[toc].tagname != $lastcontext} - {if $lastcontext == 'refsect1'} - <ul class="toc"> - <li>{$toc[toc].link}</li> - {else} - {if $lastcontext == 'refsect2'} - {if $toc[toc].tagname == 'refsect1'} - </ul> - <li>{$toc[toc].link}</li> - {/if} - {if $toc[toc].tagname == 'refsect3'} - <ul class="toc"> - <li>{$toc[toc].link}</li> - {/if} - {else} - </ul> - </ul> - <li>{$toc[toc].link}</li> - {/if} - {/if} - {assign var="lastcontext" value=$toc[toc].tagname} - {else} - <li>{$toc[toc].link}</li> - {/if} - {/section} - {if $lastcontext == 'refsect2'} - </ul> - {/if} - {if $lastcontext == 'refsect3'} - </ul> - </ul> - {/if} -</ul> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/tutorial_tree.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/tutorial_tree.tpl deleted file mode 100755 index 617b5654..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/tutorial_tree.tpl +++ /dev/null @@ -1,6 +0,0 @@ -<div><a href="{$main.link}" target="right">{$main.title|strip_tags}</a></div> -{if $haskids} -<div style="margin-left: 1em"> - {$kids} -</div> -{/if} diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/var.tpl b/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/var.tpl deleted file mode 100755 index fccf6892..00000000 --- a/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/phphtmllib/templates/var.tpl +++ /dev/null @@ -1,92 +0,0 @@ -{section name=vars loop=$vars} -{if $vars[vars].static} -<a name="var{$vars[vars].var_name}" id="{$vars[vars].var_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="var-header"> - <span class="var-title"> - static <span class="var-type">{$vars[vars].var_type}</span> - <span class="var-name">{$vars[vars].var_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$vars[vars].var_default|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} - - {if $vars[vars].var_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$vars[vars].var_overrides.link}</dt> - {if $vars[vars].var_overrides.sdesc} - <dd>{$vars[vars].var_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - - {if $vars[vars].descvar} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=vm loop=$vars[vars].descvar} - <li> - {$vars[vars].descvar[vm].link} - {if $vars[vars].descvar[vm].sdesc} - : {$vars[vars].descvar[vm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} - -</div> -{/if} -{/section} - -{section name=vars loop=$vars} -{if !$vars[vars].static} -<a name="var{$vars[vars].var_name}" id="{$vars[vars].var_name}"><!-- --></A> -<div class="{cycle values="evenrow,oddrow"}"> - - <div class="var-header"> - <span class="var-title"> - <span class="var-type">{$vars[vars].var_type}</span> - <span class="var-name">{$vars[vars].var_name}</span> - {if $vars[vars].var_default} = <span class="var-default">{$vars[vars].var_default|replace:"\n":"<br />"}</span>{/if} - (line <span class="line-number">{if $vars[vars].slink}{$vars[vars].slink}{else}{$vars[vars].line_number}{/if}</span>) - </span> - </div> - - {include file="docblock.tpl" sdesc=$vars[vars].sdesc desc=$vars[vars].desc tags=$vars[vars].tags} - - {if $vars[vars].var_overrides} - <hr class="separator" /> - <div class="notes">Redefinition of:</div> - <dl> - <dt>{$vars[vars].var_overrides.link}</dt> - {if $vars[vars].var_overrides.sdesc} - <dd>{$vars[vars].var_overrides.sdesc}</dd> - {/if} - </dl> - {/if} - - {if $vars[vars].descvar} - <hr class="separator" /> - <div class="notes">Redefined in descendants as:</div> - <ul class="redefinitions"> - {section name=vm loop=$vars[vars].descvar} - <li> - {$vars[vars].descvar[vm].link} - {if $vars[vars].descvar[vm].sdesc} - : {$vars[vars].descvar[vm].sdesc} - {/if} - </li> - {/section} - </ul> - {/if} - -</div> -{/if} -{/section} - |