initial commit

This commit is contained in:
Pavol Rusnak 2011-04-08 17:13:58 +02:00
commit 20fa5174b0
5 changed files with 65 additions and 0 deletions

1
CHANGELOG Normal file
View file

@ -0,0 +1 @@
Please refer to the changelog at http://www.dokuwiki.org/plugin:nextday

19
LICENSE Normal file
View file

@ -0,0 +1,19 @@
Copyright (c) 2011 Pavol Rusnak
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

1
README Normal file
View file

@ -0,0 +1 @@
Please refer to the documentation at http://www.dokuwiki.org/plugin:nextday

7
plugin.info.txt Normal file
View file

@ -0,0 +1,7 @@
base nextday
author Pavol Rusnak
email stick@gk2.sk
date 2011-04-08
name Nextday Plugin
desc Display the date of the closest $WEEKDAY
url http://www.dokuwiki.org/plugin:nextday

37
syntax.php Normal file
View file

@ -0,0 +1,37 @@
<?php
/**
* Nextday Plugin: Display the date of the closest $WEEKDAY
*
* @license MIT (http://www.opensource.org/licenses/mit-license.php)
* @author Pavol Rusnak <stick@gk2.sk>
*/
if(!defined('DOKU_INC')) define('DOKU_INC',realpath(dirname(__FILE__).'/../../').'/');
if(!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
require_once(DOKU_PLUGIN.'syntax.php');
class syntax_plugin_nextday extends DokuWiki_Syntax_Plugin {
function getType() { return 'substition'; }
function getPType() { return 'normal'; }
function getSort() { return 155; }
function connectTo($mode) {
$this->Lexer->addSpecialPattern('~~NEXTDAY:[^~]*~~',$mode,'plugin_nextday');
}
function handle($match, $state, $pos, &$handler) {
$day = strtotime('next friday', strtotime('yesterday'));
return strftime('%d %B %Y', $day);
}
function render($mode, &$renderer, $data) {
$renderer->doc .= $data;
return true;
}
}
?>