Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
inc-md-js/info/all-orgs-inspector.html
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
76 lines (60 sloc)
3.36 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>InCommon Federation Info: Organization Metadata Inspector</title> | |
<!-- jQuery and jQuery UI --> | |
<link type="text/css" href="../js/jquery/jquery-ui-1.9.2.custom/css/custom-theme/jquery-ui-1.9.2.custom.css" rel="stylesheet" /> | |
<script type="text/javascript" src="../js/jquery/jquery-ui-1.9.2.custom/js/jquery-1.8.3.js"></script> | |
<script type="text/javascript" src="../js/jquery/jquery-ui-1.9.2.custom/js/jquery-ui-1.9.2.custom.min.js"></script> | |
<link type="text/css" href="../css/info-template.css?deployDate=2015-06-02T12:00:00Z" rel="stylesheet" /> | |
<link type="text/css" href="./css/all-orgs.css?deployDate=2014-12-14T14:00:00Z" rel="stylesheet" /> | |
<script type="text/javascript" src="../js/jquery/plugins/jquery.tablesorter.min.js?deployDate=2014-12-14T14:00:00Z"></script> | |
<script type="text/javascript" src="../js/jquery/plugins/jquery.json-metadata.js?deployDate=2015-06-02T12:00:00Z"></script> | |
<script type="text/javascript" src="../js/jquery/plugins/jquery.error-handler.js?deployDate=2014-12-14T14:00:00Z"></script> | |
<script type="text/javascript" src="../js/library/http-utils.js?deployDate=2014-12-14T14:00:00Z"></script> | |
<script type="text/javascript" src="../js/library/SAMLEntity.js?deployDate=2014-12-14T14:00:00Z"></script> | |
<script type="text/javascript" src="./js/all-orgs-inspector-dom.js?deployDate=2014-12-14T14:00:00Z"></script> | |
<script type="text/javascript" src="./js/all-orgs-inspector.js?deployDate=2014-12-14T14:00:00Z"></script> | |
</head> | |
<body> | |
<nav> | |
<div id="primary-nav-bar"><!-- future enhancement --></div> | |
</nav> | |
<div id="incommon-header"> | |
<img width="800" height="85" src="../images/beta_header_federation.jpg" alt="InCommon LLC" /> | |
</div> | |
<nav> | |
<div id="secondary-nav-bar"><span id="secondary-nav-bar-prompt">Federation Info:</span> <span class="nav-component"><a href="./about.html">About</a></span> <span class="nav-component"><a href="./all-orgs.html">Organizations</a></span> <span class="nav-component"><a href="./all-entities.html">Entities</a></span></div> | |
</nav> | |
<div id="loading"><img src="../images/ajax-loader.gif" alt="Loading" /></div> | |
<noscript> | |
<p>JavaScript must be enabled in order for you to use this web application, but it seems JavaScript is either disabled or not supported by your browser. To use this web application, enable JavaScript by changing your browser settings, then <a href="">reload this page</a>.</p> | |
</noscript> | |
<div id="page-content"> | |
<div class="body"> | |
<h1>Federation Info: Org Metadata Inspector</h1> | |
<table id="list-of-orgs" class="tablesorter"> | |
<thead> | |
<tr> | |
<th>OrganizationName</th> | |
<th>OrganizationDisplayName</th> | |
<th>OrganizationURL</th> | |
</tr> | |
</thead> | |
<tbody> | |
</tbody> | |
</table><!-- end list-of-orgs --> | |
</div><!-- end body --> | |
<div class="footer"> | |
<div class="footer-right"> | |
<div>Questions? Visit our <a href="https://spaces.internet2.edu/x/5IOVAQ">FAQ</a> or contact <info@incommon.org></div> | |
</div> | |
<div class="footer-left"> | |
<div><em>InCommon LLC</em></div> | |
<div><a href="http://incommon.org/">http://incommon.org/</a></div> | |
</div> | |
</div><!-- end footer --> | |
</div><!-- end page-content --> | |
</body> | |
</html> |