Skip to content

Commit

Permalink
ER:Add nav pills into the testing tools at the root of the installati…
Browse files Browse the repository at this point in the history
…on. Self host d3.js library.
  • Loading branch information
bbalet committed Sep 25, 2015
1 parent 2772444 commit a9a224d
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 11 deletions.
5 changes: 5 additions & 0 deletions assets/js/d3.min.js

Large diffs are not rendered by default.

15 changes: 12 additions & 3 deletions opcache.php
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,11 @@
cursor: pointer;
}
</style>
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.0.1/d3.v3.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<link rel="icon" type="image/x-icon" href="favicon.ico" sizes="32x32">
<link href="assets/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<script type="text/javascript" src="assets/js/jquery-1.11.0.min.js"></script>
<script src="assets/js/d3.min.js"></script>

<script>
var hidden = {};
function toggleVisible(head, row) {
Expand All @@ -216,7 +219,13 @@ function toggleVisible(head, row) {

<body>
<div id="container">

<ul class="nav nav-pills">
<li><a href="requirements.php">Requirements</a></li>
<li><a href="testmail.php">Email</a></li>
<li><a href="testldap.php">LDAP</a></li>
<li><a href="testssl.php">SSL</a></li>
<li class="active"><a href="#">Opcache</a></li>
</ul>

<?php
if (constant("OPCACHE_TESTER") == FALSE) {
Expand Down
9 changes: 7 additions & 2 deletions requirements.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,14 @@ function export2csv() {
</script>
</head>
<body>

<div class="container-fluid">

<ul class="nav nav-pills">
<li class="active"><a href="#">Requirements</a></li>
<li><a href="testmail.php">Email</a></li>
<li><a href="testldap.php">LDAP</a></li>
<li><a href="testssl.php">SSL</a></li>
<li><a href="opcache.php">Opcache</a></li>
</ul>
<h1>Jorani Requirements</h1>

<noscript>
Expand Down
9 changes: 7 additions & 2 deletions testldap.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,14 @@
<script type="text/javascript" src="assets/js/jquery-1.11.0.min.js"></script>
</head>
<body>

<div class="container-fluid">

<ul class="nav nav-pills">
<li><a href="requirements.php">Requirements</a></li>
<li><a href="testmail.php">Email</a></li>
<li class="active"><a href="#">LDAP</a></li>
<li><a href="testssl.php">SSL</a></li>
<li><a href="opcache.php">Opcache</a></li>
</ul>
<h1>Test of your LDAP configuration</h1>

<?php
Expand Down
9 changes: 7 additions & 2 deletions testmail.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,14 @@
<script type="text/javascript" src="assets/js/jquery-1.11.0.min.js"></script>
</head>
<body>

<div class="container-fluid">

<ul class="nav nav-pills">
<li><a href="requirements.php">Requirements</a></li>
<li class="active"><a href="#">Email</a></li>
<li><a href="testldap.php">LDAP</a></li>
<li><a href="testssl.php">SSL</a></li>
<li><a href="opcache.php">Opcache</a></li>
</ul>
<h1>Test of your e-mail configuration</h1>

<?php
Expand Down
9 changes: 7 additions & 2 deletions testssl.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,14 @@
<script type="text/javascript" src="assets/js/jquery-1.11.0.min.js"></script>
</head>
<body>

<div class="container-fluid">

<ul class="nav nav-pills">
<li><a href="requirements.php">Requirements</a></li>
<li><a href="testmail.php">Email</a></li>
<li><a href="testldap.php">LDAP</a></li>
<li class="active"><a href="#">SSL</a></li>
<li><a href="opcache.php">Opcache</a></li>
</ul>
<h1>Test of your OpenSSL setup</h1>

<p>This page will help you to check your OpenSSL setup and to generate a <a href="#pair">private and public key pair</a>.</p>
Expand Down

0 comments on commit a9a224d

Please sign in to comment.