예제 #1
0
 function ContentParser()
 {
     global $CONFIG;
     parent::Parser();
     $this->html_auth =& $CONFIG['html_auth'];
     $this->forbidden_tags =& $CONFIG['forbidden_tags'];
 }
예제 #2
0
 function __construct()
 {
     #
     # Constructor function. Initialize the parser object.
     #
     # Add extra escapable characters before parent constructor
     # initialize the table.
     $this->escape_chars .= ':|';
     # Insert extra document, block, and span transformations.
     # Parent constructor will do the sorting.
     $this->document_gamut += array("doFencedCodeBlocks" => 5, "stripFootnotes" => 15, "stripAbbreviations" => 25, "appendFootnotes" => 50);
     $this->block_gamut += array("doFencedCodeBlocks" => 5, "doTables" => 15, "doDefLists" => 45);
     $this->span_gamut += array("doFootnotes" => 5, "doAbbreviations" => 70);
     parent::Parser();
 }
 function BBCodeHighlighter()
 {
     parent::Parser();
 }
예제 #4
0
 function DocParser($aFile)
 {
     parent::Parser($aFile);
 }
 function ContentUnparser()
 {
     parent::Parser();
 }
예제 #6
0
 function DBParser($aProjname, $aFile, $aDB)
 {
     $this->iDB = $aDB;
     $this->iLogNbr = 0;
     $this->iProjName = $aProjname;
     parent::Parser($aFile);
 }
 function TemplateHighlighter()
 {
     parent::Parser();
 }
 function ContentSecondParser()
 {
     parent::Parser();
 }