From ad94faf3342997476e4b27acd8f64e5a1d6dbfa3 Mon Sep 17 00:00:00 2001 From: Tim Schumacher Date: Tue, 26 Nov 2013 20:58:18 +0100 Subject: [PATCH] Remove the plugin foo from the objectrepresentation repo. Fixes T5 --- plugin.info.txt | 7 ---- syntax.php | 90 ------------------------------------------------- 2 files changed, 97 deletions(-) delete mode 100644 plugin.info.txt delete mode 100644 syntax.php diff --git a/plugin.info.txt b/plugin.info.txt deleted file mode 100644 index af22be1..0000000 --- a/plugin.info.txt +++ /dev/null @@ -1,7 +0,0 @@ -base objectrepresentation -author Tim Schumacher -email tim@bandenkrieg.hacked.jp -date 2013-11-12 -name object representation -desc Include the current date and time -url http://www.dokuwiki.org/devel:syntax_plugins \ No newline at end of file diff --git a/syntax.php b/syntax.php deleted file mode 100644 index 6d79688..0000000 --- a/syntax.php +++ /dev/null @@ -1,90 +0,0 @@ - - */ - -// must be run within DokuWiki -if (!defined ('DOKU_INC')) die(); - -if (!defined ('DOKU_PLUGIN')) define('DOKU_PLUGIN', DOKU_INC . 'lib/plugins/'); -require_once DOKU_PLUGIN . 'syntax.php'; - -require_once dirname (__FILE__) . DIRECTORY_SEPARATOR . 'DokuWikiObjectRepresentation.class.php'; - -/** - * All DokuWiki plugins to extend the parser/rendering mechanism - * need to inherit from this class - */ -class syntax_plugin_objectrepresentation extends DokuWiki_Syntax_Plugin { - - function getInfo () { - return array ('author' => 'me', - 'email' => 'me@someplace.com', - 'date' => '2005-07-28', - 'name' => 'Now Plugin', - 'desc' => 'Include the current date and time', - 'url' => 'http://www.dokuwiki.org/devel:syntax_plugins'); - } - - function getType () { - return 'substition'; - } - - function getSort () { - return 32; - } - - function connectTo ($mode) { - $this->Lexer->addSpecialPattern('{{indexmenu_n>(\d+)}}',$mode,'plugin_objectrepresentation'); - $this->Lexer->addSpecialPattern ('\[NOW\]', $mode, 'plugin_objectrepresentation'); - } - - function handle ($match, $state, $pos, &$handler) { - return array ($match, $state, $pos); - } - - function render ($mode, &$renderer, $data) { - global $ID; - - $iter = new DokuWikiIterator(); - - $iter->all(function(DokuWikiNode $node) { - if (preg_match('/{{indexmenu_n>(\d+)}}/',$node->getContent(),$matches)) { - $node->setMetaData('sortorder',$matches[1]); - } else { - $node->setMetaData('sortorder',9999999); - } - }); - - $iter->all(function(DokuWikiNode $node){ - if ($node instanceof DokuWikiNameSpace) { - $node->nodes->uasort(function(DokuWikiNode $a,DokuWikiNode $b){ - if ($a->getMetaData('sortorder') == $b->getMetaData('sortorder')) { - return 0; - } - return ($a->getMetaData('sortorder') < $b->getMetaData('sortorder')) ? -1 : 1; - }); - } - }); - - $content = ''; - - // $data is what the function handle return'ed. - if ($mode == 'xhtml') { - $renderer->doc .= $content; - return true; - } - return false; - } -} \ No newline at end of file