xref: /dokuwiki/inc/parser/handler.php (revision 04ebd2145bc2b2c00d7912b1ab0fc6b8808c6bf1)
10cecf9d5Sandi<?php
20cecf9d5Sandiif(!defined('DOKU_INC')) define('DOKU_INC',realpath(dirname(__FILE__).'/../../').'/');
30cecf9d5Sandi
40cecf9d5Sandiclass Doku_Handler {
50cecf9d5Sandi
60cecf9d5Sandi    var $Renderer = NULL;
70cecf9d5Sandi
80cecf9d5Sandi    var $CallWriter = NULL;
90cecf9d5Sandi
100cecf9d5Sandi    var $calls = array();
110cecf9d5Sandi
12e1c10e4dSchris    var $status = array(
1344881bd0Shenning.noren        'section' => false,
1435dae8b0SBen Coburn        'section_edit_start' => -1,
1535dae8b0SBen Coburn        'section_edit_level' => 1,
1635dae8b0SBen Coburn        'section_edit_title' => ''
170cecf9d5Sandi    );
180cecf9d5Sandi
1944881bd0Shenning.noren    var $rewriteBlocks = true;
20b7c441b9SHarry Fuecks
210cecf9d5Sandi    function Doku_Handler() {
220cecf9d5Sandi        $this->CallWriter = & new Doku_Handler_CallWriter($this);
230cecf9d5Sandi    }
240cecf9d5Sandi
25433bef32Sandi    function _addCall($handler, $args, $pos) {
260cecf9d5Sandi        $call = array($handler,$args, $pos);
270cecf9d5Sandi        $this->CallWriter->writeCall($call);
280cecf9d5Sandi    }
290cecf9d5Sandi
30*04ebd214Schris    function addPluginCall($plugin, $args, $state, $pos) {
31*04ebd214Schris        $call = array('plugin',array($plugin, $args, $state), $pos);
32*04ebd214Schris        $this->CallWriter->writeCall($call);
33*04ebd214Schris    }
34*04ebd214Schris
35433bef32Sandi    function _finalize(){
36e1c10e4dSchris
37f4f02a0fSchris        $this->CallWriter->finalise();
38f4f02a0fSchris
39e1c10e4dSchris        if ( $this->status['section'] ) {
40e1c10e4dSchris           $last_call = end($this->calls);
41e1c10e4dSchris           array_push($this->calls,array('section_close',array(), $last_call[2]));
42b203781fSBen Coburn           if ($this->status['section_edit_start']>1) {
43b203781fSBen Coburn               // ignore last edit section if there is only one header
44b203781fSBen Coburn               array_push($this->calls,array('section_edit',array($this->status['section_edit_start'], 0, $this->status['section_edit_level'], $this->status['section_edit_title']), $last_call[2]));
45b203781fSBen Coburn           }
460cecf9d5Sandi        }
470cecf9d5Sandi
48b7c441b9SHarry Fuecks        if ( $this->rewriteBlocks ) {
490cecf9d5Sandi            $B = & new Doku_Handler_Block();
500cecf9d5Sandi            $this->calls = $B->process($this->calls);
51b7c441b9SHarry Fuecks        }
52e0ad864eSchris
5324bb549bSchris        trigger_event('PARSER_HANDLER_DONE',$this);
540cecf9d5Sandi
550cecf9d5Sandi        array_unshift($this->calls,array('document_start',array(),0));
560cecf9d5Sandi        $last_call = end($this->calls);
570cecf9d5Sandi        array_push($this->calls,array('document_end',array(),$last_call[2]));
580cecf9d5Sandi    }
590cecf9d5Sandi
600cecf9d5Sandi    function fetch() {
610cecf9d5Sandi        $call = each($this->calls);
620cecf9d5Sandi        if ( $call ) {
630cecf9d5Sandi            return $call['value'];
640cecf9d5Sandi        }
6544881bd0Shenning.noren        return false;
660cecf9d5Sandi    }
67ee20e7d1Sandi
68ee20e7d1Sandi
69ee20e7d1Sandi    /**
70ee20e7d1Sandi     * Special plugin handler
71ee20e7d1Sandi     *
72ee20e7d1Sandi     * This handler is called for all modes starting with 'plugin_'.
73ee20e7d1Sandi     * An additional parameter with the plugin name is passed
74ee20e7d1Sandi     *
75ee20e7d1Sandi     * @author Andreas Gohr <andi@splitbrain.org>
76ee20e7d1Sandi     */
77ee20e7d1Sandi    function plugin($match, $state, $pos, $pluginname){
78ee20e7d1Sandi        $data = array($match);
79a46d0d65SAndreas Gohr        $plugin =& plugin_load('syntax',$pluginname);
80a46d0d65SAndreas Gohr        if($plugin != null){
81f02a7d06Schris            $data = $plugin->handle($match, $state, $pos, $this);
82ee20e7d1Sandi        }
83*04ebd214Schris        $this->addPluginCall($pluginname,$data,$state,$pos);
8444881bd0Shenning.noren        return true;
85ee20e7d1Sandi    }
860cecf9d5Sandi
870cecf9d5Sandi    function base($match, $state, $pos) {
880cecf9d5Sandi        switch ( $state ) {
890cecf9d5Sandi            case DOKU_LEXER_UNMATCHED:
90433bef32Sandi                $this->_addCall('cdata',array($match), $pos);
9144881bd0Shenning.noren                return true;
920cecf9d5Sandi            break;
930cecf9d5Sandi
940cecf9d5Sandi        }
950cecf9d5Sandi    }
960cecf9d5Sandi
970cecf9d5Sandi    function header($match, $state, $pos) {
98b203781fSBen Coburn        global $conf;
99b203781fSBen Coburn
100d7e8115fSAndreas Gohr        // get level and title
101a4a2d4cfSAndreas Gohr        $title = trim($match);
102a4a2d4cfSAndreas Gohr        $level = 7 - strspn($title,'=');
103d7e8115fSAndreas Gohr        if($level < 1) $level = 1;
104a4a2d4cfSAndreas Gohr        $title = trim($title,'=');
105a4a2d4cfSAndreas Gohr        $title = trim($title);
1060cecf9d5Sandi
107e1c10e4dSchris        if ($this->status['section']) $this->_addCall('section_close',array(),$pos);
108e1c10e4dSchris
109b203781fSBen Coburn        if ($level<=$conf['maxseclevel']) {
11035dae8b0SBen Coburn            $this->_addCall('section_edit',array($this->status['section_edit_start'], $pos-1, $this->status['section_edit_level'], $this->status['section_edit_title']), $pos);
11135dae8b0SBen Coburn            $this->status['section_edit_start'] = $pos;
11235dae8b0SBen Coburn            $this->status['section_edit_level'] = $level;
11335dae8b0SBen Coburn            $this->status['section_edit_title'] = $title;
114b203781fSBen Coburn        }
11535dae8b0SBen Coburn
116433bef32Sandi        $this->_addCall('header',array($title,$level,$pos), $pos);
117e1c10e4dSchris
118e1c10e4dSchris        $this->_addCall('section_open',array($level),$pos);
11944881bd0Shenning.noren        $this->status['section'] = true;
12044881bd0Shenning.noren        return true;
1210cecf9d5Sandi    }
1220cecf9d5Sandi
1230cecf9d5Sandi    function notoc($match, $state, $pos) {
124e41c4da9SAndreas Gohr        $this->_addCall('notoc',array(),$pos);
12544881bd0Shenning.noren        return true;
1260cecf9d5Sandi    }
1270cecf9d5Sandi
1289dc2c2afSandi    function nocache($match, $state, $pos) {
1299dc2c2afSandi        $this->_addCall('nocache',array(),$pos);
13044881bd0Shenning.noren        return true;
1319dc2c2afSandi    }
1329dc2c2afSandi
1330cecf9d5Sandi    function linebreak($match, $state, $pos) {
134433bef32Sandi        $this->_addCall('linebreak',array(),$pos);
13544881bd0Shenning.noren        return true;
1360cecf9d5Sandi    }
1370cecf9d5Sandi
1380cecf9d5Sandi    function eol($match, $state, $pos) {
139433bef32Sandi        $this->_addCall('eol',array(),$pos);
14044881bd0Shenning.noren        return true;
1410cecf9d5Sandi    }
1420cecf9d5Sandi
1430cecf9d5Sandi    function hr($match, $state, $pos) {
144433bef32Sandi        $this->_addCall('hr',array(),$pos);
14544881bd0Shenning.noren        return true;
1460cecf9d5Sandi    }
1470cecf9d5Sandi
148433bef32Sandi    function _nestingTag($match, $state, $pos, $name) {
1490cecf9d5Sandi        switch ( $state ) {
1500cecf9d5Sandi            case DOKU_LEXER_ENTER:
151433bef32Sandi                $this->_addCall($name.'_open', array(), $pos);
1520cecf9d5Sandi            break;
1530cecf9d5Sandi            case DOKU_LEXER_EXIT:
154433bef32Sandi                $this->_addCall($name.'_close', array(), $pos);
1550cecf9d5Sandi            break;
1560cecf9d5Sandi            case DOKU_LEXER_UNMATCHED:
157433bef32Sandi                $this->_addCall('cdata',array($match), $pos);
1580cecf9d5Sandi            break;
1590cecf9d5Sandi        }
1600cecf9d5Sandi    }
1610cecf9d5Sandi
1620cecf9d5Sandi    function strong($match, $state, $pos) {
163433bef32Sandi        $this->_nestingTag($match, $state, $pos, 'strong');
16444881bd0Shenning.noren        return true;
1650cecf9d5Sandi    }
1660cecf9d5Sandi
1670cecf9d5Sandi    function emphasis($match, $state, $pos) {
168433bef32Sandi        $this->_nestingTag($match, $state, $pos, 'emphasis');
16944881bd0Shenning.noren        return true;
1700cecf9d5Sandi    }
1710cecf9d5Sandi
1720cecf9d5Sandi    function underline($match, $state, $pos) {
173433bef32Sandi        $this->_nestingTag($match, $state, $pos, 'underline');
17444881bd0Shenning.noren        return true;
1750cecf9d5Sandi    }
1760cecf9d5Sandi
1770cecf9d5Sandi    function monospace($match, $state, $pos) {
178433bef32Sandi        $this->_nestingTag($match, $state, $pos, 'monospace');
17944881bd0Shenning.noren        return true;
1800cecf9d5Sandi    }
1810cecf9d5Sandi
1820cecf9d5Sandi    function subscript($match, $state, $pos) {
183433bef32Sandi        $this->_nestingTag($match, $state, $pos, 'subscript');
18444881bd0Shenning.noren        return true;
1850cecf9d5Sandi    }
1860cecf9d5Sandi
1870cecf9d5Sandi    function superscript($match, $state, $pos) {
188433bef32Sandi        $this->_nestingTag($match, $state, $pos, 'superscript');
18944881bd0Shenning.noren        return true;
1900cecf9d5Sandi    }
1910cecf9d5Sandi
1920cecf9d5Sandi    function deleted($match, $state, $pos) {
193433bef32Sandi        $this->_nestingTag($match, $state, $pos, 'deleted');
19444881bd0Shenning.noren        return true;
1950cecf9d5Sandi    }
1960cecf9d5Sandi
1970cecf9d5Sandi
1980cecf9d5Sandi    function footnote($match, $state, $pos) {
1995587e44cSchris//        $this->_nestingTag($match, $state, $pos, 'footnote');
200742c66f8Schris        if (!isset($this->_footnote)) $this->_footnote = false;
2012fe7363dSchris
2025587e44cSchris        switch ( $state ) {
2035587e44cSchris            case DOKU_LEXER_ENTER:
2042fe7363dSchris                // footnotes can not be nested - however due to limitations in lexer it can't be prevented
2052fe7363dSchris                // we will still enter a new footnote mode, we just do nothing
206742c66f8Schris                if ($this->_footnote) {
2072fe7363dSchris                  $this->_addCall('cdata',array($match), $pos);
2082fe7363dSchris                  break;
2092fe7363dSchris                }
2102fe7363dSchris
211742c66f8Schris                $this->_footnote = true;
2122fe7363dSchris
2135587e44cSchris                $ReWriter = & new Doku_Handler_Nest($this->CallWriter,'footnote_close');
2145587e44cSchris                $this->CallWriter = & $ReWriter;
2154a26ad85Schris                $this->_addCall('footnote_open', array(), $pos);
2165587e44cSchris            break;
2175587e44cSchris            case DOKU_LEXER_EXIT:
2182fe7363dSchris                // check whether we have already exitted the footnote mode, can happen if the modes were nested
219742c66f8Schris                if (!$this->_footnote) {
2202fe7363dSchris                  $this->_addCall('cdata',array($match), $pos);
2212fe7363dSchris                  break;
2222fe7363dSchris                }
2232fe7363dSchris
224742c66f8Schris                $this->_footnote = false;
2252fe7363dSchris
2265587e44cSchris                $this->_addCall('footnote_close', array(), $pos);
2275587e44cSchris                $this->CallWriter->process();
2285587e44cSchris                $ReWriter = & $this->CallWriter;
2295587e44cSchris                $this->CallWriter = & $ReWriter->CallWriter;
2305587e44cSchris            break;
2315587e44cSchris            case DOKU_LEXER_UNMATCHED:
2325587e44cSchris                $this->_addCall('cdata', array($match), $pos);
2335587e44cSchris            break;
2345587e44cSchris        }
23544881bd0Shenning.noren        return true;
2360cecf9d5Sandi    }
2370cecf9d5Sandi
2380cecf9d5Sandi    function listblock($match, $state, $pos) {
2390cecf9d5Sandi        switch ( $state ) {
2400cecf9d5Sandi            case DOKU_LEXER_ENTER:
2410cecf9d5Sandi                $ReWriter = & new Doku_Handler_List($this->CallWriter);
2420cecf9d5Sandi                $this->CallWriter = & $ReWriter;
243433bef32Sandi                $this->_addCall('list_open', array($match), $pos);
2440cecf9d5Sandi            break;
2450cecf9d5Sandi            case DOKU_LEXER_EXIT:
246433bef32Sandi                $this->_addCall('list_close', array(), $pos);
2470cecf9d5Sandi                $this->CallWriter->process();
2480cecf9d5Sandi                $ReWriter = & $this->CallWriter;
2490cecf9d5Sandi                $this->CallWriter = & $ReWriter->CallWriter;
2500cecf9d5Sandi            break;
2510cecf9d5Sandi            case DOKU_LEXER_MATCHED:
252433bef32Sandi                $this->_addCall('list_item', array($match), $pos);
2530cecf9d5Sandi            break;
2540cecf9d5Sandi            case DOKU_LEXER_UNMATCHED:
255433bef32Sandi                $this->_addCall('cdata', array($match), $pos);
2560cecf9d5Sandi            break;
2570cecf9d5Sandi        }
25844881bd0Shenning.noren        return true;
2590cecf9d5Sandi    }
2600cecf9d5Sandi
2610cecf9d5Sandi    function unformatted($match, $state, $pos) {
2620cecf9d5Sandi        if ( $state == DOKU_LEXER_UNMATCHED ) {
263433bef32Sandi            $this->_addCall('unformatted',array($match), $pos);
2640cecf9d5Sandi        }
26544881bd0Shenning.noren        return true;
2660cecf9d5Sandi    }
2670cecf9d5Sandi
2680cecf9d5Sandi    function php($match, $state, $pos) {
269df9add72Schris        global $conf;
2700cecf9d5Sandi        if ( $state == DOKU_LEXER_UNMATCHED ) {
271df9add72Schris            if ($conf['phpok']) {
272433bef32Sandi                $this->_addCall('php',array($match), $pos);
273df9add72Schris            } else {
274df9add72Schris                $this->_addCall('file',array($match), $pos);
275df9add72Schris            }
2760cecf9d5Sandi        }
27744881bd0Shenning.noren        return true;
2780cecf9d5Sandi    }
2790cecf9d5Sandi
2800cecf9d5Sandi    function html($match, $state, $pos) {
281df9add72Schris        global $conf;
2820cecf9d5Sandi        if ( $state == DOKU_LEXER_UNMATCHED ) {
283df9add72Schris            if($conf['htmlok']){
284433bef32Sandi                $this->_addCall('html',array($match), $pos);
285df9add72Schris            } else {
286df9add72Schris                $this->_addCall('file',array($match), $pos);
287df9add72Schris            }
2880cecf9d5Sandi        }
28944881bd0Shenning.noren        return true;
2900cecf9d5Sandi    }
2910cecf9d5Sandi
2920cecf9d5Sandi    function preformatted($match, $state, $pos) {
2930cecf9d5Sandi        switch ( $state ) {
2940cecf9d5Sandi            case DOKU_LEXER_ENTER:
2950cecf9d5Sandi                $ReWriter = & new Doku_Handler_Preformatted($this->CallWriter);
2960cecf9d5Sandi                $this->CallWriter = & $ReWriter;
297433bef32Sandi                $this->_addCall('preformatted_start',array(), $pos);
2980cecf9d5Sandi            break;
2990cecf9d5Sandi            case DOKU_LEXER_EXIT:
300433bef32Sandi                $this->_addCall('preformatted_end',array(), $pos);
3010cecf9d5Sandi                $this->CallWriter->process();
3020cecf9d5Sandi                $ReWriter = & $this->CallWriter;
3030cecf9d5Sandi                $this->CallWriter = & $ReWriter->CallWriter;
3040cecf9d5Sandi            break;
3050cecf9d5Sandi            case DOKU_LEXER_MATCHED:
306433bef32Sandi                $this->_addCall('preformatted_newline',array(), $pos);
3070cecf9d5Sandi            break;
3080cecf9d5Sandi            case DOKU_LEXER_UNMATCHED:
309433bef32Sandi                $this->_addCall('preformatted_content',array($match), $pos);
3100cecf9d5Sandi            break;
3110cecf9d5Sandi        }
3120cecf9d5Sandi
31344881bd0Shenning.noren        return true;
3140cecf9d5Sandi    }
3150cecf9d5Sandi
3160cecf9d5Sandi    function file($match, $state, $pos) {
3170cecf9d5Sandi        if ( $state == DOKU_LEXER_UNMATCHED ) {
318433bef32Sandi            $this->_addCall('file',array($match), $pos);
3190cecf9d5Sandi        }
32044881bd0Shenning.noren        return true;
3210cecf9d5Sandi    }
3220cecf9d5Sandi
3230cecf9d5Sandi    function quote($match, $state, $pos) {
3240cecf9d5Sandi
3250cecf9d5Sandi        switch ( $state ) {
3260cecf9d5Sandi
3270cecf9d5Sandi            case DOKU_LEXER_ENTER:
3280cecf9d5Sandi                $ReWriter = & new Doku_Handler_Quote($this->CallWriter);
3290cecf9d5Sandi                $this->CallWriter = & $ReWriter;
330433bef32Sandi                $this->_addCall('quote_start',array($match), $pos);
3310cecf9d5Sandi            break;
3320cecf9d5Sandi
3330cecf9d5Sandi            case DOKU_LEXER_EXIT:
334433bef32Sandi                $this->_addCall('quote_end',array(), $pos);
3350cecf9d5Sandi                $this->CallWriter->process();
3360cecf9d5Sandi                $ReWriter = & $this->CallWriter;
3370cecf9d5Sandi                $this->CallWriter = & $ReWriter->CallWriter;
3380cecf9d5Sandi            break;
3390cecf9d5Sandi
3400cecf9d5Sandi            case DOKU_LEXER_MATCHED:
341433bef32Sandi                $this->_addCall('quote_newline',array($match), $pos);
3420cecf9d5Sandi            break;
3430cecf9d5Sandi
3440cecf9d5Sandi            case DOKU_LEXER_UNMATCHED:
345433bef32Sandi                $this->_addCall('cdata',array($match), $pos);
3460cecf9d5Sandi            break;
3470cecf9d5Sandi
3480cecf9d5Sandi        }
3490cecf9d5Sandi
35044881bd0Shenning.noren        return true;
3510cecf9d5Sandi    }
3520cecf9d5Sandi
3530cecf9d5Sandi    function code($match, $state, $pos) {
3540cecf9d5Sandi        switch ( $state ) {
3550cecf9d5Sandi            case DOKU_LEXER_UNMATCHED:
3560cecf9d5Sandi                $matches = preg_split('/>/u',$match,2);
3570cecf9d5Sandi                $matches[0] = trim($matches[0]);
3580cecf9d5Sandi                if ( trim($matches[0]) == '' ) {
3590cecf9d5Sandi                    $matches[0] = NULL;
3600cecf9d5Sandi                }
3610cecf9d5Sandi                # $matches[0] contains name of programming language
362b5bef19bSandi                # if available, We shortcut html here.
363b5bef19bSandi                if($matches[0] == 'html') $matches[0] = 'html4strict';
364433bef32Sandi                $this->_addCall(
3650cecf9d5Sandi                        'code',
3660cecf9d5Sandi                        array($matches[1],$matches[0]),
3670cecf9d5Sandi                        $pos
3680cecf9d5Sandi                    );
3690cecf9d5Sandi            break;
3700cecf9d5Sandi        }
37144881bd0Shenning.noren        return true;
3720cecf9d5Sandi    }
3730cecf9d5Sandi
3740cecf9d5Sandi    function acronym($match, $state, $pos) {
375433bef32Sandi        $this->_addCall('acronym',array($match), $pos);
37644881bd0Shenning.noren        return true;
3770cecf9d5Sandi    }
3780cecf9d5Sandi
3790cecf9d5Sandi    function smiley($match, $state, $pos) {
380433bef32Sandi        $this->_addCall('smiley',array($match), $pos);
38144881bd0Shenning.noren        return true;
3820cecf9d5Sandi    }
3830cecf9d5Sandi
3840cecf9d5Sandi    function wordblock($match, $state, $pos) {
385433bef32Sandi        $this->_addCall('wordblock',array($match), $pos);
38644881bd0Shenning.noren        return true;
3870cecf9d5Sandi    }
3880cecf9d5Sandi
3890cecf9d5Sandi    function entity($match, $state, $pos) {
390433bef32Sandi        $this->_addCall('entity',array($match), $pos);
39144881bd0Shenning.noren        return true;
3920cecf9d5Sandi    }
3930cecf9d5Sandi
3940cecf9d5Sandi    function multiplyentity($match, $state, $pos) {
3950cecf9d5Sandi        preg_match_all('/\d+/',$match,$matches);
396433bef32Sandi        $this->_addCall('multiplyentity',array($matches[0][0],$matches[0][1]), $pos);
39744881bd0Shenning.noren        return true;
3980cecf9d5Sandi    }
3990cecf9d5Sandi
4000cecf9d5Sandi    function singlequoteopening($match, $state, $pos) {
401433bef32Sandi        $this->_addCall('singlequoteopening',array(), $pos);
40244881bd0Shenning.noren        return true;
4030cecf9d5Sandi    }
4040cecf9d5Sandi
4050cecf9d5Sandi    function singlequoteclosing($match, $state, $pos) {
406433bef32Sandi        $this->_addCall('singlequoteclosing',array(), $pos);
40744881bd0Shenning.noren        return true;
4080cecf9d5Sandi    }
4090cecf9d5Sandi
4100cecf9d5Sandi    function doublequoteopening($match, $state, $pos) {
411433bef32Sandi        $this->_addCall('doublequoteopening',array(), $pos);
41244881bd0Shenning.noren        return true;
4130cecf9d5Sandi    }
4140cecf9d5Sandi
4150cecf9d5Sandi    function doublequoteclosing($match, $state, $pos) {
416433bef32Sandi        $this->_addCall('doublequoteclosing',array(), $pos);
41744881bd0Shenning.noren        return true;
4180cecf9d5Sandi    }
4190cecf9d5Sandi
4200cecf9d5Sandi    function camelcaselink($match, $state, $pos) {
421433bef32Sandi        $this->_addCall('camelcaselink',array($match), $pos);
42244881bd0Shenning.noren        return true;
4230cecf9d5Sandi    }
4240cecf9d5Sandi
4250cecf9d5Sandi    /*
4260cecf9d5Sandi    */
4270cecf9d5Sandi    function internallink($match, $state, $pos) {
4280cecf9d5Sandi        // Strip the opening and closing markup
4290cecf9d5Sandi        $link = preg_replace(array('/^\[\[/','/\]\]$/u'),'',$match);
4300cecf9d5Sandi
4310cecf9d5Sandi        // Split title from URL
4320cecf9d5Sandi        $link = preg_split('/\|/u',$link,2);
4330cecf9d5Sandi        if ( !isset($link[1]) ) {
4340cecf9d5Sandi            $link[1] = NULL;
4350cecf9d5Sandi        } else if ( preg_match('/^\{\{[^\}]+\}\}$/',$link[1]) ) {
4365578eb8fSandi            // If the title is an image, convert it to an array containing the image details
437b625487dSandi            $link[1] = Doku_Handler_Parse_Media($link[1]);
4380cecf9d5Sandi        }
4390b7c14c2Sandi        $link[0] = trim($link[0]);
4400cecf9d5Sandi
4410e1c636eSandi        //decide which kind of link it is
4420e1c636eSandi
4431c88f0b1SRobby Cornelissen        if ( preg_match('/^[a-zA-Z\.]+>{1}.*$/u',$link[0]) ) {
4440e1c636eSandi        // Interwiki
4450cecf9d5Sandi            $interwiki = preg_split('/>/u',$link[0]);
446433bef32Sandi            $this->_addCall(
4470cecf9d5Sandi                'interwikilink',
4480cecf9d5Sandi                array($link[0],$link[1],strtolower($interwiki[0]),$interwiki[1]),
4490cecf9d5Sandi                $pos
4500cecf9d5Sandi                );
4510b7c14c2Sandi        }elseif ( preg_match('/^\\\\\\\\[\w.:?\-;,]+?\\\\/u',$link[0]) ) {
4520e1c636eSandi        // Windows Share
453433bef32Sandi            $this->_addCall(
4540cecf9d5Sandi                'windowssharelink',
4550cecf9d5Sandi                array($link[0],$link[1]),
4560cecf9d5Sandi                $pos
4570cecf9d5Sandi                );
4584468cb4cSAndreas Gohr        }elseif ( preg_match('#^([a-z0-9\-\.+]+?)://#i',$link[0]) ) {
4590e1c636eSandi        // external link (accepts all protocols)
460433bef32Sandi            $this->_addCall(
4610cecf9d5Sandi                    'externallink',
4620cecf9d5Sandi                    array($link[0],$link[1]),
4630cecf9d5Sandi                    $pos
4640cecf9d5Sandi                    );
4650a1d30bfSchris        }elseif ( preg_match('<'.PREG_PATTERN_VALID_EMAIL.'>',$link[0]) ) {
4660a1d30bfSchris        // E-Mail (pattern above is defined in inc/mail.php)
467a6755281Sandi            $this->_addCall(
468a6755281Sandi                'emaillink',
469a6755281Sandi                array($link[0],$link[1]),
470a6755281Sandi                $pos
471a6755281Sandi                );
4720b7c14c2Sandi        }elseif ( preg_match('!^#.+!',$link[0]) ){
4730b7c14c2Sandi        // local link
4740b7c14c2Sandi            $this->_addCall(
4750b7c14c2Sandi                'locallink',
4760b7c14c2Sandi                array(substr($link[0],1),$link[1]),
4770b7c14c2Sandi                $pos
4780b7c14c2Sandi                );
4790e1c636eSandi        }else{
4800e1c636eSandi        // internal link
481433bef32Sandi            $this->_addCall(
4820e1c636eSandi                'internallink',
4830e1c636eSandi                array($link[0],$link[1]),
4840e1c636eSandi                $pos
4850e1c636eSandi                );
4860cecf9d5Sandi        }
4870e1c636eSandi
48844881bd0Shenning.noren        return true;
4890cecf9d5Sandi    }
4900cecf9d5Sandi
4910cecf9d5Sandi    function filelink($match, $state, $pos) {
492433bef32Sandi        $this->_addCall('filelink',array($match, NULL), $pos);
49344881bd0Shenning.noren        return true;
4940cecf9d5Sandi    }
4950cecf9d5Sandi
4960cecf9d5Sandi    function windowssharelink($match, $state, $pos) {
497433bef32Sandi        $this->_addCall('windowssharelink',array($match, NULL), $pos);
49844881bd0Shenning.noren        return true;
4990cecf9d5Sandi    }
5000cecf9d5Sandi
5010cecf9d5Sandi    function media($match, $state, $pos) {
5020cecf9d5Sandi        $p = Doku_Handler_Parse_Media($match);
5030cecf9d5Sandi
504433bef32Sandi        $this->_addCall(
5050cecf9d5Sandi              $p['type'],
506dc673a5bSjoe.lapp              array($p['src'], $p['title'], $p['align'], $p['width'],
507dc673a5bSjoe.lapp                     $p['height'], $p['cache'], $p['linking']),
5080cecf9d5Sandi              $pos
5090cecf9d5Sandi             );
51044881bd0Shenning.noren        return true;
5110cecf9d5Sandi    }
5120cecf9d5Sandi
513b625487dSandi    function rss($match, $state, $pos) {
514b625487dSandi        $link = preg_replace(array('/^\{\{rss>/','/\}\}$/'),'',$match);
5153db95becSAndreas Gohr
5163db95becSAndreas Gohr        // get params
5173db95becSAndreas Gohr        list($link,$params) = explode(' ',$link,2);
5183db95becSAndreas Gohr
5193db95becSAndreas Gohr        $p = array();
5203db95becSAndreas Gohr        if(preg_match('/\b(\d+)\b/',$params,$match)){
5213db95becSAndreas Gohr            $p['max'] = $match[1];
5223db95becSAndreas Gohr        }else{
5233db95becSAndreas Gohr            $p['max'] = 8;
5243db95becSAndreas Gohr        }
5253db95becSAndreas Gohr        $p['reverse'] = (preg_match('/rev/',$params));
5263db95becSAndreas Gohr        $p['author']  = (preg_match('/\b(by|author)/',$params));
5273db95becSAndreas Gohr        $p['date']    = (preg_match('/\b(date)/',$params));
5283db95becSAndreas Gohr        $p['details'] = (preg_match('/\b(desc|detail)/',$params));
5293db95becSAndreas Gohr
5300a69dff7Schris        if (preg_match('/\b(\d+)([dhm])\b/',$params,$match)) {
5310a69dff7Schris          $period = array('d' => 86400, 'h' => 3600, 'm' => 60);
5320a69dff7Schris          $p['refresh'] = max(600,$match[1]*$period[$match[2]]);  // n * period in seconds, minimum 10 minutes
5330a69dff7Schris        } else {
5340a69dff7Schris          $p['refresh'] = 14400;   // default to 4 hours
5350a69dff7Schris        }
5360a69dff7Schris
5373db95becSAndreas Gohr        $this->_addCall('rss',array($link,$p),$pos);
53844881bd0Shenning.noren        return true;
539b625487dSandi    }
540b625487dSandi
5410cecf9d5Sandi    function externallink($match, $state, $pos) {
542da9f31c5SAndreas Gohr        $url   = $match;
543da9f31c5SAndreas Gohr        $title = null;
5440cecf9d5Sandi
545da9f31c5SAndreas Gohr        // add protocol on simple short URLs
546da9f31c5SAndreas Gohr        if(substr($url,0,3) == 'ftp' && (substr($url,0,6) != 'ftp://')){
547da9f31c5SAndreas Gohr            $title = $url;
548da9f31c5SAndreas Gohr            $url   = 'ftp://'.$url;
549da9f31c5SAndreas Gohr        }
550da9f31c5SAndreas Gohr        if(substr($url,0,3) == 'www' && (substr($url,0,7) != 'http://')){
551da9f31c5SAndreas Gohr            $title = $url;
552da9f31c5SAndreas Gohr            $url = 'http://'.$url;
553da9f31c5SAndreas Gohr        }
554da9f31c5SAndreas Gohr
555da9f31c5SAndreas Gohr        $this->_addCall('externallink',array($url, $title), $pos);
55644881bd0Shenning.noren        return true;
5570cecf9d5Sandi    }
5580cecf9d5Sandi
55971352defSandi    function emaillink($match, $state, $pos) {
5600cecf9d5Sandi        $email = preg_replace(array('/^</','/>$/'),'',$match);
561433bef32Sandi        $this->_addCall('emaillink',array($email, NULL), $pos);
56244881bd0Shenning.noren        return true;
5630cecf9d5Sandi    }
5640cecf9d5Sandi
5650cecf9d5Sandi    function table($match, $state, $pos) {
5660cecf9d5Sandi        switch ( $state ) {
5670cecf9d5Sandi
5680cecf9d5Sandi            case DOKU_LEXER_ENTER:
5690cecf9d5Sandi
5700cecf9d5Sandi                $ReWriter = & new Doku_Handler_Table($this->CallWriter);
5710cecf9d5Sandi                $this->CallWriter = & $ReWriter;
5720cecf9d5Sandi
573433bef32Sandi                $this->_addCall('table_start', array(), $pos);
574433bef32Sandi                //$this->_addCall('table_row', array(), $pos);
5750cecf9d5Sandi                if ( trim($match) == '^' ) {
576433bef32Sandi                    $this->_addCall('tableheader', array(), $pos);
5770cecf9d5Sandi                } else {
578433bef32Sandi                    $this->_addCall('tablecell', array(), $pos);
5790cecf9d5Sandi                }
5800cecf9d5Sandi            break;
5810cecf9d5Sandi
5820cecf9d5Sandi            case DOKU_LEXER_EXIT:
583433bef32Sandi                $this->_addCall('table_end', array(), $pos);
5840cecf9d5Sandi                $this->CallWriter->process();
5850cecf9d5Sandi                $ReWriter = & $this->CallWriter;
5860cecf9d5Sandi                $this->CallWriter = & $ReWriter->CallWriter;
5870cecf9d5Sandi            break;
5880cecf9d5Sandi
5890cecf9d5Sandi            case DOKU_LEXER_UNMATCHED:
5900cecf9d5Sandi                if ( trim($match) != '' ) {
591433bef32Sandi                    $this->_addCall('cdata',array($match), $pos);
5920cecf9d5Sandi                }
5930cecf9d5Sandi            break;
5940cecf9d5Sandi
5950cecf9d5Sandi            case DOKU_LEXER_MATCHED:
5969ab75d9eSAndreas Gohr                if ( $match == ' ' ){
5979ab75d9eSAndreas Gohr                    $this->_addCall('cdata', array($match), $pos);
598e205b721SAndreas Gohr                } else if ( preg_match('/\t+/',$match) ) {
5999ab75d9eSAndreas Gohr                    $this->_addCall('table_align', array($match), $pos);
600e205b721SAndreas Gohr                } else if ( preg_match('/ {2,}/',$match) ) {
601433bef32Sandi                    $this->_addCall('table_align', array($match), $pos);
6020cecf9d5Sandi                } else if ( $match == "\n|" ) {
603433bef32Sandi                    $this->_addCall('table_row', array(), $pos);
604433bef32Sandi                    $this->_addCall('tablecell', array(), $pos);
6050cecf9d5Sandi                } else if ( $match == "\n^" ) {
606433bef32Sandi                    $this->_addCall('table_row', array(), $pos);
607433bef32Sandi                    $this->_addCall('tableheader', array(), $pos);
6080cecf9d5Sandi                } else if ( $match == '|' ) {
609433bef32Sandi                    $this->_addCall('tablecell', array(), $pos);
6100cecf9d5Sandi                } else if ( $match == '^' ) {
611433bef32Sandi                    $this->_addCall('tableheader', array(), $pos);
6120cecf9d5Sandi                }
6130cecf9d5Sandi            break;
6140cecf9d5Sandi        }
61544881bd0Shenning.noren        return true;
6160cecf9d5Sandi    }
6170cecf9d5Sandi}
6180cecf9d5Sandi
6190cecf9d5Sandi//------------------------------------------------------------------------
6200cecf9d5Sandifunction Doku_Handler_Parse_Media($match) {
6210cecf9d5Sandi
6220cecf9d5Sandi    // Strip the opening and closing markup
6230cecf9d5Sandi    $link = preg_replace(array('/^\{\{/','/\}\}$/u'),'',$match);
6240cecf9d5Sandi
6250cecf9d5Sandi    // Split title from URL
6260cecf9d5Sandi    $link = preg_split('/\|/u',$link,2);
6270cecf9d5Sandi
6280cecf9d5Sandi
6290cecf9d5Sandi    // Check alignment
6300cecf9d5Sandi    $ralign = (bool)preg_match('/^ /',$link[0]);
6310cecf9d5Sandi    $lalign = (bool)preg_match('/ $/',$link[0]);
6320cecf9d5Sandi
6330cecf9d5Sandi    // Logic = what's that ;)...
6340cecf9d5Sandi    if ( $lalign & $ralign ) {
6350cecf9d5Sandi        $align = 'center';
6360cecf9d5Sandi    } else if ( $ralign ) {
6370cecf9d5Sandi        $align = 'right';
6380cecf9d5Sandi    } else if ( $lalign ) {
6390cecf9d5Sandi        $align = 'left';
6400cecf9d5Sandi    } else {
6410cecf9d5Sandi        $align = NULL;
6420cecf9d5Sandi    }
6430cecf9d5Sandi
6440cecf9d5Sandi    // The title...
6450cecf9d5Sandi    if ( !isset($link[1]) ) {
6460cecf9d5Sandi        $link[1] = NULL;
6470cecf9d5Sandi    }
6480cecf9d5Sandi
6494826ab45Sandi    //remove aligning spaces
6504826ab45Sandi    $link[0] = trim($link[0]);
6510cecf9d5Sandi
6524826ab45Sandi    //split into src and parameters (using the very last questionmark)
6534826ab45Sandi    $pos = strrpos($link[0], '?');
6544826ab45Sandi    if($pos !== false){
6554826ab45Sandi        $src   = substr($link[0],0,$pos);
6564826ab45Sandi        $param = substr($link[0],$pos+1);
6570cecf9d5Sandi    }else{
6584826ab45Sandi        $src   = $link[0];
6594826ab45Sandi        $param = '';
6600cecf9d5Sandi    }
6610cecf9d5Sandi
6624826ab45Sandi    //parse width and height
6634826ab45Sandi    if(preg_match('#(\d+)(x(\d+))?#i',$param,$size)){
6644826ab45Sandi        ($size[1]) ? $w = $size[1] : $w = NULL;
6654826ab45Sandi        ($size[3]) ? $h = $size[3] : $h = NULL;
666fc1c55b1Shfuecks    } else {
667fc1c55b1Shfuecks        $w = NULL;
668fc1c55b1Shfuecks        $h = NULL;
6690cecf9d5Sandi    }
6700cecf9d5Sandi
671dc673a5bSjoe.lapp    //get linking command
672d35ab615Shenning.noren    if(preg_match('/nolink/i',$param)){
673dc673a5bSjoe.lapp        $linking = 'nolink';
674d35ab615Shenning.noren    }else if(preg_match('/direct/i',$param)){
675dc673a5bSjoe.lapp        $linking = 'direct';
676dc673a5bSjoe.lapp    }else{
677dc673a5bSjoe.lapp        $linking = 'details';
678dc673a5bSjoe.lapp    }
679dc673a5bSjoe.lapp
6804826ab45Sandi    //get caching command
6814826ab45Sandi    if (preg_match('/(nocache|recache)/i',$param,$cachemode)){
6824826ab45Sandi        $cache = $cachemode[1];
6830cecf9d5Sandi    }else{
6844826ab45Sandi        $cache = 'cache';
6850cecf9d5Sandi    }
6860cecf9d5Sandi
6870cecf9d5Sandi    // Check whether this is a local or remote image
6884826ab45Sandi    if ( preg_match('#^(https?|ftp)#i',$src) ) {
6894826ab45Sandi        $call = 'externalmedia';
6900cecf9d5Sandi    } else {
6914826ab45Sandi        $call = 'internalmedia';
6920cecf9d5Sandi    }
6930cecf9d5Sandi
6940cecf9d5Sandi    $params = array(
6950cecf9d5Sandi        'type'=>$call,
6964826ab45Sandi        'src'=>$src,
6970cecf9d5Sandi        'title'=>$link[1],
6980cecf9d5Sandi        'align'=>$align,
6994826ab45Sandi        'width'=>$w,
7004826ab45Sandi        'height'=>$h,
7010cecf9d5Sandi        'cache'=>$cache,
702dc673a5bSjoe.lapp        'linking'=>$linking,
7030cecf9d5Sandi    );
7040cecf9d5Sandi
7050cecf9d5Sandi    return $params;
7060cecf9d5Sandi}
7070cecf9d5Sandi
7080cecf9d5Sandi//------------------------------------------------------------------------
7090cecf9d5Sandiclass Doku_Handler_CallWriter {
7100cecf9d5Sandi
7110cecf9d5Sandi    var $Handler;
7120cecf9d5Sandi
7130cecf9d5Sandi    function Doku_Handler_CallWriter(& $Handler) {
7140cecf9d5Sandi        $this->Handler = & $Handler;
7150cecf9d5Sandi    }
7160cecf9d5Sandi
7170cecf9d5Sandi    function writeCall($call) {
7180cecf9d5Sandi        $this->Handler->calls[] = $call;
7190cecf9d5Sandi    }
7200cecf9d5Sandi
7210cecf9d5Sandi    function writeCalls($calls) {
7220cecf9d5Sandi        $this->Handler->calls = array_merge($this->Handler->calls, $calls);
7230cecf9d5Sandi    }
724f4f02a0fSchris
725f4f02a0fSchris    // function is required, but since this call writer is first/highest in
726f4f02a0fSchris    // the chain it is not required to do anything
727f4f02a0fSchris    function finalise() {
728f4f02a0fSchris    }
7290cecf9d5Sandi}
7300cecf9d5Sandi
7310cecf9d5Sandi//------------------------------------------------------------------------
7325587e44cSchris/**
7335587e44cSchris * Generic call writer class to handle nesting of rendering instructions
7345587e44cSchris * within a render instruction. Also see nest() method of renderer base class
7355587e44cSchris *
7365587e44cSchris * @author    Chris Smith <chris@jalakai.co.uk>
7375587e44cSchris */
7385587e44cSchrisclass Doku_Handler_Nest {
7395587e44cSchris
7405587e44cSchris    var $CallWriter;
7415587e44cSchris    var $calls = array();
7425587e44cSchris
7435587e44cSchris    var $closingInstruction;
7445587e44cSchris
7455587e44cSchris    /**
7465587e44cSchris     * constructor
7475587e44cSchris     *
7485587e44cSchris     * @param  object     $CallWriter     the renderers current call writer
7495587e44cSchris     * @param  string     $close          closing instruction name, this is required to properly terminate the
7505587e44cSchris     *                                    syntax mode if the document ends without a closing pattern
7515587e44cSchris     */
7525587e44cSchris    function Doku_Handler_Nest(& $CallWriter, $close="nest_close") {
7535587e44cSchris        $this->CallWriter = & $CallWriter;
7545587e44cSchris
7555587e44cSchris        $this->closingInstruction = $close;
7565587e44cSchris    }
7575587e44cSchris
7585587e44cSchris    function writeCall($call) {
7595587e44cSchris        $this->calls[] = $call;
7605587e44cSchris    }
7615587e44cSchris
7625587e44cSchris    function writeCalls($calls) {
7635587e44cSchris        $this->calls = array_merge($this->calls, $calls);
7645587e44cSchris    }
7655587e44cSchris
7665587e44cSchris    function finalise() {
7675587e44cSchris        $last_call = end($this->calls);
7685587e44cSchris        $this->writeCall(array($this->closingInstruction,array(), $last_call[2]));
7695587e44cSchris
7705587e44cSchris        $this->process();
7715587e44cSchris        $this->CallWriter->finalise();
7725587e44cSchris    }
7735587e44cSchris
7745587e44cSchris    function process() {
7755587e44cSchris        $first_call = reset($this->calls);
7765587e44cSchris        $this->CallWriter->writeCall(array("nest", array($this->calls), $first_call[2]));
7775587e44cSchris    }
7785587e44cSchris}
7795587e44cSchris
7800cecf9d5Sandiclass Doku_Handler_List {
7810cecf9d5Sandi
7820cecf9d5Sandi    var $CallWriter;
7830cecf9d5Sandi
7840cecf9d5Sandi    var $calls = array();
7850cecf9d5Sandi    var $listCalls = array();
7860cecf9d5Sandi    var $listStack = array();
7870cecf9d5Sandi
7880cecf9d5Sandi    function Doku_Handler_List(& $CallWriter) {
7890cecf9d5Sandi        $this->CallWriter = & $CallWriter;
7900cecf9d5Sandi    }
7910cecf9d5Sandi
7920cecf9d5Sandi    function writeCall($call) {
7930cecf9d5Sandi        $this->calls[] = $call;
7940cecf9d5Sandi    }
7950cecf9d5Sandi
7960cecf9d5Sandi    // Probably not needed but just in case...
7970cecf9d5Sandi    function writeCalls($calls) {
7980cecf9d5Sandi        $this->calls = array_merge($this->calls, $calls);
799f4f02a0fSchris#        $this->CallWriter->writeCalls($this->calls);
800f4f02a0fSchris    }
801f4f02a0fSchris
802f4f02a0fSchris    function finalise() {
803f4f02a0fSchris        $last_call = end($this->calls);
804f4f02a0fSchris        $this->writeCall(array('list_close',array(), $last_call[2]));
805f4f02a0fSchris
806f4f02a0fSchris        $this->process();
807f4f02a0fSchris        $this->CallWriter->finalise();
8080cecf9d5Sandi    }
8090cecf9d5Sandi
8100cecf9d5Sandi    //------------------------------------------------------------------------
8110cecf9d5Sandi    function process() {
812f4f02a0fSchris
8130cecf9d5Sandi        foreach ( $this->calls as $call ) {
8140cecf9d5Sandi            switch ($call[0]) {
8150cecf9d5Sandi                case 'list_item':
8160cecf9d5Sandi                    $this->listOpen($call);
8170cecf9d5Sandi                break;
8180cecf9d5Sandi                case 'list_open':
8190cecf9d5Sandi                    $this->listStart($call);
8200cecf9d5Sandi                break;
8210cecf9d5Sandi                case 'list_close':
8220cecf9d5Sandi                    $this->listEnd($call);
8230cecf9d5Sandi                break;
8240cecf9d5Sandi                default:
8250cecf9d5Sandi                    $this->listContent($call);
8260cecf9d5Sandi                break;
8270cecf9d5Sandi            }
8280cecf9d5Sandi        }
8290cecf9d5Sandi
8300cecf9d5Sandi        $this->CallWriter->writeCalls($this->listCalls);
8310cecf9d5Sandi    }
8320cecf9d5Sandi
8330cecf9d5Sandi    //------------------------------------------------------------------------
8340cecf9d5Sandi    function listStart($call) {
8350cecf9d5Sandi        $depth = $this->interpretSyntax($call[1][0], $listType);
8360cecf9d5Sandi
8370cecf9d5Sandi        $this->initialDepth = $depth;
8380cecf9d5Sandi        $this->listStack[] = array($listType, $depth);
8390cecf9d5Sandi
8400cecf9d5Sandi        $this->listCalls[] = array('list'.$listType.'_open',array(),$call[2]);
8410cecf9d5Sandi        $this->listCalls[] = array('listitem_open',array(1),$call[2]);
8420cecf9d5Sandi        $this->listCalls[] = array('listcontent_open',array(),$call[2]);
8430cecf9d5Sandi    }
8440cecf9d5Sandi
8450cecf9d5Sandi    //------------------------------------------------------------------------
8460cecf9d5Sandi    function listEnd($call) {
84744881bd0Shenning.noren        $closeContent = true;
8480cecf9d5Sandi
8490cecf9d5Sandi        while ( $list = array_pop($this->listStack) ) {
8500cecf9d5Sandi            if ( $closeContent ) {
8510cecf9d5Sandi                $this->listCalls[] = array('listcontent_close',array(),$call[2]);
85244881bd0Shenning.noren                $closeContent = false;
8530cecf9d5Sandi            }
8540cecf9d5Sandi            $this->listCalls[] = array('listitem_close',array(),$call[2]);
8550cecf9d5Sandi            $this->listCalls[] = array('list'.$list[0].'_close', array(), $call[2]);
8560cecf9d5Sandi        }
8570cecf9d5Sandi    }
8580cecf9d5Sandi
8590cecf9d5Sandi    //------------------------------------------------------------------------
8600cecf9d5Sandi    function listOpen($call) {
8610cecf9d5Sandi        $depth = $this->interpretSyntax($call[1][0], $listType);
8620cecf9d5Sandi        $end = end($this->listStack);
8630cecf9d5Sandi
8640cecf9d5Sandi        // Not allowed to be shallower than initialDepth
8650cecf9d5Sandi        if ( $depth < $this->initialDepth ) {
8660cecf9d5Sandi            $depth = $this->initialDepth;
8670cecf9d5Sandi        }
8680cecf9d5Sandi
8690cecf9d5Sandi        //------------------------------------------------------------------------
8700cecf9d5Sandi        if ( $depth == $end[1] ) {
8710cecf9d5Sandi
8720cecf9d5Sandi            // Just another item in the list...
8730cecf9d5Sandi            if ( $listType == $end[0] ) {
8740cecf9d5Sandi                $this->listCalls[] = array('listcontent_close',array(),$call[2]);
8750cecf9d5Sandi                $this->listCalls[] = array('listitem_close',array(),$call[2]);
8760cecf9d5Sandi                $this->listCalls[] = array('listitem_open',array($depth-1),$call[2]);
8770cecf9d5Sandi                $this->listCalls[] = array('listcontent_open',array(),$call[2]);
8780cecf9d5Sandi
8790cecf9d5Sandi            // Switched list type...
8800cecf9d5Sandi            } else {
8810cecf9d5Sandi
8820cecf9d5Sandi                $this->listCalls[] = array('listcontent_close',array(),$call[2]);
8830cecf9d5Sandi                $this->listCalls[] = array('listitem_close',array(),$call[2]);
8840cecf9d5Sandi                $this->listCalls[] = array('list'.$end[0].'_close', array(), $call[2]);
8850cecf9d5Sandi                $this->listCalls[] = array('list'.$listType.'_open', array(), $call[2]);
8860cecf9d5Sandi                $this->listCalls[] = array('listitem_open', array($depth-1), $call[2]);
8870cecf9d5Sandi                $this->listCalls[] = array('listcontent_open',array(),$call[2]);
8880cecf9d5Sandi
8890cecf9d5Sandi                array_pop($this->listStack);
8900cecf9d5Sandi                $this->listStack[] = array($listType, $depth);
8910cecf9d5Sandi            }
8920cecf9d5Sandi
8930cecf9d5Sandi        //------------------------------------------------------------------------
8940cecf9d5Sandi        // Getting deeper...
8950cecf9d5Sandi        } else if ( $depth > $end[1] ) {
8960cecf9d5Sandi
8970cecf9d5Sandi            $this->listCalls[] = array('listcontent_close',array(),$call[2]);
8980cecf9d5Sandi            $this->listCalls[] = array('list'.$listType.'_open', array(), $call[2]);
8990cecf9d5Sandi            $this->listCalls[] = array('listitem_open', array($depth-1), $call[2]);
9000cecf9d5Sandi            $this->listCalls[] = array('listcontent_open',array(),$call[2]);
9010cecf9d5Sandi
9020cecf9d5Sandi            $this->listStack[] = array($listType, $depth);
9030cecf9d5Sandi
9040cecf9d5Sandi        //------------------------------------------------------------------------
9050cecf9d5Sandi        // Getting shallower ( $depth < $end[1] )
9060cecf9d5Sandi        } else {
9070cecf9d5Sandi            $this->listCalls[] = array('listcontent_close',array(),$call[2]);
9080cecf9d5Sandi            $this->listCalls[] = array('listitem_close',array(),$call[2]);
9090cecf9d5Sandi            $this->listCalls[] = array('list'.$end[0].'_close',array(),$call[2]);
9100cecf9d5Sandi
9110cecf9d5Sandi            // Throw away the end - done
9120cecf9d5Sandi            array_pop($this->listStack);
9130cecf9d5Sandi
9140cecf9d5Sandi            while (1) {
9150cecf9d5Sandi                $end = end($this->listStack);
9160cecf9d5Sandi
9170cecf9d5Sandi                if ( $end[1] <= $depth ) {
9180cecf9d5Sandi
9190cecf9d5Sandi                    // Normalize depths
9200cecf9d5Sandi                    $depth = $end[1];
9210cecf9d5Sandi
9220cecf9d5Sandi                    $this->listCalls[] = array('listitem_close',array(),$call[2]);
9230cecf9d5Sandi
9240cecf9d5Sandi                    if ( $end[0] == $listType ) {
9250cecf9d5Sandi                        $this->listCalls[] = array('listitem_open',array($depth-1),$call[2]);
9260cecf9d5Sandi                        $this->listCalls[] = array('listcontent_open',array(),$call[2]);
9270cecf9d5Sandi
9280cecf9d5Sandi                    } else {
9290cecf9d5Sandi                        // Switching list type...
9300cecf9d5Sandi                        $this->listCalls[] = array('list'.$end[0].'_close', array(), $call[2]);
9310cecf9d5Sandi                        $this->listCalls[] = array('list'.$listType.'_open', array(), $call[2]);
9320cecf9d5Sandi                        $this->listCalls[] = array('listitem_open', array($depth-1), $call[2]);
9330cecf9d5Sandi                        $this->listCalls[] = array('listcontent_open',array(),$call[2]);
9340cecf9d5Sandi
9350cecf9d5Sandi                        array_pop($this->listStack);
9360cecf9d5Sandi                        $this->listStack[] = array($listType, $depth);
9370cecf9d5Sandi                    }
9380cecf9d5Sandi
9390cecf9d5Sandi                    break;
9400cecf9d5Sandi
9410cecf9d5Sandi                // Haven't dropped down far enough yet.... ( $end[1] > $depth )
9420cecf9d5Sandi                } else {
9430cecf9d5Sandi
9440cecf9d5Sandi                    $this->listCalls[] = array('listitem_close',array(),$call[2]);
9450cecf9d5Sandi                    $this->listCalls[] = array('list'.$end[0].'_close',array(),$call[2]);
9460cecf9d5Sandi
9470cecf9d5Sandi                    array_pop($this->listStack);
9480cecf9d5Sandi
9490cecf9d5Sandi                }
9500cecf9d5Sandi
9510cecf9d5Sandi            }
9520cecf9d5Sandi
9530cecf9d5Sandi        }
9540cecf9d5Sandi    }
9550cecf9d5Sandi
9560cecf9d5Sandi    //------------------------------------------------------------------------
9570cecf9d5Sandi    function listContent($call) {
9580cecf9d5Sandi        $this->listCalls[] = $call;
9590cecf9d5Sandi    }
9600cecf9d5Sandi
9610cecf9d5Sandi    //------------------------------------------------------------------------
9620cecf9d5Sandi    function interpretSyntax($match, & $type) {
9630cecf9d5Sandi        if ( substr($match,-1) == '*' ) {
9640cecf9d5Sandi            $type = 'u';
9650cecf9d5Sandi        } else {
9660cecf9d5Sandi            $type = 'o';
9670cecf9d5Sandi        }
9680cecf9d5Sandi        return count(explode('  ',str_replace("\t",'  ',$match)));
9690cecf9d5Sandi    }
9700cecf9d5Sandi}
9710cecf9d5Sandi
9720cecf9d5Sandi//------------------------------------------------------------------------
9730cecf9d5Sandiclass Doku_Handler_Preformatted {
9740cecf9d5Sandi
9750cecf9d5Sandi    var $CallWriter;
9760cecf9d5Sandi
9770cecf9d5Sandi    var $calls = array();
9780cecf9d5Sandi    var $pos;
9790cecf9d5Sandi    var $text ='';
9800cecf9d5Sandi
9810cecf9d5Sandi
9820cecf9d5Sandi
9830cecf9d5Sandi    function Doku_Handler_Preformatted(& $CallWriter) {
9840cecf9d5Sandi        $this->CallWriter = & $CallWriter;
9850cecf9d5Sandi    }
9860cecf9d5Sandi
9870cecf9d5Sandi    function writeCall($call) {
9880cecf9d5Sandi        $this->calls[] = $call;
9890cecf9d5Sandi    }
9900cecf9d5Sandi
9910cecf9d5Sandi    // Probably not needed but just in case...
9920cecf9d5Sandi    function writeCalls($calls) {
9930cecf9d5Sandi        $this->calls = array_merge($this->calls, $calls);
994f4f02a0fSchris#        $this->CallWriter->writeCalls($this->calls);
995f4f02a0fSchris    }
996f4f02a0fSchris
997f4f02a0fSchris    function finalise() {
998f4f02a0fSchris        $last_call = end($this->calls);
999f4f02a0fSchris        $this->writeCall(array('preformatted_end',array(), $last_call[2]));
1000f4f02a0fSchris
1001f4f02a0fSchris        $this->process();
1002f4f02a0fSchris        $this->CallWriter->finalise();
10030cecf9d5Sandi    }
10040cecf9d5Sandi
10050cecf9d5Sandi    function process() {
10060cecf9d5Sandi        foreach ( $this->calls as $call ) {
10070cecf9d5Sandi            switch ($call[0]) {
10080cecf9d5Sandi                case 'preformatted_start':
10090cecf9d5Sandi                    $this->pos = $call[2];
10100cecf9d5Sandi                break;
10110cecf9d5Sandi                case 'preformatted_newline':
10120cecf9d5Sandi                    $this->text .= "\n";
10130cecf9d5Sandi                break;
10140cecf9d5Sandi                case 'preformatted_content':
10150cecf9d5Sandi                    $this->text .= $call[1][0];
10160cecf9d5Sandi                break;
10170cecf9d5Sandi                case 'preformatted_end':
10180cecf9d5Sandi                    $this->CallWriter->writeCall(array('preformatted',array($this->text),$this->pos));
10190cecf9d5Sandi                break;
10200cecf9d5Sandi            }
10210cecf9d5Sandi        }
10220cecf9d5Sandi    }
1023f4f02a0fSchris
10240cecf9d5Sandi}
10250cecf9d5Sandi
10260cecf9d5Sandi//------------------------------------------------------------------------
10270cecf9d5Sandiclass Doku_Handler_Quote {
10280cecf9d5Sandi
10290cecf9d5Sandi    var $CallWriter;
10300cecf9d5Sandi
10310cecf9d5Sandi    var $calls = array();
10320cecf9d5Sandi
10330cecf9d5Sandi    var $quoteCalls = array();
10340cecf9d5Sandi
10350cecf9d5Sandi    function Doku_Handler_Quote(& $CallWriter) {
10360cecf9d5Sandi        $this->CallWriter = & $CallWriter;
10370cecf9d5Sandi    }
10380cecf9d5Sandi
10390cecf9d5Sandi    function writeCall($call) {
10400cecf9d5Sandi        $this->calls[] = $call;
10410cecf9d5Sandi    }
10420cecf9d5Sandi
10430cecf9d5Sandi    // Probably not needed but just in case...
10440cecf9d5Sandi    function writeCalls($calls) {
10450cecf9d5Sandi        $this->calls = array_merge($this->calls, $calls);
1046f4f02a0fSchris#        $this->CallWriter->writeCalls($this->calls);
1047f4f02a0fSchris    }
1048f4f02a0fSchris
1049f4f02a0fSchris    function finalise() {
1050f4f02a0fSchris        $last_call = end($this->calls);
1051f4f02a0fSchris        $this->writeCall(array('quote_end',array(), $last_call[2]));
1052f4f02a0fSchris
1053f4f02a0fSchris        $this->process();
1054f4f02a0fSchris        $this->CallWriter->finalise();
10550cecf9d5Sandi    }
10560cecf9d5Sandi
10570cecf9d5Sandi    function process() {
10580cecf9d5Sandi
10590cecf9d5Sandi        $quoteDepth = 1;
10600cecf9d5Sandi
10610cecf9d5Sandi        foreach ( $this->calls as $call ) {
10620cecf9d5Sandi            switch ($call[0]) {
10630cecf9d5Sandi
10640cecf9d5Sandi                case 'quote_start':
10650cecf9d5Sandi
10660cecf9d5Sandi                    $this->quoteCalls[] = array('quote_open',array(),$call[2]);
10670cecf9d5Sandi
10680cecf9d5Sandi                case 'quote_newline':
10690cecf9d5Sandi
10700cecf9d5Sandi                    $quoteLength = $this->getDepth($call[1][0]);
10710cecf9d5Sandi
10720cecf9d5Sandi                    if ( $quoteLength > $quoteDepth ) {
10730cecf9d5Sandi                        $quoteDiff = $quoteLength - $quoteDepth;
10740cecf9d5Sandi                        for ( $i = 1; $i <= $quoteDiff; $i++ ) {
10750cecf9d5Sandi                            $this->quoteCalls[] = array('quote_open',array(),$call[2]);
10760cecf9d5Sandi                        }
10770cecf9d5Sandi                    } else if ( $quoteLength < $quoteDepth ) {
10780cecf9d5Sandi                        $quoteDiff = $quoteDepth - $quoteLength;
10790cecf9d5Sandi                        for ( $i = 1; $i <= $quoteDiff; $i++ ) {
10800cecf9d5Sandi                            $this->quoteCalls[] = array('quote_close',array(),$call[2]);
10810cecf9d5Sandi                        }
108226426c64Schris                    } else {
108326426c64Schris                        if ($call[0] != 'quote_start') $this->quoteCalls[] = array('linebreak',array(),$call[2]);
10840cecf9d5Sandi                    }
10850cecf9d5Sandi
10860cecf9d5Sandi                    $quoteDepth = $quoteLength;
10870cecf9d5Sandi
10880cecf9d5Sandi                break;
10890cecf9d5Sandi
10900cecf9d5Sandi                case 'quote_end':
10910cecf9d5Sandi
10920cecf9d5Sandi                    if ( $quoteDepth > 1 ) {
10930cecf9d5Sandi                        $quoteDiff = $quoteDepth - 1;
10940cecf9d5Sandi                        for ( $i = 1; $i <= $quoteDiff; $i++ ) {
10950cecf9d5Sandi                            $this->quoteCalls[] = array('quote_close',array(),$call[2]);
10960cecf9d5Sandi                        }
10970cecf9d5Sandi                    }
10980cecf9d5Sandi
10990cecf9d5Sandi                    $this->quoteCalls[] = array('quote_close',array(),$call[2]);
11000cecf9d5Sandi
11010cecf9d5Sandi                    $this->CallWriter->writeCalls($this->quoteCalls);
11020cecf9d5Sandi                break;
11030cecf9d5Sandi
11040cecf9d5Sandi                default:
11050cecf9d5Sandi                    $this->quoteCalls[] = $call;
11060cecf9d5Sandi                break;
11070cecf9d5Sandi            }
11080cecf9d5Sandi        }
11090cecf9d5Sandi    }
11100cecf9d5Sandi
11110cecf9d5Sandi    function getDepth($marker) {
11120cecf9d5Sandi        preg_match('/>{1,}/', $marker, $matches);
11130cecf9d5Sandi        $quoteLength = strlen($matches[0]);
11140cecf9d5Sandi        return $quoteLength;
11150cecf9d5Sandi    }
11160cecf9d5Sandi}
11170cecf9d5Sandi
11180cecf9d5Sandi//------------------------------------------------------------------------
11190cecf9d5Sandiclass Doku_Handler_Table {
11200cecf9d5Sandi
11210cecf9d5Sandi    var $CallWriter;
11220cecf9d5Sandi
11230cecf9d5Sandi    var $calls = array();
11240cecf9d5Sandi    var $tableCalls = array();
11250cecf9d5Sandi    var $maxCols = 0;
11260cecf9d5Sandi    var $maxRows = 1;
11270cecf9d5Sandi    var $currentCols = 0;
112844881bd0Shenning.noren    var $firstCell = false;
11290cecf9d5Sandi    var $lastCellType = 'tablecell';
11300cecf9d5Sandi
11310cecf9d5Sandi    function Doku_Handler_Table(& $CallWriter) {
11320cecf9d5Sandi        $this->CallWriter = & $CallWriter;
11330cecf9d5Sandi    }
11340cecf9d5Sandi
11350cecf9d5Sandi    function writeCall($call) {
11360cecf9d5Sandi        $this->calls[] = $call;
11370cecf9d5Sandi    }
11380cecf9d5Sandi
11390cecf9d5Sandi    // Probably not needed but just in case...
11400cecf9d5Sandi    function writeCalls($calls) {
11410cecf9d5Sandi        $this->calls = array_merge($this->calls, $calls);
1142f4f02a0fSchris#        $this->CallWriter->writeCalls($this->calls);
1143f4f02a0fSchris    }
1144f4f02a0fSchris
1145f4f02a0fSchris    function finalise() {
1146f4f02a0fSchris        $last_call = end($this->calls);
1147f4f02a0fSchris        $this->writeCall(array('table_end',array(), $last_call[2]));
1148f4f02a0fSchris
1149f4f02a0fSchris        $this->process();
1150f4f02a0fSchris        $this->CallWriter->finalise();
11510cecf9d5Sandi    }
11520cecf9d5Sandi
11530cecf9d5Sandi    //------------------------------------------------------------------------
11540cecf9d5Sandi    function process() {
11550cecf9d5Sandi        foreach ( $this->calls as $call ) {
11560cecf9d5Sandi            switch ( $call[0] ) {
11570cecf9d5Sandi                case 'table_start':
11580cecf9d5Sandi                    $this->tableStart($call);
11590cecf9d5Sandi                break;
11600cecf9d5Sandi                case 'table_row':
11610cecf9d5Sandi                    $this->tableRowClose(array('tablerow_close',$call[1],$call[2]));
11620cecf9d5Sandi                    $this->tableRowOpen(array('tablerow_open',$call[1],$call[2]));
11630cecf9d5Sandi                break;
11640cecf9d5Sandi                case 'tableheader':
11650cecf9d5Sandi                case 'tablecell':
11660cecf9d5Sandi                    $this->tableCell($call);
11670cecf9d5Sandi                break;
11680cecf9d5Sandi                case 'table_end':
11690cecf9d5Sandi                    $this->tableRowClose(array('tablerow_close',$call[1],$call[2]));
11700cecf9d5Sandi                    $this->tableEnd($call);
11710cecf9d5Sandi                break;
11720cecf9d5Sandi                default:
11730cecf9d5Sandi                    $this->tableDefault($call);
11740cecf9d5Sandi                break;
11750cecf9d5Sandi            }
11760cecf9d5Sandi        }
11770cecf9d5Sandi        $this->CallWriter->writeCalls($this->tableCalls);
11780cecf9d5Sandi    }
11790cecf9d5Sandi
11800cecf9d5Sandi    function tableStart($call) {
11810cecf9d5Sandi        $this->tableCalls[] = array('table_open',array(),$call[2]);
11820cecf9d5Sandi        $this->tableCalls[] = array('tablerow_open',array(),$call[2]);
118344881bd0Shenning.noren        $this->firstCell = true;
11840cecf9d5Sandi    }
11850cecf9d5Sandi
11860cecf9d5Sandi    function tableEnd($call) {
11870cecf9d5Sandi        $this->tableCalls[] = array('table_close',array(),$call[2]);
11880cecf9d5Sandi        $this->finalizeTable();
11890cecf9d5Sandi    }
11900cecf9d5Sandi
11910cecf9d5Sandi    function tableRowOpen($call) {
11920cecf9d5Sandi        $this->tableCalls[] = $call;
11930cecf9d5Sandi        $this->currentCols = 0;
119444881bd0Shenning.noren        $this->firstCell = true;
11950cecf9d5Sandi        $this->lastCellType = 'tablecell';
11960cecf9d5Sandi        $this->maxRows++;
11970cecf9d5Sandi    }
11980cecf9d5Sandi
11990cecf9d5Sandi    function tableRowClose($call) {
12000cecf9d5Sandi        // Strip off final cell opening and anything after it
12010cecf9d5Sandi        while ( $discard = array_pop($this->tableCalls ) ) {
12020cecf9d5Sandi
12030cecf9d5Sandi            if ( $discard[0] == 'tablecell_open' || $discard[0] == 'tableheader_open') {
12040cecf9d5Sandi
12050cecf9d5Sandi                // Its a spanning element - put it back and close it
12060cecf9d5Sandi                if ( $discard[1][0] > 1 ) {
12070cecf9d5Sandi
12080cecf9d5Sandi                    $this->tableCalls[] = $discard;
12090cecf9d5Sandi                    if ( strstr($discard[0],'cell') ) {
12100cecf9d5Sandi                        $name = 'tablecell';
12110cecf9d5Sandi                    } else {
12120cecf9d5Sandi                        $name = 'tableheader';
12130cecf9d5Sandi                    }
12140cecf9d5Sandi                    $this->tableCalls[] = array($name.'_close',array(),$call[2]);
12150cecf9d5Sandi                }
12160cecf9d5Sandi
12170cecf9d5Sandi                break;
12180cecf9d5Sandi            }
12190cecf9d5Sandi        }
12200cecf9d5Sandi        $this->tableCalls[] = $call;
12210cecf9d5Sandi
12220cecf9d5Sandi        if ( $this->currentCols > $this->maxCols ) {
12230cecf9d5Sandi            $this->maxCols = $this->currentCols;
12240cecf9d5Sandi        }
12250cecf9d5Sandi    }
12260cecf9d5Sandi
12270cecf9d5Sandi    function tableCell($call) {
12280cecf9d5Sandi        if ( !$this->firstCell ) {
12290cecf9d5Sandi
12300cecf9d5Sandi            // Increase the span
12310cecf9d5Sandi            $lastCall = end($this->tableCalls);
12320cecf9d5Sandi
12330cecf9d5Sandi            // A cell call which follows an open cell means an empty cell so span
12340cecf9d5Sandi            if ( $lastCall[0] == 'tablecell_open' || $lastCall[0] == 'tableheader_open' ) {
12350cecf9d5Sandi                 $this->tableCalls[] = array('colspan',array(),$call[2]);
12360cecf9d5Sandi
12370cecf9d5Sandi            }
12380cecf9d5Sandi
12390cecf9d5Sandi            $this->tableCalls[] = array($this->lastCellType.'_close',array(),$call[2]);
12400cecf9d5Sandi            $this->tableCalls[] = array($call[0].'_open',array(1,NULL),$call[2]);
12410cecf9d5Sandi            $this->lastCellType = $call[0];
12420cecf9d5Sandi
12430cecf9d5Sandi        } else {
12440cecf9d5Sandi
12450cecf9d5Sandi            $this->tableCalls[] = array($call[0].'_open',array(1,NULL),$call[2]);
12460cecf9d5Sandi            $this->lastCellType = $call[0];
124744881bd0Shenning.noren            $this->firstCell = false;
12480cecf9d5Sandi
12490cecf9d5Sandi        }
12500cecf9d5Sandi
12510cecf9d5Sandi        $this->currentCols++;
12520cecf9d5Sandi    }
12530cecf9d5Sandi
12540cecf9d5Sandi    function tableDefault($call) {
12550cecf9d5Sandi        $this->tableCalls[] = $call;
12560cecf9d5Sandi    }
12570cecf9d5Sandi
12580cecf9d5Sandi    function finalizeTable() {
12590cecf9d5Sandi
12600cecf9d5Sandi        // Add the max cols and rows to the table opening
12610cecf9d5Sandi        if ( $this->tableCalls[0][0] == 'table_open' ) {
12620cecf9d5Sandi            // Adjust to num cols not num col delimeters
12630cecf9d5Sandi            $this->tableCalls[0][1][] = $this->maxCols - 1;
12640cecf9d5Sandi            $this->tableCalls[0][1][] = $this->maxRows;
12650cecf9d5Sandi        } else {
12660cecf9d5Sandi            trigger_error('First element in table call list is not table_open');
12670cecf9d5Sandi        }
12680cecf9d5Sandi
12690cecf9d5Sandi        $lastRow = 0;
12700cecf9d5Sandi        $lastCell = 0;
12710cecf9d5Sandi        $toDelete = array();
12720cecf9d5Sandi
12730cecf9d5Sandi        // Look for the colspan elements and increment the colspan on the
12740cecf9d5Sandi        // previous non-empty opening cell. Once done, delete all the cells
12750cecf9d5Sandi        // that contain colspans
12760cecf9d5Sandi        foreach ( $this->tableCalls as $key => $call ) {
12770cecf9d5Sandi
12780cecf9d5Sandi            if ( $call[0] == 'tablerow_open' ) {
12790cecf9d5Sandi
12800cecf9d5Sandi                $lastRow = $key;
12810cecf9d5Sandi
12820cecf9d5Sandi            } else if ( $call[0] == 'tablecell_open' || $call[0] == 'tableheader_open' ) {
12830cecf9d5Sandi
12840cecf9d5Sandi                $lastCell = $key;
12850cecf9d5Sandi
12860cecf9d5Sandi            } else if ( $call[0] == 'table_align' ) {
12870cecf9d5Sandi
12880cecf9d5Sandi                // If the previous element was a cell open, align right
12890cecf9d5Sandi                if ( $this->tableCalls[$key-1][0] == 'tablecell_open' || $this->tableCalls[$key-1][0] == 'tableheader_open' ) {
12900cecf9d5Sandi                    $this->tableCalls[$key-1][1][1] = 'right';
12910cecf9d5Sandi
12920cecf9d5Sandi                // If the next element if the close of an element, align either center or left
12930cecf9d5Sandi                } else if ( $this->tableCalls[$key+1][0] == 'tablecell_close' || $this->tableCalls[$key+1][0] == 'tableheader_close' ) {
12940cecf9d5Sandi                    if ( $this->tableCalls[$lastCell][1][1] == 'right' ) {
12950cecf9d5Sandi                        $this->tableCalls[$lastCell][1][1] = 'center';
12960cecf9d5Sandi                    } else {
12970cecf9d5Sandi                        $this->tableCalls[$lastCell][1][1] = 'left';
12980cecf9d5Sandi                    }
12990cecf9d5Sandi
13000cecf9d5Sandi                }
13010cecf9d5Sandi
13020cecf9d5Sandi                // Now convert the whitespace back to cdata
13030cecf9d5Sandi                $this->tableCalls[$key][0] = 'cdata';
13040cecf9d5Sandi
13050cecf9d5Sandi            } else if ( $call[0] == 'colspan' ) {
13060cecf9d5Sandi
130744881bd0Shenning.noren                $this->tableCalls[$key-1][1][0] = false;
13080cecf9d5Sandi
13090cecf9d5Sandi                for($i = $key-2; $i > $lastRow; $i--) {
13100cecf9d5Sandi
13110cecf9d5Sandi                    if ( $this->tableCalls[$i][0] == 'tablecell_open' || $this->tableCalls[$i][0] == 'tableheader_open' ) {
13120cecf9d5Sandi
131344881bd0Shenning.noren                        if ( false !== $this->tableCalls[$i][1][0] ) {
13140cecf9d5Sandi                            $this->tableCalls[$i][1][0]++;
13150cecf9d5Sandi                            break;
13160cecf9d5Sandi                        }
13170cecf9d5Sandi
13180cecf9d5Sandi
13190cecf9d5Sandi                    }
13200cecf9d5Sandi                }
13210cecf9d5Sandi
13220cecf9d5Sandi                $toDelete[] = $key-1;
13230cecf9d5Sandi                $toDelete[] = $key;
13240cecf9d5Sandi                $toDelete[] = $key+1;
13250cecf9d5Sandi            }
13260cecf9d5Sandi        }
13270cecf9d5Sandi
13289ab75d9eSAndreas Gohr
13299ab75d9eSAndreas Gohr        // condense cdata
13309ab75d9eSAndreas Gohr        $cnt = count($this->tableCalls);
13319ab75d9eSAndreas Gohr        for( $key = 0; $key < $cnt; $key++){
13329ab75d9eSAndreas Gohr            if($this->tableCalls[$key][0] == 'cdata'){
13339ab75d9eSAndreas Gohr                $ckey = $key;
13349ab75d9eSAndreas Gohr                $key++;
13359ab75d9eSAndreas Gohr                while($this->tableCalls[$key][0] == 'cdata'){
13369ab75d9eSAndreas Gohr                    $this->tableCalls[$ckey][1][0] .= $this->tableCalls[$key][1][0];
13379ab75d9eSAndreas Gohr                    $toDelete[] = $key;
13389ab75d9eSAndreas Gohr                    $key++;
13399ab75d9eSAndreas Gohr                }
13409ab75d9eSAndreas Gohr                continue;
13419ab75d9eSAndreas Gohr            }
13429ab75d9eSAndreas Gohr        }
13439ab75d9eSAndreas Gohr
13440cecf9d5Sandi        foreach ( $toDelete as $delete ) {
13450cecf9d5Sandi            unset($this->tableCalls[$delete]);
13460cecf9d5Sandi        }
13470cecf9d5Sandi        $this->tableCalls = array_values($this->tableCalls);
13480cecf9d5Sandi    }
13490cecf9d5Sandi}
13500cecf9d5Sandi
13510cecf9d5Sandi//------------------------------------------------------------------------
13520cecf9d5Sandiclass Doku_Handler_Section {
13530cecf9d5Sandi
13540cecf9d5Sandi    function process($calls) {
13550cecf9d5Sandi
13560cecf9d5Sandi        $sectionCalls = array();
135744881bd0Shenning.noren        $inSection = false;
13580cecf9d5Sandi
13590cecf9d5Sandi        foreach ( $calls as $call ) {
13600cecf9d5Sandi
13610cecf9d5Sandi            if ( $call[0] == 'header' ) {
13620cecf9d5Sandi
13630cecf9d5Sandi                if ( $inSection ) {
13640cecf9d5Sandi                    $sectionCalls[] = array('section_close',array(), $call[2]);
13650cecf9d5Sandi                }
13660cecf9d5Sandi
13670cecf9d5Sandi                $sectionCalls[] = $call;
13680cecf9d5Sandi                $sectionCalls[] = array('section_open',array($call[1][1]), $call[2]);
136944881bd0Shenning.noren                $inSection = true;
13700cecf9d5Sandi
13710cecf9d5Sandi            } else {
1372e1c10e4dSchris
1373e1c10e4dSchris                if ($call[0] == 'section_open' )  {
137444881bd0Shenning.noren                    $inSection = true;
1375e1c10e4dSchris                } else if ($call[0] == 'section_open' ) {
137644881bd0Shenning.noren                    $inSection = false;
1377e1c10e4dSchris                }
13780cecf9d5Sandi                $sectionCalls[] = $call;
13790cecf9d5Sandi            }
13800cecf9d5Sandi        }
13810cecf9d5Sandi
13820cecf9d5Sandi        if ( $inSection ) {
13830cecf9d5Sandi            $sectionCalls[] = array('section_close',array(), $call[2]);
13840cecf9d5Sandi        }
13850cecf9d5Sandi
13860cecf9d5Sandi        return $sectionCalls;
13870cecf9d5Sandi    }
13880cecf9d5Sandi
13890cecf9d5Sandi}
13900cecf9d5Sandi
13912a27e99aSandi/**
13922a27e99aSandi * Handler for paragraphs
13932a27e99aSandi *
13940b7c14c2Sandi * @author Harry Fuecks <hfuecks@gmail.com>
13952a27e99aSandi */
13960cecf9d5Sandiclass Doku_Handler_Block {
13970cecf9d5Sandi
13980cecf9d5Sandi    var $calls = array();
13990cecf9d5Sandi
14000cecf9d5Sandi    var $blockStack = array();
14010cecf9d5Sandi
140244881bd0Shenning.noren    var $inParagraph = false;
140344881bd0Shenning.noren    var $atStart = true;
140458b56c06Sandi    var $skipEolKey = -1;
14050cecf9d5Sandi
1406af146da0Sandi    // Blocks these should not be inside paragraphs
14070cecf9d5Sandi    var $blockOpen = array(
14080cecf9d5Sandi            'header',
1409df9add72Schris            'listu_open','listo_open','listitem_open','listcontent_open',
14100cecf9d5Sandi            'table_open','tablerow_open','tablecell_open','tableheader_open',
14110cecf9d5Sandi            'quote_open',
14120cecf9d5Sandi            'section_open', // Needed to prevent p_open between header and section_open
141376aa94b7Schris            'code','file','hr','preformatted','rss',
14140cecf9d5Sandi        );
14150cecf9d5Sandi
14160cecf9d5Sandi    var $blockClose = array(
14170cecf9d5Sandi            'header',
1418df9add72Schris            'listu_close','listo_close','listitem_close','listcontent_close',
14190cecf9d5Sandi            'table_close','tablerow_close','tablecell_close','tableheader_close',
14200cecf9d5Sandi            'quote_close',
14210cecf9d5Sandi            'section_close', // Needed to prevent p_close after section_close
142276aa94b7Schris            'code','file','hr','preformatted','rss',
14230cecf9d5Sandi        );
14240cecf9d5Sandi
1425af146da0Sandi    // Stacks can contain paragraphs
14260cecf9d5Sandi    var $stackOpen = array(
14270cecf9d5Sandi        'footnote_open','section_open',
14280cecf9d5Sandi        );
14290cecf9d5Sandi
14300cecf9d5Sandi    var $stackClose = array(
14310cecf9d5Sandi        'footnote_close','section_close',
14320cecf9d5Sandi        );
14330cecf9d5Sandi
1434af146da0Sandi
1435af146da0Sandi    /**
1436af146da0Sandi     * Constructor. Adds loaded syntax plugins to the block and stack
1437af146da0Sandi     * arrays
1438af146da0Sandi     *
1439af146da0Sandi     * @author Andreas Gohr <andi@splitbrain.org>
1440af146da0Sandi     */
1441af146da0Sandi    function Doku_Handler_Block(){
1442af146da0Sandi        global $DOKU_PLUGINS;
1443af146da0Sandi        //check if syntax plugins were loaded
144403c4aec3Schris        if(empty($DOKU_PLUGINS['syntax'])) return;
1445af146da0Sandi        foreach($DOKU_PLUGINS['syntax'] as $n => $p){
1446af146da0Sandi            $ptype = $p->getPType();
1447af146da0Sandi            if($ptype == 'block'){
1448af146da0Sandi                $this->blockOpen[]  = 'plugin_'.$n;
1449af146da0Sandi                $this->blockClose[] = 'plugin_'.$n;
1450af146da0Sandi            }elseif($ptype == 'stack'){
1451af146da0Sandi                $this->stackOpen[]  = 'plugin_'.$n;
1452af146da0Sandi                $this->stackClose[] = 'plugin_'.$n;
1453af146da0Sandi            }
1454af146da0Sandi        }
1455af146da0Sandi    }
1456af146da0Sandi
14572a27e99aSandi    /**
14582a27e99aSandi     * Close a paragraph if needed
14592a27e99aSandi     *
14602a27e99aSandi     * This function makes sure there are no empty paragraphs on the stack
14612a27e99aSandi     *
14622a27e99aSandi     * @author Andreas Gohr <andi@splitbrain.org>
14632a27e99aSandi     */
1464506ae684Sandi    function closeParagraph($pos){
1465506ae684Sandi        // look back if there was any content - we don't want empty paragraphs
1466506ae684Sandi        $content = '';
1467506ae684Sandi        for($i=count($this->calls)-1; $i>=0; $i--){
1468506ae684Sandi            if($this->calls[$i][0] == 'p_open'){
1469506ae684Sandi                break;
1470506ae684Sandi            }elseif($this->calls[$i][0] == 'cdata'){
1471506ae684Sandi                $content .= $this->calls[$i][1][0];
1472506ae684Sandi            }else{
1473506ae684Sandi                $content = 'found markup';
1474506ae684Sandi                break;
1475506ae684Sandi            }
1476506ae684Sandi        }
1477506ae684Sandi
1478506ae684Sandi        if(trim($content)==''){
1479506ae684Sandi            //remove the whole paragraph
1480506ae684Sandi            array_splice($this->calls,$i);
1481506ae684Sandi        }else{
148229d015e3SBen Coburn            if ($this->calls[count($this->calls)-1][0] == 'section_edit') {
148329d015e3SBen Coburn                $tmp = array_pop($this->calls);
1484506ae684Sandi                $this->calls[] = array('p_close',array(), $pos);
148529d015e3SBen Coburn                $this->calls[] = $tmp;
148629d015e3SBen Coburn            } else {
148729d015e3SBen Coburn                $this->calls[] = array('p_close',array(), $pos);
148829d015e3SBen Coburn            }
1489506ae684Sandi        }
1490e1c10e4dSchris
149144881bd0Shenning.noren        $this->inParagraph = false;
1492506ae684Sandi    }
1493506ae684Sandi
14942a27e99aSandi    /**
14952a27e99aSandi     * Processes the whole instruction stack to open and close paragraphs
14962a27e99aSandi     *
14970b7c14c2Sandi     * @author Harry Fuecks <hfuecks@gmail.com>
14982a27e99aSandi     * @author Andreas Gohr <andi@splitbrain.org>
14992a27e99aSandi     * @todo   This thing is really messy and should be rewritten
15002a27e99aSandi     */
15010cecf9d5Sandi    function process($calls) {
15020cecf9d5Sandi        foreach ( $calls as $key => $call ) {
1503f0891737Sandi            $cname = $call[0];
1504e1c10e4dSchris            if($cname == 'plugin') {
1505e1c10e4dSchris                $cname='plugin_'.$call[1][0];
1506e1c10e4dSchris
1507e1c10e4dSchris                $plugin = true;
1508e1c10e4dSchris                $plugin_open = (($call[1][2] == DOKU_LEXER_ENTER) || ($call[1][2] == DOKU_LEXER_SPECIAL));
1509e1c10e4dSchris                $plugin_close = (($call[1][2] == DOKU_LEXER_EXIT) || ($call[1][2] == DOKU_LEXER_SPECIAL));
1510e1c10e4dSchris            } else {
1511e1c10e4dSchris                $plugin = false;
1512e1c10e4dSchris            }
15130cecf9d5Sandi
15140cecf9d5Sandi            // Process blocks which are stack like... (contain linefeeds)
1515e1c10e4dSchris            if ( in_array($cname,$this->stackOpen ) && (!$plugin || $plugin_open) ) {
1516e1c10e4dSchris
15170cecf9d5Sandi                $this->calls[] = $call;
15180cecf9d5Sandi
15190cecf9d5Sandi                // Hack - footnotes shouldn't immediately contain a p_open
1520f0891737Sandi                if ( $cname != 'footnote_open' ) {
15210cecf9d5Sandi                    $this->addToStack();
15220cecf9d5Sandi                } else {
152344881bd0Shenning.noren                    $this->addToStack(false);
15240cecf9d5Sandi                }
15250cecf9d5Sandi                continue;
15260cecf9d5Sandi            }
15270cecf9d5Sandi
1528e1c10e4dSchris            if ( in_array($cname,$this->stackClose ) && (!$plugin || $plugin_close)) {
15290cecf9d5Sandi
15300cecf9d5Sandi                if ( $this->inParagraph ) {
1531506ae684Sandi                    $this->closeParagraph($call[2]);
15320cecf9d5Sandi                }
15330cecf9d5Sandi                $this->calls[] = $call;
15340cecf9d5Sandi                $this->removeFromStack();
15350cecf9d5Sandi                continue;
15360cecf9d5Sandi            }
15370cecf9d5Sandi
15380cecf9d5Sandi            if ( !$this->atStart ) {
15390cecf9d5Sandi
1540f0891737Sandi                if ( $cname == 'eol' ) {
15410cecf9d5Sandi
1542e1c10e4dSchris                    // Check this isn't an eol instruction to skip...
154358b56c06Sandi                    if ( $this->skipEolKey != $key ) {
1544e1c10e4dSchris                        // Look to see if the next instruction is an EOL
154558b56c06Sandi                        if ( isset($calls[$key+1]) && $calls[$key+1][0] == 'eol' ) {
154658b56c06Sandi
154758b56c06Sandi                            if ( $this->inParagraph ) {
1548506ae684Sandi                                //$this->calls[] = array('p_close',array(), $call[2]);
1549506ae684Sandi                                $this->closeParagraph($call[2]);
155058b56c06Sandi                            }
155158b56c06Sandi
155258b56c06Sandi                            $this->calls[] = array('p_open',array(), $call[2]);
155344881bd0Shenning.noren                            $this->inParagraph = true;
155458b56c06Sandi
155558b56c06Sandi
1556e1c10e4dSchris                            // Mark the next instruction for skipping
155758b56c06Sandi                            $this->skipEolKey = $key+1;
155858b56c06Sandi
155958b56c06Sandi                        }else{
156058b56c06Sandi                            //if this is just a single eol make a space from it
156158b56c06Sandi                            $this->calls[] = array('cdata',array(" "), $call[2]);
156258b56c06Sandi                        }
156358b56c06Sandi                    }
156458b56c06Sandi
15650cecf9d5Sandi
15660cecf9d5Sandi                } else {
15670cecf9d5Sandi
156844881bd0Shenning.noren                    $storeCall = true;
1569e1c10e4dSchris                    if ( $this->inParagraph && (in_array($cname, $this->blockOpen) && (!$plugin || $plugin_open))) {
1570506ae684Sandi                        $this->closeParagraph($call[2]);
15710cecf9d5Sandi                        $this->calls[] = $call;
157244881bd0Shenning.noren                        $storeCall = false;
15730cecf9d5Sandi                    }
15740cecf9d5Sandi
1575e1c10e4dSchris                    if ( in_array($cname, $this->blockClose) && (!$plugin || $plugin_close)) {
15760cecf9d5Sandi                        if ( $this->inParagraph ) {
1577506ae684Sandi                            $this->closeParagraph($call[2]);
15780cecf9d5Sandi                        }
15790cecf9d5Sandi                        if ( $storeCall ) {
15800cecf9d5Sandi                            $this->calls[] = $call;
158144881bd0Shenning.noren                            $storeCall = false;
15820cecf9d5Sandi                        }
15830cecf9d5Sandi
15840cecf9d5Sandi                        // This really sucks and suggests this whole class sucks but...
1585e1c10e4dSchris                        if ( isset($calls[$key+1])) {
1586e1c10e4dSchris                            $cname_plusone = $calls[$key+1][0];
1587e1c10e4dSchris                            if ($cname_plusone == 'plugin') {
1588e1c10e4dSchris                                $cname_plusone = 'plugin'.$calls[$key+1][1][0];
1589e1c10e4dSchris
1590e1c10e4dSchris                                // plugin test, true if plugin has a state which precludes it requiring blockOpen or blockClose
1591e1c10e4dSchris                                $plugin_plusone = true;
1592e1c10e4dSchris                                $plugin_test = ($call[$key+1][1][2] == DOKU_LEXER_MATCHED) || ($call[$key+1][1][2] == DOKU_LEXER_MATCHED);
1593e1c10e4dSchris                            } else {
1594e1c10e4dSchris                                $plugin_plusone = false;
1595e1c10e4dSchris                            }
1596e1c10e4dSchris                            if ((!in_array($cname_plusone, $this->blockOpen) && !in_array($cname_plusone, $this->blockClose)) ||
1597e1c10e4dSchris                                ($plugin_plusone && $plugin_test)
15980cecf9d5Sandi                                ) {
15990cecf9d5Sandi
16000cecf9d5Sandi                                $this->calls[] = array('p_open',array(), $call[2]);
160144881bd0Shenning.noren                                $this->inParagraph = true;
16020cecf9d5Sandi                            }
16030cecf9d5Sandi                        }
1604e1c10e4dSchris                    }
16050cecf9d5Sandi
16060cecf9d5Sandi                    if ( $storeCall ) {
16070cecf9d5Sandi                        $this->calls[] = $call;
16080cecf9d5Sandi                    }
16090cecf9d5Sandi
16100cecf9d5Sandi                }
16110cecf9d5Sandi
16120cecf9d5Sandi
16130cecf9d5Sandi            } else {
16140cecf9d5Sandi
16150cecf9d5Sandi                // Unless there's already a block at the start, start a paragraph
1616f0891737Sandi                if ( !in_array($cname,$this->blockOpen) ) {
16170cecf9d5Sandi                    $this->calls[] = array('p_open',array(), $call[2]);
16180cecf9d5Sandi                    if ( $call[0] != 'eol' ) {
16190cecf9d5Sandi                        $this->calls[] = $call;
16200cecf9d5Sandi                    }
162144881bd0Shenning.noren                    $this->atStart = false;
162244881bd0Shenning.noren                    $this->inParagraph = true;
16230cecf9d5Sandi                } else {
16240cecf9d5Sandi                    $this->calls[] = $call;
162544881bd0Shenning.noren                    $this->atStart = false;
16260cecf9d5Sandi                }
16270cecf9d5Sandi
16280cecf9d5Sandi            }
16290cecf9d5Sandi
16300cecf9d5Sandi        }
16310cecf9d5Sandi
16320cecf9d5Sandi        if ( $this->inParagraph ) {
1633f0891737Sandi            if ( $cname == 'p_open' ) {
16340cecf9d5Sandi                // Ditch the last call
16350cecf9d5Sandi                array_pop($this->calls);
1636f0891737Sandi            } else if ( !in_array($cname, $this->blockClose) ) {
1637506ae684Sandi                //$this->calls[] = array('p_close',array(), $call[2]);
1638506ae684Sandi                $this->closeParagraph($call[2]);
16390cecf9d5Sandi            } else {
16400cecf9d5Sandi                $last_call = array_pop($this->calls);
1641506ae684Sandi                //$this->calls[] = array('p_close',array(), $call[2]);
1642506ae684Sandi                $this->closeParagraph($call[2]);
16430cecf9d5Sandi                $this->calls[] = $last_call;
16440cecf9d5Sandi            }
16450cecf9d5Sandi        }
16460cecf9d5Sandi
16470cecf9d5Sandi        return $this->calls;
16480cecf9d5Sandi    }
16490cecf9d5Sandi
165044881bd0Shenning.noren    function addToStack($newStart = true) {
16510cecf9d5Sandi        $this->blockStack[] = array($this->atStart, $this->inParagraph);
16520cecf9d5Sandi        $this->atStart = $newStart;
165344881bd0Shenning.noren        $this->inParagraph = false;
16540cecf9d5Sandi    }
16550cecf9d5Sandi
16560cecf9d5Sandi    function removeFromStack() {
16570cecf9d5Sandi        $state = array_pop($this->blockStack);
16580cecf9d5Sandi        $this->atStart = $state[0];
16590cecf9d5Sandi        $this->inParagraph = $state[1];
16600cecf9d5Sandi    }
16610cecf9d5Sandi}
16622a27e99aSandi
16634826ab45Sandi//Setup VIM: ex: et ts=4 enc=utf-8 :
1664