]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/IncludePage.php
Bypass recursion error message for the special case when editing TextFormattingRules.
[SourceForge/phpwiki.git] / lib / plugin / IncludePage.php
1 <?php // -*-php-*-
2 rcs_id('$Id: IncludePage.php,v 1.7 2002-01-20 08:20:28 carstenklapp Exp $');
3 /**
4  * IncludePage:  include text from another wiki page in this one
5  * usage:   <?plugin IncludePage page=OtherPage rev=6 quiet=1 words=50 lines=6?>
6  * author:  Joe Edelman <joe@orbis-tertius.net>
7  */
8
9 require_once('lib/transform.php');
10
11 class WikiPlugin_IncludePage
12 extends WikiPlugin
13 {
14     function getName() {
15         return _("IncludePage");
16     }
17
18     function getDefaultArguments() {
19         return array( 'page'    => false, // the page to include
20                       'rev'     => false, // the revision (defaults to most recent)
21                       'quiet'   => false, // if set, inclusion appears as normal content
22                       'words'   => false, // maximum number of words to include
23                       'lines'   => false, // maximum number of lines to include
24                       'section' => false  // include a named section
25                       );
26     }
27
28     function firstNWordsOfContent( $n, $content ) {
29         $wordcount = 0;
30         $new = array( );
31         foreach ($content as $line) {
32             $words = explode(' ', $line);
33             if ($wordcount + count($words) > $n) {
34                 $new[] = implode(' ', array_slice($words, 0, $n - $wordcount))
35                     . "... (first $n words)";
36                 return $new;
37             } else {
38                 $wordcount += count($words);
39                 $new[] = $line;
40             }
41         }
42         return $new;
43     }
44
45     function extractSection ($section, $content) {
46         $qsection = preg_replace('/\s+/', '\s+', preg_quote($section, '/'));
47
48         if (preg_match("/ ^(!{1,})\\s*$qsection" // section header
49                        . "  \\s*$\\n?"           // possible blank lines
50                        . "  ( (?: ^.*\\n? )*? )" // some lines
51                        . "  (?= ^\\1 | \\Z)/xm", // sec header (same or higher level) (or EOF)
52                        implode("\n", $content),
53                        $match)) {
54             // Strip trailing blanks lines and ---- <hr>s
55             $text = preg_replace("/\\s*^-{4,}\\s*$/m", "", $match[2]);
56             return explode("\n", $text);
57         }
58         return array(sprintf(_("<%s: no such section>"), $section));
59     }
60
61     function error($msg) {
62         // FIXME: better error reporting?
63         trigger_error($msg, E_USER_NOTICE);
64     }
65
66     function run($dbi, $argstr, $request) {
67
68         extract($this->getArgs($argstr, $request));
69
70         if (!$page) {
71             $this->error(_("no page specified"));
72             return '';
73         }
74
75         // Bypass recursion error message for the special case when
76         // editing the TextFormattingRules page itself.
77         static $included_pages = array();
78         if ($page == $request->getArg('pagename')
79             || in_array($page, $included_pages)) {
80             if (! ($page == _("TextFormattingRules") && $quiet) ) {
81                 $this->error(sprintf(_("recursive inclusion of page %s"), $page));
82             }
83             return '';
84         }
85
86         $p = $dbi->getPage($page);
87
88         if ($rev) {
89             $r = $p->getRevision($rev);
90             if (!$r) {
91                 $this->error(sprintf(_("%s(%d): no such revision"), $page,
92                                      $rev));
93                 return '';
94             }
95         } else {
96             $r = $p->getCurrentRevision();
97         }
98
99         $c = $r->getContent();
100
101         if ($section)
102             $c = $this->extractSection($section, $c);
103         if ($lines)
104             $c = array_slice($c, 0, $lines);
105         if ($words)
106             $c = $this->firstNWordsOfContent($words, $c);
107
108         array_push($included_pages, $page);
109         $content = do_transform($c);
110         array_pop($included_pages);
111
112         if ($quiet) return $content;
113
114         return Element('p', array('class' => 'transclusion-title'),
115                        sprintf(_("Included from %s"),
116                                LinkExistingWikiWord($page)))
117             . Element('div', array('class' => 'transclusion'),
118                       $content);
119     }
120 };
121
122 // This is an excerpt from the css file I use:
123 //
124 // .transclusion-title {
125 //   font-style: oblique;
126 //   font-size: 0.75em;
127 //   text-decoration: underline;
128 //   text-align: right;
129 // }
130 //
131 // DIV.transclusion {
132 //   background: lightgreen;
133 //   border: thin;
134 //   border-style: solid;
135 //   padding-left: 0.8em;
136 //   padding-right: 0.8em;
137 //   padding-top: 0px;
138 //   padding-bottom: 0px;
139 //   margin: 0.5ex 0px;
140 // }
141
142 // KNOWN ISSUES:
143 // - line & word limit doesn't work if the included page itself
144 //   includes a plugin
145 // - we need an error reporting scheme
146
147 // For emacs users
148 // Local Variables:
149 // mode: php
150 // tab-width: 8
151 // c-basic-offset: 4
152 // c-hanging-comment-ender-p: nil
153 // indent-tabs-mode: nil
154 // End:
155 ?>