!C99Shell v. 1.0 pre-release build #13!

Software: Apache. PHP/5.5.15 

uname -a: Windows NT SVR-DMZ 6.1 build 7600 (Windows Server 2008 R2 Enterprise Edition) i586 

SYSTEM 

Safe-mode: OFF (not secure)

C:\dmz\php\pear\phing\tasks\ext\docblox\   drwxrwxrwx
Free 4.11 GB of 39.52 GB (10.4%)
Detected drives: [ a ] [ c ] [ d ] [ e ] [ f ]
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     DocBloxTask.php (6.06 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*
 *  $Id: DocBloxTask.php 1389 2011-12-17 12:14:19Z mrook $
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * This software consists of voluntary contributions made by many individuals
 * and is licensed under the LGPL. For more information please see
 * <http://phing.info>.
 */

require_once 'phing/Task.php';
require_once 
'phing/system/io/FileOutputStream.php';

/**
 * DocBlox Task (http://www.docblox-project.org)
 *
 * @author    Michiel Rook <mrook@php.net>
 * @version   $Revision: 1389 $
 * @since     2.4.6
 * @package   phing.tasks.ext.docblox
 */
class DocBloxTask extends Task
{
    
/**
     * List of filesets
     * @var FileSet[]
     */
    
private $filesets = array();
    
    
/**
     * Destination/target directory
     * @var PhingFile
     */
    
private $destDir null;
    
    
/**
     * Title of the project
     * @var string
     */
    
private $title "";
    
    
/**
     * Force DocBlox to be quiet
     * @var boolean
     */
    
private $quiet true;
    
    
/**
     * Nested creator, adds a set of files (nested fileset attribute).
     * 
     * @return FileSet
     */
    
public function createFileSet()
    {
        
$num array_push($this->filesets, new FileSet());
        return 
$this->filesets[$num-1];
    }
    
    
/**
     * Sets destination/target directory
     * @param PhingFile $destDir
     */
    
public function setDestDir(PhingFile $destDir)
    {
        
$this->destDir $destDir;
    }

    
/**
     * Convenience setter (@see setDestDir)
     * @param PhingFile $output
     */
    
public function setOutput(PhingFile $output)
    {
        
$this->destDir $output;
    }
    
    
/**
     * Sets the title of the project
     * @param strings $title
     */
    
public function setTitle($title)
    {
        
$this->title = (string) $title;
    }
    
    
/**
     * Forces DocBlox to be quiet
     * @param boolean $quiet
     */
    
public function setQuiet($quiet)
    {
        
$this->quiet = (boolean) $quiet;
    }
    
    
/**
     * Finds and initializes the DocBlox installation
     */
    
private function initializeDocBlox()
    {
        
$docbloxPath null;
        
        foreach (
explode(PATH_SEPARATORget_include_path()) as $path) {
            
$testDocBloxPath $path DIRECTORY_SEPARATOR 'DocBlox' DIRECTORY_SEPARATOR 'src';

            if (
file_exists($testDocBloxPath)) {
                
$docbloxPath $testDocBloxPath;
            }
        }

        if (empty(
$docbloxPath)) {
            throw new 
BuildException("Please make sure DocBlox is installed and on the include_path."$this->getLocation());
        }
        
        
set_include_path($docbloxPath PATH_SEPARATOR get_include_path());
        
        require_once 
$docbloxPath.'/DocBlox/Bootstrap.php';
            
        
$bootstrap DocBlox_Bootstrap::createInstance();
            
        
$autoloader $bootstrap->registerAutoloader();
            
        if (
$this->quiet) {
            
DocBlox_Core_Abstract::config()->logging->level 'quiet';
        } else {
            
DocBlox_Core_Abstract::config()->logging->level 'debug';
        }
            
        
$bootstrap->registerPlugins($autoloader);
    }
    
    
/**
     * Build a list of files (from the fileset elements) and call the DocBlox parser
     * @return string
     */
    
private function parseFiles()
    {
        
$parser = new DocBlox_Parser();
        
DocBlox_Parser_Abstract::$event_dispatcher = new sfEventDispatcher();
        
$parser->setTitle($this->title);
        
        
$paths = array();
        
        
// filesets
        
foreach ($this->filesets as $fs) {
            
$ds    $fs->getDirectoryScanner($this->project);
            
$dir   $fs->getDir($this->project);
            
$srcFiles $ds->getIncludedFiles();
            
            foreach (
$srcFiles as $file) {
                
$paths[] = $dir FileSystem::getFileSystem()->getSeparator() . $file;
            }
        }
        
        
$this->log("Will parse " count($paths) . " file(s)"Project::MSG_VERBOSE);
        
        
$files = new DocBlox_Parser_Files();
        
$files->addFiles($paths);
        
        
$parser->setPath($files->getProjectRoot());
        
        return 
$parser->parseFiles($files);
    }

    
/**
     * Task entry point
     * @see Task::main()
     */
    
public function main()
    {
        if (empty(
$this->destDir)) {
            throw new 
BuildException("You must supply the 'destdir' attribute"$this->getLocation());
        }
        
        if (empty(
$this->filesets)) {
            throw new 
BuildException("You have not specified any files to include (<fileset>)"$this->getLocation());
        }
        
        
$this->initializeDocBlox();
        
        
$xml $this->parseFiles();
        
        
$this->log("Transforming..."Project::MSG_VERBOSE);
        
        
$transformer = new DocBlox_Transformer();
        
$transformer->setTemplatesPath(DocBlox_Core_Abstract::config()->paths->templates);
        
$transformer->setTemplates(DocBlox_Core_Abstract::config()->transformations->template->name);
        
$transformer->setSource($xml);
        
$transformer->setTarget($this->destDir->getAbsolutePath());
        
$transformer->execute();
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0312 ]--