From 82fc8821a315e9b5a535d58b1988c637f181a886 Mon Sep 17 00:00:00 2001 From: Romain d'Alverny Date: Sat, 30 Mar 2013 16:50:02 +0000 Subject: makes navigation local, depends on nav vhost; easier for local dev --- css/index.php | 2 +- html/conf.php | 14 ++++++++++++++ html/index.php | 3 ++- js/index.php | 2 +- 4 files changed, 18 insertions(+), 3 deletions(-) create mode 100644 html/conf.php diff --git a/css/index.php b/css/index.php index 493b1c8..36cbc34 100644 --- a/css/index.php +++ b/css/index.php @@ -19,4 +19,4 @@ header('Content-Type: text/css;charset=utf-8'); header(sprintf('Expires: %s', gmdate('r', strtotime('+1 day')))); -readfile('source.css'); +echo str_replace('nav.mageia.org', $_SERVER['HTTP_HOST'], file_get_contents('source.css')); diff --git a/html/conf.php b/html/conf.php new file mode 100644 index 0000000..34a0f88 --- /dev/null +++ b/html/conf.php @@ -0,0 +1,14 @@ +? */ $wrap = isset($_GET['w']) ? true : false; +require 'conf.php'; include '../lib.php'; header('Access-Control-Allow-Origin: *'); @@ -48,6 +49,6 @@ 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.mageia.org', NCache::build('var/tmp/cache')); +echo _mgnav_html($wrap, $lang, null, $www_host, NCache::build('var/tmp/cache')); apache_note('navMakeTime', number_format(microtime() - $t0, 6)); \ No newline at end of file diff --git a/js/index.php b/js/index.php index 9373b09..a9a07a3 100644 --- a/js/index.php +++ b/js/index.php @@ -21,4 +21,4 @@ //header('Access-Control-Allow-Methods: GET'); header('Content-Type: text/javascript;charset=utf-8'); header(sprintf('Expires: %s', gmdate('r', strtotime('+2 day')))); -readfile('source.js'); \ No newline at end of file +echo str_replace('nav.mageia.org', $_SERVER['HTTP_HOST'], file_get_contents('source.js')); -- cgit v1.2.1