summaryrefslogtreecommitdiffstats
path: root/admportal/views/logs/accesslog.ejs.0223
diff options
context:
space:
mode:
Diffstat (limited to 'admportal/views/logs/accesslog.ejs.0223')
-rw-r--r--admportal/views/logs/accesslog.ejs.0223121
1 files changed, 0 insertions, 121 deletions
diff --git a/admportal/views/logs/accesslog.ejs.0223 b/admportal/views/logs/accesslog.ejs.0223
deleted file mode 100644
index 77ece8f9..00000000
--- a/admportal/views/logs/accesslog.ejs.0223
+++ /dev/null
@@ -1,121 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="UTF-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <% include ../partials/head %>
- <% include ../partials/header %>
- <script type="text/javascript" src="/javascripts/admportal.js" async></script>
- <title>SDN-C AdminPortal</title>
-<script class="init">
- $(document).ready(function() {
- $('#access').DataTable( {
- "order": [[ 0, "asc" ]]
- } );
-} );
-</script>
-
-</head>
-<body>
-
-<div class="well well-sm">
-<h3>HTTP Server Access Log</h3>
-</div>
-
-<% if ( typeof result != 'undefined' ) {
- if (result.code.length > 0) {
- if ( result.code == 'success' ) { %>
- <div class='alert alert-success' role='alert'>
- <%
- for ( x in result.msg ){ %>
- <div><%= result.msg[x] %></div>
- <% } %>
- </div>
- <% } else { %>
- <div class='alert alert-danger' role='danger'>
- <%
- for ( x in result.msg ){ %>
- <div><%= result.msg[x] %></div>
- <% } %>
- </div>
- <% } %>
- <% } %>
-<% } %>
-
-<% if( typeof privilege != 'undefined'){
- var priv = privilege.privilege;
-} else {
- var priv = 'A';
-} %>
-
-
-<div class="container-fluid">
- <table id="access" class="table table-hover table-condensed">
- <thead>
- <tr>
- <th>Date (UTC)</th>
- <th>Method</th>
- <th>Version</th>
- <th>Status</th>
- <th>URL</th>
- </tr>
- </thead>
- <tbody>
- <% for(var x=0; x<pageInfo.rows.length; x++) { %>
- <tr>
- <td><%= pageInfo.rows[x].date %></td>
- <td><%= pageInfo.rows[x].method %></td>
- <td><%= pageInfo.rows[x].version %></td>
- <td><%= pageInfo.rows[x].status %></td>
- <td><%= pageInfo.rows[x].url %></td>
- </tr>
- <% } %>
- </tbody>
- </table>
-</div>
-
- <div class="container-fluid">
- <div class="row">
- <div class="col-md-1 text-left">
- <p>&nbsp;&nbsp;Page <%= pageInfo.currentPage %> of <%= pageInfo.pageCount %></p>
- </div>
- <div class="col-md-11 text-left">
- <% if (pageInfo.pageCount > 1) { %>
- <ul class="pagination">
- <% if (pageInfo.currentPage > 1) { %>
- <li><a href="/logs/pageAccessLog?page=1">&laquo;</a></li>
- <% } %>
- <% var i = 1;
- if (pageInfo.currentPage > 10) {
- i = +pageInfo.currentPage - 9;
- } %>
- <% if (i !== 1) { %>
- <!--<li class="disabled"><a href="#">...</a></li>-->
- <% } %>
- <% for (i; i<=pageInfo.pageCount; i++) { %>
- <% if (pageInfo.currentPage == i) { %>
- <li class="active"><span><%= i %> <span class="sr-only">(current)</span></span></li>
- <% } else { %>
- <li><a href="/logs/pageAccessLog?page=<%= i %>"><%= i %></a></li>
- <% } %>
- <% if (i == (+pageInfo.currentPage + 9)) { %>
- <!--<li class="disabled"><a href="#">...</a></li>-->
- <% break; } %>
- <% } %>
- <% if (pageInfo.currentPage != pageInfo.pageCount) { %>
- <li><a href="/logs/pageAccessLog?page=<%= pageInfo.pageCount %>">&raquo;</a></li>
- <% } %>
- </ul>
- <% } %>
- </div><!-- col-md-10 -->
- </div><!-- row -->
- </div><!-- container-fluid -->
-
-
-<footer>
- <% include ../partials/footer %>
-</footer>
-
-</body>
-</html>
-