]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/CachedMarkup.php
fix when DISABLE_UNITS = true (thanks to Walter Rafelsberger)
[SourceForge/phpwiki.git] / lib / CachedMarkup.php
1 <?php 
2 rcs_id('$Id: CachedMarkup.php,v 1.56 2007-04-08 16:39:40 rurban Exp $');
3 /* Copyright (C) 2002 Geoffrey T. Dairiki <dairiki@dairiki.org>
4  * Copyright (C) 2004,2005,2006,2007 $ThePhpWikiProgrammingTeam
5  *
6  * This file is part of PhpWiki.
7  * 
8  * PhpWiki is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  * 
13  * PhpWiki is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  * 
18  * You should have received a copy of the GNU General Public License
19  * along with PhpWiki; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 include_once("lib/Units.php");
24
25 class CacheableMarkup extends XmlContent {
26
27     function CacheableMarkup($content, $basepage) {
28         $this->_basepage = $basepage;
29         $this->_buf = '';
30         $this->_content = array();
31         $this->_append($content);
32         if ($this->_buf != '')
33             $this->_content[] = $this->_buf;
34         unset($this->_buf);
35     }
36
37     function pack() {
38         if (function_exists('gzcompress'))
39             return gzcompress(serialize($this), 9);
40         return serialize($this);
41
42         // FIXME: probably should implement some sort of "compression"
43         //   when no gzcompress is available.
44     }
45
46     function unpack($packed) {
47         if (!$packed)
48             return false;
49
50         // ZLIB format has a five bit checksum in it's header.
51         // Lets check for sanity.
52         if (((ord($packed[0]) * 256 + ord($packed[1])) % 31 == 0)
53              and (substr($packed,0,2) == "\037\213") 
54                   or (substr($packed,0,2) == "x\332"))   // 120, 218
55         {
56             if (function_exists('gzuncompress')) {
57                 // Looks like ZLIB.
58                 $data = gzuncompress($packed);
59                 return unserialize($data);
60             } else {
61                 // user our php lib. TESTME
62                 include_once("ziplib.php");
63                 $zip = new ZipReader($packed);
64                 list(,$data,$attrib) = $zip->readFile();
65                 return unserialize($data);
66             }
67         }
68         if (substr($packed,0,2) == "O:") {
69             // Looks like a serialized object
70             return unserialize($packed);
71         }
72         if (preg_match("/^\w+$/", $packed))
73             return $packed;
74         // happened with _BackendInfo problem also.
75         trigger_error("Can't unpack bad cached markup. Probably php_zlib extension not loaded.", 
76                       E_USER_WARNING);
77         return false;
78     }
79     
80     /** Get names of wikipages linked to.
81      *
82      * @return array of hashes { linkto=>pagename, relation=>pagename }
83      */
84     function getWikiPageLinks() {
85         $links = array();
86         foreach ($this->_content as $item) {
87             if (!isa($item, 'Cached_DynamicContent'))
88                 continue;
89             if (!($item_links = $item->getWikiPageLinks($this->_basepage)))
90                 continue;
91             $links = array_merge($links, $item_links);
92         }
93         // array_unique has a bug with hashes! 
94         // set_links checks for duplicates, array_merge does not
95         //return array_unique($links);
96         return $links;
97     }
98
99     /** Get link info.
100      *
101      * This is here to support the XML-RPC listLinks() method.
102      *
103      * @return array
104      * Returns an array of hashes.
105      */
106     function getLinkInfo() {
107         $link = array();
108         foreach ($this->_content as $link) {
109             if (! isa($link, 'Cached_Link'))
110                 continue;
111             $info = $link->getLinkInfo($this->_basepage);
112             $links[$info->href] = $info;
113         }
114         return array_values($links);
115     }
116
117     function _append($item) {
118         if (is_array($item)) {
119             foreach ($item as $subitem)
120                 $this->_append($subitem);
121         }
122         elseif (!is_object($item)) {
123             $this->_buf .= $this->_quote((string) $item);
124         }
125         elseif (isa($item, 'Cached_DynamicContent')) {
126             if ($this->_buf) {
127                 $this->_content[] = $this->_buf;
128                 $this->_buf = '';
129             }
130             $this->_content[] = $item;
131         }
132         elseif (isa($item, 'XmlElement')) {
133             if ($item->isEmpty()) {
134                 $this->_buf .= $item->emptyTag();
135             }
136             else {
137                 $this->_buf .= $item->startTag();
138                 foreach ($item->getContent() as $subitem)
139                     $this->_append($subitem);
140                 $this->_buf .= "</$item->_tag>";
141
142                 if (!isset($this->_description) and $item->getTag() == 'p')
143                     $this->_glean_description($item->asString());
144             }
145             if (!$item->isInlineElement())
146                 $this->_buf .= "\n";
147         }
148         elseif (isa($item, 'XmlContent')) {
149             foreach ($item->getContent() as $item)
150                 $this->_append($item);
151         }
152         elseif (method_exists($item, 'asXML')) {
153             $this->_buf .= $item->asXML();
154         }
155         elseif (method_exists($item, 'asString')) {
156             $this->_buf .= $this->_quote($item->asString());
157         }
158         else {
159             $this->_buf .= sprintf("==Object(%s)==", get_class($item));
160         }
161     }
162
163     function _glean_description($text) {
164         static $two_sentences;
165         if (!$two_sentences) {
166             $two_sentences = pcre_fix_posix_classes("[.?!][\")]*\s+[\"(]*[[:upper:])]"
167                                                     . ".*"
168                                                     . "[.?!][\")]*\s*[\"(]*([[:upper:])]|$)");
169         }
170         
171         if (!isset($this->_description) and preg_match("/$two_sentences/sx", $text))
172             $this->_description = preg_replace("/\s*\n\s*/", " ", trim($text));
173     }
174
175     /**
176      * Guess a short description of the page.
177      *
178      * Algorithm:
179      *
180      * This algorithm was suggested on MeatballWiki by
181      * Alex Schroeder <kensanata@yahoo.com>.
182      *
183      * Use the first paragraph in the page which contains at least two
184      * sentences.
185      *
186      * @see http://www.usemod.com/cgi-bin/mb.pl?MeatballWikiSuggestions
187      *
188      * @return string
189      */
190     function getDescription () {
191         return isset($this->_description) ? $this->_description : '';
192     }
193     
194     function asXML () {
195         $xml = '';
196         $basepage = $this->_basepage;
197         
198         foreach ($this->_content as $item) {
199             if (is_string($item)) {
200                 $xml .= $item;
201             }
202             elseif (is_subclass_of($item, 
203                                    check_php_version(5) 
204                                      ? 'Cached_DynamicContent' 
205                                      : 'cached_dynamiccontent'))
206             {
207                 $val = $item->expand($basepage, $this);
208                 $xml .= $val->asXML();
209             }
210             else {
211                 $xml .= $item->asXML();
212             }
213         }
214         return $xml;
215     }
216
217     function printXML () {
218         $basepage = $this->_basepage;
219         // _content might be changed from a plugin (CreateToc)
220         for ($i=0; $i < count($this->_content); $i++) {
221             $item = $this->_content[$i];
222             if (is_string($item)) {
223                 print $item;
224             }
225             elseif (is_subclass_of($item, 
226                                    check_php_version(5) 
227                                      ? 'Cached_DynamicContent' 
228                                      : 'cached_dynamiccontent')) 
229             {   // give the content the chance to know about itself or even 
230                 // to change itself
231                 $val = $item->expand($basepage, $this);
232                 $val->printXML();
233             }
234             else {
235                 $item->printXML();
236             }
237         }
238     }
239 }       
240
241 /**
242  * The base class for all dynamic content.
243  *
244  * Dynamic content is anything that can change even when the original
245  * wiki-text from which it was parsed is unchanged.
246  */
247 class Cached_DynamicContent {
248
249     function cache(&$cache) {
250         $cache[] = $this;
251     }
252
253     function expand($basepage, &$obj) {
254         trigger_error("Pure virtual", E_USER_ERROR);
255     }
256
257     function getWikiPageLinks($basepage) {
258         return false;
259     }
260 }
261
262 class XmlRpc_LinkInfo {
263     function XmlRpc_LinkInfo($page, $type, $href, $relation = '') {
264         $this->page = $page;
265         $this->type = $type;
266         $this->href = $href;
267         $this->relation = $relation;
268         //$this->pageref = str_replace("/RPC2.php", "/index.php", $href);
269     }
270 }
271
272 class Cached_Link extends Cached_DynamicContent {
273
274     function isInlineElement() {
275         return true;
276     }
277
278     /** Get link info (for XML-RPC support)
279      *
280      * This is here to support the XML-RPC listLinks method.
281      * (See http://www.ecyrd.com/JSPWiki/Wiki.jsp?page=WikiRPCInterface)
282      */
283     function getLinkInfo($basepage) {
284         return new XmlRpc_LinkInfo($this->_getName($basepage),
285                                    $this->_getType(),
286                                    $this->_getURL($basepage),
287                                    $this->_getRelation($basepage));
288     }
289     
290     function _getURL($basepage) {
291         return $this->_url;
292     }
293     function __getRelation($basepage) {
294         return $this->_relation;
295     }
296 }
297
298 class Cached_WikiLink extends Cached_Link {
299
300     function Cached_WikiLink ($page, $label = false, $anchor = false) {
301         $this->_page = $page;
302         /* ":DontStoreLink" */
303         if (substr($this->_page,0,1) == ':') {
304             $this->_page = substr($this->_page,1);
305             $this->_nolink = true;
306         }    
307         if ($anchor)
308             $this->_anchor = $anchor;
309         if ($label and $label != $page)
310             $this->_label = $label;
311         $this->_basepage = false;    
312     }
313
314     function _getType() {
315         return 'internal';
316     }
317     
318     function getPagename($basepage) {
319         $page = new WikiPageName($this->_page, $basepage);
320         if ($page->isValid()) return $page->name;
321         else return false;
322     }
323
324     function getWikiPageLinks($basepage) {
325         if ($basepage == '') return false;
326         if (isset($this->_nolink)) return false;
327         if ($link = $this->getPagename($basepage)) 
328             return array(array('linkto' => $link, 'relation' => 0));
329         else 
330             return false;
331     }
332
333     function _getName($basepage) {
334         return $this->getPagename($basepage);
335     }
336
337     function _getURL($basepage) {
338         return WikiURL($this->getPagename($basepage));
339         //return WikiURL($this->getPagename($basepage), false, 'abs_url');
340     }
341
342     function expand($basepage, &$markup) {
343         $this->_basepage = $basepage;
344         $label = isset($this->_label) ? $this->_label : false;
345         $anchor = isset($this->_anchor) ? (string)$this->_anchor : '';
346         $page = new WikiPageName($this->_page, $basepage, $anchor);
347         if ($page->isValid()) return WikiLink($page, 'auto', $label);
348         else return HTML($label);
349     }
350
351     function asXML() {
352         $label = isset($this->_label) ? $this->_label : false;
353         $anchor = isset($this->_anchor) ? (string)$this->_anchor : '';
354         //TODO: need basepage for subpages like /Remove (within CreateTOC)
355         $page = new WikiPageName($this->_page, $this->_basepage, $anchor);
356         $link = WikiLink($page, 'auto', $label);
357         return $link->asXML();
358     }
359
360     function asString() {
361         if (isset($this->_label))
362             return $this->_label;
363         return $this->_page;
364     }
365 }
366
367 class Cached_WikiLinkIfKnown extends Cached_WikiLink
368 {
369     function Cached_WikiLinkIfKnown ($moniker) {
370         $this->_page = $moniker;
371     }
372
373     function expand($basepage, &$markup) {
374         return WikiLink($this->_page, 'if_known');
375     }
376 }    
377
378 class Cached_SpellCheck extends Cached_WikiLink
379 {
380     function Cached_SpellCheck ($word, $suggs) {
381         $this->_page = $word;
382         $this->suggestions = $suggs;
383     }
384
385     function expand($basepage, &$markup) {
386         $link = HTML::a(array('class' => 'spell-wrong', 
387                               'title' => 'SpellCheck: '.join(', ', $this->suggestions),
388                               'name' => $this->_page), 
389                         $this->_page);
390         return $link;
391     }
392 }    
393     
394 class Cached_PhpwikiURL extends Cached_DynamicContent
395 {
396     function Cached_PhpwikiURL ($url, $label) {
397         $this->_url = $url;
398         if ($label)
399             $this->_label = $label;
400     }
401
402     function isInlineElement() {
403         return true;
404     }
405
406     function expand($basepage, &$markup) {
407         $label = isset($this->_label) ? $this->_label : false;
408         return LinkPhpwikiURL($this->_url, $label, $basepage);
409     }
410
411     function asXML() {
412         $label = isset($this->_label) ? $this->_label : false;
413         $link = LinkPhpwikiURL($this->_url, $label);
414         return $link->asXML();
415     }
416
417     function asString() {
418         if (isset($this->_label))
419             return $this->_label;
420         return $this->_url;
421     }
422 }    
423
424 /*
425  * Relations (::) are named links to pages.
426  * Attributes (:=) are named metadata per page, "named links to numbers with units". 
427  * We don't want to exhaust the linktable with numbers,
428  * since this would create empty pages per each value, 
429  * so we don't store the attributes as full relationlink. 
430  * But we do store the attribute name as relation with an empty pagename 
431  * to denote that this is an attribute, 
432  * and to enable a fast listRelations mode=attributes
433  */
434 class Cached_SemanticLink extends Cached_WikiLink {
435
436     function Cached_SemanticLink ($url, $label=false) {
437         $this->_url = $url;
438         if ($label && $label != $url)
439             $this->_label = $label;
440         $this->_expandurl($this->_url);
441     }
442
443     function isInlineElement() {
444         return true;
445     }
446
447     function getPagename($basepage) {
448         if (!isset($this->_page)) return false;
449         $page = new WikiPageName($this->_page, $basepage);
450         if ($page->isValid()) return $page->name;
451         else return false;
452     }
453
454     /* add relation to the link table.
455      * attributes have the _relation, but not the _page set. 
456      */
457     function getWikiPageLinks($basepage) {
458         if ($basepage == '') return false;
459         if (!isset($this->_page) and isset($this->_attribute)) {
460             // an attribute, we store it in the basepage now.
461             $page = $GLOBALS['request']->getPage($basepage);    
462             $page->setAttribute($this->_relation, $this->_attribute);
463             return array(array('linkto' => '', 'relation' => $this->_relation));
464             //return false;
465         }
466         if ($link = $this->getPagename($basepage)) 
467             return array(array('linkto' => $link, 'relation' => $this->_relation));
468         else
469             return false;
470     }
471
472     function _expandurl($url) {
473         $m = array();
474         if (!preg_match('/^ ([^:]+) (:[:=]) (.+) $/x', $url, $m)) {
475             return HTML::strong(array('class' => 'rawurl'),
476                                 HTML::u(array('class' => 'baduri'),
477                                         _("BAD semantic relation link")));
478         }
479         $this->_relation = urldecode($m[1]);
480         $is_attribute = ($m[2] == ':=');
481         if ($is_attribute) {
482             $this->_attribute = urldecode($m[3]);
483             // since this stored in the markup cache, we are extra sensible 
484             // not to store false empty stuff.
485             $units = new Units();
486             if (!DISABLE_UNITS and !$units->errcode) 
487             {
488                 $this->_attribute_base = $units->Definition($this->_attribute);
489                 $this->_unit = $units->baseunit($this->_attribute);
490             }
491         } else {
492             $this->_page = urldecode($m[3]);
493         }
494         return $m;
495     }
496
497     function _expand($url, $label = false) {
498         $m = $this->_expandurl($url);
499         $class = 'wiki';
500         // do not link to the attribute value, but to the attribute
501         $is_attribute = ($m[2] == ':=');
502         if ($is_attribute)
503             $title = isset($this->_attribute_base)
504                 ? sprintf(_("Attribute %s, base value: %s"), $this->_relation, $this->_attribute_base)
505                 : sprintf(_("Attribute %s, value: %s"), $this->_relation, $this->_attribute);
506         if ($label) {
507             return HTML::span
508                 (
509                  HTML::a(array('href'  => WikiURL($is_attribute ? $this->_relation : $this->_page),
510                                'class' => "wiki ".($is_attribute ? "attribute" : "relation"),
511                                'title' => $is_attribute 
512                                ? $title 
513                                : sprintf(_("Relation %s to page %s"), $this->_relation, $this->_page)),
514                          $label)
515                  );
516         } elseif ($is_attribute) {
517             return HTML::span
518                 (
519                  HTML::a(array('href'  => WikiURL($this->_relation),
520                                'class' => "wiki attribute",
521                                'title' => $title),
522                          $url)
523                  );
524         } else {
525             return HTML::span
526                 (
527                  HTML::a(array('href'  => WikiURL($this->_relation),
528                                'class' => "wiki relation"),
529                          $this->_relation),
530                  HTML::span(array('class'=>'relation-symbol'), $m[2]),
531                  HTML::a(array('href'  => WikiURL($this->_page),
532                                'class' => "wiki"),
533                          $this->_page)
534                  );
535         }
536     }
537
538     function expand($basepage, &$markup) {
539         $label = isset($this->_label) ? $this->_label : false;
540         return $this->_expand($this->_url, $label);
541     }
542
543     function asXML() {
544         $label = isset($this->_label) ? $this->_label : false;
545         $link = $this->_expand($this->_url, $label);
546         return $link->asXML();
547     }
548
549     function asString() {
550         if (isset($this->_label))
551             return $this->_label;
552         return $this->_url;
553     }
554 }
555
556 /** 
557  * Highlight found search engine terms
558  */
559 class Cached_SearchHighlight extends Cached_DynamicContent
560 {
561     function Cached_SearchHighlight ($word, $engine) {
562         $this->_word = $word;
563         $this->engine = $engine;
564     }
565
566     function expand($basepage, &$markup) {
567         return HTML::span(array('class' => 'search-term',
568                                 'title' => _("Found by ") . $this->engine),
569                           $this->_word);
570     }
571 }    
572     
573 class Cached_ExternalLink extends Cached_Link {
574
575     function Cached_ExternalLink($url, $label=false) {
576         $this->_url = $url;
577         if ($label && $label != $url)
578             $this->_label = $label;
579     }
580
581     function _getType() {
582         return 'external';
583     }
584     
585     function _getName($basepage) {
586         $label = isset($this->_label) ? $this->_label : false;
587         return ($label and is_string($label)) ? $label : $this->_url;
588     }
589
590     function expand($basepage, &$markup) {
591         global $request;
592
593         $label = isset($this->_label) ? $this->_label : false;
594         $link = LinkURL($this->_url, $label);
595
596         if (GOOGLE_LINKS_NOFOLLOW) {
597             // Ignores nofollow when the user who saved the page was authenticated. 
598             $page = $request->getPage($basepage);
599             $current = $page->getCurrentRevision(false);
600             if (!$current->get('author_id'))
601                 $link->setAttr('rel', 'nofollow');
602         }
603         return $link;
604     }
605
606     function asString() {
607         if (isset($this->_label))
608             return $this->_label;
609         return $this->_url;
610     }
611 }
612
613 class Cached_InterwikiLink extends Cached_ExternalLink {
614     
615     function Cached_InterwikiLink($link, $label=false) {
616         $this->_link = $link;
617         if ($label)
618             $this->_label = $label;
619     }
620
621     function getPagename($basepage) {
622         list ($moniker, $page) = split (":", $this->_link, 2);
623         $page = new WikiPageName($page, $basepage);
624         if ($page->isValid()) return $page->name;
625         else return false;
626     }
627
628     function getWikiPageLinks($basepage) {
629         if ($basepage == '') return false;
630         /* ":DontStoreLink" */
631         if (substr($this->_link,0,1) == ':') return false;
632         /* store only links to valid pagenames */
633         if ($link = $this->getPagename($basepage)) 
634             return array(array('linkto' => $link, 'relation' => 0));
635         else return false; // dont store external links
636     }
637
638     function _getName($basepage) {
639         $label = isset($this->_label) ? $this->_label : false;
640         return ($label and is_string($label)) ? $label : $this->_link;
641     }
642     
643     /* there may be internal interwiki links also */
644     function _getType() {
645         return $this->getPagename(false) ? 'internal' : 'external';
646     }
647
648     function _getURL($basepage) {
649         $link = $this->expand($basepage, $this);
650         return $link->getAttr('href');
651     }
652
653     function expand($basepage, &$markup) {
654         $intermap = getInterwikiMap();
655         $label = isset($this->_label) ? $this->_label : false;
656         return $intermap->link($this->_link, $label);
657     }
658
659     function asString() {
660         if (isset($this->_label))
661             return $this->_label;
662         return $this->_link;
663     }
664 }
665
666 // Needed to put UserPages to backlinks. Special method to markup userpages with icons
667 // Thanks to PhpWiki:DanFr for finding this bug. 
668 // Fixed since 1.3.8, prev. versions had no userpages in backlinks
669 class Cached_UserLink extends Cached_WikiLink {
670     function expand($basepage, &$markup) {
671         $label = isset($this->_label) ? $this->_label : false;
672         $anchor = isset($this->_anchor) ? (string)$this->_anchor : '';
673         $page = new WikiPageName($this->_page, $basepage, $anchor);
674         $link = WikiLink($page, 'auto', $label);
675         // $link = HTML::a(array('href' => $PageName));
676         $link->setContent(PossiblyGlueIconToText('wikiuser', $this->_page));
677         $link->setAttr('class', 'wikiuser');
678         return $link;
679     }
680 }
681
682 /**
683  * 1.3.13: Previously stored was only _pi. 
684  * A fresh generated cache has now ->name and ->args also.
685  * main::isActionPage only checks the raw content.
686  */
687 class Cached_PluginInvocation extends Cached_DynamicContent {
688
689     function Cached_PluginInvocation ($pi) {
690         $this->_pi = $pi;
691         $loader = $this->_getLoader();
692         if (is_array($plugin_cmdline = $loader->parsePI($pi)) and $plugin_cmdline[1]) {
693             $this->pi_name = $plugin_cmdline[0]; // plugin, plugin-form, plugin-list, plugin-link
694             $this->name = $plugin_cmdline[1]->getName();
695             $this->args = $plugin_cmdline[2];
696         }
697     }
698
699     function setTightness($top, $bottom) {
700         $this->_tightenable = 0;
701         if ($top) $this->_tightenable |= 1;
702         if ($bottom) $this->_tightenable |= 2;
703     }
704     
705     function isInlineElement() {
706         return false;
707     }
708
709     function expand($basepage, &$markup) {
710         $loader = $this->_getLoader();
711
712         $xml = $loader->expandPI($this->_pi, $GLOBALS['request'], $markup, $basepage);
713         $div = HTML::div(array('class' => 'plugin'));
714         if (isset($this->name))
715             $id = GenerateId($this->name . 'Plugin');
716    
717         if (isset($this->_tightenable)) {
718             if ($this->_tightenable == 3) {
719                 $span = HTML::span(array('class' => 'plugin'), $xml);
720                 if (!empty($id))
721                     $span->setAttr('id', $id);
722                 return $span;
723             }
724             $div->setInClass('tightenable');
725             $div->setInClass('top', ($this->_tightenable & 1) != 0);
726             $div->setInClass('bottom', ($this->_tightenable & 2) != 0);
727         }
728         if (!empty($id))
729             $div->setAttr('id', $id);
730         $div->pushContent($xml);
731         return $div;
732     }
733
734     function asString() {
735         return $this->_pi;
736     }
737
738
739     function getWikiPageLinks($basepage) {
740         $loader = $this->_getLoader();
741
742         return $loader->getWikiPageLinks($this->_pi, $basepage);
743     }
744
745     function & _getLoader() {
746         static $loader = false;
747
748         if (!$loader) {
749             include_once('lib/WikiPlugin.php');
750             $loader = new WikiPluginLoader;
751         }
752         return $loader;
753     }
754 }
755
756 // $Log: not supported by cvs2svn $
757 // Revision 1.55  2007/03/18 17:35:14  rurban
758 // Fix :DontStoreLink
759 //
760 // Revision 1.54  2007/01/25 07:41:41  rurban
761 // Print attribute in title. Use CSS formatting for ::=
762 //
763 // Revision 1.53  2007/01/21 23:26:52  rurban
764 // Translate Found by
765 //
766 // Revision 1.52  2007/01/20 15:53:51  rurban
767 // Rewrite of SearchHighlight: through ActionPage and InlineParser
768 //
769 // Revision 1.51  2007/01/20 11:24:53  rurban
770 // add SpellCheck support
771 //
772 // Revision 1.50  2007/01/07 18:41:51  rurban
773 // Fix fallback ZipReader syntax error. Use label=false. Add parsed plugin names to the stored tree.
774 //
775 // Revision 1.49  2007/01/04 16:40:35  rurban
776 // Remove units object from CachedMarkup links, Store parsed linkinfo only: basevalue, baseunit.
777 //
778 // Revision 1.48  2007/01/03 21:22:08  rurban
779 // Use Units for attributes. Store the unified base value as Cached_SemanticLink->_attribute_base in the wikimarkup and display it as title.
780 //
781 // Revision 1.47  2007/01/02 13:17:57  rurban
782 // fix semantic page links and attributes, esp. attributes. they get stored as link to empty page also. tighten semantic url expander regex, omit want_content if not necessary
783 //
784 // Revision 1.46  2006/12/22 00:11:38  rurban
785 // add seperate expandurl method, to simplify pagename parsing
786 //
787 // Revision 1.45  2006/10/12 06:33:50  rurban
788 // decide later with which class to render this link (fixes interwiki link layout)
789
790 // (c-file-style: "gnu")
791 // Local Variables:
792 // mode: php
793 // tab-width: 8
794 // c-basic-offset: 4
795 // c-hanging-comment-ender-p: nil
796 // indent-tabs-mode: nil
797 // End:   
798 ?>