OSDN Git Service

BugTrack2/15: Shrink add-plugin related hacks. Added 'label tag' for add hack. Beauti...
[pukiwiki/pukiwiki.git] / lib / html.php
1 <?php
2 // PukiWiki - Yet another WikiWikiWeb clone.
3 // $Id: html.php,v 1.50 2006/04/09 04:32:05 henoheno Exp $
4 // Copyright (C)
5 //   2002-2006 PukiWiki Developers Team
6 //   2001-2002 Originally written by yu-ji
7 // License: GPL v2 or (at your option) any later version
8 //
9 // HTML-publishing related functions
10
11 // Show page-content
12 function catbody($title, $page, $body)
13 {
14         global $script, $vars, $arg, $defaultpage, $whatsnew, $help_page, $hr;
15         global $attach_link, $related_link, $cantedit, $function_freeze;
16         global $search_word_color, $_msg_word, $foot_explain, $note_hr, $head_tags;
17         global $trackback, $trackback_javascript, $referer, $javascript;
18         global $nofollow;
19         global $_LANG, $_LINK, $_IMAGE;
20
21         global $pkwk_dtd;     // XHTML 1.1, XHTML1.0, HTML 4.01 Transitional...
22         global $page_title;   // Title of this site
23         global $do_backup;    // Do backup or not
24         global $modifier;     // Site administrator's  web page
25         global $modifierlink; // Site administrator's name
26
27         if (! file_exists(SKIN_FILE) || ! is_readable(SKIN_FILE))
28                 die_message('SKIN_FILE is not found');
29
30         $_LINK = $_IMAGE = array();
31
32         // Add JavaScript header when ...
33         if ($trackback && $trackback_javascript) $javascript = 1; // Set something If you want
34         if (! PKWK_ALLOW_JAVASCRIPT) unset($javascript);
35
36         $_page  = isset($vars['page']) ? $vars['page'] : '';
37         $r_page = rawurlencode($_page);
38
39         // Set $_LINK for skin
40         $_LINK['add']      = "$script?cmd=add&amp;page=$r_page";
41         $_LINK['backup']   = "$script?cmd=backup&amp;page=$r_page";
42         $_LINK['copy']     = "$script?plugin=template&amp;refer=$r_page";
43         $_LINK['diff']     = "$script?cmd=diff&amp;page=$r_page";
44         $_LINK['edit']     = "$script?cmd=edit&amp;page=$r_page";
45         $_LINK['filelist'] = "$script?cmd=filelist";
46         $_LINK['freeze']   = "$script?cmd=freeze&amp;page=$r_page";
47         $_LINK['help']     = "$script?" . rawurlencode($help_page);
48         $_LINK['list']     = "$script?cmd=list";
49         $_LINK['new']      = "$script?plugin=newpage&amp;refer=$r_page";
50         $_LINK['rdf']      = "$script?cmd=rss&amp;ver=1.0";
51         $_LINK['recent']   = "$script?" . rawurlencode($whatsnew);
52         $_LINK['refer']    = "$script?plugin=referer&amp;page=$r_page";
53         $_LINK['reload']   = "$script?$r_page";
54         $_LINK['rename']   = "$script?plugin=rename&amp;refer=$r_page";
55         $_LINK['rss']      = "$script?cmd=rss";
56         $_LINK['rss10']    = "$script?cmd=rss&amp;ver=1.0"; // Same as 'rdf'
57         $_LINK['rss20']    = "$script?cmd=rss&amp;ver=2.0";
58         $_LINK['search']   = "$script?cmd=search";
59         $_LINK['top']      = "$script?" . rawurlencode($defaultpage);
60         if ($trackback) {
61                 $tb_id = tb_get_id($_page);
62                 $_LINK['trackback'] = "$script?plugin=tb&amp;__mode=view&amp;tb_id=$tb_id";
63         }
64         $_LINK['unfreeze'] = "$script?cmd=unfreeze&amp;page=$r_page";
65         $_LINK['upload']   = "$script?plugin=attach&amp;pcmd=upload&amp;page=$r_page";
66
67         // Compat: Skins for 1.4.4 and before
68         $link_add       = & $_LINK['add'];
69         $link_new       = & $_LINK['new'];      // New!
70         $link_edit      = & $_LINK['edit'];
71         $link_diff      = & $_LINK['diff'];
72         $link_top       = & $_LINK['top'];
73         $link_list      = & $_LINK['list'];
74         $link_filelist  = & $_LINK['filelist'];
75         $link_search    = & $_LINK['search'];
76         $link_whatsnew  = & $_LINK['recent'];
77         $link_backup    = & $_LINK['backup'];
78         $link_help      = & $_LINK['help'];
79         $link_trackback = & $_LINK['trackback'];        // New!
80         $link_rdf       = & $_LINK['rdf'];              // New!
81         $link_rss       = & $_LINK['rss'];
82         $link_rss10     = & $_LINK['rss10'];            // New!
83         $link_rss20     = & $_LINK['rss20'];            // New!
84         $link_freeze    = & $_LINK['freeze'];
85         $link_unfreeze  = & $_LINK['unfreeze'];
86         $link_upload    = & $_LINK['upload'];
87         $link_template  = & $_LINK['copy'];
88         $link_refer     = & $_LINK['refer'];    // New!
89         $link_rename    = & $_LINK['rename'];
90
91         // Init flags
92         $is_page = (is_pagename($_page) && ! arg_check('backup') && $_page != $whatsnew);
93         $is_read = (arg_check('read') && is_page($_page));
94         $is_freeze = is_freeze($_page);
95
96         // Last modification date (string) of the page
97         $lastmodified = $is_read ?  format_date(get_filetime($_page)) .
98                 ' ' . get_pg_passage($_page, FALSE) : '';
99
100         // List of attached files to the page
101         $attaches = ($attach_link && $is_read && exist_plugin_action('attach')) ?
102                 attach_filelist() : '';
103
104         // List of related pages
105         $related  = ($related_link && $is_read) ? make_related($_page) : '';
106
107         // List of footnotes
108         ksort($foot_explain, SORT_NUMERIC);
109         $notes = ! empty($foot_explain) ? $note_hr . join("\n", $foot_explain) : '';
110
111         // Tags will be inserted into <head></head>
112         $head_tag = ! empty($head_tags) ? join("\n", $head_tags) ."\n" : '';
113
114         // 1.3.x compat
115         // Last modification date (UNIX timestamp) of the page
116         $fmt = $is_read ? get_filetime($_page) + LOCALZONE : 0;
117
118         // Search words
119         if ($search_word_color && isset($vars['word'])) {
120                 $body = '<div class="small">' . $_msg_word . htmlspecialchars($vars['word']) .
121                         '</div>' . $hr . "\n" . $body;
122
123                 // BugTrack2/106: Only variables can be passed by reference from PHP 5.0.5
124                 // with array_splice(), array_flip()
125                 $words = preg_split('/\s+/', $vars['word'], -1, PREG_SPLIT_NO_EMPTY);
126                 $words = array_splice($words, 0, 10); // Max: 10 words
127                 $words = array_flip($words);
128
129                 $keys = array();
130                 foreach ($words as $word=>$id) $keys[$word] = strlen($word);
131                 arsort($keys, SORT_NUMERIC);
132                 $keys = get_search_words(array_keys($keys), TRUE);
133                 $id = 0;
134                 foreach ($keys as $key=>$pattern) {
135                         $s_key    = htmlspecialchars($key);
136                         $pattern  = '/' .
137                                 '<textarea[^>]*>.*?<\/textarea>' .      // Ignore textareas
138                                 '|' . '<[^>]*>' .                       // Ignore tags
139                                 '|' . '&[^;]+;' .                       // Ignore entities
140                                 '|' . '(' . $pattern . ')' .            // $matches[1]: Regex for a search word
141                                 '/s';
142                         $decorate_Nth_word = create_function(
143                                 '$matches',
144                                 'return (isset($matches[1])) ? ' .
145                                         '\'<strong class="word' .
146                                                 $id .
147                                         '">\' . $matches[1] . \'</strong>\' : ' .
148                                         '$matches[0];'
149                         );
150                         $body  = preg_replace_callback($pattern, $decorate_Nth_word, $body);
151                         $notes = preg_replace_callback($pattern, $decorate_Nth_word, $notes);
152                         ++$id;
153                 }
154         }
155
156         $longtaketime = getmicrotime() - MUTIME;
157         $taketime     = sprintf('%01.03f', $longtaketime);
158
159         require(SKIN_FILE);
160 }
161
162 // Show 'edit' form
163 function edit_form($page, $postdata, $digest = FALSE, $b_template = TRUE)
164 {
165         global $script, $vars, $rows, $cols, $hr, $function_freeze;
166         global $_btn_preview, $_btn_repreview, $_btn_update, $_btn_cancel,
167                 $_msg_help, $_btn_notchangetimestamp;
168         global $whatsnew, $_btn_template, $_btn_load, $load_template_func;
169         global $notimeupdate;
170
171         // Newly generate $digest or not
172         if ($digest === FALSE) $digest = md5(join('', get_source($page)));
173
174         $refer = $template = '';
175         $checked_time = isset($vars['notimestamp']) ? ' checked="checked"' : '';
176  
177         // Add plugin
178         $addtag = $add_top = '';
179         if(isset($vars['add'])) {
180                 global $_btn_addtop;
181                 $addtag  = '<input type="hidden" name="add"    value="true" />';
182                 $add_top = isset($vars['add_top']) ? ' checked="checked"' : '';
183                 $add_top = '<input type="checkbox" name="add_top" ' .
184                         'id="_edit_form_add_top" value="true"' . $add_top . ' />' . "\n" .
185                         '  <label for="_edit_form_add_top">' .
186                                 '<span class="small">' . $_btn_addtop . '</span>' .
187                         '</label>';
188         }
189
190         if($load_template_func && $b_template) {
191                 $pages  = array();
192                 foreach(get_existpages() as $_page) {
193                         if ($_page == $whatsnew || check_non_list($_page))
194                                 continue;
195                         $s_page = htmlspecialchars($_page);
196                         $pages[$_page] = '   <option value="' . $s_page . '">' .
197                                 $s_page . '</option>';
198                 }
199                 ksort($pages);
200                 $s_pages  = join("\n", $pages);
201                 $template = <<<EOD
202   <select name="template_page">
203    <option value="">-- $_btn_template --</option>
204 $s_pages
205   </select>
206   <input type="submit" name="template" value="$_btn_load" accesskey="r" />
207   <br />
208 EOD;
209
210                 if (isset($vars['refer']) && $vars['refer'] != '')
211                         $refer = '[[' . strip_bracket($vars['refer']) . ']]' . "\n\n";
212         }
213
214         $r_page      = rawurlencode($page);
215         $s_page      = htmlspecialchars($page);
216         $s_digest    = htmlspecialchars($digest);
217         $s_postdata  = htmlspecialchars($refer . $postdata);
218         $s_original  = isset($vars['original']) ? htmlspecialchars($vars['original']) : $s_postdata;
219         $b_preview   = isset($vars['preview']); // TRUE when preview
220         $btn_preview = $b_preview ? $_btn_repreview : $_btn_preview;
221
222         $add_notimestamp = '';
223         if ( $notimeupdate != 0 ) {
224                 // enable 'do not change timestamp'
225                 $add_notimestamp = <<<EOD
226 <input type="checkbox" name="notimestamp" id="_edit_form_notimestamp" value="true"$checked_time />
227   <label for="_edit_form_notimestamp"><span class="small">$_btn_notchangetimestamp</span></label>
228 EOD;
229                 if ( $notimeupdate == 2 ) {
230                         // enable only administrator
231                         $add_notimestamp .= <<<EOD
232   <input type="password" name="pass" size="12" />
233 EOD;
234                 }
235                 $add_notimestamp .= '&nbsp;';
236         }
237
238         $body = <<<EOD
239 <form action="$script" method="post">
240  <div class="edit_form">
241 $template
242   $addtag
243   <input type="hidden" name="cmd"    value="edit" />
244   <input type="hidden" name="page"   value="$s_page" />
245   <input type="hidden" name="digest" value="$s_digest" />
246   <textarea name="msg" rows="$rows" cols="$cols">$s_postdata</textarea>
247   <br />
248   <input type="submit" name="preview" value="$btn_preview" accesskey="p" />
249   <input type="submit" name="write"   value="$_btn_update" accesskey="s" />
250   $add_top
251   $add_notimestamp
252   <input type="submit" name="cancel"  value="$_btn_cancel" accesskey="c" />
253   <textarea name="original" rows="1" cols="1" style="display:none">$s_original</textarea>
254  </div>
255 </form>
256 EOD;
257
258         if (isset($vars['help'])) {
259                 $body .= $hr . catrule();
260         } else {
261                 $body .= '<ul><li><a href="' .
262                         $script . '?cmd=edit&amp;help=true&amp;page=' . $r_page .
263                         '">' . $_msg_help . '</a></li></ul>';
264         }
265
266         return $body;
267 }
268
269 // Related pages
270 function make_related($page, $tag = '')
271 {
272         global $script, $vars, $rule_related_str, $related_str;
273         global $_ul_left_margin, $_ul_margin, $_list_pad_str;
274
275         $links = links_get_related($page);
276
277         if ($tag) {
278                 ksort($links);
279         } else {
280                 arsort($links);
281         }
282
283         $_links = array();
284         foreach ($links as $page=>$lastmod) {
285                 if (check_non_list($page)) continue;
286
287                 $r_page   = rawurlencode($page);
288                 $s_page   = htmlspecialchars($page);
289                 $passage  = get_passage($lastmod);
290                 $_links[] = $tag ?
291                         '<a href="' . $script . '?' . $r_page . '" title="' .
292                         $s_page . ' ' . $passage . '">' . $s_page . '</a>' :
293                         '<a href="' . $script . '?' . $r_page . '">' .
294                         $s_page . '</a>' . $passage;
295         }
296         if (empty($_links)) return ''; // Nothing
297
298         if ($tag == 'p') { // From the line-head
299                 $margin = $_ul_left_margin + $_ul_margin;
300                 $style  = sprintf($_list_pad_str, 1, $margin, $margin);
301                 $retval =  "\n" . '<ul' . $style . '>' . "\n" .
302                         '<li>' . join($rule_related_str, $_links) . '</li>' . "\n" .
303                         '</ul>' . "\n";
304         } else if ($tag) {
305                 $retval = join($rule_related_str, $_links);
306         } else {
307                 $retval = join($related_str, $_links);
308         }
309
310         return $retval;
311 }
312
313 // User-defined rules (convert without replacing source)
314 function make_line_rules($str)
315 {
316         global $line_rules;
317         static $pattern, $replace;
318
319         if (! isset($pattern)) {
320                 $pattern = array_map(create_function('$a',
321                         'return \'/\' . $a . \'/\';'), array_keys($line_rules));
322                 $replace = array_values($line_rules);
323                 unset($line_rules);
324         }
325
326         return preg_replace($pattern, $replace, $str);
327 }
328
329 // Remove all HTML tags(or just anchor tags), and WikiName-speific decorations
330 function strip_htmltag($str, $all = TRUE)
331 {
332         global $_symbol_noexists;
333         static $noexists_pattern;
334
335         if (! isset($noexists_pattern))
336                 $noexists_pattern = '#<span class="noexists">([^<]*)<a[^>]+>' .
337                         preg_quote($_symbol_noexists, '#') . '</a></span>#';
338
339         // Strip Dagnling-Link decoration (Tags and "$_symbol_noexists")
340         $str = preg_replace($noexists_pattern, '$1', $str);
341
342         if ($all) {
343                 // All other HTML tags
344                 return preg_replace('#<[^>]+>#',        '', $str);
345         } else {
346                 // All other anchor-tags only
347                 return preg_replace('#<a[^>]+>|</a>#i', '', $str);
348         }
349 }
350
351 // Remove AutoLink marker with AutLink itself
352 function strip_autolink($str)
353 {
354         return preg_replace('#<!--autolink--><a [^>]+>|</a><!--/autolink-->#', '', $str);
355 }
356
357 // Make a backlink. searching-link of the page name, by the page name, for the page name
358 function make_search($page)
359 {
360         global $script;
361
362         $s_page = htmlspecialchars($page);
363         $r_page = rawurlencode($page);
364
365         return '<a href="' . $script . '?plugin=related&amp;page=' . $r_page .
366                 '">' . $s_page . '</a> ';
367 }
368
369 // Make heading string (remove heading-related decorations from Wiki text)
370 function make_heading(& $str, $strip = TRUE)
371 {
372         global $NotePattern;
373
374         // Cut fixed-heading anchors
375         $id = '';
376         $matches = array();
377         if (preg_match('/^(\*{0,3})(.*?)\[#([A-Za-z][\w-]+)\](.*?)$/m', $str, $matches)) {
378                 $str = $matches[2] . $matches[4];
379                 $id  = & $matches[3];
380         } else {
381                 $str = preg_replace('/^\*{0,3}/', '', $str);
382         }
383
384         // Cut footnotes and tags
385         if ($strip === TRUE)
386                 $str = strip_htmltag(make_link(preg_replace($NotePattern, '', $str)));
387
388         return $id;
389 }
390
391 // Separate a page-name(or URL or null string) and an anchor
392 // (last one standing) without sharp
393 function anchor_explode($page, $strict_editable = FALSE)
394 {
395         $pos = strrpos($page, '#');
396         if ($pos === FALSE) return array($page, '', FALSE);
397
398         // Ignore the last sharp letter
399         if ($pos + 1 == strlen($page)) {
400                 $pos = strpos(substr($page, $pos + 1), '#');
401                 if ($pos === FALSE) return array($page, '', FALSE);
402         }
403
404         $s_page = substr($page, 0, $pos);
405         $anchor = substr($page, $pos + 1);
406
407         if($strict_editable === TRUE &&  preg_match('/^[a-z][a-f0-9]{7}$/', $anchor)) {
408                 return array ($s_page, $anchor, TRUE); // Seems fixed-anchor
409         } else {
410                 return array ($s_page, $anchor, FALSE);
411         }
412 }
413
414 // Check HTTP header()s were sent already, or
415 // there're blank lines or something out of php blocks
416 function pkwk_headers_sent()
417 {
418         if (PKWK_OPTIMISE) return;
419
420         $file = $line = '';
421         if (version_compare(PHP_VERSION, '4.3.0', '>=')) {
422                 if (headers_sent($file, $line))
423                     die('Headers already sent at ' .
424                         htmlspecialchars($file) .
425                         ' line ' . $line . '.');
426         } else {
427                 if (headers_sent())
428                         die('Headers already sent.');
429         }
430 }
431
432 // Output common HTTP headers
433 function pkwk_common_headers()
434 {
435         if (! PKWK_OPTIMISE) pkwk_headers_sent();
436
437         if(defined('PKWK_ZLIB_LOADABLE_MODULE')) {
438                 $matches = array();
439                 if(ini_get('zlib.output_compression') &&
440                     preg_match('/\b(gzip|deflate)\b/i', $_SERVER['HTTP_ACCEPT_ENCODING'], $matches)) {
441                         // Bug #29350 output_compression compresses everything _without header_ as loadable module
442                         // http://bugs.php.net/bug.php?id=29350
443                         header('Content-Encoding: ' . $matches[1]);
444                         header('Vary: Accept-Encoding');
445                 }
446         }
447 }
448
449 // DTD definitions
450 define('PKWK_DTD_XHTML_1_1',              17); // Strict only
451 define('PKWK_DTD_XHTML_1_0',              16); // Strict
452 define('PKWK_DTD_XHTML_1_0_STRICT',       16);
453 define('PKWK_DTD_XHTML_1_0_TRANSITIONAL', 15);
454 define('PKWK_DTD_XHTML_1_0_FRAMESET',     14);
455 define('PKWK_DTD_HTML_4_01',               3); // Strict
456 define('PKWK_DTD_HTML_4_01_STRICT',        3);
457 define('PKWK_DTD_HTML_4_01_TRANSITIONAL',  2);
458 define('PKWK_DTD_HTML_4_01_FRAMESET',      1);
459
460 define('PKWK_DTD_TYPE_XHTML',  1);
461 define('PKWK_DTD_TYPE_HTML',   0);
462
463 // Output HTML DTD, <html> start tag. Return content-type.
464 function pkwk_output_dtd($pkwk_dtd = PKWK_DTD_XHTML_1_1, $charset = CONTENT_CHARSET)
465 {
466         static $called;
467         if (isset($called)) die('pkwk_output_dtd() already called. Why?');
468         $called = TRUE;
469
470         $type = PKWK_DTD_TYPE_XHTML;
471         $option = '';
472         switch($pkwk_dtd){
473         case PKWK_DTD_XHTML_1_1             :
474                 $version = '1.1' ;
475                 $dtd     = 'http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd';
476                 break;
477         case PKWK_DTD_XHTML_1_0_STRICT      :
478                 $version = '1.0' ;
479                 $option  = 'Strict';
480                 $dtd     = 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd';
481                 break;
482         case PKWK_DTD_XHTML_1_0_TRANSITIONAL:
483                 $version = '1.0' ;
484                 $option  = 'Transitional';
485                 $dtd     = 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd';
486                 break;
487
488         case PKWK_DTD_HTML_4_01_STRICT      :
489                 $type    = PKWK_DTD_TYPE_HTML;
490                 $version = '4.01';
491                 $dtd     = 'http://www.w3.org/TR/html4/strict.dtd';
492                 break;
493         case PKWK_DTD_HTML_4_01_TRANSITIONAL:
494                 $type    = PKWK_DTD_TYPE_HTML;
495                 $version = '4.01';
496                 $option  = 'Transitional';
497                 $dtd     = 'http://www.w3.org/TR/html4/loose.dtd';
498                 break;
499
500         default: die('DTD not specified or invalid DTD');
501                 break;
502         }
503
504         $charset = htmlspecialchars($charset);
505
506         // Output XML or not
507         if ($type == PKWK_DTD_TYPE_XHTML) echo '<?xml version="1.0" encoding="' . $charset . '" ?>' . "\n";
508
509         // Output doctype
510         echo '<!DOCTYPE html PUBLIC "-//W3C//DTD ' .
511                 ($type == PKWK_DTD_TYPE_XHTML ? 'XHTML' : 'HTML') . ' ' .
512                 $version .
513                 ($option != '' ? ' ' . $option : '') .
514                 '//EN" "' .
515                 $dtd .
516                 '">' . "\n";
517
518         // Output <html> start tag
519         echo '<html';
520         if ($type == PKWK_DTD_TYPE_XHTML) {
521                 echo ' xmlns="http://www.w3.org/1999/xhtml"'; // dir="ltr" /* LeftToRight */
522                 echo ' xml:lang="' . LANG . '"';
523                 if ($version == '1.0') echo ' lang="' . LANG . '"'; // Only XHTML 1.0
524         } else {
525                 echo ' lang="' . LANG . '"'; // HTML
526         }
527         echo '>' . "\n"; // <html>
528
529         // Return content-type (with MIME type)
530         if ($type == PKWK_DTD_TYPE_XHTML) {
531                 // NOTE: XHTML 1.1 browser will ignore http-equiv
532                 return '<meta http-equiv="content-type" content="application/xhtml+xml; charset=' . $charset . '" />' . "\n";
533         } else {
534                 return '<meta http-equiv="content-type" content="text/html; charset=' . $charset . '" />' . "\n";
535         }
536 }
537 ?>