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