10cecf9d5Sandi<?php 2fa8adffeSAndreas Gohrif(!defined('DOKU_INC')) die('meh.'); 352fe2bfbSChris Smithif (!defined('DOKU_PARSER_EOL')) define('DOKU_PARSER_EOL',"\n"); // add this to make handling test cases simpler 4a9c1d2d2SChris Smith 50cecf9d5Sandiclass Doku_Handler { 60cecf9d5Sandi 70cecf9d5Sandi var $Renderer = NULL; 80cecf9d5Sandi 90cecf9d5Sandi var $CallWriter = NULL; 100cecf9d5Sandi 110cecf9d5Sandi var $calls = array(); 120cecf9d5Sandi 13e1c10e4dSchris var $status = array( 1444881bd0Shenning.noren 'section' => false, 1535dae8b0SBen Coburn 'section_edit_start' => -1, 1635dae8b0SBen Coburn 'section_edit_level' => 1, 1735dae8b0SBen Coburn 'section_edit_title' => '' 180cecf9d5Sandi ); 190cecf9d5Sandi 2044881bd0Shenning.noren var $rewriteBlocks = true; 21b7c441b9SHarry Fuecks 220cecf9d5Sandi function Doku_Handler() { 230cecf9d5Sandi $this->CallWriter = & new Doku_Handler_CallWriter($this); 240cecf9d5Sandi } 250cecf9d5Sandi 26433bef32Sandi function _addCall($handler, $args, $pos) { 270cecf9d5Sandi $call = array($handler,$args, $pos); 280cecf9d5Sandi $this->CallWriter->writeCall($call); 290cecf9d5Sandi } 300cecf9d5Sandi 3182d61635Spierre.spring function addPluginCall($plugin, $args, $state, $pos, $match) { 3282d61635Spierre.spring $call = array('plugin',array($plugin, $args, $state, $match), $pos); 3304ebd214Schris $this->CallWriter->writeCall($call); 3404ebd214Schris } 3504ebd214Schris 36433bef32Sandi function _finalize(){ 37e1c10e4dSchris 38f4f02a0fSchris $this->CallWriter->finalise(); 39f4f02a0fSchris 40e1c10e4dSchris if ( $this->status['section'] ) { 41e1c10e4dSchris $last_call = end($this->calls); 42e1c10e4dSchris array_push($this->calls,array('section_close',array(), $last_call[2])); 43b203781fSBen Coburn if ($this->status['section_edit_start']>1) { 44b203781fSBen Coburn // ignore last edit section if there is only one header 45b203781fSBen 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])); 46b203781fSBen Coburn } 470cecf9d5Sandi } 480cecf9d5Sandi 49b7c441b9SHarry Fuecks if ( $this->rewriteBlocks ) { 500cecf9d5Sandi $B = & new Doku_Handler_Block(); 510cecf9d5Sandi $this->calls = $B->process($this->calls); 52b7c441b9SHarry Fuecks } 53e0ad864eSchris 5424bb549bSchris trigger_event('PARSER_HANDLER_DONE',$this); 550cecf9d5Sandi 560cecf9d5Sandi array_unshift($this->calls,array('document_start',array(),0)); 570cecf9d5Sandi $last_call = end($this->calls); 580cecf9d5Sandi array_push($this->calls,array('document_end',array(),$last_call[2])); 590cecf9d5Sandi } 600cecf9d5Sandi 610cecf9d5Sandi function fetch() { 620cecf9d5Sandi $call = each($this->calls); 630cecf9d5Sandi if ( $call ) { 640cecf9d5Sandi return $call['value']; 650cecf9d5Sandi } 6644881bd0Shenning.noren return false; 670cecf9d5Sandi } 68ee20e7d1Sandi 69ee20e7d1Sandi 70ee20e7d1Sandi /** 71ee20e7d1Sandi * Special plugin handler 72ee20e7d1Sandi * 73ee20e7d1Sandi * This handler is called for all modes starting with 'plugin_'. 74ee20e7d1Sandi * An additional parameter with the plugin name is passed 75ee20e7d1Sandi * 76ee20e7d1Sandi * @author Andreas Gohr <andi@splitbrain.org> 77ee20e7d1Sandi */ 78ee20e7d1Sandi function plugin($match, $state, $pos, $pluginname){ 79ee20e7d1Sandi $data = array($match); 80a46d0d65SAndreas Gohr $plugin =& plugin_load('syntax',$pluginname); 81a46d0d65SAndreas Gohr if($plugin != null){ 82f02a7d06Schris $data = $plugin->handle($match, $state, $pos, $this); 83ee20e7d1Sandi } 8413ecfb18SChris Smith if ($data !== false) { 8582d61635Spierre.spring $this->addPluginCall($pluginname,$data,$state,$pos,$match); 8613ecfb18SChris Smith } 8744881bd0Shenning.noren return true; 88ee20e7d1Sandi } 890cecf9d5Sandi 900cecf9d5Sandi function base($match, $state, $pos) { 910cecf9d5Sandi switch ( $state ) { 920cecf9d5Sandi case DOKU_LEXER_UNMATCHED: 93433bef32Sandi $this->_addCall('cdata',array($match), $pos); 9444881bd0Shenning.noren return true; 950cecf9d5Sandi break; 960cecf9d5Sandi } 970cecf9d5Sandi } 980cecf9d5Sandi 990cecf9d5Sandi function header($match, $state, $pos) { 100b203781fSBen Coburn global $conf; 101b203781fSBen Coburn 102d7e8115fSAndreas Gohr // get level and title 103a4a2d4cfSAndreas Gohr $title = trim($match); 104a4a2d4cfSAndreas Gohr $level = 7 - strspn($title,'='); 105d7e8115fSAndreas Gohr if($level < 1) $level = 1; 106a4a2d4cfSAndreas Gohr $title = trim($title,'='); 107a4a2d4cfSAndreas Gohr $title = trim($title); 1080cecf9d5Sandi 109e1c10e4dSchris if ($this->status['section']) $this->_addCall('section_close',array(),$pos); 110e1c10e4dSchris 111b203781fSBen Coburn if ($level<=$conf['maxseclevel']) { 11235dae8b0SBen Coburn $this->_addCall('section_edit',array($this->status['section_edit_start'], $pos-1, $this->status['section_edit_level'], $this->status['section_edit_title']), $pos); 11335dae8b0SBen Coburn $this->status['section_edit_start'] = $pos; 11435dae8b0SBen Coburn $this->status['section_edit_level'] = $level; 11535dae8b0SBen Coburn $this->status['section_edit_title'] = $title; 116b203781fSBen Coburn } 11735dae8b0SBen Coburn 118433bef32Sandi $this->_addCall('header',array($title,$level,$pos), $pos); 119e1c10e4dSchris 120e1c10e4dSchris $this->_addCall('section_open',array($level),$pos); 12144881bd0Shenning.noren $this->status['section'] = true; 12244881bd0Shenning.noren return true; 1230cecf9d5Sandi } 1240cecf9d5Sandi 1250cecf9d5Sandi function notoc($match, $state, $pos) { 126e41c4da9SAndreas Gohr $this->_addCall('notoc',array(),$pos); 12744881bd0Shenning.noren return true; 1280cecf9d5Sandi } 1290cecf9d5Sandi 1309dc2c2afSandi function nocache($match, $state, $pos) { 1319dc2c2afSandi $this->_addCall('nocache',array(),$pos); 13244881bd0Shenning.noren return true; 1339dc2c2afSandi } 1349dc2c2afSandi 1350cecf9d5Sandi function linebreak($match, $state, $pos) { 136433bef32Sandi $this->_addCall('linebreak',array(),$pos); 13744881bd0Shenning.noren return true; 1380cecf9d5Sandi } 1390cecf9d5Sandi 1400cecf9d5Sandi function eol($match, $state, $pos) { 141433bef32Sandi $this->_addCall('eol',array(),$pos); 14244881bd0Shenning.noren return true; 1430cecf9d5Sandi } 1440cecf9d5Sandi 1450cecf9d5Sandi function hr($match, $state, $pos) { 146433bef32Sandi $this->_addCall('hr',array(),$pos); 14744881bd0Shenning.noren return true; 1480cecf9d5Sandi } 1490cecf9d5Sandi 150433bef32Sandi function _nestingTag($match, $state, $pos, $name) { 1510cecf9d5Sandi switch ( $state ) { 1520cecf9d5Sandi case DOKU_LEXER_ENTER: 153433bef32Sandi $this->_addCall($name.'_open', array(), $pos); 1540cecf9d5Sandi break; 1550cecf9d5Sandi case DOKU_LEXER_EXIT: 156433bef32Sandi $this->_addCall($name.'_close', array(), $pos); 1570cecf9d5Sandi break; 1580cecf9d5Sandi case DOKU_LEXER_UNMATCHED: 159433bef32Sandi $this->_addCall('cdata',array($match), $pos); 1600cecf9d5Sandi break; 1610cecf9d5Sandi } 1620cecf9d5Sandi } 1630cecf9d5Sandi 1640cecf9d5Sandi function strong($match, $state, $pos) { 165433bef32Sandi $this->_nestingTag($match, $state, $pos, 'strong'); 16644881bd0Shenning.noren return true; 1670cecf9d5Sandi } 1680cecf9d5Sandi 1690cecf9d5Sandi function emphasis($match, $state, $pos) { 170433bef32Sandi $this->_nestingTag($match, $state, $pos, 'emphasis'); 17144881bd0Shenning.noren return true; 1720cecf9d5Sandi } 1730cecf9d5Sandi 1740cecf9d5Sandi function underline($match, $state, $pos) { 175433bef32Sandi $this->_nestingTag($match, $state, $pos, 'underline'); 17644881bd0Shenning.noren return true; 1770cecf9d5Sandi } 1780cecf9d5Sandi 1790cecf9d5Sandi function monospace($match, $state, $pos) { 180433bef32Sandi $this->_nestingTag($match, $state, $pos, 'monospace'); 18144881bd0Shenning.noren return true; 1820cecf9d5Sandi } 1830cecf9d5Sandi 1840cecf9d5Sandi function subscript($match, $state, $pos) { 185433bef32Sandi $this->_nestingTag($match, $state, $pos, 'subscript'); 18644881bd0Shenning.noren return true; 1870cecf9d5Sandi } 1880cecf9d5Sandi 1890cecf9d5Sandi function superscript($match, $state, $pos) { 190433bef32Sandi $this->_nestingTag($match, $state, $pos, 'superscript'); 19144881bd0Shenning.noren return true; 1920cecf9d5Sandi } 1930cecf9d5Sandi 1940cecf9d5Sandi function deleted($match, $state, $pos) { 195433bef32Sandi $this->_nestingTag($match, $state, $pos, 'deleted'); 19644881bd0Shenning.noren return true; 1970cecf9d5Sandi } 1980cecf9d5Sandi 1990cecf9d5Sandi 2000cecf9d5Sandi function footnote($match, $state, $pos) { 2015587e44cSchris// $this->_nestingTag($match, $state, $pos, 'footnote'); 202742c66f8Schris if (!isset($this->_footnote)) $this->_footnote = false; 2032fe7363dSchris 2045587e44cSchris switch ( $state ) { 2055587e44cSchris case DOKU_LEXER_ENTER: 2062fe7363dSchris // footnotes can not be nested - however due to limitations in lexer it can't be prevented 2072fe7363dSchris // we will still enter a new footnote mode, we just do nothing 208742c66f8Schris if ($this->_footnote) { 2092fe7363dSchris $this->_addCall('cdata',array($match), $pos); 2102fe7363dSchris break; 2112fe7363dSchris } 2122fe7363dSchris 213742c66f8Schris $this->_footnote = true; 2142fe7363dSchris 2155587e44cSchris $ReWriter = & new Doku_Handler_Nest($this->CallWriter,'footnote_close'); 2165587e44cSchris $this->CallWriter = & $ReWriter; 2174a26ad85Schris $this->_addCall('footnote_open', array(), $pos); 2185587e44cSchris break; 2195587e44cSchris case DOKU_LEXER_EXIT: 2202fe7363dSchris // check whether we have already exitted the footnote mode, can happen if the modes were nested 221742c66f8Schris if (!$this->_footnote) { 2222fe7363dSchris $this->_addCall('cdata',array($match), $pos); 2232fe7363dSchris break; 2242fe7363dSchris } 2252fe7363dSchris 226742c66f8Schris $this->_footnote = false; 2272fe7363dSchris 2285587e44cSchris $this->_addCall('footnote_close', array(), $pos); 2295587e44cSchris $this->CallWriter->process(); 2305587e44cSchris $ReWriter = & $this->CallWriter; 2315587e44cSchris $this->CallWriter = & $ReWriter->CallWriter; 2325587e44cSchris break; 2335587e44cSchris case DOKU_LEXER_UNMATCHED: 2345587e44cSchris $this->_addCall('cdata', array($match), $pos); 2355587e44cSchris break; 2365587e44cSchris } 23744881bd0Shenning.noren return true; 2380cecf9d5Sandi } 2390cecf9d5Sandi 2400cecf9d5Sandi function listblock($match, $state, $pos) { 2410cecf9d5Sandi switch ( $state ) { 2420cecf9d5Sandi case DOKU_LEXER_ENTER: 2430cecf9d5Sandi $ReWriter = & new Doku_Handler_List($this->CallWriter); 2440cecf9d5Sandi $this->CallWriter = & $ReWriter; 245433bef32Sandi $this->_addCall('list_open', array($match), $pos); 2460cecf9d5Sandi break; 2470cecf9d5Sandi case DOKU_LEXER_EXIT: 248433bef32Sandi $this->_addCall('list_close', array(), $pos); 2490cecf9d5Sandi $this->CallWriter->process(); 2500cecf9d5Sandi $ReWriter = & $this->CallWriter; 2510cecf9d5Sandi $this->CallWriter = & $ReWriter->CallWriter; 2520cecf9d5Sandi break; 2530cecf9d5Sandi case DOKU_LEXER_MATCHED: 254433bef32Sandi $this->_addCall('list_item', array($match), $pos); 2550cecf9d5Sandi break; 2560cecf9d5Sandi case DOKU_LEXER_UNMATCHED: 257433bef32Sandi $this->_addCall('cdata', array($match), $pos); 2580cecf9d5Sandi break; 2590cecf9d5Sandi } 26044881bd0Shenning.noren return true; 2610cecf9d5Sandi } 2620cecf9d5Sandi 2630cecf9d5Sandi function unformatted($match, $state, $pos) { 2640cecf9d5Sandi if ( $state == DOKU_LEXER_UNMATCHED ) { 265433bef32Sandi $this->_addCall('unformatted',array($match), $pos); 2660cecf9d5Sandi } 26744881bd0Shenning.noren return true; 2680cecf9d5Sandi } 2690cecf9d5Sandi 2700cecf9d5Sandi function php($match, $state, $pos) { 271df9add72Schris global $conf; 2720cecf9d5Sandi if ( $state == DOKU_LEXER_UNMATCHED ) { 273433bef32Sandi $this->_addCall('php',array($match), $pos); 2740cecf9d5Sandi } 27544881bd0Shenning.noren return true; 2760cecf9d5Sandi } 2770cecf9d5Sandi 27807f89c3cSAnika Henke function phpblock($match, $state, $pos) { 27907f89c3cSAnika Henke global $conf; 28007f89c3cSAnika Henke if ( $state == DOKU_LEXER_UNMATCHED ) { 28107f89c3cSAnika Henke $this->_addCall('phpblock',array($match), $pos); 28207f89c3cSAnika Henke } 28307f89c3cSAnika Henke return true; 28407f89c3cSAnika Henke } 28507f89c3cSAnika Henke 2860cecf9d5Sandi function html($match, $state, $pos) { 287df9add72Schris global $conf; 2880cecf9d5Sandi if ( $state == DOKU_LEXER_UNMATCHED ) { 289433bef32Sandi $this->_addCall('html',array($match), $pos); 2900cecf9d5Sandi } 29144881bd0Shenning.noren return true; 2920cecf9d5Sandi } 2930cecf9d5Sandi 29407f89c3cSAnika Henke function htmlblock($match, $state, $pos) { 29507f89c3cSAnika Henke global $conf; 29607f89c3cSAnika Henke if ( $state == DOKU_LEXER_UNMATCHED ) { 29707f89c3cSAnika Henke $this->_addCall('htmlblock',array($match), $pos); 29807f89c3cSAnika Henke } 29907f89c3cSAnika Henke return true; 30007f89c3cSAnika Henke } 30107f89c3cSAnika Henke 3020cecf9d5Sandi function preformatted($match, $state, $pos) { 3030cecf9d5Sandi switch ( $state ) { 3040cecf9d5Sandi case DOKU_LEXER_ENTER: 3050cecf9d5Sandi $ReWriter = & new Doku_Handler_Preformatted($this->CallWriter); 3060cecf9d5Sandi $this->CallWriter = & $ReWriter; 307433bef32Sandi $this->_addCall('preformatted_start',array(), $pos); 3080cecf9d5Sandi break; 3090cecf9d5Sandi case DOKU_LEXER_EXIT: 310433bef32Sandi $this->_addCall('preformatted_end',array(), $pos); 3110cecf9d5Sandi $this->CallWriter->process(); 3120cecf9d5Sandi $ReWriter = & $this->CallWriter; 3130cecf9d5Sandi $this->CallWriter = & $ReWriter->CallWriter; 3140cecf9d5Sandi break; 3150cecf9d5Sandi case DOKU_LEXER_MATCHED: 316433bef32Sandi $this->_addCall('preformatted_newline',array(), $pos); 3170cecf9d5Sandi break; 3180cecf9d5Sandi case DOKU_LEXER_UNMATCHED: 319433bef32Sandi $this->_addCall('preformatted_content',array($match), $pos); 3200cecf9d5Sandi break; 3210cecf9d5Sandi } 3220cecf9d5Sandi 32344881bd0Shenning.noren return true; 3240cecf9d5Sandi } 3250cecf9d5Sandi 3260cecf9d5Sandi function quote($match, $state, $pos) { 3270cecf9d5Sandi 3280cecf9d5Sandi switch ( $state ) { 3290cecf9d5Sandi 3300cecf9d5Sandi case DOKU_LEXER_ENTER: 3310cecf9d5Sandi $ReWriter = & new Doku_Handler_Quote($this->CallWriter); 3320cecf9d5Sandi $this->CallWriter = & $ReWriter; 333433bef32Sandi $this->_addCall('quote_start',array($match), $pos); 3340cecf9d5Sandi break; 3350cecf9d5Sandi 3360cecf9d5Sandi case DOKU_LEXER_EXIT: 337433bef32Sandi $this->_addCall('quote_end',array(), $pos); 3380cecf9d5Sandi $this->CallWriter->process(); 3390cecf9d5Sandi $ReWriter = & $this->CallWriter; 3400cecf9d5Sandi $this->CallWriter = & $ReWriter->CallWriter; 3410cecf9d5Sandi break; 3420cecf9d5Sandi 3430cecf9d5Sandi case DOKU_LEXER_MATCHED: 344433bef32Sandi $this->_addCall('quote_newline',array($match), $pos); 3450cecf9d5Sandi break; 3460cecf9d5Sandi 3470cecf9d5Sandi case DOKU_LEXER_UNMATCHED: 348433bef32Sandi $this->_addCall('cdata',array($match), $pos); 3490cecf9d5Sandi break; 3500cecf9d5Sandi 3510cecf9d5Sandi } 3520cecf9d5Sandi 35344881bd0Shenning.noren return true; 3540cecf9d5Sandi } 3550cecf9d5Sandi 3563d491f75SAndreas Gohr function file($match, $state, $pos) { 3573d491f75SAndreas Gohr return $this->code($match, $state, $pos, 'file'); 3583d491f75SAndreas Gohr } 3593d491f75SAndreas Gohr 3603d491f75SAndreas Gohr function code($match, $state, $pos, $type='code') { 3613d491f75SAndreas Gohr if ( $state == DOKU_LEXER_UNMATCHED ) { 3624b7f9e70STom N Harris $matches = explode('>',$match,2); 3630cecf9d5Sandi $matches[0] = trim($matches[0]); 3643d491f75SAndreas Gohr 3653d491f75SAndreas Gohr list($language,$filename) = explode(' ',$matches[0],2); 3663d491f75SAndreas Gohr $language = trim($language); 3673d491f75SAndreas Gohr $filename = trim($filename); 3683d491f75SAndreas Gohr if ( $language == '' ) $language = null; 3693d491f75SAndreas Gohr if ( $language == '-' ) $language = null; 3703d491f75SAndreas Gohr if ( $filename == '' ) $filename = null; 3713d491f75SAndreas Gohr # We shortcut html here. 3723d491f75SAndreas Gohr if($language == 'html') $language = 'html4strict'; 373433bef32Sandi $this->_addCall( 3743d491f75SAndreas Gohr $type, 3753d491f75SAndreas Gohr array($matches[1],$language,$filename), 3760cecf9d5Sandi $pos 3770cecf9d5Sandi ); 3780cecf9d5Sandi } 37944881bd0Shenning.noren return true; 3800cecf9d5Sandi } 3810cecf9d5Sandi 3820cecf9d5Sandi function acronym($match, $state, $pos) { 383433bef32Sandi $this->_addCall('acronym',array($match), $pos); 38444881bd0Shenning.noren return true; 3850cecf9d5Sandi } 3860cecf9d5Sandi 3870cecf9d5Sandi function smiley($match, $state, $pos) { 388433bef32Sandi $this->_addCall('smiley',array($match), $pos); 38944881bd0Shenning.noren return true; 3900cecf9d5Sandi } 3910cecf9d5Sandi 3920cecf9d5Sandi function wordblock($match, $state, $pos) { 393433bef32Sandi $this->_addCall('wordblock',array($match), $pos); 39444881bd0Shenning.noren return true; 3950cecf9d5Sandi } 3960cecf9d5Sandi 3970cecf9d5Sandi function entity($match, $state, $pos) { 398433bef32Sandi $this->_addCall('entity',array($match), $pos); 39944881bd0Shenning.noren return true; 4000cecf9d5Sandi } 4010cecf9d5Sandi 4020cecf9d5Sandi function multiplyentity($match, $state, $pos) { 4030cecf9d5Sandi preg_match_all('/\d+/',$match,$matches); 404433bef32Sandi $this->_addCall('multiplyentity',array($matches[0][0],$matches[0][1]), $pos); 40544881bd0Shenning.noren return true; 4060cecf9d5Sandi } 4070cecf9d5Sandi 4080cecf9d5Sandi function singlequoteopening($match, $state, $pos) { 409433bef32Sandi $this->_addCall('singlequoteopening',array(), $pos); 41044881bd0Shenning.noren return true; 4110cecf9d5Sandi } 4120cecf9d5Sandi 4130cecf9d5Sandi function singlequoteclosing($match, $state, $pos) { 414433bef32Sandi $this->_addCall('singlequoteclosing',array(), $pos); 41544881bd0Shenning.noren return true; 4160cecf9d5Sandi } 4170cecf9d5Sandi 41857d757d1SAndreas Gohr function apostrophe($match, $state, $pos) { 41957d757d1SAndreas Gohr $this->_addCall('apostrophe',array(), $pos); 42057d757d1SAndreas Gohr return true; 42157d757d1SAndreas Gohr } 42257d757d1SAndreas Gohr 4230cecf9d5Sandi function doublequoteopening($match, $state, $pos) { 424433bef32Sandi $this->_addCall('doublequoteopening',array(), $pos); 42544881bd0Shenning.noren return true; 4260cecf9d5Sandi } 4270cecf9d5Sandi 4280cecf9d5Sandi function doublequoteclosing($match, $state, $pos) { 429433bef32Sandi $this->_addCall('doublequoteclosing',array(), $pos); 43044881bd0Shenning.noren return true; 4310cecf9d5Sandi } 4320cecf9d5Sandi 4330cecf9d5Sandi function camelcaselink($match, $state, $pos) { 434433bef32Sandi $this->_addCall('camelcaselink',array($match), $pos); 43544881bd0Shenning.noren return true; 4360cecf9d5Sandi } 4370cecf9d5Sandi 4380cecf9d5Sandi /* 4390cecf9d5Sandi */ 4400cecf9d5Sandi function internallink($match, $state, $pos) { 4410cecf9d5Sandi // Strip the opening and closing markup 4420cecf9d5Sandi $link = preg_replace(array('/^\[\[/','/\]\]$/u'),'',$match); 4430cecf9d5Sandi 4440cecf9d5Sandi // Split title from URL 4454b7f9e70STom N Harris $link = explode('|',$link,2); 4460cecf9d5Sandi if ( !isset($link[1]) ) { 4470cecf9d5Sandi $link[1] = NULL; 4480cecf9d5Sandi } else if ( preg_match('/^\{\{[^\}]+\}\}$/',$link[1]) ) { 4495578eb8fSandi // If the title is an image, convert it to an array containing the image details 450b625487dSandi $link[1] = Doku_Handler_Parse_Media($link[1]); 4510cecf9d5Sandi } 4520b7c14c2Sandi $link[0] = trim($link[0]); 4530cecf9d5Sandi 4540e1c636eSandi //decide which kind of link it is 4550e1c636eSandi 456e08dda3fSAndreas Gohr if ( preg_match('/^[a-zA-Z0-9\.]+>{1}.*$/u',$link[0]) ) { 4570e1c636eSandi // Interwiki 4584b7f9e70STom N Harris $interwiki = explode('>',$link[0],2); 459433bef32Sandi $this->_addCall( 4600cecf9d5Sandi 'interwikilink', 4610cecf9d5Sandi array($link[0],$link[1],strtolower($interwiki[0]),$interwiki[1]), 4620cecf9d5Sandi $pos 4630cecf9d5Sandi ); 4640b7c14c2Sandi }elseif ( preg_match('/^\\\\\\\\[\w.:?\-;,]+?\\\\/u',$link[0]) ) { 4650e1c636eSandi // Windows Share 466433bef32Sandi $this->_addCall( 4670cecf9d5Sandi 'windowssharelink', 4680cecf9d5Sandi array($link[0],$link[1]), 4690cecf9d5Sandi $pos 4700cecf9d5Sandi ); 4714468cb4cSAndreas Gohr }elseif ( preg_match('#^([a-z0-9\-\.+]+?)://#i',$link[0]) ) { 4720e1c636eSandi // external link (accepts all protocols) 473433bef32Sandi $this->_addCall( 4740cecf9d5Sandi 'externallink', 4750cecf9d5Sandi array($link[0],$link[1]), 4760cecf9d5Sandi $pos 4770cecf9d5Sandi ); 4780a1d30bfSchris }elseif ( preg_match('<'.PREG_PATTERN_VALID_EMAIL.'>',$link[0]) ) { 4790a1d30bfSchris // E-Mail (pattern above is defined in inc/mail.php) 480a6755281Sandi $this->_addCall( 481a6755281Sandi 'emaillink', 482a6755281Sandi array($link[0],$link[1]), 483a6755281Sandi $pos 484a6755281Sandi ); 4850b7c14c2Sandi }elseif ( preg_match('!^#.+!',$link[0]) ){ 4860b7c14c2Sandi // local link 4870b7c14c2Sandi $this->_addCall( 4880b7c14c2Sandi 'locallink', 4890b7c14c2Sandi array(substr($link[0],1),$link[1]), 4900b7c14c2Sandi $pos 4910b7c14c2Sandi ); 4920e1c636eSandi }else{ 4930e1c636eSandi // internal link 494433bef32Sandi $this->_addCall( 4950e1c636eSandi 'internallink', 4960e1c636eSandi array($link[0],$link[1]), 4970e1c636eSandi $pos 4980e1c636eSandi ); 4990cecf9d5Sandi } 5000e1c636eSandi 50144881bd0Shenning.noren return true; 5020cecf9d5Sandi } 5030cecf9d5Sandi 5040cecf9d5Sandi function filelink($match, $state, $pos) { 505433bef32Sandi $this->_addCall('filelink',array($match, NULL), $pos); 50644881bd0Shenning.noren return true; 5070cecf9d5Sandi } 5080cecf9d5Sandi 5090cecf9d5Sandi function windowssharelink($match, $state, $pos) { 510433bef32Sandi $this->_addCall('windowssharelink',array($match, NULL), $pos); 51144881bd0Shenning.noren return true; 5120cecf9d5Sandi } 5130cecf9d5Sandi 5140cecf9d5Sandi function media($match, $state, $pos) { 5150cecf9d5Sandi $p = Doku_Handler_Parse_Media($match); 5160cecf9d5Sandi 517433bef32Sandi $this->_addCall( 5180cecf9d5Sandi $p['type'], 519dc673a5bSjoe.lapp array($p['src'], $p['title'], $p['align'], $p['width'], 520dc673a5bSjoe.lapp $p['height'], $p['cache'], $p['linking']), 5210cecf9d5Sandi $pos 5220cecf9d5Sandi ); 52344881bd0Shenning.noren return true; 5240cecf9d5Sandi } 5250cecf9d5Sandi 526b625487dSandi function rss($match, $state, $pos) { 527b625487dSandi $link = preg_replace(array('/^\{\{rss>/','/\}\}$/'),'',$match); 5283db95becSAndreas Gohr 5293db95becSAndreas Gohr // get params 5303db95becSAndreas Gohr list($link,$params) = explode(' ',$link,2); 5313db95becSAndreas Gohr 5323db95becSAndreas Gohr $p = array(); 5333db95becSAndreas Gohr if(preg_match('/\b(\d+)\b/',$params,$match)){ 5343db95becSAndreas Gohr $p['max'] = $match[1]; 5353db95becSAndreas Gohr }else{ 5363db95becSAndreas Gohr $p['max'] = 8; 5373db95becSAndreas Gohr } 5383db95becSAndreas Gohr $p['reverse'] = (preg_match('/rev/',$params)); 5393db95becSAndreas Gohr $p['author'] = (preg_match('/\b(by|author)/',$params)); 5403db95becSAndreas Gohr $p['date'] = (preg_match('/\b(date)/',$params)); 5413db95becSAndreas Gohr $p['details'] = (preg_match('/\b(desc|detail)/',$params)); 5423db95becSAndreas Gohr 5430a69dff7Schris if (preg_match('/\b(\d+)([dhm])\b/',$params,$match)) { 5440a69dff7Schris $period = array('d' => 86400, 'h' => 3600, 'm' => 60); 5450a69dff7Schris $p['refresh'] = max(600,$match[1]*$period[$match[2]]); // n * period in seconds, minimum 10 minutes 5460a69dff7Schris } else { 5470a69dff7Schris $p['refresh'] = 14400; // default to 4 hours 5480a69dff7Schris } 5490a69dff7Schris 5503db95becSAndreas Gohr $this->_addCall('rss',array($link,$p),$pos); 55144881bd0Shenning.noren return true; 552b625487dSandi } 553b625487dSandi 5540cecf9d5Sandi function externallink($match, $state, $pos) { 555da9f31c5SAndreas Gohr $url = $match; 556da9f31c5SAndreas Gohr $title = null; 5570cecf9d5Sandi 558da9f31c5SAndreas Gohr // add protocol on simple short URLs 559da9f31c5SAndreas Gohr if(substr($url,0,3) == 'ftp' && (substr($url,0,6) != 'ftp://')){ 560da9f31c5SAndreas Gohr $title = $url; 561da9f31c5SAndreas Gohr $url = 'ftp://'.$url; 562da9f31c5SAndreas Gohr } 563da9f31c5SAndreas Gohr if(substr($url,0,3) == 'www' && (substr($url,0,7) != 'http://')){ 564da9f31c5SAndreas Gohr $title = $url; 565da9f31c5SAndreas Gohr $url = 'http://'.$url; 566da9f31c5SAndreas Gohr } 567da9f31c5SAndreas Gohr 568da9f31c5SAndreas Gohr $this->_addCall('externallink',array($url, $title), $pos); 56944881bd0Shenning.noren return true; 5700cecf9d5Sandi } 5710cecf9d5Sandi 57271352defSandi function emaillink($match, $state, $pos) { 5730cecf9d5Sandi $email = preg_replace(array('/^</','/>$/'),'',$match); 574433bef32Sandi $this->_addCall('emaillink',array($email, NULL), $pos); 57544881bd0Shenning.noren return true; 5760cecf9d5Sandi } 5770cecf9d5Sandi 5780cecf9d5Sandi function table($match, $state, $pos) { 5790cecf9d5Sandi switch ( $state ) { 5800cecf9d5Sandi 5810cecf9d5Sandi case DOKU_LEXER_ENTER: 5820cecf9d5Sandi 5830cecf9d5Sandi $ReWriter = & new Doku_Handler_Table($this->CallWriter); 5840cecf9d5Sandi $this->CallWriter = & $ReWriter; 5850cecf9d5Sandi 586433bef32Sandi $this->_addCall('table_start', array(), $pos); 5870cecf9d5Sandi if ( trim($match) == '^' ) { 588433bef32Sandi $this->_addCall('tableheader', array(), $pos); 5890cecf9d5Sandi } else { 590433bef32Sandi $this->_addCall('tablecell', array(), $pos); 5910cecf9d5Sandi } 5920cecf9d5Sandi break; 5930cecf9d5Sandi 5940cecf9d5Sandi case DOKU_LEXER_EXIT: 595433bef32Sandi $this->_addCall('table_end', array(), $pos); 5960cecf9d5Sandi $this->CallWriter->process(); 5970cecf9d5Sandi $ReWriter = & $this->CallWriter; 5980cecf9d5Sandi $this->CallWriter = & $ReWriter->CallWriter; 5990cecf9d5Sandi break; 6000cecf9d5Sandi 6010cecf9d5Sandi case DOKU_LEXER_UNMATCHED: 6020cecf9d5Sandi if ( trim($match) != '' ) { 603433bef32Sandi $this->_addCall('cdata',array($match), $pos); 6040cecf9d5Sandi } 6050cecf9d5Sandi break; 6060cecf9d5Sandi 6070cecf9d5Sandi case DOKU_LEXER_MATCHED: 6089ab75d9eSAndreas Gohr if ( $match == ' ' ){ 6099ab75d9eSAndreas Gohr $this->_addCall('cdata', array($match), $pos); 61025b97867Shakan.sandell } else if ( preg_match('/:::/',$match) ) { 61125b97867Shakan.sandell $this->_addCall('rowspan', array($match), $pos); 612e205b721SAndreas Gohr } else if ( preg_match('/\t+/',$match) ) { 6139ab75d9eSAndreas Gohr $this->_addCall('table_align', array($match), $pos); 614e205b721SAndreas Gohr } else if ( preg_match('/ {2,}/',$match) ) { 615433bef32Sandi $this->_addCall('table_align', array($match), $pos); 6160cecf9d5Sandi } else if ( $match == "\n|" ) { 617433bef32Sandi $this->_addCall('table_row', array(), $pos); 618433bef32Sandi $this->_addCall('tablecell', array(), $pos); 6190cecf9d5Sandi } else if ( $match == "\n^" ) { 620433bef32Sandi $this->_addCall('table_row', array(), $pos); 621433bef32Sandi $this->_addCall('tableheader', array(), $pos); 6220cecf9d5Sandi } else if ( $match == '|' ) { 623433bef32Sandi $this->_addCall('tablecell', array(), $pos); 6240cecf9d5Sandi } else if ( $match == '^' ) { 625433bef32Sandi $this->_addCall('tableheader', array(), $pos); 6260cecf9d5Sandi } 6270cecf9d5Sandi break; 6280cecf9d5Sandi } 62944881bd0Shenning.noren return true; 6300cecf9d5Sandi } 6310cecf9d5Sandi} 6320cecf9d5Sandi 6330cecf9d5Sandi//------------------------------------------------------------------------ 6340cecf9d5Sandifunction Doku_Handler_Parse_Media($match) { 6350cecf9d5Sandi 6360cecf9d5Sandi // Strip the opening and closing markup 6370cecf9d5Sandi $link = preg_replace(array('/^\{\{/','/\}\}$/u'),'',$match); 6380cecf9d5Sandi 6390cecf9d5Sandi // Split title from URL 6404b7f9e70STom N Harris $link = explode('|',$link,2); 6410cecf9d5Sandi 6420cecf9d5Sandi 6430cecf9d5Sandi // Check alignment 6440cecf9d5Sandi $ralign = (bool)preg_match('/^ /',$link[0]); 6450cecf9d5Sandi $lalign = (bool)preg_match('/ $/',$link[0]); 6460cecf9d5Sandi 6470cecf9d5Sandi // Logic = what's that ;)... 6480cecf9d5Sandi if ( $lalign & $ralign ) { 6490cecf9d5Sandi $align = 'center'; 6500cecf9d5Sandi } else if ( $ralign ) { 6510cecf9d5Sandi $align = 'right'; 6520cecf9d5Sandi } else if ( $lalign ) { 6530cecf9d5Sandi $align = 'left'; 6540cecf9d5Sandi } else { 6550cecf9d5Sandi $align = NULL; 6560cecf9d5Sandi } 6570cecf9d5Sandi 6580cecf9d5Sandi // The title... 6590cecf9d5Sandi if ( !isset($link[1]) ) { 6600cecf9d5Sandi $link[1] = NULL; 6610cecf9d5Sandi } 6620cecf9d5Sandi 6634826ab45Sandi //remove aligning spaces 6644826ab45Sandi $link[0] = trim($link[0]); 6650cecf9d5Sandi 6664826ab45Sandi //split into src and parameters (using the very last questionmark) 6674826ab45Sandi $pos = strrpos($link[0], '?'); 6684826ab45Sandi if($pos !== false){ 6694826ab45Sandi $src = substr($link[0],0,$pos); 6704826ab45Sandi $param = substr($link[0],$pos+1); 6710cecf9d5Sandi }else{ 6724826ab45Sandi $src = $link[0]; 6734826ab45Sandi $param = ''; 6740cecf9d5Sandi } 6750cecf9d5Sandi 6764826ab45Sandi //parse width and height 6774826ab45Sandi if(preg_match('#(\d+)(x(\d+))?#i',$param,$size)){ 6784826ab45Sandi ($size[1]) ? $w = $size[1] : $w = NULL; 6794826ab45Sandi ($size[3]) ? $h = $size[3] : $h = NULL; 680fc1c55b1Shfuecks } else { 681fc1c55b1Shfuecks $w = NULL; 682fc1c55b1Shfuecks $h = NULL; 6830cecf9d5Sandi } 6840cecf9d5Sandi 685dc673a5bSjoe.lapp //get linking command 686d35ab615Shenning.noren if(preg_match('/nolink/i',$param)){ 687dc673a5bSjoe.lapp $linking = 'nolink'; 688d35ab615Shenning.noren }else if(preg_match('/direct/i',$param)){ 689dc673a5bSjoe.lapp $linking = 'direct'; 6908acb3108SAndreas Gohr }else if(preg_match('/linkonly/i',$param)){ 6918acb3108SAndreas Gohr $linking = 'linkonly'; 692dc673a5bSjoe.lapp }else{ 693dc673a5bSjoe.lapp $linking = 'details'; 694dc673a5bSjoe.lapp } 695dc673a5bSjoe.lapp 6964826ab45Sandi //get caching command 6974826ab45Sandi if (preg_match('/(nocache|recache)/i',$param,$cachemode)){ 6984826ab45Sandi $cache = $cachemode[1]; 6990cecf9d5Sandi }else{ 7004826ab45Sandi $cache = 'cache'; 7010cecf9d5Sandi } 7020cecf9d5Sandi 7030cecf9d5Sandi // Check whether this is a local or remote image 7044826ab45Sandi if ( preg_match('#^(https?|ftp)#i',$src) ) { 7054826ab45Sandi $call = 'externalmedia'; 7060cecf9d5Sandi } else { 7074826ab45Sandi $call = 'internalmedia'; 7080cecf9d5Sandi } 7090cecf9d5Sandi 7100cecf9d5Sandi $params = array( 7110cecf9d5Sandi 'type'=>$call, 7124826ab45Sandi 'src'=>$src, 7130cecf9d5Sandi 'title'=>$link[1], 7140cecf9d5Sandi 'align'=>$align, 7154826ab45Sandi 'width'=>$w, 7164826ab45Sandi 'height'=>$h, 7170cecf9d5Sandi 'cache'=>$cache, 718dc673a5bSjoe.lapp 'linking'=>$linking, 7190cecf9d5Sandi ); 7200cecf9d5Sandi 7210cecf9d5Sandi return $params; 7220cecf9d5Sandi} 7230cecf9d5Sandi 7240cecf9d5Sandi//------------------------------------------------------------------------ 7250cecf9d5Sandiclass Doku_Handler_CallWriter { 7260cecf9d5Sandi 7270cecf9d5Sandi var $Handler; 7280cecf9d5Sandi 7290cecf9d5Sandi function Doku_Handler_CallWriter(& $Handler) { 7300cecf9d5Sandi $this->Handler = & $Handler; 7310cecf9d5Sandi } 7320cecf9d5Sandi 7330cecf9d5Sandi function writeCall($call) { 7340cecf9d5Sandi $this->Handler->calls[] = $call; 7350cecf9d5Sandi } 7360cecf9d5Sandi 7370cecf9d5Sandi function writeCalls($calls) { 7380cecf9d5Sandi $this->Handler->calls = array_merge($this->Handler->calls, $calls); 7390cecf9d5Sandi } 740f4f02a0fSchris 741f4f02a0fSchris // function is required, but since this call writer is first/highest in 742f4f02a0fSchris // the chain it is not required to do anything 743f4f02a0fSchris function finalise() { 744f4f02a0fSchris } 7450cecf9d5Sandi} 7460cecf9d5Sandi 7470cecf9d5Sandi//------------------------------------------------------------------------ 7485587e44cSchris/** 7495587e44cSchris * Generic call writer class to handle nesting of rendering instructions 7505587e44cSchris * within a render instruction. Also see nest() method of renderer base class 7515587e44cSchris * 7525587e44cSchris * @author Chris Smith <chris@jalakai.co.uk> 7535587e44cSchris */ 7545587e44cSchrisclass Doku_Handler_Nest { 7555587e44cSchris 7565587e44cSchris var $CallWriter; 7575587e44cSchris var $calls = array(); 7585587e44cSchris 7595587e44cSchris var $closingInstruction; 7605587e44cSchris 7615587e44cSchris /** 7625587e44cSchris * constructor 7635587e44cSchris * 7645587e44cSchris * @param object $CallWriter the renderers current call writer 7655587e44cSchris * @param string $close closing instruction name, this is required to properly terminate the 7665587e44cSchris * syntax mode if the document ends without a closing pattern 7675587e44cSchris */ 7685587e44cSchris function Doku_Handler_Nest(& $CallWriter, $close="nest_close") { 7695587e44cSchris $this->CallWriter = & $CallWriter; 7705587e44cSchris 7715587e44cSchris $this->closingInstruction = $close; 7725587e44cSchris } 7735587e44cSchris 7745587e44cSchris function writeCall($call) { 7755587e44cSchris $this->calls[] = $call; 7765587e44cSchris } 7775587e44cSchris 7785587e44cSchris function writeCalls($calls) { 7795587e44cSchris $this->calls = array_merge($this->calls, $calls); 7805587e44cSchris } 7815587e44cSchris 7825587e44cSchris function finalise() { 7835587e44cSchris $last_call = end($this->calls); 7845587e44cSchris $this->writeCall(array($this->closingInstruction,array(), $last_call[2])); 7855587e44cSchris 7865587e44cSchris $this->process(); 7875587e44cSchris $this->CallWriter->finalise(); 7885587e44cSchris } 7895587e44cSchris 7905587e44cSchris function process() { 79141624b31SChris Smith // merge consecutive cdata 79241624b31SChris Smith $unmerged_calls = $this->calls; 79341624b31SChris Smith $this->calls = array(); 79441624b31SChris Smith 79541624b31SChris Smith foreach ($unmerged_calls as $call) $this->addCall($call); 79641624b31SChris Smith 7975587e44cSchris $first_call = reset($this->calls); 7985587e44cSchris $this->CallWriter->writeCall(array("nest", array($this->calls), $first_call[2])); 7995587e44cSchris } 80041624b31SChris Smith 80141624b31SChris Smith function addCall($call) { 80241624b31SChris Smith $key = count($this->calls); 80341624b31SChris Smith if ($key and ($call[0] == 'cdata') and ($this->calls[$key-1][0] == 'cdata')) { 80441624b31SChris Smith $this->calls[$key-1][1][0] .= $call[1][0]; 805*73c47f3dSChris Smith } else if ($call[0] == 'eol') { 806*73c47f3dSChris Smith // do nothing (eol shouldn't be allowed, to counter preformatted fix in #1652 & #1699) 80741624b31SChris Smith } else { 80841624b31SChris Smith $this->calls[] = $call; 80941624b31SChris Smith } 81041624b31SChris Smith } 8115587e44cSchris} 8125587e44cSchris 8130cecf9d5Sandiclass Doku_Handler_List { 8140cecf9d5Sandi 8150cecf9d5Sandi var $CallWriter; 8160cecf9d5Sandi 8170cecf9d5Sandi var $calls = array(); 8180cecf9d5Sandi var $listCalls = array(); 8190cecf9d5Sandi var $listStack = array(); 8200cecf9d5Sandi 8210cecf9d5Sandi function Doku_Handler_List(& $CallWriter) { 8220cecf9d5Sandi $this->CallWriter = & $CallWriter; 8230cecf9d5Sandi } 8240cecf9d5Sandi 8250cecf9d5Sandi function writeCall($call) { 8260cecf9d5Sandi $this->calls[] = $call; 8270cecf9d5Sandi } 8280cecf9d5Sandi 8290cecf9d5Sandi // Probably not needed but just in case... 8300cecf9d5Sandi function writeCalls($calls) { 8310cecf9d5Sandi $this->calls = array_merge($this->calls, $calls); 832f4f02a0fSchris# $this->CallWriter->writeCalls($this->calls); 833f4f02a0fSchris } 834f4f02a0fSchris 835f4f02a0fSchris function finalise() { 836f4f02a0fSchris $last_call = end($this->calls); 837f4f02a0fSchris $this->writeCall(array('list_close',array(), $last_call[2])); 838f4f02a0fSchris 839f4f02a0fSchris $this->process(); 840f4f02a0fSchris $this->CallWriter->finalise(); 8410cecf9d5Sandi } 8420cecf9d5Sandi 8430cecf9d5Sandi //------------------------------------------------------------------------ 8440cecf9d5Sandi function process() { 845f4f02a0fSchris 8460cecf9d5Sandi foreach ( $this->calls as $call ) { 8470cecf9d5Sandi switch ($call[0]) { 8480cecf9d5Sandi case 'list_item': 8490cecf9d5Sandi $this->listOpen($call); 8500cecf9d5Sandi break; 8510cecf9d5Sandi case 'list_open': 8520cecf9d5Sandi $this->listStart($call); 8530cecf9d5Sandi break; 8540cecf9d5Sandi case 'list_close': 8550cecf9d5Sandi $this->listEnd($call); 8560cecf9d5Sandi break; 8570cecf9d5Sandi default: 8580cecf9d5Sandi $this->listContent($call); 8590cecf9d5Sandi break; 8600cecf9d5Sandi } 8610cecf9d5Sandi } 8620cecf9d5Sandi 8630cecf9d5Sandi $this->CallWriter->writeCalls($this->listCalls); 8640cecf9d5Sandi } 8650cecf9d5Sandi 8660cecf9d5Sandi //------------------------------------------------------------------------ 8670cecf9d5Sandi function listStart($call) { 8680cecf9d5Sandi $depth = $this->interpretSyntax($call[1][0], $listType); 8690cecf9d5Sandi 8700cecf9d5Sandi $this->initialDepth = $depth; 8710cecf9d5Sandi $this->listStack[] = array($listType, $depth); 8720cecf9d5Sandi 8730cecf9d5Sandi $this->listCalls[] = array('list'.$listType.'_open',array(),$call[2]); 8740cecf9d5Sandi $this->listCalls[] = array('listitem_open',array(1),$call[2]); 8750cecf9d5Sandi $this->listCalls[] = array('listcontent_open',array(),$call[2]); 8760cecf9d5Sandi } 8770cecf9d5Sandi 8780cecf9d5Sandi //------------------------------------------------------------------------ 8790cecf9d5Sandi function listEnd($call) { 88044881bd0Shenning.noren $closeContent = true; 8810cecf9d5Sandi 8820cecf9d5Sandi while ( $list = array_pop($this->listStack) ) { 8830cecf9d5Sandi if ( $closeContent ) { 8840cecf9d5Sandi $this->listCalls[] = array('listcontent_close',array(),$call[2]); 88544881bd0Shenning.noren $closeContent = false; 8860cecf9d5Sandi } 8870cecf9d5Sandi $this->listCalls[] = array('listitem_close',array(),$call[2]); 8880cecf9d5Sandi $this->listCalls[] = array('list'.$list[0].'_close', array(), $call[2]); 8890cecf9d5Sandi } 8900cecf9d5Sandi } 8910cecf9d5Sandi 8920cecf9d5Sandi //------------------------------------------------------------------------ 8930cecf9d5Sandi function listOpen($call) { 8940cecf9d5Sandi $depth = $this->interpretSyntax($call[1][0], $listType); 8950cecf9d5Sandi $end = end($this->listStack); 8960cecf9d5Sandi 8970cecf9d5Sandi // Not allowed to be shallower than initialDepth 8980cecf9d5Sandi if ( $depth < $this->initialDepth ) { 8990cecf9d5Sandi $depth = $this->initialDepth; 9000cecf9d5Sandi } 9010cecf9d5Sandi 9020cecf9d5Sandi //------------------------------------------------------------------------ 9030cecf9d5Sandi if ( $depth == $end[1] ) { 9040cecf9d5Sandi 9050cecf9d5Sandi // Just another item in the list... 9060cecf9d5Sandi if ( $listType == $end[0] ) { 9070cecf9d5Sandi $this->listCalls[] = array('listcontent_close',array(),$call[2]); 9080cecf9d5Sandi $this->listCalls[] = array('listitem_close',array(),$call[2]); 9090cecf9d5Sandi $this->listCalls[] = array('listitem_open',array($depth-1),$call[2]); 9100cecf9d5Sandi $this->listCalls[] = array('listcontent_open',array(),$call[2]); 9110cecf9d5Sandi 9120cecf9d5Sandi // Switched list type... 9130cecf9d5Sandi } else { 9140cecf9d5Sandi 9150cecf9d5Sandi $this->listCalls[] = array('listcontent_close',array(),$call[2]); 9160cecf9d5Sandi $this->listCalls[] = array('listitem_close',array(),$call[2]); 9170cecf9d5Sandi $this->listCalls[] = array('list'.$end[0].'_close', array(), $call[2]); 9180cecf9d5Sandi $this->listCalls[] = array('list'.$listType.'_open', array(), $call[2]); 9190cecf9d5Sandi $this->listCalls[] = array('listitem_open', array($depth-1), $call[2]); 9200cecf9d5Sandi $this->listCalls[] = array('listcontent_open',array(),$call[2]); 9210cecf9d5Sandi 9220cecf9d5Sandi array_pop($this->listStack); 9230cecf9d5Sandi $this->listStack[] = array($listType, $depth); 9240cecf9d5Sandi } 9250cecf9d5Sandi 9260cecf9d5Sandi //------------------------------------------------------------------------ 9270cecf9d5Sandi // Getting deeper... 9280cecf9d5Sandi } else if ( $depth > $end[1] ) { 9290cecf9d5Sandi 9300cecf9d5Sandi $this->listCalls[] = array('listcontent_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 $this->listStack[] = array($listType, $depth); 9360cecf9d5Sandi 9370cecf9d5Sandi //------------------------------------------------------------------------ 9380cecf9d5Sandi // Getting shallower ( $depth < $end[1] ) 9390cecf9d5Sandi } else { 9400cecf9d5Sandi $this->listCalls[] = array('listcontent_close',array(),$call[2]); 9410cecf9d5Sandi $this->listCalls[] = array('listitem_close',array(),$call[2]); 9420cecf9d5Sandi $this->listCalls[] = array('list'.$end[0].'_close',array(),$call[2]); 9430cecf9d5Sandi 9440cecf9d5Sandi // Throw away the end - done 9450cecf9d5Sandi array_pop($this->listStack); 9460cecf9d5Sandi 9470cecf9d5Sandi while (1) { 9480cecf9d5Sandi $end = end($this->listStack); 9490cecf9d5Sandi 9500cecf9d5Sandi if ( $end[1] <= $depth ) { 9510cecf9d5Sandi 9520cecf9d5Sandi // Normalize depths 9530cecf9d5Sandi $depth = $end[1]; 9540cecf9d5Sandi 9550cecf9d5Sandi $this->listCalls[] = array('listitem_close',array(),$call[2]); 9560cecf9d5Sandi 9570cecf9d5Sandi if ( $end[0] == $listType ) { 9580cecf9d5Sandi $this->listCalls[] = array('listitem_open',array($depth-1),$call[2]); 9590cecf9d5Sandi $this->listCalls[] = array('listcontent_open',array(),$call[2]); 9600cecf9d5Sandi 9610cecf9d5Sandi } else { 9620cecf9d5Sandi // Switching list type... 9630cecf9d5Sandi $this->listCalls[] = array('list'.$end[0].'_close', array(), $call[2]); 9640cecf9d5Sandi $this->listCalls[] = array('list'.$listType.'_open', array(), $call[2]); 9650cecf9d5Sandi $this->listCalls[] = array('listitem_open', array($depth-1), $call[2]); 9660cecf9d5Sandi $this->listCalls[] = array('listcontent_open',array(),$call[2]); 9670cecf9d5Sandi 9680cecf9d5Sandi array_pop($this->listStack); 9690cecf9d5Sandi $this->listStack[] = array($listType, $depth); 9700cecf9d5Sandi } 9710cecf9d5Sandi 9720cecf9d5Sandi break; 9730cecf9d5Sandi 9740cecf9d5Sandi // Haven't dropped down far enough yet.... ( $end[1] > $depth ) 9750cecf9d5Sandi } else { 9760cecf9d5Sandi 9770cecf9d5Sandi $this->listCalls[] = array('listitem_close',array(),$call[2]); 9780cecf9d5Sandi $this->listCalls[] = array('list'.$end[0].'_close',array(),$call[2]); 9790cecf9d5Sandi 9800cecf9d5Sandi array_pop($this->listStack); 9810cecf9d5Sandi 9820cecf9d5Sandi } 9830cecf9d5Sandi 9840cecf9d5Sandi } 9850cecf9d5Sandi 9860cecf9d5Sandi } 9870cecf9d5Sandi } 9880cecf9d5Sandi 9890cecf9d5Sandi //------------------------------------------------------------------------ 9900cecf9d5Sandi function listContent($call) { 9910cecf9d5Sandi $this->listCalls[] = $call; 9920cecf9d5Sandi } 9930cecf9d5Sandi 9940cecf9d5Sandi //------------------------------------------------------------------------ 9950cecf9d5Sandi function interpretSyntax($match, & $type) { 9960cecf9d5Sandi if ( substr($match,-1) == '*' ) { 9970cecf9d5Sandi $type = 'u'; 9980cecf9d5Sandi } else { 9990cecf9d5Sandi $type = 'o'; 10000cecf9d5Sandi } 10014b7f9e70STom N Harris // Is the +1 needed? It used to be count(explode(...)) 10024b7f9e70STom N Harris // but I don't think the number is seen outside this handler 10034b7f9e70STom N Harris return substr_count(str_replace("\t",' ',$match), ' ') + 1; 10040cecf9d5Sandi } 10050cecf9d5Sandi} 10060cecf9d5Sandi 10070cecf9d5Sandi//------------------------------------------------------------------------ 10080cecf9d5Sandiclass Doku_Handler_Preformatted { 10090cecf9d5Sandi 10100cecf9d5Sandi var $CallWriter; 10110cecf9d5Sandi 10120cecf9d5Sandi var $calls = array(); 10130cecf9d5Sandi var $pos; 10140cecf9d5Sandi var $text =''; 10150cecf9d5Sandi 10160cecf9d5Sandi 10170cecf9d5Sandi 10180cecf9d5Sandi function Doku_Handler_Preformatted(& $CallWriter) { 10190cecf9d5Sandi $this->CallWriter = & $CallWriter; 10200cecf9d5Sandi } 10210cecf9d5Sandi 10220cecf9d5Sandi function writeCall($call) { 10230cecf9d5Sandi $this->calls[] = $call; 10240cecf9d5Sandi } 10250cecf9d5Sandi 10260cecf9d5Sandi // Probably not needed but just in case... 10270cecf9d5Sandi function writeCalls($calls) { 10280cecf9d5Sandi $this->calls = array_merge($this->calls, $calls); 1029f4f02a0fSchris# $this->CallWriter->writeCalls($this->calls); 1030f4f02a0fSchris } 1031f4f02a0fSchris 1032f4f02a0fSchris function finalise() { 1033f4f02a0fSchris $last_call = end($this->calls); 1034f4f02a0fSchris $this->writeCall(array('preformatted_end',array(), $last_call[2])); 1035f4f02a0fSchris 1036f4f02a0fSchris $this->process(); 1037f4f02a0fSchris $this->CallWriter->finalise(); 10380cecf9d5Sandi } 10390cecf9d5Sandi 10400cecf9d5Sandi function process() { 10410cecf9d5Sandi foreach ( $this->calls as $call ) { 10420cecf9d5Sandi switch ($call[0]) { 10430cecf9d5Sandi case 'preformatted_start': 10440cecf9d5Sandi $this->pos = $call[2]; 10450cecf9d5Sandi break; 10460cecf9d5Sandi case 'preformatted_newline': 10470cecf9d5Sandi $this->text .= "\n"; 10480cecf9d5Sandi break; 10490cecf9d5Sandi case 'preformatted_content': 10500cecf9d5Sandi $this->text .= $call[1][0]; 10510cecf9d5Sandi break; 10520cecf9d5Sandi case 'preformatted_end': 105393a34bf3SChris Smith if (trim($this->text)) { 10540cecf9d5Sandi $this->CallWriter->writeCall(array('preformatted',array($this->text),$this->pos)); 105593a34bf3SChris Smith } 105695c19ce7SChris Smith // see FS#1699 & FS#1652, add 'eol' instructions to ensure proper triggering of following p_open 105795c19ce7SChris Smith $this->CallWriter->writeCall(array('eol',array(),$this->pos)); 105895c19ce7SChris Smith $this->CallWriter->writeCall(array('eol',array(),$this->pos)); 10590cecf9d5Sandi break; 10600cecf9d5Sandi } 10610cecf9d5Sandi } 10620cecf9d5Sandi } 1063f4f02a0fSchris 10640cecf9d5Sandi} 10650cecf9d5Sandi 10660cecf9d5Sandi//------------------------------------------------------------------------ 10670cecf9d5Sandiclass Doku_Handler_Quote { 10680cecf9d5Sandi 10690cecf9d5Sandi var $CallWriter; 10700cecf9d5Sandi 10710cecf9d5Sandi var $calls = array(); 10720cecf9d5Sandi 10730cecf9d5Sandi var $quoteCalls = array(); 10740cecf9d5Sandi 10750cecf9d5Sandi function Doku_Handler_Quote(& $CallWriter) { 10760cecf9d5Sandi $this->CallWriter = & $CallWriter; 10770cecf9d5Sandi } 10780cecf9d5Sandi 10790cecf9d5Sandi function writeCall($call) { 10800cecf9d5Sandi $this->calls[] = $call; 10810cecf9d5Sandi } 10820cecf9d5Sandi 10830cecf9d5Sandi // Probably not needed but just in case... 10840cecf9d5Sandi function writeCalls($calls) { 10850cecf9d5Sandi $this->calls = array_merge($this->calls, $calls); 1086f4f02a0fSchris } 1087f4f02a0fSchris 1088f4f02a0fSchris function finalise() { 1089f4f02a0fSchris $last_call = end($this->calls); 1090f4f02a0fSchris $this->writeCall(array('quote_end',array(), $last_call[2])); 1091f4f02a0fSchris 1092f4f02a0fSchris $this->process(); 1093f4f02a0fSchris $this->CallWriter->finalise(); 10940cecf9d5Sandi } 10950cecf9d5Sandi 10960cecf9d5Sandi function process() { 10970cecf9d5Sandi 10980cecf9d5Sandi $quoteDepth = 1; 10990cecf9d5Sandi 11000cecf9d5Sandi foreach ( $this->calls as $call ) { 11010cecf9d5Sandi switch ($call[0]) { 11020cecf9d5Sandi 11030cecf9d5Sandi case 'quote_start': 11040cecf9d5Sandi 11050cecf9d5Sandi $this->quoteCalls[] = array('quote_open',array(),$call[2]); 11060cecf9d5Sandi 11070cecf9d5Sandi case 'quote_newline': 11080cecf9d5Sandi 11090cecf9d5Sandi $quoteLength = $this->getDepth($call[1][0]); 11100cecf9d5Sandi 11110cecf9d5Sandi if ( $quoteLength > $quoteDepth ) { 11120cecf9d5Sandi $quoteDiff = $quoteLength - $quoteDepth; 11130cecf9d5Sandi for ( $i = 1; $i <= $quoteDiff; $i++ ) { 11140cecf9d5Sandi $this->quoteCalls[] = array('quote_open',array(),$call[2]); 11150cecf9d5Sandi } 11160cecf9d5Sandi } else if ( $quoteLength < $quoteDepth ) { 11170cecf9d5Sandi $quoteDiff = $quoteDepth - $quoteLength; 11180cecf9d5Sandi for ( $i = 1; $i <= $quoteDiff; $i++ ) { 11190cecf9d5Sandi $this->quoteCalls[] = array('quote_close',array(),$call[2]); 11200cecf9d5Sandi } 112126426c64Schris } else { 112226426c64Schris if ($call[0] != 'quote_start') $this->quoteCalls[] = array('linebreak',array(),$call[2]); 11230cecf9d5Sandi } 11240cecf9d5Sandi 11250cecf9d5Sandi $quoteDepth = $quoteLength; 11260cecf9d5Sandi 11270cecf9d5Sandi break; 11280cecf9d5Sandi 11290cecf9d5Sandi case 'quote_end': 11300cecf9d5Sandi 11310cecf9d5Sandi if ( $quoteDepth > 1 ) { 11320cecf9d5Sandi $quoteDiff = $quoteDepth - 1; 11330cecf9d5Sandi for ( $i = 1; $i <= $quoteDiff; $i++ ) { 11340cecf9d5Sandi $this->quoteCalls[] = array('quote_close',array(),$call[2]); 11350cecf9d5Sandi } 11360cecf9d5Sandi } 11370cecf9d5Sandi 11380cecf9d5Sandi $this->quoteCalls[] = array('quote_close',array(),$call[2]); 11390cecf9d5Sandi 11400cecf9d5Sandi $this->CallWriter->writeCalls($this->quoteCalls); 11410cecf9d5Sandi break; 11420cecf9d5Sandi 11430cecf9d5Sandi default: 11440cecf9d5Sandi $this->quoteCalls[] = $call; 11450cecf9d5Sandi break; 11460cecf9d5Sandi } 11470cecf9d5Sandi } 11480cecf9d5Sandi } 11490cecf9d5Sandi 11500cecf9d5Sandi function getDepth($marker) { 11510cecf9d5Sandi preg_match('/>{1,}/', $marker, $matches); 11520cecf9d5Sandi $quoteLength = strlen($matches[0]); 11530cecf9d5Sandi return $quoteLength; 11540cecf9d5Sandi } 11550cecf9d5Sandi} 11560cecf9d5Sandi 11570cecf9d5Sandi//------------------------------------------------------------------------ 11580cecf9d5Sandiclass Doku_Handler_Table { 11590cecf9d5Sandi 11600cecf9d5Sandi var $CallWriter; 11610cecf9d5Sandi 11620cecf9d5Sandi var $calls = array(); 11630cecf9d5Sandi var $tableCalls = array(); 11640cecf9d5Sandi var $maxCols = 0; 11650cecf9d5Sandi var $maxRows = 1; 11660cecf9d5Sandi var $currentCols = 0; 116744881bd0Shenning.noren var $firstCell = false; 11680cecf9d5Sandi var $lastCellType = 'tablecell'; 11690cecf9d5Sandi 11700cecf9d5Sandi function Doku_Handler_Table(& $CallWriter) { 11710cecf9d5Sandi $this->CallWriter = & $CallWriter; 11720cecf9d5Sandi } 11730cecf9d5Sandi 11740cecf9d5Sandi function writeCall($call) { 11750cecf9d5Sandi $this->calls[] = $call; 11760cecf9d5Sandi } 11770cecf9d5Sandi 11780cecf9d5Sandi // Probably not needed but just in case... 11790cecf9d5Sandi function writeCalls($calls) { 11800cecf9d5Sandi $this->calls = array_merge($this->calls, $calls); 1181f4f02a0fSchris } 1182f4f02a0fSchris 1183f4f02a0fSchris function finalise() { 1184f4f02a0fSchris $last_call = end($this->calls); 1185f4f02a0fSchris $this->writeCall(array('table_end',array(), $last_call[2])); 1186f4f02a0fSchris 1187f4f02a0fSchris $this->process(); 1188f4f02a0fSchris $this->CallWriter->finalise(); 11890cecf9d5Sandi } 11900cecf9d5Sandi 11910cecf9d5Sandi //------------------------------------------------------------------------ 11920cecf9d5Sandi function process() { 11930cecf9d5Sandi foreach ( $this->calls as $call ) { 11940cecf9d5Sandi switch ( $call[0] ) { 11950cecf9d5Sandi case 'table_start': 11960cecf9d5Sandi $this->tableStart($call); 11970cecf9d5Sandi break; 11980cecf9d5Sandi case 'table_row': 11990cecf9d5Sandi $this->tableRowClose(array('tablerow_close',$call[1],$call[2])); 12000cecf9d5Sandi $this->tableRowOpen(array('tablerow_open',$call[1],$call[2])); 12010cecf9d5Sandi break; 12020cecf9d5Sandi case 'tableheader': 12030cecf9d5Sandi case 'tablecell': 12040cecf9d5Sandi $this->tableCell($call); 12050cecf9d5Sandi break; 12060cecf9d5Sandi case 'table_end': 12070cecf9d5Sandi $this->tableRowClose(array('tablerow_close',$call[1],$call[2])); 12080cecf9d5Sandi $this->tableEnd($call); 12090cecf9d5Sandi break; 12100cecf9d5Sandi default: 12110cecf9d5Sandi $this->tableDefault($call); 12120cecf9d5Sandi break; 12130cecf9d5Sandi } 12140cecf9d5Sandi } 12150cecf9d5Sandi $this->CallWriter->writeCalls($this->tableCalls); 12160cecf9d5Sandi } 12170cecf9d5Sandi 12180cecf9d5Sandi function tableStart($call) { 12190cecf9d5Sandi $this->tableCalls[] = array('table_open',array(),$call[2]); 12200cecf9d5Sandi $this->tableCalls[] = array('tablerow_open',array(),$call[2]); 122144881bd0Shenning.noren $this->firstCell = true; 12220cecf9d5Sandi } 12230cecf9d5Sandi 12240cecf9d5Sandi function tableEnd($call) { 12250cecf9d5Sandi $this->tableCalls[] = array('table_close',array(),$call[2]); 12260cecf9d5Sandi $this->finalizeTable(); 12270cecf9d5Sandi } 12280cecf9d5Sandi 12290cecf9d5Sandi function tableRowOpen($call) { 12300cecf9d5Sandi $this->tableCalls[] = $call; 12310cecf9d5Sandi $this->currentCols = 0; 123244881bd0Shenning.noren $this->firstCell = true; 12330cecf9d5Sandi $this->lastCellType = 'tablecell'; 12340cecf9d5Sandi $this->maxRows++; 12350cecf9d5Sandi } 12360cecf9d5Sandi 12370cecf9d5Sandi function tableRowClose($call) { 12380cecf9d5Sandi // Strip off final cell opening and anything after it 12390cecf9d5Sandi while ( $discard = array_pop($this->tableCalls ) ) { 12400cecf9d5Sandi 12410cecf9d5Sandi if ( $discard[0] == 'tablecell_open' || $discard[0] == 'tableheader_open') { 12420cecf9d5Sandi break; 12430cecf9d5Sandi } 12440cecf9d5Sandi } 12450cecf9d5Sandi $this->tableCalls[] = $call; 12460cecf9d5Sandi 12470cecf9d5Sandi if ( $this->currentCols > $this->maxCols ) { 12480cecf9d5Sandi $this->maxCols = $this->currentCols; 12490cecf9d5Sandi } 12500cecf9d5Sandi } 12510cecf9d5Sandi 12520cecf9d5Sandi function tableCell($call) { 12530cecf9d5Sandi if ( !$this->firstCell ) { 12540cecf9d5Sandi 12550cecf9d5Sandi // Increase the span 12560cecf9d5Sandi $lastCall = end($this->tableCalls); 12570cecf9d5Sandi 12580cecf9d5Sandi // A cell call which follows an open cell means an empty cell so span 12590cecf9d5Sandi if ( $lastCall[0] == 'tablecell_open' || $lastCall[0] == 'tableheader_open' ) { 12600cecf9d5Sandi $this->tableCalls[] = array('colspan',array(),$call[2]); 12610cecf9d5Sandi 12620cecf9d5Sandi } 12630cecf9d5Sandi 12640cecf9d5Sandi $this->tableCalls[] = array($this->lastCellType.'_close',array(),$call[2]); 126525b97867Shakan.sandell $this->tableCalls[] = array($call[0].'_open',array(1,NULL,1),$call[2]); 12660cecf9d5Sandi $this->lastCellType = $call[0]; 12670cecf9d5Sandi 12680cecf9d5Sandi } else { 12690cecf9d5Sandi 127025b97867Shakan.sandell $this->tableCalls[] = array($call[0].'_open',array(1,NULL,1),$call[2]); 12710cecf9d5Sandi $this->lastCellType = $call[0]; 127244881bd0Shenning.noren $this->firstCell = false; 12730cecf9d5Sandi 12740cecf9d5Sandi } 12750cecf9d5Sandi 12760cecf9d5Sandi $this->currentCols++; 12770cecf9d5Sandi } 12780cecf9d5Sandi 12790cecf9d5Sandi function tableDefault($call) { 12800cecf9d5Sandi $this->tableCalls[] = $call; 12810cecf9d5Sandi } 12820cecf9d5Sandi 12830cecf9d5Sandi function finalizeTable() { 12840cecf9d5Sandi 12850cecf9d5Sandi // Add the max cols and rows to the table opening 12860cecf9d5Sandi if ( $this->tableCalls[0][0] == 'table_open' ) { 12870cecf9d5Sandi // Adjust to num cols not num col delimeters 12880cecf9d5Sandi $this->tableCalls[0][1][] = $this->maxCols - 1; 12890cecf9d5Sandi $this->tableCalls[0][1][] = $this->maxRows; 12900cecf9d5Sandi } else { 12910cecf9d5Sandi trigger_error('First element in table call list is not table_open'); 12920cecf9d5Sandi } 12930cecf9d5Sandi 12940cecf9d5Sandi $lastRow = 0; 12950cecf9d5Sandi $lastCell = 0; 129625b97867Shakan.sandell $cellKey = array(); 12970cecf9d5Sandi $toDelete = array(); 12980cecf9d5Sandi 12990cecf9d5Sandi // Look for the colspan elements and increment the colspan on the 13000cecf9d5Sandi // previous non-empty opening cell. Once done, delete all the cells 13010cecf9d5Sandi // that contain colspans 13020cecf9d5Sandi foreach ( $this->tableCalls as $key => $call ) { 13030cecf9d5Sandi 13040cecf9d5Sandi if ( $call[0] == 'tablerow_open' ) { 13050cecf9d5Sandi 130625b97867Shakan.sandell $lastRow++; 130725b97867Shakan.sandell $lastCell = 0; 13080cecf9d5Sandi 13090cecf9d5Sandi } else if ( $call[0] == 'tablecell_open' || $call[0] == 'tableheader_open' ) { 13100cecf9d5Sandi 131125b97867Shakan.sandell $lastCell++; 131225b97867Shakan.sandell $cellKey[$lastRow][$lastCell] = $key; 13130cecf9d5Sandi 13140cecf9d5Sandi } else if ( $call[0] == 'table_align' ) { 13150cecf9d5Sandi 1316e03b8b2eSAdrian Lang $prev = in_array($this->tableCalls[$key-1][0], array('tablecell_open', 'tableheader_open')); 1317e03b8b2eSAdrian Lang $next = in_array($this->tableCalls[$key+1][0], array('tablecell_close', 'tableheader_close')); 1318e03b8b2eSAdrian Lang // If the cell is empty, align left 1319e03b8b2eSAdrian Lang if ($prev && $next) { 1320e03b8b2eSAdrian Lang $this->tableCalls[$key-1][1][1] = 'left'; 1321e03b8b2eSAdrian Lang 13220cecf9d5Sandi // If the previous element was a cell open, align right 1323e03b8b2eSAdrian Lang } elseif ($prev) { 13240cecf9d5Sandi $this->tableCalls[$key-1][1][1] = 'right'; 13250cecf9d5Sandi 1326e03b8b2eSAdrian Lang // If the next element is the close of an element, align either center or left 1327e03b8b2eSAdrian Lang } elseif ( $next) { 132825b97867Shakan.sandell if ( $this->tableCalls[$cellKey[$lastRow][$lastCell]][1][1] == 'right' ) { 132925b97867Shakan.sandell $this->tableCalls[$cellKey[$lastRow][$lastCell]][1][1] = 'center'; 13300cecf9d5Sandi } else { 133125b97867Shakan.sandell $this->tableCalls[$cellKey[$lastRow][$lastCell]][1][1] = 'left'; 13320cecf9d5Sandi } 13330cecf9d5Sandi 13340cecf9d5Sandi } 13350cecf9d5Sandi 13360cecf9d5Sandi // Now convert the whitespace back to cdata 13370cecf9d5Sandi $this->tableCalls[$key][0] = 'cdata'; 13380cecf9d5Sandi 13390cecf9d5Sandi } else if ( $call[0] == 'colspan' ) { 13400cecf9d5Sandi 134144881bd0Shenning.noren $this->tableCalls[$key-1][1][0] = false; 13420cecf9d5Sandi 134325b97867Shakan.sandell for($i = $key-2; $i >= $cellKey[$lastRow][1]; $i--) { 13440cecf9d5Sandi 13450cecf9d5Sandi if ( $this->tableCalls[$i][0] == 'tablecell_open' || $this->tableCalls[$i][0] == 'tableheader_open' ) { 13460cecf9d5Sandi 134744881bd0Shenning.noren if ( false !== $this->tableCalls[$i][1][0] ) { 13480cecf9d5Sandi $this->tableCalls[$i][1][0]++; 13490cecf9d5Sandi break; 13500cecf9d5Sandi } 13510cecf9d5Sandi 13520cecf9d5Sandi 13530cecf9d5Sandi } 13540cecf9d5Sandi } 13550cecf9d5Sandi 13560cecf9d5Sandi $toDelete[] = $key-1; 13570cecf9d5Sandi $toDelete[] = $key; 13580cecf9d5Sandi $toDelete[] = $key+1; 135925b97867Shakan.sandell 136025b97867Shakan.sandell } else if ( $call[0] == 'rowspan' ) { 136125b97867Shakan.sandell 136225b97867Shakan.sandell if ( $this->tableCalls[$key-1][0] == 'cdata' ) { 136325b97867Shakan.sandell // ignore rowspan if previous call was cdata (text mixed with :::) we don't have to check next call as that wont match regex 136425b97867Shakan.sandell $this->tableCalls[$key][0] = 'cdata'; 136525b97867Shakan.sandell 136625b97867Shakan.sandell } else { 136725b97867Shakan.sandell 136825b97867Shakan.sandell $this->tableCalls[$key-1][1][2] = false; 136925b97867Shakan.sandell 137025b97867Shakan.sandell for($i = $lastRow-1; $i > 0; $i--) { 137125b97867Shakan.sandell 137225b97867Shakan.sandell if ( $this->tableCalls[$cellKey[$i][$lastCell]][0] == 'tablecell_open' || $this->tableCalls[$cellKey[$i][$lastCell]][0] == 'tableheader_open' ) { 137325b97867Shakan.sandell 137425b97867Shakan.sandell if ( false !== $this->tableCalls[$cellKey[$i][$lastCell]][1][2] ) { 137525b97867Shakan.sandell $this->tableCalls[$cellKey[$i][$lastCell]][1][2]++; 137625b97867Shakan.sandell break; 137725b97867Shakan.sandell } 137825b97867Shakan.sandell 137925b97867Shakan.sandell 138025b97867Shakan.sandell } 138125b97867Shakan.sandell } 138225b97867Shakan.sandell 138325b97867Shakan.sandell $toDelete[] = $key-1; 138425b97867Shakan.sandell $toDelete[] = $key; 138525b97867Shakan.sandell $toDelete[] = $key+1; 138625b97867Shakan.sandell } 13870cecf9d5Sandi } 13880cecf9d5Sandi } 13890cecf9d5Sandi 13909ab75d9eSAndreas Gohr 13919ab75d9eSAndreas Gohr // condense cdata 13929ab75d9eSAndreas Gohr $cnt = count($this->tableCalls); 13939ab75d9eSAndreas Gohr for( $key = 0; $key < $cnt; $key++){ 13949ab75d9eSAndreas Gohr if($this->tableCalls[$key][0] == 'cdata'){ 13959ab75d9eSAndreas Gohr $ckey = $key; 13969ab75d9eSAndreas Gohr $key++; 13979ab75d9eSAndreas Gohr while($this->tableCalls[$key][0] == 'cdata'){ 13989ab75d9eSAndreas Gohr $this->tableCalls[$ckey][1][0] .= $this->tableCalls[$key][1][0]; 13999ab75d9eSAndreas Gohr $toDelete[] = $key; 14009ab75d9eSAndreas Gohr $key++; 14019ab75d9eSAndreas Gohr } 14029ab75d9eSAndreas Gohr continue; 14039ab75d9eSAndreas Gohr } 14049ab75d9eSAndreas Gohr } 14059ab75d9eSAndreas Gohr 14060cecf9d5Sandi foreach ( $toDelete as $delete ) { 14070cecf9d5Sandi unset($this->tableCalls[$delete]); 14080cecf9d5Sandi } 14090cecf9d5Sandi $this->tableCalls = array_values($this->tableCalls); 14100cecf9d5Sandi } 14110cecf9d5Sandi} 14120cecf9d5Sandi 14130cecf9d5Sandi 14142a27e99aSandi/** 14152a27e99aSandi * Handler for paragraphs 14162a27e99aSandi * 14170b7c14c2Sandi * @author Harry Fuecks <hfuecks@gmail.com> 14182a27e99aSandi */ 14190cecf9d5Sandiclass Doku_Handler_Block { 14200cecf9d5Sandi 14210cecf9d5Sandi var $calls = array(); 14220cecf9d5Sandi 14230cecf9d5Sandi var $blockStack = array(); 14240cecf9d5Sandi 142544881bd0Shenning.noren var $inParagraph = false; 142644881bd0Shenning.noren var $atStart = true; 142758b56c06Sandi var $skipEolKey = -1; 14280cecf9d5Sandi 1429af146da0Sandi // Blocks these should not be inside paragraphs 14300cecf9d5Sandi var $blockOpen = array( 14310cecf9d5Sandi 'header', 1432df9add72Schris 'listu_open','listo_open','listitem_open','listcontent_open', 14330cecf9d5Sandi 'table_open','tablerow_open','tablecell_open','tableheader_open', 14340cecf9d5Sandi 'quote_open', 14350cecf9d5Sandi 'section_open', // Needed to prevent p_open between header and section_open 143676aa94b7Schris 'code','file','hr','preformatted','rss', 143707f89c3cSAnika Henke 'htmlblock','phpblock', 14380cecf9d5Sandi ); 14390cecf9d5Sandi 14400cecf9d5Sandi var $blockClose = array( 14410cecf9d5Sandi 'header', 1442df9add72Schris 'listu_close','listo_close','listitem_close','listcontent_close', 14430cecf9d5Sandi 'table_close','tablerow_close','tablecell_close','tableheader_close', 14440cecf9d5Sandi 'quote_close', 14450cecf9d5Sandi 'section_close', // Needed to prevent p_close after section_close 144676aa94b7Schris 'code','file','hr','preformatted','rss', 144707f89c3cSAnika Henke 'htmlblock','phpblock', 14480cecf9d5Sandi ); 14490cecf9d5Sandi 1450af146da0Sandi // Stacks can contain paragraphs 14510cecf9d5Sandi var $stackOpen = array( 14520cecf9d5Sandi 'footnote_open','section_open', 14530cecf9d5Sandi ); 14540cecf9d5Sandi 14550cecf9d5Sandi var $stackClose = array( 14560cecf9d5Sandi 'footnote_close','section_close', 14570cecf9d5Sandi ); 14580cecf9d5Sandi 1459af146da0Sandi 1460af146da0Sandi /** 1461af146da0Sandi * Constructor. Adds loaded syntax plugins to the block and stack 1462af146da0Sandi * arrays 1463af146da0Sandi * 1464af146da0Sandi * @author Andreas Gohr <andi@splitbrain.org> 1465af146da0Sandi */ 1466af146da0Sandi function Doku_Handler_Block(){ 1467af146da0Sandi global $DOKU_PLUGINS; 1468af146da0Sandi //check if syntax plugins were loaded 146903c4aec3Schris if(empty($DOKU_PLUGINS['syntax'])) return; 1470af146da0Sandi foreach($DOKU_PLUGINS['syntax'] as $n => $p){ 1471af146da0Sandi $ptype = $p->getPType(); 1472af146da0Sandi if($ptype == 'block'){ 1473af146da0Sandi $this->blockOpen[] = 'plugin_'.$n; 1474af146da0Sandi $this->blockClose[] = 'plugin_'.$n; 1475af146da0Sandi }elseif($ptype == 'stack'){ 1476af146da0Sandi $this->stackOpen[] = 'plugin_'.$n; 1477af146da0Sandi $this->stackClose[] = 'plugin_'.$n; 1478af146da0Sandi } 1479af146da0Sandi } 1480af146da0Sandi } 1481af146da0Sandi 14822a27e99aSandi /** 14832a27e99aSandi * Close a paragraph if needed 14842a27e99aSandi * 14852a27e99aSandi * This function makes sure there are no empty paragraphs on the stack 14862a27e99aSandi * 14872a27e99aSandi * @author Andreas Gohr <andi@splitbrain.org> 14882a27e99aSandi */ 1489506ae684Sandi function closeParagraph($pos){ 1490506ae684Sandi // look back if there was any content - we don't want empty paragraphs 1491506ae684Sandi $content = ''; 1492506ae684Sandi for($i=count($this->calls)-1; $i>=0; $i--){ 1493506ae684Sandi if($this->calls[$i][0] == 'p_open'){ 1494506ae684Sandi break; 1495506ae684Sandi }elseif($this->calls[$i][0] == 'cdata'){ 1496506ae684Sandi $content .= $this->calls[$i][1][0]; 1497506ae684Sandi }else{ 1498506ae684Sandi $content = 'found markup'; 1499506ae684Sandi break; 1500506ae684Sandi } 1501506ae684Sandi } 1502506ae684Sandi 1503506ae684Sandi if(trim($content)==''){ 1504506ae684Sandi //remove the whole paragraph 1505506ae684Sandi array_splice($this->calls,$i); 1506506ae684Sandi }else{ 150729d015e3SBen Coburn if ($this->calls[count($this->calls)-1][0] == 'section_edit') { 150829d015e3SBen Coburn $tmp = array_pop($this->calls); 1509506ae684Sandi $this->calls[] = array('p_close',array(), $pos); 151029d015e3SBen Coburn $this->calls[] = $tmp; 151129d015e3SBen Coburn } else { 151229d015e3SBen Coburn $this->calls[] = array('p_close',array(), $pos); 151329d015e3SBen Coburn } 1514506ae684Sandi } 1515e1c10e4dSchris 151644881bd0Shenning.noren $this->inParagraph = false; 1517506ae684Sandi } 1518506ae684Sandi 15192a27e99aSandi /** 15202a27e99aSandi * Processes the whole instruction stack to open and close paragraphs 15212a27e99aSandi * 15220b7c14c2Sandi * @author Harry Fuecks <hfuecks@gmail.com> 15232a27e99aSandi * @author Andreas Gohr <andi@splitbrain.org> 15242a27e99aSandi * @todo This thing is really messy and should be rewritten 15252a27e99aSandi */ 15260cecf9d5Sandi function process($calls) { 15270cecf9d5Sandi foreach ( $calls as $key => $call ) { 1528f0891737Sandi $cname = $call[0]; 1529e1c10e4dSchris if($cname == 'plugin') { 1530e1c10e4dSchris $cname='plugin_'.$call[1][0]; 1531e1c10e4dSchris 1532e1c10e4dSchris $plugin = true; 1533e1c10e4dSchris $plugin_open = (($call[1][2] == DOKU_LEXER_ENTER) || ($call[1][2] == DOKU_LEXER_SPECIAL)); 1534e1c10e4dSchris $plugin_close = (($call[1][2] == DOKU_LEXER_EXIT) || ($call[1][2] == DOKU_LEXER_SPECIAL)); 1535e1c10e4dSchris } else { 1536e1c10e4dSchris $plugin = false; 1537e1c10e4dSchris } 15380cecf9d5Sandi 15390cecf9d5Sandi // Process blocks which are stack like... (contain linefeeds) 1540e1c10e4dSchris if ( in_array($cname,$this->stackOpen ) && (!$plugin || $plugin_open) ) { 1541e1c10e4dSchris 15420cecf9d5Sandi $this->calls[] = $call; 15430cecf9d5Sandi 15440cecf9d5Sandi // Hack - footnotes shouldn't immediately contain a p_open 1545f0891737Sandi if ( $cname != 'footnote_open' ) { 15460cecf9d5Sandi $this->addToStack(); 15470cecf9d5Sandi } else { 154844881bd0Shenning.noren $this->addToStack(false); 15490cecf9d5Sandi } 15500cecf9d5Sandi continue; 15510cecf9d5Sandi } 15520cecf9d5Sandi 1553e1c10e4dSchris if ( in_array($cname,$this->stackClose ) && (!$plugin || $plugin_close)) { 15540cecf9d5Sandi 15550cecf9d5Sandi if ( $this->inParagraph ) { 1556506ae684Sandi $this->closeParagraph($call[2]); 15570cecf9d5Sandi } 15580cecf9d5Sandi $this->calls[] = $call; 15590cecf9d5Sandi $this->removeFromStack(); 15600cecf9d5Sandi continue; 15610cecf9d5Sandi } 15620cecf9d5Sandi 15630cecf9d5Sandi if ( !$this->atStart ) { 15640cecf9d5Sandi 1565f0891737Sandi if ( $cname == 'eol' ) { 15660cecf9d5Sandi 1567e1c10e4dSchris // Check this isn't an eol instruction to skip... 156858b56c06Sandi if ( $this->skipEolKey != $key ) { 1569e1c10e4dSchris // Look to see if the next instruction is an EOL 157058b56c06Sandi if ( isset($calls[$key+1]) && $calls[$key+1][0] == 'eol' ) { 157158b56c06Sandi 157258b56c06Sandi if ( $this->inParagraph ) { 1573506ae684Sandi //$this->calls[] = array('p_close',array(), $call[2]); 1574506ae684Sandi $this->closeParagraph($call[2]); 157558b56c06Sandi } 157658b56c06Sandi 157758b56c06Sandi $this->calls[] = array('p_open',array(), $call[2]); 157844881bd0Shenning.noren $this->inParagraph = true; 157958b56c06Sandi 158058b56c06Sandi 1581e1c10e4dSchris // Mark the next instruction for skipping 158258b56c06Sandi $this->skipEolKey = $key+1; 158358b56c06Sandi 158458b56c06Sandi }else{ 158558b56c06Sandi //if this is just a single eol make a space from it 158641624b31SChris Smith $this->addCall(array('cdata',array(DOKU_PARSER_EOL), $call[2])); 158758b56c06Sandi } 158858b56c06Sandi } 158958b56c06Sandi 15900cecf9d5Sandi 15910cecf9d5Sandi } else { 15920cecf9d5Sandi 159344881bd0Shenning.noren $storeCall = true; 1594e1c10e4dSchris if ( $this->inParagraph && (in_array($cname, $this->blockOpen) && (!$plugin || $plugin_open))) { 1595506ae684Sandi $this->closeParagraph($call[2]); 15960cecf9d5Sandi $this->calls[] = $call; 159744881bd0Shenning.noren $storeCall = false; 15980cecf9d5Sandi } 15990cecf9d5Sandi 1600e1c10e4dSchris if ( in_array($cname, $this->blockClose) && (!$plugin || $plugin_close)) { 16010cecf9d5Sandi if ( $this->inParagraph ) { 1602506ae684Sandi $this->closeParagraph($call[2]); 16030cecf9d5Sandi } 16040cecf9d5Sandi if ( $storeCall ) { 16050cecf9d5Sandi $this->calls[] = $call; 160644881bd0Shenning.noren $storeCall = false; 16070cecf9d5Sandi } 16080cecf9d5Sandi 16090cecf9d5Sandi // This really sucks and suggests this whole class sucks but... 1610e1c10e4dSchris if ( isset($calls[$key+1])) { 1611e1c10e4dSchris $cname_plusone = $calls[$key+1][0]; 1612e1c10e4dSchris if ($cname_plusone == 'plugin') { 1613e1c10e4dSchris $cname_plusone = 'plugin'.$calls[$key+1][1][0]; 1614e1c10e4dSchris 1615e1c10e4dSchris // plugin test, true if plugin has a state which precludes it requiring blockOpen or blockClose 1616e1c10e4dSchris $plugin_plusone = true; 1617e1c10e4dSchris $plugin_test = ($call[$key+1][1][2] == DOKU_LEXER_MATCHED) || ($call[$key+1][1][2] == DOKU_LEXER_MATCHED); 1618e1c10e4dSchris } else { 1619e1c10e4dSchris $plugin_plusone = false; 1620e1c10e4dSchris } 1621e1c10e4dSchris if ((!in_array($cname_plusone, $this->blockOpen) && !in_array($cname_plusone, $this->blockClose)) || 1622e1c10e4dSchris ($plugin_plusone && $plugin_test) 16230cecf9d5Sandi ) { 16240cecf9d5Sandi 16250cecf9d5Sandi $this->calls[] = array('p_open',array(), $call[2]); 162644881bd0Shenning.noren $this->inParagraph = true; 16270cecf9d5Sandi } 16280cecf9d5Sandi } 1629e1c10e4dSchris } 16300cecf9d5Sandi 16310cecf9d5Sandi if ( $storeCall ) { 163241624b31SChris Smith $this->addCall($call); 16330cecf9d5Sandi } 16340cecf9d5Sandi 16350cecf9d5Sandi } 16360cecf9d5Sandi 16370cecf9d5Sandi 16380cecf9d5Sandi } else { 16390cecf9d5Sandi 16400cecf9d5Sandi // Unless there's already a block at the start, start a paragraph 1641f0891737Sandi if ( !in_array($cname,$this->blockOpen) ) { 16420cecf9d5Sandi $this->calls[] = array('p_open',array(), $call[2]); 16430cecf9d5Sandi if ( $call[0] != 'eol' ) { 16440cecf9d5Sandi $this->calls[] = $call; 16450cecf9d5Sandi } 164644881bd0Shenning.noren $this->atStart = false; 164744881bd0Shenning.noren $this->inParagraph = true; 16480cecf9d5Sandi } else { 164941624b31SChris Smith $this->addCall($call); 165044881bd0Shenning.noren $this->atStart = false; 16510cecf9d5Sandi } 16520cecf9d5Sandi 16530cecf9d5Sandi } 16540cecf9d5Sandi 16550cecf9d5Sandi } 16560cecf9d5Sandi 16570cecf9d5Sandi if ( $this->inParagraph ) { 1658f0891737Sandi if ( $cname == 'p_open' ) { 16590cecf9d5Sandi // Ditch the last call 16600cecf9d5Sandi array_pop($this->calls); 1661f0891737Sandi } else if ( !in_array($cname, $this->blockClose) ) { 1662506ae684Sandi //$this->calls[] = array('p_close',array(), $call[2]); 1663506ae684Sandi $this->closeParagraph($call[2]); 16640cecf9d5Sandi } else { 16650cecf9d5Sandi $last_call = array_pop($this->calls); 1666506ae684Sandi //$this->calls[] = array('p_close',array(), $call[2]); 1667506ae684Sandi $this->closeParagraph($call[2]); 16680cecf9d5Sandi $this->calls[] = $last_call; 16690cecf9d5Sandi } 16700cecf9d5Sandi } 16710cecf9d5Sandi 16720cecf9d5Sandi return $this->calls; 16730cecf9d5Sandi } 16740cecf9d5Sandi 167544881bd0Shenning.noren function addToStack($newStart = true) { 16760cecf9d5Sandi $this->blockStack[] = array($this->atStart, $this->inParagraph); 16770cecf9d5Sandi $this->atStart = $newStart; 167844881bd0Shenning.noren $this->inParagraph = false; 16790cecf9d5Sandi } 16800cecf9d5Sandi 16810cecf9d5Sandi function removeFromStack() { 16820cecf9d5Sandi $state = array_pop($this->blockStack); 16830cecf9d5Sandi $this->atStart = $state[0]; 16840cecf9d5Sandi $this->inParagraph = $state[1]; 16850cecf9d5Sandi } 168641624b31SChris Smith 168741624b31SChris Smith function addCall($call) { 168841624b31SChris Smith $key = count($this->calls); 168941624b31SChris Smith if ($key and ($call[0] == 'cdata') and ($this->calls[$key-1][0] == 'cdata')) { 169041624b31SChris Smith $this->calls[$key-1][1][0] .= $call[1][0]; 169141624b31SChris Smith } else { 169241624b31SChris Smith $this->calls[] = $call; 169341624b31SChris Smith } 169441624b31SChris Smith } 16950cecf9d5Sandi} 16962a27e99aSandi 16974826ab45Sandi//Setup VIM: ex: et ts=4 enc=utf-8 : 1698