From 4b787cf324bdc6d2e623a92289d38d9a3eb8e7c0 Mon Sep 17 00:00:00 2001 From: Olav Morken <olav.morken@uninett.no> Date: Thu, 3 Sep 2009 10:37:53 +0000 Subject: [PATCH] saml: Add html-view of metadata. git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1744 44740490-163a-0410-bde0-09ae8108e29a --- modules/saml/www/sp/metadata.php | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/modules/saml/www/sp/metadata.php b/modules/saml/www/sp/metadata.php index 8bbef0135..72a7eb551 100644 --- a/modules/saml/www/sp/metadata.php +++ b/modules/saml/www/sp/metadata.php @@ -56,6 +56,26 @@ $metaBuilder->addContact('technical', array( $xml = $metaBuilder->getEntityDescriptorText(); -echo($xml); +if (array_key_exists('output', $_REQUEST) && $_REQUEST['output'] == 'xhtml') { + + $t = new SimpleSAML_XHTML_Template($config, 'metadata.php', 'admin'); + + $t->data['header'] = 'saml20-sp'; + $t->data['metadata'] = htmlspecialchars($xml); + $t->data['metadataflat'] = NULL; + $t->data['metaurl'] = $source->getMetadataURL(); + + $t->data['idpsend'] = array(); + $t->data['sentok'] = FALSE; + $t->data['adminok'] = FALSE; + $t->data['adminlogin'] = NULL; + + $t->data['techemail'] = $config->getString('technicalcontact_email', NULL); + + $t->show(); +} else { + header('Content-Type: application/samlmetadata+xml'); + echo($xml); +} ?> -- GitLab