]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/plugin/IncludePage.php
Remove debugging cruft.
[SourceForge/phpwiki.git] / lib / plugin / IncludePage.php
1 <?php // -*-php-*-
2 rcs_id('$Id: IncludePage.php,v 1.23 2003-03-25 21:01:52 dairiki Exp $');
3 /*
4  Copyright 1999, 2000, 2001, 2002 $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
24 /**
25  * IncludePage:  include text from another wiki page in this one
26  * usage:   <?plugin IncludePage page=OtherPage rev=6 quiet=1 words=50 lines=6?>
27  * author:  Joe Edelman <joe@orbis-tertius.net>
28  */
29
30 class WikiPlugin_IncludePage
31 extends WikiPlugin
32 {
33     function getName() {
34         return _("IncludePage");
35     }
36
37     function getDescription() {
38         return _("Include text from another wiki page.");
39     }
40
41     function getVersion() {
42         return preg_replace("/[Revision: $]/", '',
43                             "\$Revision: 1.23 $");
44     }
45
46     function getDefaultArguments() {
47         return array( 'page'    => false, // the page to include
48                       'rev'     => false, // the revision (defaults to most recent)
49                       'quiet'   => false, // if set, inclusion appears as normal content
50                       'words'   => false, // maximum number of words to include
51                       'lines'   => false, // maximum number of lines to include
52                       'section' => false, // include a named section
53                       'sectionhead' => false // when including a named section show the heading
54                       );
55     }
56
57     function firstNWordsOfContent( $n, $content ) {
58         $wordcount = 0;
59         $new = array( );
60         foreach ($content as $line) {
61             $words = explode(' ', $line);
62             if ($wordcount + count($words) > $n) {
63                 $new[] = implode(' ', array_slice($words, 0, $n - $wordcount))
64                     . "... (first $n words)";
65                 return $new;
66             } else {
67                 $wordcount += count($words);
68                 $new[] = $line;
69             }
70         }
71         return $new;
72     }
73
74     function extractSection ($section, $content, $page, $quiet, $sectionhead) {
75         $qsection = preg_replace('/\s+/', '\s+', preg_quote($section, '/'));
76
77         if (preg_match("/ ^(!{1,})\\s*$qsection" // section header
78                        . "  \\s*$\\n?"           // possible blank lines
79                        . "  ( (?: ^.*\\n? )*? )" // some lines
80                        . "  (?= ^\\1 | \\Z)/xm", // sec header (same or higher level) (or EOF)
81                        implode("\n", $content),
82                        $match)) {
83             // Strip trailing blanks lines and ---- <hr>s
84             $text = preg_replace("/\\s*^-{4,}\\s*$/m", "", $match[2]);
85             if ($sectionhead)
86                 $text = $match[1] . $section ."\n". $text;
87             return explode("\n", $text);
88         }
89         if ($quiet)
90             $mesg = $page ." ". $section;
91         else
92             $mesg = $section;
93         return array(sprintf(_("<%s: no such section>"), $mesg));
94     }
95
96     function getWikiPageLinks($argstr, $basepage) {
97         extract($this->getArgs($argstr));
98
99         if ($page) {
100             // Expand relative page names.
101             $page = new WikiPageName($page, $basepage);
102         }
103         if (!$page or !$page->name)
104             return false;
105         return array($page->name);
106     }
107                 
108     function run($dbi, $argstr, $request, $basepage) {
109
110         extract($this->getArgs($argstr, $request));
111         if ($page) {
112             // Expand relative page names.
113             $page = new WikiPageName($page, $basepage);
114             $page = $page->name;
115         }
116         if (!$page) {
117             return $this->error(_("no page specified"));
118         }
119
120         // A page can include itself once (this is needed, e.g.,  when editing
121         // TextFormattingRules).
122         static $included_pages = array();
123         if (in_array($page, $included_pages)) {
124             return $this->error(sprintf(_("recursive inclusion of page %s"),
125                                         $page));
126         }
127
128         $p = $dbi->getPage($page);
129
130         if ($rev) {
131             $r = $p->getRevision($rev);
132             if (!$r) {
133                 return $this->error(sprintf(_("%s(%d): no such revision"),
134                                             $page, $rev));
135             }
136         } else {
137             $r = $p->getCurrentRevision();
138         }
139
140         $c = $r->getContent();
141
142         if ($section)
143             $c = $this->extractSection($section, $c, $page, $quiet,
144                                        $sectionhead);
145         if ($lines)
146             $c = array_slice($c, 0, $lines);
147         if ($words)
148             $c = $this->firstNWordsOfContent($words, $c);
149
150
151         array_push($included_pages, $page);
152
153         include_once('lib/BlockParser.php');
154         $content = TransformText(implode("\n", $c), $r->get('markup'), $page);
155
156         array_pop($included_pages);
157
158         if ($quiet)
159             return $content;
160
161         return HTML(HTML::p(array('class' => 'transclusion-title'),
162                             fmt("Included from %s", WikiLink($page))),
163
164                     HTML::div(array('class' => 'transclusion'),
165                               false, $content));
166     }
167 };
168
169 // This is an excerpt from the css file I use:
170 //
171 // .transclusion-title {
172 //   font-style: oblique;
173 //   font-size: 0.75em;
174 //   text-decoration: underline;
175 //   text-align: right;
176 // }
177 //
178 // DIV.transclusion {
179 //   background: lightgreen;
180 //   border: thin;
181 //   border-style: solid;
182 //   padding-left: 0.8em;
183 //   padding-right: 0.8em;
184 //   padding-top: 0px;
185 //   padding-bottom: 0px;
186 //   margin: 0.5ex 0px;
187 // }
188
189 // KNOWN ISSUES:
190 // - line & word limit doesn't work if the included page itself
191 //   includes a plugin
192
193
194 // $Log: not supported by cvs2svn $
195 // Revision 1.22  2003/03/13 18:57:56  dairiki
196 // Hack so that (when using the IncludePage plugin) the including page shows
197 // up in the BackLinks of the included page.
198 //
199 // Revision 1.21  2003/02/21 04:12:06  dairiki
200 // Minor fixes for new cached markup.
201 //
202 // Revision 1.20  2003/01/18 21:41:02  carstenklapp
203 // Code cleanup:
204 // Reformatting & tabs to spaces;
205 // Added copyleft, getVersion, getDescription, rcs_id.
206 //
207
208 // For emacs users
209 // Local Variables:
210 // mode: php
211 // tab-width: 8
212 // c-basic-offset: 4
213 // c-hanging-comment-ender-p: nil
214 // indent-tabs-mode: nil
215 // End:
216 ?>