]> git.p6c8.net - jirafeau.git/blob - lib/template/header.php
add strict XHTML 1.0 as doctype
[jirafeau.git] / lib / template / header.php
1 <?php
2 header('Vary: Accept');
3
4 $content_type = 'text/html; charset=utf-8';
5
6 if (stristr ($_SERVER['HTTP_ACCEPT'], 'application/xhtml+xml'))
7 $content_type = 'application/xhtml+xml; charset=utf-8';
8
9 header('Content-Type: ' . $content_type);
10
11 $protocol = (bool)is_ssl() ? 'https' : 'http';
12
13 if ( !empty($cfg['web_root']) ) {
14 $cfg['web_root'] = preg_replace('#https?://#', $protocol . '://', $cfg['web_root'], 1);
15 }
16
17 /* Avoids irritating errors with the installer (no conf file is present then). */
18 if (!isset ($cfg['web_root']))
19 $web_root = $protocol+'://' . $_SERVER['HTTP_HOST'] . '/';
20 else
21 $web_root = $cfg['web_root'];
22
23 if (!isset ($cfg['style']))
24 $style = 'default';
25 else
26 $style = $cfg['style'];
27
28 if (stristr ($_SERVER['HTTP_ACCEPT'], 'application/xhtml+xml'))
29 {
30 ?>
31 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
32 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
33 <?php
34 }
35 else
36 {
37 ?>
38 <!DOCTYPE html>
39 <html>
40 <?php
41 }
42 ?>
43 <head>
44 <title><?php echo t('Jirafeau, your web file repository'); ?></title>
45 <meta http-equiv="Content-Type" content="<?php echo $content_type; ?>" />
46 <link href="<?php echo $web_root . 'media/' . $style . '/style.css.php'; ?>" rel="stylesheet" type="text/css" />
47 </head>
48 <body>
49 <script type="text/javascript" language="Javascript" src="lib/functions_v7.js"></script>
50 <div id="content">
51 <h1><a href="<?php echo $web_root; ?>"><?php echo t('Jirafeau, your web file repository'); ?></a></h1>

patrick-canterino.de