blob: 0450a94c3e74f675338370ce2cd6b37f5c02ab6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
<?php
/**
* mageia.org global nav bar.
*
* PHP version 5.4
*
* @category Mageia
* @package Mageia\Web\nav
* @author rda <rda@mageia.org>
* @link http://nav.mageia.org/
*
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU GPL v2+
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License aspublished by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*/
$t0 = microtime();
/** Below variables are defined after the document variables. */
/** URL of the document calling the service. */
$url = isset($_GET['u']) ? trim($_GET['u']) : null;
/** html[lang] of the doc. */
$lang = isset($_GET['l']) ? trim($_GET['l']) : null;
if ($lang == 'undefined' ||
$lang == '') {
$lang = 'en';
}
/** body[class] of the doc. */
$body = isset($_GET['b']) ? trim($_GET['b']) : null;
/** meta[name=context] */
$context = isset($_GET['c']) ? trim($_GET['c']) : null;
/** wrap the returned HTML in <header id="hmgn" />? */
$wrap = isset($_GET['w']) ? true : false;
require 'conf.php';
include '../lib.php';
header('Access-Control-Allow-Origin: *');
header('Access-Control-Allow-Methods: GET');
header('Content-Type: text/html;charset=utf-8');
header(sprintf('Expires: %s', gmdate('r', strtotime('+1 day'))));
echo _mgnav_html($wrap, $lang, null, $www_host, NCache::build($cache_path));
apache_note('navMakeTime', number_format(microtime() - $t0, 6));
|