OSDN Git Service

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