]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/InlineParser.php
Implemented Wikicreole italics
[SourceForge/phpwiki.git] / lib / InlineParser.php
1 <?php 
2 rcs_id('$Id$');
3 /* Copyright (C) 2002 Geoffrey T. Dairiki <dairiki@dairiki.org>
4  * Copyright (C) 2004-2008 Reini Urban
5  * Copyright (C) 2008 Marc-Etienne Vargenau, Alcatel-Lucent
6  *
7  * This file is part of PhpWiki.
8  * 
9  * PhpWiki is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  * 
14  * PhpWiki is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  * 
19  * You should have received a copy of the GNU General Public License
20  * along with PhpWiki; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  */
23 /**
24  * This is the code which deals with the inline part of the (new-style)
25  * wiki-markup.
26  *
27  * @package Markup
28  * @author Geoffrey T. Dairiki, Reini Urban
29  */
30 /**
31  */
32
33 /**
34  * This is the character used in wiki markup to escape characters with
35  * special meaning.
36  */
37 define('ESCAPE_CHAR', '~');
38
39 require_once(dirname(__FILE__).'/HtmlElement.php');
40 require_once('lib/CachedMarkup.php');
41 require_once(dirname(__FILE__).'/stdlib.php');
42
43
44 function WikiEscape($text) {
45     return str_replace('#', ESCAPE_CHAR . '#', $text);
46 }
47
48 function UnWikiEscape($text) {
49     return preg_replace('/' . ESCAPE_CHAR . '(.)/', '\1', $text);
50 }
51
52 /**
53  * Return type from RegexpSet::match and RegexpSet::nextMatch.
54  *
55  * @see RegexpSet
56  */
57 class RegexpSet_match {
58     /**
59      * The text leading up the the next match.
60      */
61     var $prematch;
62     /**
63      * The matched text.
64      */
65     var $match;
66     /**
67      * The text following the matched text.
68      */
69     var $postmatch;
70     /**
71      * Index of the regular expression which matched.
72      */
73     var $regexp_ind;
74 }
75
76 /**
77  * A set of regular expressions.
78  *
79  * This class is probably only useful for InlineTransformer.
80  */
81 class RegexpSet
82 {
83     /** Constructor
84      *
85      * @param array $regexps A list of regular expressions.  The
86      * regular expressions should not include any sub-pattern groups
87      * "(...)".  (Anonymous groups, like "(?:...)", as well as
88      * look-ahead and look-behind assertions are okay.)
89      */
90     function RegexpSet ($regexps) {
91         assert($regexps);
92         $this->_regexps = array_unique($regexps);
93         if (!defined('_INLINE_OPTIMIZATION')) define('_INLINE_OPTIMIZATION',0);
94     }
95
96     /**
97      * Search text for the next matching regexp from the Regexp Set.
98      *
99      * @param string $text The text to search.
100      *
101      * @return RegexpSet_match  A RegexpSet_match object, or false if no match.
102      */
103     function match ($text) {
104         return $this->_match($text, $this->_regexps, '*?');
105     }
106
107     /**
108      * Search for next matching regexp.
109      *
110      * Here, 'next' has two meanings:
111      *
112      * Match the next regexp(s) in the set, at the same position as the last match.
113      *
114      * If that fails, match the whole RegexpSet, starting after the position of the
115      * previous match.
116      *
117      * @param string $text Text to search.
118      *
119      * @param RegexpSet_match $prevMatch A RegexpSet_match object.
120      * $prevMatch should be a match object obtained by a previous
121      * match upon the same value of $text.
122      *
123      * @return RegexpSet_match A RegexpSet_match object, or false if no match.
124      */
125     function nextMatch ($text, $prevMatch) {
126         // Try to find match at same position.
127         $pos = strlen($prevMatch->prematch);
128         $regexps = array_slice($this->_regexps, $prevMatch->regexp_ind + 1);
129         if ($regexps) {
130             $repeat = sprintf('{%d}', $pos);
131             if ( ($match = $this->_match($text, $regexps, $repeat)) ) {
132                 $match->regexp_ind += $prevMatch->regexp_ind + 1;
133                 return $match;
134             }
135             
136         }
137         
138         // Failed.  Look for match after current position.
139         $repeat = sprintf('{%d,}?', $pos + 1);
140         return $this->_match($text, $this->_regexps, $repeat);
141     }
142
143     // Syntax: http://www.pcre.org/pcre.txt
144     //   x - EXTENDED, ignore whitespace
145     //   s - DOTALL
146     //   A - ANCHORED
147     //   S - STUDY
148     function _match ($text, $regexps, $repeat) {
149         // If one of the regexps is an empty string, php will crash here: 
150         // sf.net: Fatal error: Allowed memory size of 8388608 bytes exhausted 
151         //         (tried to allocate 634 bytes)
152         if (_INLINE_OPTIMIZATION) { // disabled, wrong
153             // So we try to minize memory usage, by looping explicitly,
154             // and storing only those regexp which actually match. 
155             // There may be more than one, so we have to find the longest, 
156             // and match inside until the shortest is empty.
157             $matched = array(); $matched_ind = array();
158             for ($i=0; $i<count($regexps); $i++) {
159                 if (!trim($regexps[$i])) {
160                     trigger_error("empty regexp $i", E_USER_WARNING);
161                     continue;
162                 }
163                 $pat= "/ ( . $repeat ) ( " . $regexps[$i] . " ) /x";
164                 if (preg_match($pat, $text, $_m)) {
165                     $m = $_m; // FIXME: prematch, postmatch is wrong
166                     $matched[] = $regexps[$i];
167                     $matched_ind[] = $i;
168                     $regexp_ind = $i;
169                 }
170             }
171             // To overcome ANCHORED:
172             // We could sort by longest match and iterate over these.
173             if (empty($matched)) return false;
174         }
175         $match = new RegexpSet_match;
176         
177         // Optimization: if the matches are only "$" and another, then omit "$"
178         if (! _INLINE_OPTIMIZATION or count($matched) > 2) {
179             assert(!empty($repeat));
180             assert(!empty($regexps));
181             // We could do much better, if we would know the matching markup for the 
182             // longest regexp match:
183             $hugepat= "/ ( . $repeat ) ( (" . join(')|(', $regexps) . ") ) /Asx";
184             // Proposed premature optimization 1:
185             //$hugepat= "/ ( . $repeat ) ( (" . join(')|(', array_values($matched)) . ") ) /Asx";
186             if (! preg_match($hugepat, $text, $m)) {
187                 return false;
188             }
189             // Proposed premature optimization 1:
190             //$match->regexp_ind = $matched_ind[count($m) - 4];
191             $match->regexp_ind = count($m) - 4;
192         } else {
193             $match->regexp_ind = $regexp_ind;
194         }
195         
196         $match->postmatch = substr($text, strlen($m[0]));
197         $match->prematch = $m[1];
198         $match->match = $m[2];
199
200         /* DEBUGGING */
201         if (DEBUG & _DEBUG_PARSER) {
202           static $_already_dumped = 0;
203           if (!$_already_dumped) {
204             var_dump($regexps); 
205             if (_INLINE_OPTIMIZATION)
206                 var_dump($matched);
207             var_dump($matched_inc); 
208           }
209           $_already_dumped = 1;
210           PrintXML(HTML::dl(HTML::dt("input"),
211                           HTML::dd(HTML::pre($text)),
212                           HTML::dt("regexp"),
213                           HTML::dd(HTML::pre($match->regexp_ind, ":", $regexps[$match->regexp_ind])),
214                           HTML::dt("prematch"),
215                           HTML::dd(HTML::pre($match->prematch)),
216                           HTML::dt("match"),
217                           HTML::dd(HTML::pre($match->match)),
218                           HTML::dt("postmatch"),
219                           HTML::dd(HTML::pre($match->postmatch))
220                           ));
221         }
222         return $match;
223     }
224 }
225
226
227
228 /**
229  * A simple markup rule (i.e. terminal token).
230  *
231  * These are defined by a regexp.
232  *
233  * When a match is found for the regexp, the matching text is replaced.
234  * The replacement content is obtained by calling the SimpleMarkup::markup method.
235  */ 
236 class SimpleMarkup
237 {
238     var $_match_regexp;
239
240     /** Get regexp.
241      *
242      * @return string Regexp which matches this token.
243      */
244     function getMatchRegexp () {
245         return $this->_match_regexp;
246     }
247
248     /** Markup matching text.
249      *
250      * @param string $match The text which matched the regexp
251      * (obtained from getMatchRegexp).
252      *
253      * @return mixed The expansion of the matched text.
254      */
255     function markup ($match /*, $body */) {
256         trigger_error("pure virtual", E_USER_ERROR);
257     }
258 }
259
260 /**
261  * A balanced markup rule.
262  *
263  * These are defined by a start regexp, and an end regexp.
264  */ 
265 class BalancedMarkup
266 {
267     var $_start_regexp;
268
269     /** Get the starting regexp for this rule.
270      *
271      * @return string The starting regexp.
272      */
273     function getStartRegexp () {
274         return $this->_start_regexp;
275     }
276     
277     /** Get the ending regexp for this rule.
278      *
279      * @param string $match The text which matched the starting regexp.
280      *
281      * @return string The ending regexp.
282      */
283     function getEndRegexp ($match) {
284         return $this->_end_regexp;
285     }
286
287     /** Get expansion for matching input.
288      *
289      * @param string $match The text which matched the starting regexp.
290      *
291      * @param mixed $body Transformed text found between the starting
292      * and ending regexps.
293      *
294      * @return mixed The expansion of the matched text.
295      */
296     function markup ($match, $body) {
297         trigger_error("pure virtual", E_USER_ERROR);
298     }
299 }
300
301 class Markup_escape  extends SimpleMarkup
302 {
303     function getMatchRegexp () {
304         return ESCAPE_CHAR . '(?: [[:alnum:]]+ | .)';
305     }
306     
307     function markup ($match) {
308         assert(strlen($match) >= 2);
309         return substr($match, 1);
310     }
311 }
312
313 /**
314  * [image.jpg size=50% border=5], [image.jpg size=50x30]
315  * Support for the following attributes: see stdlib.php:LinkImage()
316  *   size=<precent>%, size=<width>x<height>
317  *   border=n, align=\w+, hspace=n, vspace=n
318  *   width=n, height=n
319  */
320 function isImageLink($link) {
321     if (!$link) return false;
322     assert(defined('INLINE_IMAGES'));
323     return preg_match("/\\.(" . INLINE_IMAGES . ")$/i", $link)
324         or preg_match("/\\.(" . INLINE_IMAGES . ")\s+(size|border|align|hspace|vspace|type|data|width|height)=/i", $link);
325 }
326
327 function LinkBracketLink($bracketlink) {
328
329     // $bracketlink will start and end with brackets; in between will
330     // be either a page name, a URL or both separated by a pipe.
331     
332    $wikicreolesyntax = false;
333
334    if (string_starts_with($bracketlink, "[[")) {
335        $wikicreolesyntax = true;
336        $bracketlink = str_replace("[[", "[", $bracketlink);
337        $bracketlink = str_replace("]]", "]", $bracketlink);
338    }
339   
340     // Strip brackets and leading space
341     // bug#1904088  Some brackets links on 2 lines cause the parser to crash
342     preg_match('/(\#?) \[\s* (?: (.*?) \s* (?<!' . ESCAPE_CHAR . ')(\|) )? \s* (.+?) \s*\]/x',
343                str_replace("\n", " ", $bracketlink), $matches);
344     if (count($matches) < 4) {
345         // "[ personal\ninformation manager | PhpWiki:PersonalWiki ]"
346         trigger_error(_("Invalid [] syntax ignored").": ".$bracketlink, E_USER_WARNING);
347         return new Cached_Link;
348     }
349     list (, $hash, $label, $bar, $rawlink) = $matches;
350
351     if ($wikicreolesyntax and $label) {
352         $temp = $label;
353         $label = $rawlink;
354         $rawlink = $temp;
355     }
356
357     $label = UnWikiEscape($label);
358     /*
359      * Check if the user has typed a explicit URL. This solves the
360      * problem where the URLs have a ~ character, which would be stripped away.
361      *   "[http:/server/~name/]" will work as expected
362      *   "http:/server/~name/"   will NOT work as expected, will remove the ~
363      */
364     if (   string_starts_with ($rawlink, "http://")
365         or string_starts_with ($rawlink, "https://") ) 
366     {
367         $link = $rawlink;
368         // Mozilla Browser URI Obfuscation Weakness 2004-06-14
369         //   http://www.securityfocus.com/bid/10532/
370         //   goodurl+"%2F%20%20%20."+badurl
371         if (preg_match("/%2F(%20)+\./i", $rawlink)) {
372             $rawlink = preg_replace("/%2F(%20)+\./i","%2F.",$rawlink);
373         }
374     } else
375         $link  = UnWikiEscape($rawlink);
376
377     /* Relatives links by Joel Schaubert.
378      * Recognize [../bla] or [/bla] as relative links, without needing http://
379      * but [ /link ] only if SUBPAGE_SEPERATOR is not "/". 
380      * Normally /Page links to the subpage /Page.
381      */
382     if (SUBPAGE_SEPARATOR == '/') {
383         if (preg_match('/^\.\.\//', $link)) {
384             return new Cached_ExternalLink($link, $label);
385         }
386     } else if (preg_match('/^(\.\.\/|\/)/', $link)) {
387         return new Cached_ExternalLink($link, $label);
388     }
389     // [label|link]
390     // If label looks like a url to an image or object, we want an image link.
391     if (isImageLink($label)) {
392         $imgurl = $label;
393         $intermap = getInterwikiMap();
394         if (preg_match("/^" . $intermap->getRegexp() . ":/", $label)) {
395             $imgurl = $intermap->link($label);
396             $imgurl = $imgurl->getAttr('href');
397         } elseif (! preg_match("#^(" . ALLOWED_PROTOCOLS . "):#", $imgurl)) {
398             // local theme linkname like 'images/next.gif'.
399             global $WikiTheme;
400             $imgurl = $WikiTheme->getImageURL($imgurl);
401         }
402         // for objects (non-images) the link is taken as alt tag, 
403         // which is in return taken as alternative img
404         $label = LinkImage($imgurl, $link);
405     }
406
407     if ($hash) {
408         // It's an anchor, not a link...
409         $id = MangleXmlIdentifier($link);
410         return HTML::a(array('name' => $id, 'id' => $id),
411                        $bar ? $label : $link);
412     }
413
414     if (preg_match("#^(" . ALLOWED_PROTOCOLS . "):#", $link)) {
415         // if it's an image, embed it; otherwise, it's a regular link
416         if (isImageLink($link) and empty($label)) // patch #1348996 by Robert Litwiniec
417             return LinkImage($link, $label);
418         else
419             return new Cached_ExternalLink($link, $label);
420     }
421     elseif (substr($link,0,8) == 'phpwiki:')
422         return new Cached_PhpwikiURL($link, $label);
423
424     /* Semantic relations and attributes. 
425      * Relation and attribute names must be word chars only, no space.
426      * Links and Attributes may contain everything. word, nums, units, space, groupsep, numsep, ...
427      */
428     elseif (preg_match("/^ (\w+) (:[:=]) (.*) $/x", $link) and !isImageLink($link))
429         return new Cached_SemanticLink($link, $label);
430
431     /* Do not store the link */    
432     elseif (substr($link,0,1) == ':')
433         return new Cached_WikiLink($link, $label);
434
435     /*
436      * Inline images in Interwiki urls's:
437      * [File:my_image.gif] inlines the image,
438      * File:my_image.gif shows a plain inter-wiki link,
439      * [what a pic|File:my_image.gif] shows a named inter-wiki link to the gif
440      * [File:my_image.gif|what a pic] shows a inlimed image linked to the page "what a pic"
441      *
442      * Note that for simplicity we will accept embedded object tags (non-images) 
443      * here also, and seperate them later in LinkImage()
444      */
445     elseif (strstr($link,':')
446             and ($intermap = getInterwikiMap()) 
447             and preg_match("/^" . $intermap->getRegexp() . ":/", $link)) 
448     {
449         // trigger_error("label: $label link: $link", E_USER_WARNING);
450         if (empty($label) and isImageLink($link)) {
451             // if without label => inlined image [File:xx.gif]
452             $imgurl = $intermap->link($link);
453             return LinkImage($imgurl->getAttr('href'), $link);
454         }
455         return new Cached_InterwikiLink($link, $label);
456     } else {
457         // Split anchor off end of pagename.
458         if (preg_match('/\A(.*)(?<!'.ESCAPE_CHAR.')#(.*?)\Z/', $rawlink, $m)) {
459             list(,$rawlink,$anchor) = $m;
460             $pagename = UnWikiEscape($rawlink);
461             $anchor = UnWikiEscape($anchor);
462             if (!$label)
463                 $label = $link;
464         }
465         else {
466             $pagename = $link;
467             $anchor = false;
468         }
469         return new Cached_WikiLink($pagename, $label, $anchor);
470     }
471 }
472
473 class Markup_wikicreolebracketlink  extends SimpleMarkup
474 {
475     var $_match_regexp = "\\#? \\[\\[ .*? [^]\\s] .*? \\]\\]";
476
477     function markup ($match) {
478         $link = LinkBracketLink($match);
479         assert($link->isInlineElement());
480         return $link;
481     }
482 }
483
484 class Markup_bracketlink  extends SimpleMarkup
485 {
486     var $_match_regexp = "\\#? \\[ .*? [^]\\s] .*? \\]";
487     
488     function markup ($match) {
489         $link = LinkBracketLink($match);
490         assert($link->isInlineElement());
491         return $link;
492     }
493 }
494
495 class Markup_spellcheck extends SimpleMarkup
496 {
497     function Markup_spellcheck () {
498         $this->suggestions = $GLOBALS['request']->getArg('suggestions');
499     }
500     function getMatchRegexp () {
501         if (empty($this->suggestions))
502             return "(?# false )";
503         $words = array_keys($this->suggestions);
504         return "(?<= \W ) (?:" . join('|', $words) . ") (?= \W )";
505     }
506     
507     function markup ($match) {
508         if (empty($this->suggestions) or empty($this->suggestions[$match]))
509             return $match;
510         return new Cached_SpellCheck(UnWikiEscape($match), $this->suggestions[$match]);
511     }
512 }
513
514 class Markup_searchhighlight extends SimpleMarkup
515 {
516     function Markup_searchhighlight () {
517         $result = $GLOBALS['request']->_searchhighlight;
518         require_once("lib/TextSearchQuery.php");
519         $query = new TextSearchQuery($result['query']);
520         $this->hilight_re = $query->getHighlightRegexp();
521         $this->engine = $result['engine'];
522     }
523     function getMatchRegexp () {
524         return $this->hilight_re;
525     }
526     function markup ($match) {
527         return new Cached_SearchHighlight(UnWikiEscape($match), $this->engine);
528     }
529 }
530
531 class Markup_url extends SimpleMarkup
532 {
533     function getMatchRegexp () {
534         return "(?<![[:alnum:]]) (?:" . ALLOWED_PROTOCOLS . ") : [^\s<>\"']+ (?<![ ,.?; \] \) ])";
535     }
536     
537     function markup ($match) {
538         return new Cached_ExternalLink(UnWikiEscape($match));
539     }
540 }
541
542 class Markup_interwiki extends SimpleMarkup
543 {
544     function getMatchRegexp () {
545         $map = getInterwikiMap();
546         return "(?<! [[:alnum:]])" . $map->getRegexp(). ": [^:=]\S+ (?<![ ,.?;! \] \) \" \' ])";
547     }
548
549     function markup ($match) {
550         return new Cached_InterwikiLink(UnWikiEscape($match));
551     }
552 }
553
554 class Markup_semanticlink extends SimpleMarkup
555 {
556     // No units seperated by space allowed here
557     // For :: (relations) only words, no comma,
558     // but for := (attributes) comma and dots are allowed. Units with groupsep.
559     // Ending dots or comma are not part of the link.
560     var $_match_regexp = "(?: \w+:=\S+(?<![\.,]))|(?: \w+::[\w\.]+(?<!\.))"; 
561
562     function markup ($match) {
563         return new Cached_SemanticLink(UnWikiEscape($match));
564     }
565 }
566
567 class Markup_wikiword extends SimpleMarkup
568 {
569     function getMatchRegexp () {
570         global $WikiNameRegexp;
571         if (!trim($WikiNameRegexp)) return " " . WIKI_NAME_REGEXP;
572         return " $WikiNameRegexp";
573     }
574
575     function markup ($match) {
576         if (!$match) return false;
577         if ($this->_isWikiUserPage($match))
578             return new Cached_UserLink($match); //$this->_UserLink($match);
579         else
580             return new Cached_WikiLink($match);
581     }
582
583     // FIXME: there's probably a more useful place to put these two functions    
584     function _isWikiUserPage ($page) {
585         global $request;
586         $dbi = $request->getDbh();
587         $page_handle = $dbi->getPage($page);
588         if ($page_handle and $page_handle->get('pref'))
589             return true;
590         else
591             return false;
592     }
593
594     function _UserLink($PageName) {
595         $link = HTML::a(array('href' => $PageName));
596         $link->pushContent(PossiblyGlueIconToText('wikiuser', $PageName));
597         $link->setAttr('class', 'wikiuser');
598         return $link;
599     }
600 }
601
602 class Markup_linebreak extends SimpleMarkup
603 {
604     //var $_match_regexp = "(?: (?<! %) %%% (?! %) | <(?:br|BR)> | <(?:br|BR) \/> )";
605     var $_match_regexp = "(?: (?<! %) %%% (?! %) | \\\\\\\\ | <(?:br|BR)> )";
606
607     function markup ($match) {
608         return HTML::br();
609     }
610 }
611
612 class Markup_wikicreole_italics extends BalancedMarkup
613 {
614     var $_start_regexp = "\\/\\/";
615  
616     function getEndRegexp ($match) {
617         return "\\/\\/"; 
618     }
619    
620     function markup ($match, $body) {
621         $tag = 'em';
622         return new HtmlElement($tag, $body);
623     }
624 }
625
626 class Markup_wikicreole_monospace extends BalancedMarkup
627 {
628     var $_start_regexp = "\\#\\#";
629  
630     function getEndRegexp ($match) {
631         return "\\#\\#"; 
632     }
633    
634     function markup ($match, $body) {
635         $tag = 'tt';
636         return new HtmlElement($tag, $body);
637     }
638 }
639
640 class Markup_wikicreole_superscript extends BalancedMarkup
641 {
642     var $_start_regexp = "\\^\\^";
643  
644     function getEndRegexp ($match) {
645         return "\\^\\^"; 
646     }
647    
648     function markup ($match, $body) {
649         $tag = 'sup';
650         return new HtmlElement($tag, $body);
651     }
652 }
653  
654 class Markup_wikicreole_subscript extends BalancedMarkup
655 {
656     var $_start_regexp = ",,";
657  
658     function getEndRegexp ($match) {
659         return $match; 
660     }
661    
662     function markup ($match, $body) {
663         $tag = 'sub';
664         return new HtmlElement($tag, $body);
665     }
666 }
667
668 class Markup_old_emphasis  extends BalancedMarkup
669 {
670     var $_start_regexp = "''|__";
671
672     function getEndRegexp ($match) {
673         return $match;
674     }
675     
676     function markup ($match, $body) {
677         $tag = $match == "''" ? 'em' : 'strong';
678         return new HtmlElement($tag, $body);
679     }
680 }
681
682 class Markup_nestled_emphasis extends BalancedMarkup
683 {
684     function getStartRegexp() {
685         static $start_regexp = false;
686
687         if (!$start_regexp) {
688             // The three possible delimiters
689             // (none of which can be followed by itself.)
690             $i = "_ (?! _)";
691             $b = "\\* (?! \\*)";
692             $tt = "= (?! =)";
693
694             $any = "(?: ${i}|${b}|${tt})"; // any of the three.
695
696             // Any of [_*=] is okay if preceded by space or one of [-"'/:]
697             $start[] = "(?<= \\s|^|[-\"'\\/:]) ${any}";
698
699             // _ or * is okay after = as long as not immediately followed by =
700             $start[] = "(?<= =) (?: ${i}|${b}) (?! =)";
701             // etc...
702             $start[] = "(?<= _) (?: ${b}|${tt}) (?! _)";
703             $start[] = "(?<= \\*) (?: ${i}|${tt}) (?! \\*)";
704
705
706             // any delimiter okay after an opening brace ( [{<(] )
707             // as long as it's not immediately followed by the matching closing
708             // brace.
709             $start[] = "(?<= { ) ${any} (?! } )";
710             $start[] = "(?<= < ) ${any} (?! > )";
711             $start[] = "(?<= \\( ) ${any} (?! \\) )";
712             
713             $start = "(?:" . join('|', $start) . ")";
714             
715             // Any of the above must be immediately followed by non-whitespace.
716             $start_regexp = $start . "(?= \S)";
717         }
718
719         return $start_regexp;
720     }
721
722     function getEndRegexp ($match) {
723         $chr = preg_quote($match);
724         return "(?<= \S | ^ ) (?<! $chr) $chr (?! $chr) (?= \s | [-)}>\"'\\/:.,;!? _*=] | $)";
725     }
726     
727     function markup ($match, $body) {
728         switch ($match) {
729         case '*': return new HtmlElement('b', $body);
730         case '=': return new HtmlElement('tt', $body);
731         case '_': return new HtmlElement('i', $body);
732         }
733     }
734 }
735
736 class Markup_html_emphasis extends BalancedMarkup
737 {
738     var $_start_regexp = 
739         "<(?: b|big|i|small|tt|em|strong|cite|code|dfn|kbd|samp|s|strike|del|var|sup|sub )>";
740
741     function getEndRegexp ($match) {
742         return "<\\/" . substr($match, 1);
743     }
744     
745     function markup ($match, $body) {
746         $tag = substr($match, 1, -1);
747         return new HtmlElement($tag, $body);
748     }
749 }
750
751 class Markup_html_divspan extends BalancedMarkup
752 {
753     var $_start_regexp = 
754         "<(?: div|span )(?: \s[^>]*)?>";
755
756     function getEndRegexp ($match) {
757         if (substr($match,1,4) == 'span')
758             $tag = 'span';
759         else
760             $tag = 'div';
761         return "<\\/" . $tag . '>';
762     }
763     
764     function markup ($match, $body) {
765         if (substr($match,1,4) == 'span')
766             $tag = 'span';
767         else
768             $tag = 'div';
769         $rest = substr($match,1+strlen($tag),-1);
770         if (!empty($rest)) {
771             list($key,$val) = explode("=",$rest);
772             $args = array($key => $val);
773         } else $args = array();
774         return new HtmlElement($tag, $args, $body);
775     }
776 }
777
778
779 class Markup_html_abbr extends BalancedMarkup
780 {
781     //rurban: abbr|acronym need an optional title tag.
782     //sf.net bug #728595
783     var $_start_regexp = "<(?: abbr|acronym )(?: \stitle=[^>]*)?>";
784
785     function getEndRegexp ($match) {
786         if (substr($match,1,4) == 'abbr')
787             $tag = 'abbr';
788         else
789             $tag = 'acronym';
790         return "<\\/" . $tag . '>';
791     }
792     
793     function markup ($match, $body) {
794         if (substr($match,1,4) == 'abbr')
795             $tag = 'abbr';
796         else
797             $tag = 'acronym';
798         $rest = substr($match,1+strlen($tag),-1);
799         if (!empty($rest)) {
800             list($key,$val) = explode("=",$rest);
801             $args = array($key => $val);
802         } else $args = array();
803         return new HtmlElement($tag, $args, $body);
804     }
805 }
806
807 /** ENABLE_MARKUP_COLOR
808  *  See http://www.pmwiki.org/wiki/PmWiki/WikiStyles and
809  *      http://www.flexwiki.com/default.aspx/FlexWiki/FormattingRules.html
810  */
811 class Markup_color extends BalancedMarkup {
812     // %color=blue% blue text %% and back to normal
813     var $_start_regexp = "%color=(?: [^%]*)%";
814     var $_end_regexp = "%%";
815     
816     function markup ($match, $body) {
817         $color = strtoupper(substr($match, 7, -1));
818         if (strlen($color) != 7 
819             and in_array($color, array('RED', 'BLUE', 'GRAY', 'YELLOW', 'GREEN', 'CYAN', 'BLACK'))) 
820         {   // must be a valid color name
821             return new HtmlElement('font', array('color' => $color), $body);
822         } elseif ((substr($color,0,1) == '#') 
823                   and (strspn(substr($color,1),'0123456789ABCDEF') == strlen($color)-1)) {
824             return new HtmlElement('font', array('color' => $color), $body);
825         } else {
826             trigger_error(sprintf(_("unknown color %s ignored"), substr($match, 7, -1)), E_USER_WARNING);
827         }
828                 
829     }
830 }
831
832 // Special version for single-line plugins formatting, 
833 //  like: '<small>< ?plugin PopularNearby ? ></small>'
834 class Markup_plugin extends SimpleMarkup
835 {
836     var $_match_regexp = '<\?plugin(?:-form)?\s[^\n]+?\?>';
837
838     function markup ($match) {
839         //$xml = new Cached_PluginInvocation($match);
840         //$xml->setTightness(true,true);
841         return new Cached_PluginInvocation($match);
842     }
843 }
844
845 // Special version for plugins in xml syntax 
846 // <name arg=value>body</name> or <name /> => < ? plugin pluginname arg=value body ? >
847 // PLUGIN_MARKUP_MAP = "html:RawHtml dot:GraphViz toc:CreateToc amath:AsciiMath richtable:RichTable include:IncludePage tex:TexToPng"
848 class Markup_xml_plugin extends BalancedMarkup
849 {
850     //var $_start_regexp = "<(?: ".join('|',PLUGIN_MARKUP_MAP)." )(?: \s[^>]*)>";
851
852     function getStartRegexp () {
853         global $PLUGIN_MARKUP_MAP;
854         static $_start_regexp;
855         if ($_start_regexp) return $_start_regexp;
856         if (empty($PLUGIN_MARKUP_MAP))
857             return '';
858         //"<(?: html|dot|toc|amath|richtable|include|tex )(?: \s[^>]*)>"
859         $_start_regexp = "<(?: ".join('|',array_keys($PLUGIN_MARKUP_MAP))." )(?: \s[^>]* | / )>";
860         return $_start_regexp;
861     }
862     function getEndRegexp ($match) {
863         return "<\\/" . $match . '>';
864     }
865     function markup ($match, $body) {
866         global $PLUGIN_MARKUP_MAP;
867         $name = substr($match,2,-2); 
868         $vars = '';
869         if (preg_match('/^(\S+)\|(.*)$/', $name, $_m)) {
870             $name = $_m[1];
871             $vars = $_m[2]; //str_replace(' ', '&', $_m[2]);
872         }
873         if (!isset($PLUGIN_MARKUP_MAP[$name])) {
874             trigger_error("No plugin for $name $vars defined.", E_USER_WARNING);
875             return "";
876         }
877         $plugin = $PLUGIN_MARKUP_MAP[$name];
878         return new Cached_PluginInvocation("<"."?plugin $plugin $vars $body ?".">");
879     }
880 }
881
882 /**
883  *  Wikicreole preformatted
884  *  {{{
885  *  }}}
886  */
887 class Markup_wikicreole_preformatted extends SimpleMarkup
888 {
889     var $_match_regexp = '\{\{\{.*?\}\}\}';
890
891     function markup ($match) {
892         // Remove {{{ and }}}
893         return new HtmlElement('pre', substr($match, 3, -3));
894     }
895 }
896
897 /** ENABLE_MARKUP_TEMPLATE
898  *  Template syntax similar to Mediawiki
899  *  {{template}}
900  * => < ? plugin Template page=template ? >
901  *  {{template|var1=value1|var2=value|...}}
902  * => < ? plugin Template page=template var=value ... ? >
903  */
904 class Markup_template_plugin  extends SimpleMarkup
905 {
906     // patch #1732793: allow \n, mult. {{ }} in one line, and single letters
907     var $_match_regexp = '\{\{.*?\}\}';
908     
909     function markup ($match) {
910
911         $page = substr($match,2,-2);
912         if (strpos($page, "|") === false) {
913             $imagename = $page;
914             $alt = $page;
915         } else {
916             $imagename = substr($page, 0, strpos($page, "|"));
917             $alt = ltrim(strstr($page, "|"), "|");
918         }
919
920         // It's not a Mediawiki template, it's a Wikicreole image
921         if ((string_ends_with($imagename, ".jpg"))
922            or (string_ends_with($imagename, ".jpeg"))
923            or (string_ends_with($imagename, ".gif"))
924            or (string_ends_with($imagename, ".png"))) {
925             return LinkImage(UPLOAD_DATA_PATH . $imagename, $alt);
926         }
927
928         $page = str_replace("\n", "", $page); 
929         $vars = '';
930
931         if (preg_match('/^(\S+?)\|(.*)$/', $page, $_m)) {
932             $page = $_m[1];
933             $vars = '"' . preg_replace('/\|/', '" "', $_m[2]) . '"'; 
934             $vars = preg_replace('/"(\S+)=([^"]*)"/', '\\1="\\2"', $vars);
935         }
936  
937         // page may contain a version number
938         // {{foo?version=5}}
939         // in that case, output is "page=foo rev=5"
940         if (strstr($page, "?")) {
941             $page = str_replace("?version=", "\" rev=\"", $page);
942         }
943
944         if ($vars)
945             $s = '<'.'?plugin Template page="'.$page.'" '.$vars.' ?'.'>';
946         else
947             $s = '<'.'?plugin Template page="' . $page . '" ?'.'>';
948         return new Cached_PluginInvocation($s);
949     }
950 }
951
952 /** ENABLE_MARKUP_MEDIAWIKI_TABLE
953  *  Table syntax similar to Mediawiki
954  *  {|
955  * => <?plugin MediawikiTable
956  *  |}
957  * => ?>
958  */
959 class Markup_mediawikitable_plugin extends SimpleMarkup
960 {
961     var $_match_regexp = '\{\|.*?\|\}';
962
963     function markup ($match) {
964       $s = '<'.'?plugin MediawikiTable ' . $match . '?'.'>';
965       return new Cached_PluginInvocation($s);
966     }
967 }
968
969 class Markup_wikicreoletable_plugin extends SimpleMarkup
970 {
971     var $_match_regexp = '^\|=.*?\?>';
972
973     function markup ($match) {
974       $s = '<'.'?plugin WikicreoleTable ' . $match . '?'.'>';
975       return new Cached_PluginInvocation($s);
976     }
977 }
978
979 // "..." => "&#133;"  browser specific display (not cached?)
980 // Support some HTML::Entities: (C) for copy, --- for mdash, -- for ndash
981 // TODO: "--" => "&emdash;" browser specific display (not cached?)
982
983 class Markup_html_entities  extends SimpleMarkup {
984     //var $_match_regexp = '(: \.\.\.|\-\-|\-\-\-|\(C\) )';
985
986     function Markup_html_entities() {
987         $this->_entities = array('...'  => '&#133;',
988                                  '--'   => '&ndash;',
989                                  '---'  => '&mdash;',
990                                  '(C)'  => '&copy;',
991                                  '&copy;' => '&copy;',
992                                  '&trade;'  => '&trade;',
993                                  );
994         $this->_match_regexp = 
995             '(: ' . 
996             join('|', array_map('preg_quote', array_keys($this->_entities))) . 
997             ' )';
998     }
999    
1000     function markup ($match) {
1001         return HTML::Raw($this->_entities[$match]);
1002     }
1003 }
1004
1005 class Markup_isonumchars  extends SimpleMarkup {
1006     var $_match_regexp = '\&\#\d{2,5};';
1007     
1008     function markup ($match) {
1009         return HTML::Raw($match);
1010     }
1011 }
1012
1013 class Markup_isohexchars extends SimpleMarkup {
1014     // hexnums, like &#x00A4; <=> &curren;
1015     var $_match_regexp = '\&\#x[0-9a-fA-F]{2,4};';
1016     
1017     function markup ($match) {
1018         return HTML::Raw($match);
1019     }
1020 }
1021
1022 // FIXME: Do away with magic phpwiki forms.  (Maybe phpwiki: links too?)
1023 // FIXME: Do away with plugin-links.  They seem not to be used.
1024 //Plugin link
1025
1026 class InlineTransformer
1027 {
1028     var $_regexps = array();
1029     var $_markup = array();
1030     
1031     function InlineTransformer ($markup_types = false) {
1032         global $request;
1033         // We need to extend the inline parsers by certain actions, like SearchHighlight, 
1034         // SpellCheck and maybe CreateToc.
1035         if (!$markup_types) {
1036             $non_default = false;
1037             $markup_types = array
1038                 ('escape', 'wikicreolebracketlink', 'bracketlink', 'url',
1039                  'interwiki',  'semanticlink', 'wikiword', 'linebreak',
1040                  'wikicreole_italics',
1041                  'wikicreole_monospace', 'wikicreole_superscript',
1042                  'wikicreole_subscript', 'old_emphasis', 'nestled_emphasis',
1043                  'html_emphasis', 'html_abbr', 'plugin',
1044                  'isonumchars', 'isohexchars', /*'html_entities'*/
1045                  );
1046             if (DISABLE_MARKUP_WIKIWORD)
1047                 $markup_types = array_remove($markup_types, 'wikiword');
1048
1049             $action = $request->getArg('action');
1050             if ($action == 'SpellCheck' and $request->getArg('suggestions'))
1051             {   // insert it after url
1052                 array_splice($markup_types, 2, 1, array('url','spellcheck'));
1053             }
1054             if (isset($request->_searchhighlight))
1055             {   // insert it after url
1056                 array_splice($markup_types, 2, 1, array('url','searchhighlight'));
1057                 //$request->setArg('searchhighlight', false);
1058             }
1059         } else {
1060             $non_default = true;
1061         }
1062         foreach ($markup_types as $mtype) {
1063             $class = "Markup_$mtype";
1064             $this->_addMarkup(new $class);
1065         }
1066         if (ENABLE_MARKUP_DIVSPAN and !$non_default)
1067             $this->_addMarkup(new Markup_html_divspan);
1068         if (ENABLE_MARKUP_COLOR and !$non_default)
1069             $this->_addMarkup(new Markup_color);
1070         $this->_addMarkup(new Markup_wikicreoletable_plugin);
1071         // Markup_wikicreole_preformatted must be before Markup_template_plugin
1072         $this->_addMarkup(new Markup_wikicreole_preformatted);
1073         if (ENABLE_MARKUP_TEMPLATE and !$non_default)
1074             $this->_addMarkup(new Markup_template_plugin);
1075         if (ENABLE_MARKUP_MEDIAWIKI_TABLE)
1076             $this->_addMarkup(new Markup_mediawikitable_plugin);
1077         // This does not work yet
1078         if (0 and PLUGIN_MARKUP_MAP and !$non_default)
1079             $this->_addMarkup(new Markup_xml_plugin);
1080     }
1081
1082     function _addMarkup ($markup) {
1083         if (isa($markup, 'SimpleMarkup'))
1084             $regexp = $markup->getMatchRegexp();
1085         else
1086             $regexp = $markup->getStartRegexp();
1087
1088         assert( !isset($this->_markup[$regexp]) );
1089         assert( strlen(trim($regexp)) > 0 );
1090         $this->_regexps[] = $regexp;
1091         $this->_markup[] = $markup;
1092     }
1093         
1094     function parse (&$text, $end_regexps = array('$')) {
1095         $regexps = $this->_regexps;
1096
1097         // $end_re takes precedence: "favor reduce over shift"
1098         array_unshift($regexps, $end_regexps[0]);
1099         //array_push($regexps, $end_regexps[0]);
1100         $regexps = new RegexpSet($regexps);
1101         
1102         $input = $text;
1103         $output = new XmlContent;
1104
1105         $match = $regexps->match($input);
1106         
1107         while ($match) {
1108             if ($match->regexp_ind == 0) {
1109                 // No start pattern found before end pattern.
1110                 // We're all done!
1111                 if (isset($markup) and is_object($markup) 
1112                     and isa($markup,'Markup_plugin')) 
1113                 {
1114                     $current =& $output->_content[count($output->_content)-1];
1115                     $current->setTightness(true,true);
1116                 }
1117                 $output->pushContent($match->prematch);
1118                 $text = $match->postmatch;
1119                 return $output;
1120             }
1121
1122             $markup = $this->_markup[$match->regexp_ind - 1];
1123             $body = $this->_parse_markup_body($markup, $match->match, 
1124                                               $match->postmatch, $end_regexps);
1125             if (!$body) {
1126                 // Couldn't match balanced expression.
1127                 // Ignore and look for next matching start regexp.
1128                 $match = $regexps->nextMatch($input, $match);
1129                 continue;
1130             }
1131
1132             // Matched markup.  Eat input, push output.
1133             // FIXME: combine adjacent strings.
1134             if (isa($markup, 'SimpleMarkup'))
1135                 $current = $markup->markup($match->match);
1136             else
1137                 $current = $markup->markup($match->match, $body);
1138             $input = $match->postmatch;
1139             if (isset($markup) and is_object($markup) 
1140                 and isa($markup,'Markup_plugin')) 
1141             {
1142                 $current->setTightness(true,true);
1143             }
1144             $output->pushContent($match->prematch, $current);
1145
1146             $match = $regexps->match($input);
1147         }
1148
1149         // No pattern matched, not even the end pattern.
1150         // Parse fails.
1151         return false;
1152     }
1153
1154     function _parse_markup_body ($markup, $match, &$text, $end_regexps) {
1155         if (isa($markup, 'SimpleMarkup'))
1156             return true;        // Done. SimpleMarkup is simple.
1157
1158         if (!is_object($markup)) return false; // Some error: Should assert
1159         array_unshift($end_regexps, $markup->getEndRegexp($match));
1160
1161         // Optimization: if no end pattern in text, we know the
1162         // parse will fail.  This is an important optimization,
1163         // e.g. when text is "*lots *of *start *delims *with
1164         // *no *matching *end *delims".
1165         $ends_pat = "/(?:" . join(").*(?:", $end_regexps) . ")/xs";
1166         if (!preg_match($ends_pat, $text))
1167             return false;
1168         return $this->parse($text, $end_regexps);
1169     }
1170 }
1171
1172 class LinkTransformer extends InlineTransformer
1173 {
1174     function LinkTransformer () {
1175         $this->InlineTransformer(array('escape', 'wikicreolebracketlink', 'bracketlink', 'url',
1176                                        'semanticlink', 'interwiki', 'wikiword', 
1177                                        ));
1178     }
1179 }
1180
1181 class NowikiTransformer extends InlineTransformer
1182 {
1183     function NowikiTransformer () {
1184         $this->InlineTransformer
1185             (array('linebreak',
1186                    'html_emphasis', 'html_abbr', 'plugin',
1187                    'isonumchars', 'isohexchars', /*'html_entities',*/
1188                    ));
1189     }
1190 }
1191
1192 function TransformInline($text, $markup = 2.0, $basepage=false) {
1193     static $trfm;
1194     $action = $GLOBALS['request']->getArg('action');
1195     if (empty($trfm) or $action == 'SpellCheck') {
1196         $trfm = new InlineTransformer;
1197     }
1198     
1199     if ($markup < 2.0) {
1200         $text = ConvertOldMarkup($text, 'inline');
1201     }
1202
1203     if ($basepage) {
1204         return new CacheableMarkup($trfm->parse($text), $basepage);
1205     }
1206     return $trfm->parse($text);
1207 }
1208
1209 function TransformLinks($text, $markup = 2.0, $basepage = false) {
1210     static $trfm;
1211     
1212     if (empty($trfm)) {
1213         $trfm = new LinkTransformer;
1214     }
1215
1216     if ($markup < 2.0) {
1217         $text = ConvertOldMarkup($text, 'links');
1218     }
1219     
1220     if ($basepage) {
1221         return new CacheableMarkup($trfm->parse($text), $basepage);
1222     }
1223     return $trfm->parse($text);
1224 }
1225
1226 /**
1227  * Transform only html markup and entities.
1228  */
1229 function TransformInlineNowiki($text, $markup = 2.0, $basepage=false) {
1230     static $trfm;
1231     
1232     if (empty($trfm)) {
1233         $trfm = new NowikiTransformer;
1234     }
1235     if ($basepage) {
1236         return new CacheableMarkup($trfm->parse($text), $basepage);
1237     }
1238     return $trfm->parse($text);
1239 }
1240
1241 // (c-file-style: "gnu")
1242 // Local Variables:
1243 // mode: php
1244 // tab-width: 8
1245 // c-basic-offset: 4
1246 // c-hanging-comment-ender-p: nil
1247 // indent-tabs-mode: nil
1248 // End:   
1249 ?>