Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* update class names
  • Loading branch information
till committed Mar 20, 2011
1 parent d777d49 commit 0bb8521
Show file tree
Hide file tree
Showing 38 changed files with 46 additions and 50 deletions.
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Anchor.php
Expand Up @@ -33,7 +33,7 @@
*
*/

class Text_Wiki2_Parse_Anchor extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Anchor extends Text_Wiki2_Parse {


/**
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Blockquote.php
Expand Up @@ -33,7 +33,7 @@
*
*/

class Text_Wiki2_Parse_Blockquote extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Blockquote extends Text_Wiki2_Parse {


/**
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Bold.php
Expand Up @@ -34,7 +34,7 @@
*
*/

class Text_Wiki2_Parse_Bold extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Bold extends Text_Wiki2_Parse {


/**
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Break.php
Expand Up @@ -31,7 +31,7 @@
*
*/

class Text_Wiki2_Parse_Break extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Break extends Text_Wiki2_Parse {


/**
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Center.php
Expand Up @@ -31,7 +31,7 @@
*
*/

class Text_Wiki2_Parse_Center extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Center extends Text_Wiki2_Parse {


/**
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Code.php
Expand Up @@ -35,7 +35,7 @@
*
*/

class Text_Wiki2_Parse_Code extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Code extends Text_Wiki2_Parse {


/**
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Colortext.php
Expand Up @@ -28,7 +28,7 @@
*
*/

class Text_Wiki2_Parse_Colortext extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Colortext extends Text_Wiki2_Parse {

/**
*
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Deflist.php
Expand Up @@ -35,7 +35,7 @@
*
*/

class Text_Wiki2_Parse_Deflist extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Deflist extends Text_Wiki2_Parse {


/**
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Delimiter.php
Expand Up @@ -33,7 +33,7 @@
*
*/

class Text_Wiki2_Parse_Delimiter extends Text_Wiki2_Parse
class Text_Wiki2_Parse_Default_Delimiter extends Text_Wiki2_Parse
{

/**
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Embed.php
Expand Up @@ -38,7 +38,7 @@
*
*/

class Text_Wiki2_Parse_Embed extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Embed extends Text_Wiki2_Parse {

var $conf = array(
'base' => '/path/to/scripts/'
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Emphasis.php
Expand Up @@ -33,7 +33,7 @@
*
*/

class Text_Wiki2_Parse_emphasis extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_emphasis extends Text_Wiki2_Parse {


/**
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Freelink.php
Expand Up @@ -39,7 +39,7 @@
*
*/

class Text_Wiki2_Parse_Freelink extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Freelink extends Text_Wiki2_Parse {

var $conf = array (
'utf-8' => false
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Function.php
Expand Up @@ -28,7 +28,7 @@
*
*/

class Text_Wiki2_Parse_Function extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Function extends Text_Wiki2_Parse {

var $regex = '/^(\<function\>)\n(.+)\n(\<\/function\>)(\s|$)/Umsi';

Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Heading.php
Expand Up @@ -34,7 +34,7 @@
*
*/

class Text_Wiki2_Parse_Heading extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Heading extends Text_Wiki2_Parse {


/**
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Horiz.php
Expand Up @@ -31,7 +31,7 @@
*
*/

class Text_Wiki2_Parse_Horiz extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Horiz extends Text_Wiki2_Parse {


/**
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Html.php
Expand Up @@ -32,7 +32,7 @@
*
*/

class Text_Wiki2_Parse_Html extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Html extends Text_Wiki2_Parse {


/**
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Image.php
Expand Up @@ -28,7 +28,7 @@
*
*/

class Text_Wiki2_Parse_Image extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Image extends Text_Wiki2_Parse {

/**
* URL schemes recognized by this rule.
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Include.php
Expand Up @@ -38,7 +38,7 @@
*
*/

class Text_Wiki2_Parse_Include extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Include extends Text_Wiki2_Parse {

var $conf = array(
'base' => '/path/to/scripts/'
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Interwiki.php
Expand Up @@ -32,7 +32,7 @@
*
*/

class Text_Wiki2_Parse_Interwiki extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Interwiki extends Text_Wiki2_Parse {

// double-colons wont trip up now
var $regex = '([A-Za-z0-9_]+):((?!:)[A-Za-z0-9_\/=&~#.:;-]+)';
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Italic.php
Expand Up @@ -33,7 +33,7 @@
*
*/

class Text_Wiki2_Parse_Italic extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Italic extends Text_Wiki2_Parse {


/**
Expand Down
7 changes: 2 additions & 5 deletions Text/Wiki2/Parse/Default/List.php
@@ -1,5 +1,4 @@
<?php

/**
*
* Parses for bulleted and numbered lists.
Expand Down Expand Up @@ -36,9 +35,8 @@
*
*/

class Text_Wiki2_Parse_List extends Text_Wiki2_Parse {


class Text_Wiki2_Parse_Default_List extends Text_Wiki2_Parse
{
/**
*
* The regular expression used to parse the source text and find
Expand Down Expand Up @@ -259,4 +257,3 @@ function process(&$matches)
return "\n\n" . $return . "\n\n";
}
}
?>
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Newline.php
Expand Up @@ -32,7 +32,7 @@
*
*/

class Text_Wiki2_Parse_Newline extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Newline extends Text_Wiki2_Parse {


/**
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Paragraph.php
Expand Up @@ -32,7 +32,7 @@
*
*/

class Text_Wiki2_Parse_Paragraph extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Paragraph extends Text_Wiki2_Parse {

/**
*
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Phplookup.php
Expand Up @@ -28,7 +28,7 @@
*
*/

class Text_Wiki2_Parse_Phplookup extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Phplookup extends Text_Wiki2_Parse {


/**
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Prefilter.php
Expand Up @@ -33,7 +33,7 @@
*
*/

class Text_Wiki2_Parse_Prefilter extends Text_Wiki2_Parse
class Text_Wiki2_Parse_Default_Prefilter extends Text_Wiki2_Parse
{
/**
*
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Raw.php
Expand Up @@ -32,7 +32,7 @@
*
*/

class Text_Wiki2_Parse_Raw extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Raw extends Text_Wiki2_Parse {


/**
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Revise.php
Expand Up @@ -28,7 +28,7 @@
*
*/

class Text_Wiki2_Parse_Revise extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Revise extends Text_Wiki2_Parse {


/**
Expand Down
4 changes: 2 additions & 2 deletions Text/Wiki2/Parse/Default/Smiley.php
Expand Up @@ -30,7 +30,7 @@
* @link http://pear.php.net/package/Text_Wiki
* @see Text_Wiki2_Parse::Text_Wiki2_Parse()
*/
class Text_Wiki2_Parse_Smiley extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Smiley extends Text_Wiki2_Parse {

/**
* Configuration keys for this rule
Expand Down Expand Up @@ -91,7 +91,7 @@ class Text_Wiki2_Parse_Smiley extends Text_Wiki2_Parse {
* @return The parser object
* @access public
*/
function Text_Wiki2_Parse_Smiley(&$obj)
function Text_Wiki2_Parse_Default_Smiley(&$obj)
{
$default = $this->conf;
parent::Text_Wiki2_Parse($obj);
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Strong.php
Expand Up @@ -35,7 +35,7 @@
*
*/

class Text_Wiki2_Parse_Strong extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Strong extends Text_Wiki2_Parse {


/**
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Subscript.php
Expand Up @@ -28,7 +28,7 @@
*
*/

class Text_Wiki2_Parse_Subscript extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Subscript extends Text_Wiki2_Parse {


/**
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Superscript.php
Expand Up @@ -28,7 +28,7 @@
*
*/

class Text_Wiki2_Parse_Superscript extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Superscript extends Text_Wiki2_Parse {


/**
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Table.php
Expand Up @@ -34,7 +34,7 @@
*
*/

class Text_Wiki2_Parse_Table extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Table extends Text_Wiki2_Parse {


/**
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Tighten.php
Expand Up @@ -29,7 +29,7 @@
*
*/

class Text_Wiki2_Parse_Tighten extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Tighten extends Text_Wiki2_Parse {


/**
Expand Down
2 changes: 1 addition & 1 deletion Text/Wiki2/Parse/Default/Toc.php
Expand Up @@ -33,7 +33,7 @@
*/


class Text_Wiki2_Parse_Toc extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Toc extends Text_Wiki2_Parse {


/**
Expand Down
4 changes: 2 additions & 2 deletions Text/Wiki2/Parse/Default/Tt.php
Expand Up @@ -37,7 +37,7 @@
*
*/

class Text_Wiki2_Parse_Tt extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Tt extends Text_Wiki2_Parse {


/**
Expand Down Expand Up @@ -81,4 +81,4 @@ function process(&$matches)
return $start . $matches[1] . $end;
}
}
?>
?>
7 changes: 3 additions & 4 deletions Text/Wiki2/Parse/Default/Underline.php
Expand Up @@ -34,9 +34,8 @@
*
*/

class Text_Wiki2_Parse_Underline extends Text_Wiki2_Parse {


class Text_Wiki2_Parse_Default_Underline extends Text_Wiki2_Parse
{
/**
*
* The regular expression used to parse the source text and find
Expand Down Expand Up @@ -76,4 +75,4 @@ function process(&$matches)
return $start . $matches[1] . $end;
}
}
?>
?>
5 changes: 2 additions & 3 deletions Text/Wiki2/Parse/Default/Url.php
Expand Up @@ -49,9 +49,8 @@
*
*/

class Text_Wiki2_Parse_Url extends Text_Wiki2_Parse {


class Text_Wiki2_Parse_Default_Url extends Text_Wiki2_Parse
{
/**
*
* Keeps a running count of numbered-reference URLs.
Expand Down
5 changes: 3 additions & 2 deletions Text/Wiki2/Parse/Default/Wikilink.php
Expand Up @@ -42,7 +42,8 @@
*
*/

class Text_Wiki2_Parse_Wikilink extends Text_Wiki2_Parse {
class Text_Wiki2_Parse_Default_Wikilink extends Text_Wiki2_Parse
{

var $conf = array (
'ext_chars' => false,
Expand All @@ -62,7 +63,7 @@ class Text_Wiki2_Parse_Wikilink extends Text_Wiki2_Parse {
*
*/

function Text_Wiki2_Parse_Wikilink(&$obj)
function Text_Wiki2_Parse_Default_Wikilink(&$obj)
{
parent::__construct($obj);

Expand Down

0 comments on commit 0bb8521

Please sign in to comment.