aboutsummaryrefslogtreecommitdiffstats
path: root/html
diff options
context:
space:
mode:
authorRomain d'Alverny <rda@mageia.org>2013-03-30 16:50:02 +0000
committerRomain d'Alverny <rda@mageia.org>2013-03-30 16:50:02 +0000
commit82fc8821a315e9b5a535d58b1988c637f181a886 (patch)
treedcf3af4db2aef2c4a77dd609239f3fb8b9a03805 /html
parent1a7ef0b9afe2e21df458fc3b7660057e8369805d (diff)
downloadnav-82fc8821a315e9b5a535d58b1988c637f181a886.tar
nav-82fc8821a315e9b5a535d58b1988c637f181a886.tar.gz
nav-82fc8821a315e9b5a535d58b1988c637f181a886.tar.bz2
nav-82fc8821a315e9b5a535d58b1988c637f181a886.tar.xz
nav-82fc8821a315e9b5a535d58b1988c637f181a886.zip
makes navigation local, depends on nav vhost; easier for local dev
Diffstat (limited to 'html')
-rw-r--r--html/conf.php14
-rw-r--r--html/index.php3
2 files changed, 16 insertions, 1 deletions
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 @@
+<?php
+/**
+*/
+
+$nav_host = $_SERVER['HTTP_HOST'];
+$www_host = 'www.mageia.org';
+
+$mode = isset($_SERVER['APP_MODE']) ? $_SERVER['APP_MODE'] : null;
+
+switch ($mode) {
+case 'dev':
+case 'dev-rda': $www_host = 'mageia:8888'; break;
+// add your own case if needed.
+}
diff --git a/html/index.php b/html/index.php
index e93080e..843f9b3 100644
--- a/html/index.php
+++ b/html/index.php
@@ -41,6 +41,7 @@ $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: *');
@@ -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