From 773ce8d975a6fbf2c7b5562f045d6785f00d0e0a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andreas=20=C3=85kre=20Solberg?= <andreas.solberg@uninett.no>
Date: Mon, 28 Apr 2008 07:42:32 +0000
Subject: [PATCH] Added more hostname diagnostics

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@519 44740490-163a-0410-bde0-09ae8108e29a
---
 www/example-simple/hostnames.php | 15 +++++++++++----
 www/index.php                    |  2 +-
 2 files changed, 12 insertions(+), 5 deletions(-)

diff --git a/www/example-simple/hostnames.php b/www/example-simple/hostnames.php
index 9a06cb8c8..8df549f76 100644
--- a/www/example-simple/hostnames.php
+++ b/www/example-simple/hostnames.php
@@ -28,16 +28,23 @@ if (!isset($session) || !$session->isValid('login-admin') ) {
 
 $attributes = array();
 
-$attributes['selfURLhost'] = array(SimpleSAML_Utilities::selfURLhost());
-$attributes['selfURLNoQuery'] = array(SimpleSAML_Utilities::selfURLNoQuery());
-$attributes['selfURL'] = array(SimpleSAML_Utilities::selfURL());
-$attributes['selfHostWithPath'] = array(SimpleSAML_Utilities::getSelfHostWithPath());
 
 $attributes['HTTP_HOST'] = array($_SERVER['HTTP_HOST']);
 $attributes['HTTPS'] = array($_SERVER['HTTPS']);
 $attributes['SERVER_PROTOCOL'] = array($_SERVER['SERVER_PROTOCOL']);
 $attributes['SERVER_PORT'] = array($_SERVER['SERVER_PORT']);
 
+$attributes['Utilities_getSelfHost()'] = array(SimpleSAML_Utilities::getSelfHost());
+$attributes['Utilities_getSelfProtocol()'] = array(SimpleSAML_Utilities::getSelfProtocol());
+$attributes['Utilities_selfURLhost()'] = array(SimpleSAML_Utilities::selfURLhost());
+$attributes['Utilities_selfURLNoQuery()'] = array(SimpleSAML_Utilities::selfURLNoQuery());
+$attributes['Utilities_getScriptName()'] = array(SimpleSAML_Utilities::getScriptName());
+$attributes['Utilities_getSelfHostWithPath()'] = array(SimpleSAML_Utilities::getSelfHostWithPath());
+$attributes['Utilities_getFirstPathElement()'] = array(SimpleSAML_Utilities::getFirstPathElement());
+$attributes['Utilities_selfURL()'] = array(SimpleSAML_Utilities::selfURL());
+$attributes['Utilities_getRequestURI()'] = array(SimpleSAML_Utilities::getRequestURI());
+
+
 
 
 
diff --git a/www/index.php b/www/index.php
index a3d5b8f95..1da305b07 100644
--- a/www/index.php
+++ b/www/index.php
@@ -47,7 +47,7 @@ if ($config->getValue('enable.openid-provider') === true)
 		'text' => 'link_openidprovider');
 
 $links[] = array(
-	'href' => 'example-simple/hostnames.php', 
+	'href' => 'example-simple/hostnames.php?dummy=1', 
 	'text' => 'link_diagnostics');
 
 $links[] = array(
-- 
GitLab