OSDN Git Service

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