OSDN Git Service

c35f3ed7a0419573d0265f9504dabcfccbab4470
[pukiwiki/pukiwiki.git] / lib / html.php
1 <?php
2 // PukiWiki - Yet another WikiWikiWeb clone.
3 // html.php
4 // Copyright
5 //   2002-2018 PukiWiki Development 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 $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 $javascript, $nofollow;
18         global $_LANG, $_LINK, $_IMAGE;
19         global $auth_type, $auth_user;
20         global $html_meta_referrer_policy;
21
22         global $pkwk_dtd;     // XHTML 1.1, XHTML1.0, HTML 4.01 Transitional...
23         global $page_title;   // Title of this site
24         global $do_backup;    // Do backup or not
25         global $modifier;     // Site administrator's  web page
26         global $modifierlink; // Site administrator's name
27
28         $script = get_base_uri();
29         $enable_login = false;
30         $enable_logout = false;
31         if (AUTH_TYPE_FORM === $auth_type || AUTH_TYPE_EXTERNAL === $auth_type ||
32                 AUTH_TYPE_SAML === $auth_type) {
33                 if ($auth_user) {
34                         $enable_logout = true;
35                 } else {
36                         $enable_login = true;
37                 }
38         } else if (AUTH_TYPE_BASIC === $auth_type) {
39                 if ($auth_user) {
40                         $enable_logout = true;
41                 }
42         }
43         if (! file_exists(SKIN_FILE) || ! is_readable(SKIN_FILE))
44                 die_message('SKIN_FILE is not found');
45
46         $_LINK = $_IMAGE = array();
47
48         $_page  = isset($vars['page']) ? $vars['page'] : '';
49         $r_page = pagename_urlencode($_page);
50         $is_edit_preview = isset($vars['preview']);
51         // Canonical URL
52         $canonical_url = get_page_uri($_page, PKWK_URI_ABSOLUTE);
53
54         // Set $_LINK for skin
55         $_LINK['add']      = "$script?cmd=add&amp;page=$r_page";
56         $_LINK['backup']   = "$script?cmd=backup&amp;page=$r_page";
57         $_LINK['copy']     = "$script?plugin=template&amp;refer=$r_page";
58         $_LINK['diff']     = "$script?cmd=diff&amp;page=$r_page";
59         $_LINK['edit']     = "$script?cmd=edit&amp;page=$r_page";
60         $_LINK['filelist'] = "$script?cmd=filelist";
61         $_LINK['freeze']   = "$script?cmd=freeze&amp;page=$r_page";
62         $_LINK['help']     = get_page_uri($help_page);
63         $_LINK['list']     = "$script?cmd=list";
64         $_LINK['new']      = "$script?plugin=newpage&amp;refer=$r_page";
65         $_LINK['rdf']      = "$script?cmd=rss&amp;ver=1.0";
66         $_LINK['recent']   = get_page_uri($whatsnew);
67         $_LINK['reload']   = get_page_uri($_page);
68         $_LINK['rename']   = "$script?plugin=rename&amp;refer=$r_page";
69         $_LINK['rss']      = "$script?cmd=rss";
70         $_LINK['rss10']    = "$script?cmd=rss&amp;ver=1.0"; // Same as 'rdf'
71         $_LINK['rss20']    = "$script?cmd=rss&amp;ver=2.0";
72         $_LINK['search']   = "$script?cmd=search";
73         $_LINK['top']      = get_page_uri($defaultpage);
74         $_LINK['unfreeze'] = "$script?cmd=unfreeze&amp;page=$r_page";
75         $_LINK['upload']   = "$script?plugin=attach&amp;pcmd=upload&amp;page=$r_page";
76         $_LINK['canonical_url'] = $canonical_url;
77         $login_link = "#LOGIN_ERROR"; // dummy link that is not used
78         switch ($auth_type) {
79                 case AUTH_TYPE_FORM:
80                         $login_link = "$script?plugin=loginform&pcmd=login&page=$r_page";
81                         break;
82                 case AUTH_TYPE_EXTERNAL:
83                 case AUTH_TYPE_SAML:
84                         $login_link = get_auth_external_login_url($_page,
85                                 get_page_uri($_page, PKWK_URI_ROOT));
86                         break;
87         }
88         $_LINK['login']    = htmlsc($login_link);
89         $_LINK['logout']   = "$script?plugin=loginform&amp;pcmd=logout&amp;page=$r_page";
90
91         // Compat: Skins for 1.4.4 and before
92         $link_add       = & $_LINK['add'];
93         $link_new       = & $_LINK['new'];      // New!
94         $link_edit      = & $_LINK['edit'];
95         $link_diff      = & $_LINK['diff'];
96         $link_top       = & $_LINK['top'];
97         $link_list      = & $_LINK['list'];
98         $link_filelist  = & $_LINK['filelist'];
99         $link_search    = & $_LINK['search'];
100         $link_whatsnew  = & $_LINK['recent'];
101         $link_backup    = & $_LINK['backup'];
102         $link_help      = & $_LINK['help'];
103         $link_trackback = ''; // Removed (compat)
104         $link_rdf       = & $_LINK['rdf'];              // New!
105         $link_rss       = & $_LINK['rss'];
106         $link_rss10     = & $_LINK['rss10'];            // New!
107         $link_rss20     = & $_LINK['rss20'];            // New!
108         $link_freeze    = & $_LINK['freeze'];
109         $link_unfreeze  = & $_LINK['unfreeze'];
110         $link_upload    = & $_LINK['upload'];
111         $link_template  = & $_LINK['copy'];
112         $link_refer     = ''; // Removed (compat)
113         $link_rename    = & $_LINK['rename'];
114
115         // Init flags
116         $is_page = (is_pagename($_page) && ! arg_check('backup') && $_page != $whatsnew);
117         $is_read = (arg_check('read') && is_page($_page));
118         $is_freeze = is_freeze($_page);
119
120         // Last modification date (string) of the page
121         $lastmodified = $is_read ?  format_date(get_filetime($_page)) .
122                 get_passage_html_span($_page) : '';
123
124         // List of attached files to the page
125         $show_attaches = $is_read || arg_check('edit');
126         $attaches = ($attach_link && $show_attaches && exist_plugin_action('attach')) ?
127                 attach_filelist() : '';
128
129         // List of related pages
130         $related  = ($related_link && $is_read) ? make_related($_page) : '';
131
132         // List of footnotes
133         ksort($foot_explain, SORT_NUMERIC);
134         $notes = ! empty($foot_explain) ? $note_hr . join("\n", $foot_explain) : '';
135
136         // Tags will be inserted into <head></head>
137         $head_tag = ! empty($head_tags) ? join("\n", $head_tags) ."\n" : '';
138
139         // 1.3.x compat
140         // Last modification date (UNIX timestamp) of the page
141         $fmt = $is_read ? get_filetime($_page) + LOCALZONE : 0;
142
143         // Output nofollow / noindex regardless os skin file
144         if (!$is_read || $nofollow) {
145                 if (!headers_sent()) {
146                         header("X-Robots-Tag: noindex,nofollow");
147                 }
148         }
149
150         // Send Canonical URL for Search Engine Optimization
151         if ($is_read && !headers_sent()) {
152                 header("Link: <$canonical_url>; rel=\"canonical\"");
153         }
154
155         // Search words
156         if ($search_word_color && isset($vars['word'])) {
157                 $body = '<div class="small">' . $_msg_word . htmlsc($vars['word']) .
158                         '</div>' . $hr . "\n" . $body;
159
160                 // BugTrack2/106: Only variables can be passed by reference from PHP 5.0.5
161                 // with array_splice(), array_flip()
162                 $words = preg_split('/\s+/', $vars['word'], -1, PREG_SPLIT_NO_EMPTY);
163                 $words = array_splice($words, 0, 10); // Max: 10 words
164                 $words = array_flip($words);
165
166                 $keys = array();
167                 foreach ($words as $word=>$id) $keys[$word] = strlen($word);
168                 arsort($keys, SORT_NUMERIC);
169                 $keys = get_search_words(array_keys($keys), TRUE);
170                 $id = 0;
171                 $patterns = '';
172                 foreach ($keys as $key=>$pattern) {
173                         if (strlen($patterns) > 0) {
174                                 $patterns .= '|';
175                         }
176                         $patterns .= '(' . $pattern . ')';
177                 }
178                 if ($pattern) {
179                         $whole_pattern  = '/' .
180                                 '<textarea[^>]*>.*?<\/textarea>' .      // Ignore textareas
181                                 '|' . '<[^>]*>' .                       // Ignore tags
182                                 '|' . '&[^;]+;' .                       // Ignore entities
183                                 '|' . '(' . $patterns . ')' .           // $matches[1]: Regex for a search word
184                                 '/sS';
185                         $body  = preg_replace_callback($whole_pattern, '_decorate_Nth_word', $body);
186                         $notes = preg_replace_callback($whole_pattern, '_decorate_Nth_word', $notes);
187                 }
188         }
189         // Embed Scripting data
190         $html_scripting_data = get_html_scripting_data($_page, $is_edit_preview);
191
192         // Compat: 'HTML convert time' without time about MenuBar and skin
193         $taketime = elapsedtime();
194
195         require(SKIN_FILE);
196 }
197
198 function _decorate_Nth_word($matches)
199 {
200         // $matches[0]: including both words to skip and to decorate
201         // $matches[1]: word to decorate
202         // $matches[2+]: indicates which keyword to decorate
203         $index = -1;
204         for ($i = 2; $i < count($matches); $i++) {
205                 if (isset($matches[$i]) && $matches[$i]) {
206                         $index = $i - 2;
207                         break;
208                 }
209         }
210         if (isset($matches[1])) {
211                 // wordN highlight class: N=0...n
212                 return '<strong class="word' . $index . '">' .
213                         $matches[0] . '</strong>';
214         }
215         return $matches[0];
216 }
217
218 /**
219  * Get data used by JavaScript modules
220  *
221  * @param $page page name
222  * @param $in_editing true if preview in editing
223  */
224 function get_html_scripting_data($page, $in_editing)
225 {
226         global $ticket_link_sites, $plugin;
227         global $external_link_cushion_page, $external_link_cushion;
228         global $topicpath_title;
229         global $ticket_jira_default_site;
230         if (!isset($ticket_link_sites) || !is_array($ticket_link_sites)) {
231                 return '';
232         }
233         $is_utf8 = (bool)defined('PKWK_UTF8_ENABLE');
234         // Require: PHP 5.4+
235         $json_enabled = defined('JSON_UNESCAPED_UNICODE');
236         if (!$json_enabled) {
237                 $empty_data = <<<EOS
238 <div id="pukiwiki-site-properties" style="display:none;">
239 </div>
240 EOS;
241                 return $empty_data;
242         }
243         // Site basic Properties
244         $props = array(
245                 'is_utf8' => $is_utf8,
246                 'json_enabled' => $json_enabled,
247                 'base_uri_pathname' => get_base_uri(PKWK_URI_ROOT),
248                 'base_uri_absolute' => get_base_uri(PKWK_URI_ABSOLUTE)
249         );
250         $h_props = htmlsc_json($props);
251         $site_props = <<<EOS
252 <input type="hidden" class="site-props" value="$h_props" />
253 EOS;
254         $h_plugin = htmlsc($plugin);
255         $plugin_prop = <<<EOS
256 <input type="hidden" class="plugin-name" value="$h_plugin" />
257 EOS;
258         // Page name
259         $h_page_name = htmlsc($page);
260         $page_name_data = <<<EOS
261 <input type="hidden" class="page-name" value="$h_page_name" />
262 EOS;
263         // Page is editing (preview)
264         $in_editing_value = ($plugin === 'edit' && $in_editing) ? 'true' : 'false';
265         $page_edit_data = <<<EOS
266 <input type="hidden" class="page-in-edit" value="$in_editing_value" />
267 EOS;
268         // AutoTicketLink
269         $filtered_ticket_link_sites = array();
270         foreach ($ticket_link_sites as $s) {
271                 if (!preg_match('/^([a-zA-Z0-9]+)([\.\-][a-zA-Z0-9]+)*$/', $s['key'])) {
272                         continue;
273                 }
274                 array_push($filtered_ticket_link_sites, $s);
275         }
276         $h_ticket_link_sites = htmlsc_json($filtered_ticket_link_sites);
277         $ticketlink_data = <<<EOS
278 <input type="hidden" class="ticketlink-def" value="$h_ticket_link_sites" />
279 EOS;
280         // AutoTicketLink - JIRA
281         $ticket_jira_projects = get_ticketlink_jira_projects();
282         $ticketlink_jira_data = '';
283         if (count($ticket_jira_projects) > 0) {
284                 $h_ticket_jira_projects = htmlsc_json($ticket_jira_projects);
285                 $ticketlink_jira_data = <<<EOS
286 <input type="hidden" class="ticketlink-jira-def" value="$h_ticket_jira_projects" />
287 EOS;
288         }
289         $ticketlink_jira_default_data = '';
290         if (isset($ticket_jira_default_site) && is_array($ticket_jira_default_site)) {
291                 $h_ticket_jira_default_site = htmlsc_json($ticket_jira_default_site);
292                 $ticketlink_jira_default_data = <<<EOS
293 <input type="hidden" class="ticketlink-jira-default-def" value="$h_ticket_jira_default_site" />
294 EOS;
295         }
296         // External link cushion page
297         $external_link_cushion_data = '';
298         if ($external_link_cushion_page) {
299                 $h_cushion = htmlsc(json_encode($external_link_cushion,
300                         JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES));
301                 $external_link_cushion_data = <<<EOS
302 <input type="hidden" class="external-link-cushion" value="$h_cushion" />
303 EOS;
304         }
305         // Topicpath title
306         $topicpath_data = '';
307         if ($topicpath_title && exist_plugin('topicpath')) {
308                 $parents = plugin_topicpath_parent_links($page);
309                 $h_topicpath = htmlsc(json_encode($parents,
310                 JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES));
311                 $topicpath_data = <<<EOS
312 <input type="hidden" class="topicpath-links" value="$h_topicpath" />
313 EOS;
314         }
315         $data = <<<EOS
316 <div id="pukiwiki-site-properties" style="display:none;">
317 $site_props
318 $plugin_prop
319 $page_name_data
320 $page_edit_data
321 $ticketlink_data
322 $ticketlink_jira_data
323 $ticketlink_jira_default_data
324 $external_link_cushion_data
325 $topicpath_data
326 </div>
327 EOS;
328         return $data;
329 }
330
331 // Show 'edit' form
332 function edit_form($page, $postdata, $digest = FALSE, $b_template = TRUE)
333 {
334         global $vars, $rows, $cols;
335         global $_btn_preview, $_btn_repreview, $_btn_update, $_btn_cancel, $_msg_help;
336         global $_btn_template, $_btn_load, $load_template_func;
337         global $notimeupdate;
338         global $_msg_edit_cancel_confirm, $_msg_edit_unloadbefore_message;
339         global $rule_page;
340
341         $script = get_base_uri();
342         // Newly generate $digest or not
343         if ($digest === FALSE) $digest = md5(join('', get_source($page)));
344         $refer = $template = '';
345         // Add plugin
346         $addtag = $add_top = '';
347         if(isset($vars['add'])) {
348                 global $_btn_addtop;
349                 $addtag  = '<input type="hidden" name="add"    value="true" />';
350                 $add_top = isset($vars['add_top']) ? ' checked="checked"' : '';
351                 $add_top = '<input type="checkbox" name="add_top" ' .
352                         'id="_edit_form_add_top" value="true"' . $add_top . ' />' . "\n" .
353                         '  <label for="_edit_form_add_top">' .
354                                 '<span class="small">' . $_btn_addtop . '</span>' .
355                         '</label>';
356         }
357         if($load_template_func && $b_template) {
358                 $template_page_list = get_template_page_list();
359                 $tpages = array(); // Template pages
360                 foreach($template_page_list as $p) {
361                         $ps = htmlsc($p);
362                         $tpages[] = '   <option value="' . $ps . '">' . $ps . '</option>';
363                 }
364                 if (count($template_page_list) > 0) {
365                         $s_tpages = join("\n", $tpages);
366                 } else {
367                         $s_tpages = '   <option value="">(no template pages)</option>';
368                 }
369                 $template = <<<EOD
370   <select name="template_page">
371    <option value="">-- $_btn_template --</option>
372 $s_tpages
373   </select>
374   <input type="submit" name="template" value="$_btn_load" accesskey="r" />
375   <br />
376 EOD;
377
378                 if (isset($vars['refer']) && $vars['refer'] != '')
379                         $refer = '[[' . strip_bracket($vars['refer']) . ']]' . "\n\n";
380         }
381
382         $r_page      = rawurlencode($page);
383         $s_page      = htmlsc($page);
384         $s_digest    = htmlsc($digest);
385         $s_postdata  = htmlsc($refer . $postdata);
386         $s_original  = isset($vars['original']) ? htmlsc($vars['original']) : $s_postdata;
387         $b_preview   = isset($vars['preview']); // TRUE when preview
388         $btn_preview = $b_preview ? $_btn_repreview : $_btn_preview;
389
390         // Checkbox 'do not change timestamp'
391         $add_notimestamp = '';
392         if ($notimeupdate != 0) {
393                 global $_btn_notchangetimestamp;
394                 $checked_time = isset($vars['notimestamp']) ? ' checked="checked"' : '';
395                 // Only for administrator
396                 if ($notimeupdate == 2) {
397                         $add_notimestamp = '   ' .
398                                 '<input type="password" name="pass" size="12" />' . "\n";
399                 }
400                 $add_notimestamp = '<input type="checkbox" name="notimestamp" ' .
401                         'id="_edit_form_notimestamp" value="true"' . $checked_time . ' />' . "\n" .
402                         '   ' . '<label for="_edit_form_notimestamp"><span class="small">' .
403                         $_btn_notchangetimestamp . '</span></label>' . "\n" .
404                         $add_notimestamp .
405                         '&nbsp;';
406         }
407
408         // 'margin-bottom', 'float:left', and 'margin-top'
409         // are for layout of 'cancel button'
410         $h_msg_edit_cancel_confirm = htmlsc($_msg_edit_cancel_confirm);
411         $h_msg_edit_unloadbefore_message = htmlsc($_msg_edit_unloadbefore_message);
412         $body = <<<EOD
413 <div class="edit_form">
414  <form action="$script" method="post" class="_plugin_edit_edit_form" style="margin-bottom:0px;">
415 $template
416   $addtag
417   <input type="hidden" name="cmd"    value="edit" />
418   <input type="hidden" name="page"   value="$s_page" />
419   <input type="hidden" name="digest" value="$s_digest" />
420   <input type="hidden" id="_msg_edit_cancel_confirm" value="$h_msg_edit_cancel_confirm" />
421   <input type="hidden" id="_msg_edit_unloadbefore_message" value="$h_msg_edit_unloadbefore_message" />
422   <textarea name="msg" rows="$rows" cols="$cols">$s_postdata</textarea>
423   <br />
424   <div style="float:left;">
425    <input type="submit" name="preview" value="$btn_preview" accesskey="p" />
426    <input type="submit" name="write"   value="$_btn_update" accesskey="s" />
427    $add_top
428    $add_notimestamp
429   </div>
430   <textarea name="original" rows="1" cols="1" style="display:none">$s_original</textarea>
431  </form>
432  <form action="$script" method="post" class="_plugin_edit_cancel" style="margin-top:0px;">
433   <input type="hidden" name="cmd"    value="edit" />
434   <input type="hidden" name="page"   value="$s_page" />
435   <input type="submit" name="cancel" value="$_btn_cancel" accesskey="c" />
436  </form>
437 </div>
438 EOD;
439
440         $body .= '<ul><li><a href="' .
441                 get_page_uri($rule_page) .
442                 '" target="_blank">' . $_msg_help . '</a></li></ul>';
443         return $body;
444 }
445
446 /**
447  * Get template page list.
448  */
449 function get_template_page_list()
450 {
451         global $whatsnew;
452         $tpage_names = array(); // Pages marked as template
453         $template_page = ':config/Templates';
454         $page_max = 100;
455         foreach(get_source($template_page) as $_templates) {
456                 $m = array();
457                 if (! preg_match('#\-\s*\[\[([^\[\]]+)\]\]#', $_templates, $m)) continue;
458                 $tpage = preg_replace('#^./#', "$template_page/", $m[1]);
459                 if (! is_page($tpage)) continue;
460                 $tpage_names[] = $tpage;
461         }
462         $page_names = array();
463         $page_list = get_existpages();
464         if (count($page_list) > $page_max) {
465                 // Extract only template name pages
466                 $target_pages = array();
467                 foreach ($page_list as $_page) {
468                         if (preg_match('/template/i', $_page)) {
469                                 $target_pages[] = $_page;
470                         }
471                 }
472         } else {
473                 $target_pages = $page_list;
474         }
475         foreach ($target_pages as $_page) {
476                 if ($_page == $whatsnew || check_non_list($_page) ||
477                         !is_page_readable($_page)) {
478                         continue;
479                 }
480                 $tpage_names[] = $_page;
481         }
482         $tempalte_page_list = array_values(array_unique($tpage_names));
483         natcasesort($tempalte_page_list);
484         return $tempalte_page_list;
485 }
486
487 // Related pages
488 function make_related($page, $tag = '')
489 {
490         global $vars, $rule_related_str, $related_str;
491
492         $script = get_base_uri();
493         prepare_links_related($page);
494         $links = links_get_related($page);
495
496         if ($tag) {
497                 ksort($links, SORT_STRING);             // Page name, alphabetical order
498         } else {
499                 arsort($links, SORT_NUMERIC);   // Last modified date, newer
500         }
501
502         $_links = array();
503         foreach ($links as $page=>$lastmod) {
504                 if (check_non_list($page)) continue;
505                 $page_uri = get_page_uri($page);
506                 $s_page   = htmlsc($page);
507                 if ($tag) {
508                         $attrs = get_page_link_a_attrs($page);
509                         $_links[] = '<a href="' . $page_uri . '" class="' .
510                                 $attrs['class'] . '" data-mtime="' . $attrs['data_mtime'] .
511                                 '">' . $s_page . '</a>';
512                 } else {
513                         $mtime_span = get_passage_mtime_html_span($lastmod + LOCALZONE);
514                         $_links[] = '<a href="' . $page_uri . '">' .
515                         $s_page . '</a>' . $mtime_span;
516                 }
517         }
518         if (empty($_links)) return ''; // Nothing
519
520         if ($tag == 'p') { // From the line-head
521                 $style  = sprintf(pkwk_list_attrs_template(), 1, 1);
522                 $retval =  "\n" . '<ul' . $style . '>' . "\n" .
523                         '<li>' . join($rule_related_str, $_links) . '</li>' . "\n" .
524                         '</ul>' . "\n";
525         } else if ($tag) {
526                 $retval = join($rule_related_str, $_links);
527         } else {
528                 $retval = join($related_str, $_links);
529         }
530
531         return $retval;
532 }
533
534 function _convert_line_rule_to_regex($a)
535 {
536         return '/' . $a . '/';
537 }
538
539 // User-defined rules (convert without replacing source)
540 function make_line_rules($str)
541 {
542         global $line_rules;
543         static $pattern, $replace;
544
545         if (! isset($pattern)) {
546                 $pattern = array_map('_convert_line_rule_to_regex', array_keys($line_rules));
547                 $replace = array_values($line_rules);
548                 unset($line_rules);
549         }
550
551         return preg_replace($pattern, $replace, $str);
552 }
553
554 // Remove all HTML tags(or just anchor tags), and WikiName-speific decorations
555 function strip_htmltag($str, $all = TRUE)
556 {
557         global $_symbol_noexists;
558         static $noexists_pattern;
559
560         if (! isset($noexists_pattern))
561                 $noexists_pattern = '#<span class="noexists">([^<]*)<a[^>]+>' .
562                         preg_quote($_symbol_noexists, '#') . '</a></span>#';
563
564         // Strip Dagnling-Link decoration (Tags and "$_symbol_noexists")
565         $str = preg_replace($noexists_pattern, '$1', $str);
566
567         if ($all) {
568                 // All other HTML tags
569                 return preg_replace('#<[^>]+>#',        '', $str);
570         } else {
571                 // All other anchor-tags only
572                 return preg_replace('#<a[^>]+>|</a>#i', '', $str);
573         }
574 }
575
576 // Remove AutoLink marker with AutLink itself
577 function strip_autolink($str)
578 {
579         return preg_replace('#<!--autolink--><a [^>]+>|</a><!--/autolink-->#', '', $str);
580 }
581
582 // Make a backlink. searching-link of the page name, by the page name, for the page name
583 function make_search($page)
584 {
585         $s_page = htmlsc($page);
586         $r_page = rawurlencode($page);
587         return '<a href="' . get_base_uri() . '?plugin=related&amp;page=' . $r_page .
588                 '">' . $s_page . '</a> ';
589 }
590
591 // Make heading string (remove heading-related decorations from Wiki text)
592 function make_heading(& $str, $strip = TRUE)
593 {
594         global $NotePattern;
595
596         // Cut fixed-heading anchors
597         $id = '';
598         $matches = array();
599         if (preg_match('/^(\*{0,3})(.*?)\[#([A-Za-z][\w-]+)\](.*?)$/m', $str, $matches)) {
600                 $str = $matches[2] . $matches[4];
601                 $id  = & $matches[3];
602         } else {
603                 $str = preg_replace('/^\*{0,3}/', '', $str);
604         }
605
606         // Cut footnotes and tags
607         if ($strip === TRUE)
608                 $str = strip_htmltag(make_link(preg_replace($NotePattern, '', $str)));
609
610         return $id;
611 }
612
613 // Separate a page-name(or URL or null string) and an anchor
614 // (last one standing) without sharp
615 function anchor_explode($page, $strict_editable = FALSE)
616 {
617         $pos = strrpos($page, '#');
618         if ($pos === FALSE) return array($page, '', FALSE);
619
620         // Ignore the last sharp letter
621         if ($pos + 1 == strlen($page)) {
622                 $pos = strpos(substr($page, $pos + 1), '#');
623                 if ($pos === FALSE) return array($page, '', FALSE);
624         }
625
626         $s_page = substr($page, 0, $pos);
627         $anchor = substr($page, $pos + 1);
628
629         if($strict_editable === TRUE &&  preg_match('/^[a-z][a-f0-9]{7}$/', $anchor)) {
630                 return array ($s_page, $anchor, TRUE); // Seems fixed-anchor
631         } else {
632                 return array ($s_page, $anchor, FALSE);
633         }
634 }
635
636 // Check HTTP header()s were sent already, or
637 // there're blank lines or something out of php blocks
638 function pkwk_headers_sent()
639 {
640         if (PKWK_OPTIMISE) return;
641
642         $file = $line = '';
643         if (version_compare(PHP_VERSION, '4.3.0', '>=')) {
644                 if (headers_sent($file, $line))
645                     die('Headers already sent at ' .
646                         htmlsc($file) .
647                         ' line ' . $line . '.');
648         } else {
649                 if (headers_sent())
650                         die('Headers already sent.');
651         }
652 }
653
654 // Output common HTTP headers
655 function pkwk_common_headers()
656 {
657         global $http_response_custom_headers;
658         if (! PKWK_OPTIMISE) pkwk_headers_sent();
659         foreach ($http_response_custom_headers as $header) {
660                 header($header);
661         }
662         if(defined('PKWK_ZLIB_LOADABLE_MODULE')) {
663                 $matches = array();
664                 if(ini_get('zlib.output_compression') &&
665                     preg_match('/\b(gzip|deflate)\b/i', $_SERVER['HTTP_ACCEPT_ENCODING'], $matches)) {
666                         // Bug #29350 output_compression compresses everything _without header_ as loadable module
667                         // http://bugs.php.net/bug.php?id=29350
668                         header('Content-Encoding: ' . $matches[1]);
669                         header('Vary: Accept-Encoding');
670                 }
671         }
672 }
673
674 // DTD definitions
675 define('PKWK_DTD_XHTML_1_1',              17); // Strict only
676 define('PKWK_DTD_XHTML_1_0',              16); // Strict
677 define('PKWK_DTD_XHTML_1_0_STRICT',       16);
678 define('PKWK_DTD_XHTML_1_0_TRANSITIONAL', 15);
679 define('PKWK_DTD_XHTML_1_0_FRAMESET',     14);
680 define('PKWK_DTD_HTML_4_01',               3); // Strict
681 define('PKWK_DTD_HTML_4_01_STRICT',        3);
682 define('PKWK_DTD_HTML_4_01_TRANSITIONAL',  2);
683 define('PKWK_DTD_HTML_4_01_FRAMESET',      1);
684
685 define('PKWK_DTD_TYPE_XHTML',  1);
686 define('PKWK_DTD_TYPE_HTML',   0);
687
688 // Output HTML DTD, <html> start tag. Return content-type.
689 function pkwk_output_dtd($pkwk_dtd = PKWK_DTD_XHTML_1_1, $charset = CONTENT_CHARSET)
690 {
691         static $called;
692         if (isset($called)) die('pkwk_output_dtd() already called. Why?');
693         $called = TRUE;
694
695         $type = PKWK_DTD_TYPE_XHTML;
696         $option = '';
697         switch($pkwk_dtd){
698         case PKWK_DTD_XHTML_1_1             :
699                 $version = '1.1' ;
700                 $dtd     = 'http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd';
701                 break;
702         case PKWK_DTD_XHTML_1_0_STRICT      :
703                 $version = '1.0' ;
704                 $option  = 'Strict';
705                 $dtd     = 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd';
706                 break;
707         case PKWK_DTD_XHTML_1_0_TRANSITIONAL:
708                 $version = '1.0' ;
709                 $option  = 'Transitional';
710                 $dtd     = 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd';
711                 break;
712
713         case PKWK_DTD_HTML_4_01_STRICT      :
714                 $type    = PKWK_DTD_TYPE_HTML;
715                 $version = '4.01';
716                 $dtd     = 'http://www.w3.org/TR/html4/strict.dtd';
717                 break;
718         case PKWK_DTD_HTML_4_01_TRANSITIONAL:
719                 $type    = PKWK_DTD_TYPE_HTML;
720                 $version = '4.01';
721                 $option  = 'Transitional';
722                 $dtd     = 'http://www.w3.org/TR/html4/loose.dtd';
723                 break;
724
725         default: die('DTD not specified or invalid DTD');
726                 break;
727         }
728
729         $charset = htmlsc($charset);
730
731         // Output XML or not
732         if ($type == PKWK_DTD_TYPE_XHTML) echo '<?xml version="1.0" encoding="' . $charset . '" ?>' . "\n";
733
734         // Output doctype
735         echo '<!DOCTYPE html PUBLIC "-//W3C//DTD ' .
736                 ($type == PKWK_DTD_TYPE_XHTML ? 'XHTML' : 'HTML') . ' ' .
737                 $version .
738                 ($option != '' ? ' ' . $option : '') .
739                 '//EN" "' .
740                 $dtd .
741                 '">' . "\n";
742
743         // Output <html> start tag
744         echo '<html';
745         if ($type == PKWK_DTD_TYPE_XHTML) {
746                 echo ' xmlns="http://www.w3.org/1999/xhtml"'; // dir="ltr" /* LeftToRight */
747                 echo ' xml:lang="' . LANG . '"';
748                 if ($version == '1.0') echo ' lang="' . LANG . '"'; // Only XHTML 1.0
749         } else {
750                 echo ' lang="' . LANG . '"'; // HTML
751         }
752         echo '>' . "\n"; // <html>
753
754         // Return content-type (with MIME type)
755         if ($type == PKWK_DTD_TYPE_XHTML) {
756                 // NOTE: XHTML 1.1 browser will ignore http-equiv
757                 return '<meta http-equiv="content-type" content="application/xhtml+xml; charset=' . $charset . '" />' . "\n";
758         } else {
759                 return '<meta http-equiv="content-type" content="text/html; charset=' . $charset . '" />' . "\n";
760         }
761 }
762
763 /**
764  * Get template of List (ul, ol, dl) attributes
765  */
766 function pkwk_list_attrs_template() {
767         return ' class="list%d list-indent%d"';
768 }