OSDN Git Service

BugTrack/2266 Open FormattingRules on new Window from edit page
[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 $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         // Embed Scripting data
190         $html_scripting_data = get_html_scripting_data();
191
192         // Compat: 'HTML convert time' without time about MenuBar and skin
193         $taketime = elapsedtime();
194
195         require(SKIN_FILE);
196 }
197
198 /**
199  * Get data used by JavaScript modules
200  */
201 function get_html_scripting_data()
202 {
203         global $ticket_link_sites;
204         if (!isset($ticket_link_sites) || !is_array($ticket_link_sites)) {
205                 return '';
206         }
207         // Require: PHP 5.4+
208         if (!defined('JSON_UNESCAPED_UNICODE')) {
209                 return '';
210         };
211         $text = '';
212         foreach ($ticket_link_sites as $s) {
213                 if (!preg_match('/^([a-zA-Z0-9]+)([\.\-][a-zA-Z0-9]+)*$/', $s['key'])) {
214                         continue;
215                 }
216                 $site_info_json = htmlsc(json_encode($s, JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES));
217                 $text .= <<<EOS
218   <span class="pukiwiki-ticketlink-site" data-site="$site_info_json"></span>
219 EOS;
220                 $text .= "\n";
221         }
222         $data = <<<EOS
223 <div class="pukiwiki-ticketlink-def" style="display:none;">
224 $text
225 </div>
226 EOS;
227         return $data;
228 }
229
230 // Show 'edit' form
231 function edit_form($page, $postdata, $digest = FALSE, $b_template = TRUE)
232 {
233         global $script, $vars, $rows, $cols, $hr, $function_freeze;
234         global $_btn_preview, $_btn_repreview, $_btn_update, $_btn_cancel, $_msg_help;
235         global $whatsnew, $_btn_template, $_btn_load, $load_template_func;
236         global $notimeupdate;
237         global $_title_list, $_label_template_pages;
238         global $rule_page;
239
240         // Newly generate $digest or not
241         if ($digest === FALSE) $digest = md5(join('', get_source($page)));
242
243         $refer = $template = '';
244  
245         // Add plugin
246         $addtag = $add_top = '';
247         if(isset($vars['add'])) {
248                 global $_btn_addtop;
249                 $addtag  = '<input type="hidden" name="add"    value="true" />';
250                 $add_top = isset($vars['add_top']) ? ' checked="checked"' : '';
251                 $add_top = '<input type="checkbox" name="add_top" ' .
252                         'id="_edit_form_add_top" value="true"' . $add_top . ' />' . "\n" .
253                         '  <label for="_edit_form_add_top">' .
254                                 '<span class="small">' . $_btn_addtop . '</span>' .
255                         '</label>';
256         }
257
258         if($load_template_func && $b_template) {
259                 $tpage_names = array(); // Pages marked as template
260                 $template_page = ':config/Templates';
261                 $page_max = 100;
262                 foreach(get_source($template_page) as $_templates) {
263                         $m = array();
264                         if (! preg_match('#\-\s*\[\[([^\[\]]+)\]\]#', $_templates, $m)) continue;
265                         $tpage = preg_replace('#^./#', "$template_page/", $m[1]);
266                         if (! is_page($tpage)) continue;
267                         $tpage_names[] = $tpage;
268                 }
269                 $page_names = array();
270                 foreach(get_existpages() as $_page) {
271                         if ($_page == $whatsnew || check_non_list($_page) ||
272                                 !is_page_readable($_page))
273                                 continue;
274                         if (preg_match('/template/i', $_page)) {
275                                 $tpage_names[] = $_page;
276                         } else {
277                                 if (count($page_names) >= $page_max) continue;
278                                 $page_names[] = $_page;
279                         }
280                 }
281                 $tpage_names2 = array_values(array_unique($tpage_names));
282                 natcasesort($tpage_names2);
283                 natcasesort($page_names);
284                 $tpages = array(); // Template pages
285                 $npages = array(); // Normal pages
286                 foreach($tpage_names2 as $p) {
287                         $ps = htmlsc($p);
288                         $tpages[] = '   <option value="' . $ps . '">' . $ps . '</option>';
289                 }
290                 foreach($page_names as $p) {
291                         $ps = htmlsc($p);
292                         $npages[] = '   <option value="' . $ps . '">' . $ps . '</option>';
293                 }
294                 if (count($page_names) === $page_max) {
295                         $npages[] = '   <option value="">...</option>';
296                 }
297                 $s_tpages  = join("\n", $tpages);
298                 $s_npages  = join("\n", $npages);
299                 $template = <<<EOD
300   <select name="template_page">
301    <option value="">-- $_btn_template --</option>
302    <optgroup label="$_label_template_pages">
303 $s_tpages
304    </optgroup>
305    <optgroup label="$_title_list">
306 $s_npages
307    </optgroup>
308   </select>
309   <input type="submit" name="template" value="$_btn_load" accesskey="r" />
310   <br />
311 EOD;
312
313                 if (isset($vars['refer']) && $vars['refer'] != '')
314                         $refer = '[[' . strip_bracket($vars['refer']) . ']]' . "\n\n";
315         }
316
317         $r_page      = rawurlencode($page);
318         $s_page      = htmlsc($page);
319         $s_digest    = htmlsc($digest);
320         $s_postdata  = htmlsc($refer . $postdata);
321         $s_original  = isset($vars['original']) ? htmlsc($vars['original']) : $s_postdata;
322         $b_preview   = isset($vars['preview']); // TRUE when preview
323         $btn_preview = $b_preview ? $_btn_repreview : $_btn_preview;
324
325         // Checkbox 'do not change timestamp'
326         $add_notimestamp = '';
327         if ($notimeupdate != 0) {
328                 global $_btn_notchangetimestamp;
329                 $checked_time = isset($vars['notimestamp']) ? ' checked="checked"' : '';
330                 // Only for administrator
331                 if ($notimeupdate == 2) {
332                         $add_notimestamp = '   ' .
333                                 '<input type="password" name="pass" size="12" />' . "\n";
334                 }
335                 $add_notimestamp = '<input type="checkbox" name="notimestamp" ' .
336                         'id="_edit_form_notimestamp" value="true"' . $checked_time . ' />' . "\n" .
337                         '   ' . '<label for="_edit_form_notimestamp"><span class="small">' .
338                         $_btn_notchangetimestamp . '</span></label>' . "\n" .
339                         $add_notimestamp .
340                         '&nbsp;';
341         }
342
343         // 'margin-bottom', 'float:left', and 'margin-top'
344         // are for layout of 'cancel button'
345         $body = <<<EOD
346 <div class="edit_form">
347  <form action="$script" method="post" style="margin-bottom:0px;">
348 $template
349   $addtag
350   <input type="hidden" name="cmd"    value="edit" />
351   <input type="hidden" name="page"   value="$s_page" />
352   <input type="hidden" name="digest" value="$s_digest" />
353   <textarea name="msg" rows="$rows" cols="$cols">$s_postdata</textarea>
354   <br />
355   <div style="float:left;">
356    <input type="submit" name="preview" value="$btn_preview" accesskey="p" />
357    <input type="submit" name="write"   value="$_btn_update" accesskey="s" />
358    $add_top
359    $add_notimestamp
360   </div>
361   <textarea name="original" rows="1" cols="1" style="display:none">$s_original</textarea>
362  </form>
363  <form action="$script" method="post" style="margin-top:0px;">
364   <input type="hidden" name="cmd"    value="edit" />
365   <input type="hidden" name="page"   value="$s_page" />
366   <input type="submit" name="cancel" value="$_btn_cancel" accesskey="c" />
367  </form>
368 </div>
369 EOD;
370
371         $body .= '<ul><li><a href="' .
372                 $script . '?' . pagename_urlencode($rule_page) .
373                 '" target="_blank">' . $_msg_help . '</a></li></ul>';
374         return $body;
375 }
376
377 // Related pages
378 function make_related($page, $tag = '')
379 {
380         global $script, $vars, $rule_related_str, $related_str;
381         global $_ul_left_margin, $_ul_margin, $_list_pad_str;
382
383         prepare_links_related($page);
384         $links = links_get_related($page);
385
386         if ($tag) {
387                 ksort($links, SORT_STRING);             // Page name, alphabetical order
388         } else {
389                 arsort($links, SORT_NUMERIC);   // Last modified date, newer
390         }
391
392         $_links = array();
393         foreach ($links as $page=>$lastmod) {
394                 if (check_non_list($page)) continue;
395
396                 $r_page   = pagename_urlencode($page);
397                 $s_page   = htmlsc($page);
398                 $passage  = get_passage($lastmod);
399                 $_links[] = $tag ?
400                         '<a href="' . $script . '?' . $r_page . '" title="' .
401                         $s_page . ' ' . $passage . '">' . $s_page . '</a>' :
402                         '<a href="' . $script . '?' . $r_page . '">' .
403                         $s_page . '</a>' . $passage;
404         }
405         if (empty($_links)) return ''; // Nothing
406
407         if ($tag == 'p') { // From the line-head
408                 $margin = $_ul_left_margin + $_ul_margin;
409                 $style  = sprintf($_list_pad_str, 1, $margin, $margin);
410                 $retval =  "\n" . '<ul' . $style . '>' . "\n" .
411                         '<li>' . join($rule_related_str, $_links) . '</li>' . "\n" .
412                         '</ul>' . "\n";
413         } else if ($tag) {
414                 $retval = join($rule_related_str, $_links);
415         } else {
416                 $retval = join($related_str, $_links);
417         }
418
419         return $retval;
420 }
421
422 // User-defined rules (convert without replacing source)
423 function make_line_rules($str)
424 {
425         global $line_rules;
426         static $pattern, $replace;
427
428         if (! isset($pattern)) {
429                 $pattern = array_map(create_function('$a',
430                         'return \'/\' . $a . \'/\';'), array_keys($line_rules));
431                 $replace = array_values($line_rules);
432                 unset($line_rules);
433         }
434
435         return preg_replace($pattern, $replace, $str);
436 }
437
438 // Remove all HTML tags(or just anchor tags), and WikiName-speific decorations
439 function strip_htmltag($str, $all = TRUE)
440 {
441         global $_symbol_noexists;
442         static $noexists_pattern;
443
444         if (! isset($noexists_pattern))
445                 $noexists_pattern = '#<span class="noexists">([^<]*)<a[^>]+>' .
446                         preg_quote($_symbol_noexists, '#') . '</a></span>#';
447
448         // Strip Dagnling-Link decoration (Tags and "$_symbol_noexists")
449         $str = preg_replace($noexists_pattern, '$1', $str);
450
451         if ($all) {
452                 // All other HTML tags
453                 return preg_replace('#<[^>]+>#',        '', $str);
454         } else {
455                 // All other anchor-tags only
456                 return preg_replace('#<a[^>]+>|</a>#i', '', $str);
457         }
458 }
459
460 // Remove AutoLink marker with AutLink itself
461 function strip_autolink($str)
462 {
463         return preg_replace('#<!--autolink--><a [^>]+>|</a><!--/autolink-->#', '', $str);
464 }
465
466 // Make a backlink. searching-link of the page name, by the page name, for the page name
467 function make_search($page)
468 {
469         global $script;
470
471         $s_page = htmlsc($page);
472         $r_page = rawurlencode($page);
473
474         return '<a href="' . $script . '?plugin=related&amp;page=' . $r_page .
475                 '">' . $s_page . '</a> ';
476 }
477
478 // Make heading string (remove heading-related decorations from Wiki text)
479 function make_heading(& $str, $strip = TRUE)
480 {
481         global $NotePattern;
482
483         // Cut fixed-heading anchors
484         $id = '';
485         $matches = array();
486         if (preg_match('/^(\*{0,3})(.*?)\[#([A-Za-z][\w-]+)\](.*?)$/m', $str, $matches)) {
487                 $str = $matches[2] . $matches[4];
488                 $id  = & $matches[3];
489         } else {
490                 $str = preg_replace('/^\*{0,3}/', '', $str);
491         }
492
493         // Cut footnotes and tags
494         if ($strip === TRUE)
495                 $str = strip_htmltag(make_link(preg_replace($NotePattern, '', $str)));
496
497         return $id;
498 }
499
500 // Separate a page-name(or URL or null string) and an anchor
501 // (last one standing) without sharp
502 function anchor_explode($page, $strict_editable = FALSE)
503 {
504         $pos = strrpos($page, '#');
505         if ($pos === FALSE) return array($page, '', FALSE);
506
507         // Ignore the last sharp letter
508         if ($pos + 1 == strlen($page)) {
509                 $pos = strpos(substr($page, $pos + 1), '#');
510                 if ($pos === FALSE) return array($page, '', FALSE);
511         }
512
513         $s_page = substr($page, 0, $pos);
514         $anchor = substr($page, $pos + 1);
515
516         if($strict_editable === TRUE &&  preg_match('/^[a-z][a-f0-9]{7}$/', $anchor)) {
517                 return array ($s_page, $anchor, TRUE); // Seems fixed-anchor
518         } else {
519                 return array ($s_page, $anchor, FALSE);
520         }
521 }
522
523 // Check HTTP header()s were sent already, or
524 // there're blank lines or something out of php blocks
525 function pkwk_headers_sent()
526 {
527         if (PKWK_OPTIMISE) return;
528
529         $file = $line = '';
530         if (version_compare(PHP_VERSION, '4.3.0', '>=')) {
531                 if (headers_sent($file, $line))
532                     die('Headers already sent at ' .
533                         htmlsc($file) .
534                         ' line ' . $line . '.');
535         } else {
536                 if (headers_sent())
537                         die('Headers already sent.');
538         }
539 }
540
541 // Output common HTTP headers
542 function pkwk_common_headers()
543 {
544         if (! PKWK_OPTIMISE) pkwk_headers_sent();
545
546         if(defined('PKWK_ZLIB_LOADABLE_MODULE')) {
547                 $matches = array();
548                 if(ini_get('zlib.output_compression') &&
549                     preg_match('/\b(gzip|deflate)\b/i', $_SERVER['HTTP_ACCEPT_ENCODING'], $matches)) {
550                         // Bug #29350 output_compression compresses everything _without header_ as loadable module
551                         // http://bugs.php.net/bug.php?id=29350
552                         header('Content-Encoding: ' . $matches[1]);
553                         header('Vary: Accept-Encoding');
554                 }
555         }
556 }
557
558 // DTD definitions
559 define('PKWK_DTD_XHTML_1_1',              17); // Strict only
560 define('PKWK_DTD_XHTML_1_0',              16); // Strict
561 define('PKWK_DTD_XHTML_1_0_STRICT',       16);
562 define('PKWK_DTD_XHTML_1_0_TRANSITIONAL', 15);
563 define('PKWK_DTD_XHTML_1_0_FRAMESET',     14);
564 define('PKWK_DTD_HTML_4_01',               3); // Strict
565 define('PKWK_DTD_HTML_4_01_STRICT',        3);
566 define('PKWK_DTD_HTML_4_01_TRANSITIONAL',  2);
567 define('PKWK_DTD_HTML_4_01_FRAMESET',      1);
568
569 define('PKWK_DTD_TYPE_XHTML',  1);
570 define('PKWK_DTD_TYPE_HTML',   0);
571
572 // Output HTML DTD, <html> start tag. Return content-type.
573 function pkwk_output_dtd($pkwk_dtd = PKWK_DTD_XHTML_1_1, $charset = CONTENT_CHARSET)
574 {
575         static $called;
576         if (isset($called)) die('pkwk_output_dtd() already called. Why?');
577         $called = TRUE;
578
579         $type = PKWK_DTD_TYPE_XHTML;
580         $option = '';
581         switch($pkwk_dtd){
582         case PKWK_DTD_XHTML_1_1             :
583                 $version = '1.1' ;
584                 $dtd     = 'http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd';
585                 break;
586         case PKWK_DTD_XHTML_1_0_STRICT      :
587                 $version = '1.0' ;
588                 $option  = 'Strict';
589                 $dtd     = 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd';
590                 break;
591         case PKWK_DTD_XHTML_1_0_TRANSITIONAL:
592                 $version = '1.0' ;
593                 $option  = 'Transitional';
594                 $dtd     = 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd';
595                 break;
596
597         case PKWK_DTD_HTML_4_01_STRICT      :
598                 $type    = PKWK_DTD_TYPE_HTML;
599                 $version = '4.01';
600                 $dtd     = 'http://www.w3.org/TR/html4/strict.dtd';
601                 break;
602         case PKWK_DTD_HTML_4_01_TRANSITIONAL:
603                 $type    = PKWK_DTD_TYPE_HTML;
604                 $version = '4.01';
605                 $option  = 'Transitional';
606                 $dtd     = 'http://www.w3.org/TR/html4/loose.dtd';
607                 break;
608
609         default: die('DTD not specified or invalid DTD');
610                 break;
611         }
612
613         $charset = htmlsc($charset);
614
615         // Output XML or not
616         if ($type == PKWK_DTD_TYPE_XHTML) echo '<?xml version="1.0" encoding="' . $charset . '" ?>' . "\n";
617
618         // Output doctype
619         echo '<!DOCTYPE html PUBLIC "-//W3C//DTD ' .
620                 ($type == PKWK_DTD_TYPE_XHTML ? 'XHTML' : 'HTML') . ' ' .
621                 $version .
622                 ($option != '' ? ' ' . $option : '') .
623                 '//EN" "' .
624                 $dtd .
625                 '">' . "\n";
626
627         // Output <html> start tag
628         echo '<html';
629         if ($type == PKWK_DTD_TYPE_XHTML) {
630                 echo ' xmlns="http://www.w3.org/1999/xhtml"'; // dir="ltr" /* LeftToRight */
631                 echo ' xml:lang="' . LANG . '"';
632                 if ($version == '1.0') echo ' lang="' . LANG . '"'; // Only XHTML 1.0
633         } else {
634                 echo ' lang="' . LANG . '"'; // HTML
635         }
636         echo '>' . "\n"; // <html>
637
638         // Return content-type (with MIME type)
639         if ($type == PKWK_DTD_TYPE_XHTML) {
640                 // NOTE: XHTML 1.1 browser will ignore http-equiv
641                 return '<meta http-equiv="content-type" content="application/xhtml+xml; charset=' . $charset . '" />' . "\n";
642         } else {
643                 return '<meta http-equiv="content-type" content="text/html; charset=' . $charset . '" />' . "\n";
644         }
645 }