0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
lib
/
pear
/
Text
/
Wiki
/
[
Home
]
File: Mediawiki.php
<?php // vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: /** * Parse structured wiki text and render into arbitrary formats such as XHTML. * This is the Text_Wiki extension for Mediawiki markup * * PHP versions 4 and 5 * * @category Text * @package Text_Wiki * @author Bertrand Gugger <bertrand@toggg.com> * @author Paul M. Jones <pmjones@php.net> * @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1 * @version CVS: $Id: Mediawiki.php 284672 2009-07-24 00:11:28Z rodrigosprimo $ * @link http://pear.php.net/package/Text_Wiki */ /** * "master" class for handling the management and convenience */ require_once('Text/Wiki.php'); /** * Base Text_Wiki handler class extension for Mediawiki markup * * @category Text * @package Text_Wiki * @author Bertrand Gugger <bertrand@toggg.com> * @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1 * @version Release: @package_version@ * @link http://pear.php.net/package/Text_Wiki * @see Text_Wiki::Text_Wiki() */ class Text_Wiki_Mediawiki extends Text_Wiki { var $rules = array( 'Prefilter', 'Delimiter', 'Code', 'Comment', 'Preformatted', // 'Plugin', // 'Function', // 'Html', 'Raw', // 'Include', // 'Embed', // 'Page', // 'Anchor', 'Heading', 'Toc', // 'Titlebar', 'Horiz', 'Redirect', 'Break', // 'Blockquote', // 'Box', 'Url', // must run before Wikilink and Emphasis (as link labels sometimes have Emphasis) 'Wikilink', // 'Image', // done by Wikilink but still possible to disable/configure // 'Interwiki', // done by Wikilink but still possible to disable/configure 'Table', // 'Phplookup', // 'Center', 'List', 'Deflist', // 'Strong', ** will be only fake inserted by Emphasis if needed for render 'Emphasis', // must run before Newline (see Text_Wiki_Parse_Emphasis::parse()) 'Newline', 'Paragraph', // 'Freelink', // 'Colortext', // 'Bold', // 'Italic', // 'Underline', 'Tt', 'Superscript', 'Subscript', // 'Specialchar', // 'Revise', 'Tighten' ); /** * Constructor: just adds the path to Mediawiki rules * * @access public * @param array $rules The set of rules to load for this object. */ function Text_Wiki_Mediawiki($rules = null) { parent::Text_Wiki($rules); $this->addPath('parse', $this->fixPath(dirname(__FILE__)).'Parse/Mediawiki'); } } ?>