632dc080fd
The loleaflet/admin folder was created to separate the source files that it is related specifically to admin console stuff. It contains the build script, source files and now the appropriately debug files. *TODO: fix the relative paths. Change-Id: I0b26208e1ceff28ac5c7b2a9b2f1ff424d87e6a5 Reviewed-on: https://gerrit.libreoffice.org/81505 Reviewed-by: Henry Castro <hcastro@collabora.com> Tested-by: Henry Castro <hcastro@collabora.com>
129 lines
5 KiB
HTML
129 lines
5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
|
|
<title>LibreOffice Online - Admin console</title>
|
|
|
|
<!-- Bootstrap core CSS -->
|
|
<link href="../../dist/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
|
|
<link href="../../dist/bootstrap/assets/css/ie10-viewport-bug-workaround.css" rel="stylesheet">
|
|
|
|
<!-- Custom styles for this template -->
|
|
<link href="../../dist/bootstrap/dashboard.css" rel="stylesheet">
|
|
|
|
<link rel="stylesheet" href="../../dist/dialog/vex.css" />
|
|
<link rel="stylesheet" href="../../dist/dialog/vex-theme-plain.css" />
|
|
|
|
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
<!--[if lt IE 9]>
|
|
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
<![endif]-->
|
|
</head>
|
|
|
|
<body>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
|
|
<script>window.jQuery || document.write('<script src="../../dist/bootstrap/assets/js/vendor/jquery.min.js"><\/script>')</script>
|
|
<script src="../../dist/dialog/vex.combined.min.js"></script>
|
|
<script src="../../dist/admin/admin-src.js"></script>
|
|
<script>vex.defaultOptions.className = 'vex-theme-plain';</script>
|
|
<script>
|
|
|
|
var host = 'wss://' + window.location.host + '%SERVICE_ROOT%/lool/adminws/';
|
|
new AdminSocketOverview(host);
|
|
|
|
</script>
|
|
|
|
<nav class="navbar navbar-inverse navbar-fixed-top">
|
|
<div class="container-fluid">
|
|
<div class="navbar-header">
|
|
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
<span class="sr-only"></span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
</button>
|
|
<a class="navbar-brand" href="#">LibreOffice Online - Admin console</a>
|
|
</div>
|
|
<div id="navbar" class="navbar-collapse collapse">
|
|
<ul class="nav navbar-nav navbar-right">
|
|
<li><a href="admin.html">Dashboard</a></li>
|
|
<li><a href="adminSettings.html">Settings</a></li>
|
|
<li><a href="#">Help</a></li>
|
|
</ul>
|
|
<form class="navbar-form navbar-right">
|
|
<input type="text" class="form-control" placeholder="Search...">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-sm-3 col-md-2 sidebar">
|
|
<ul class="nav nav-sidebar">
|
|
<li class="active"><a href="#">Overview <span class="sr-only">(current)</span></a></li>
|
|
<li><a href="adminAnalytics.html">Analytics</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main">
|
|
<h1 class="page-header">Dashboard</h1>
|
|
|
|
<div class="row placeholders">
|
|
<div class="col-xs-6 col-sm-3 placeholder">
|
|
<div class="main-data" id="active_users_count">0</div>
|
|
<h4>Users online</h4>
|
|
</div>
|
|
<div class="col-xs-6 col-sm-3 placeholder">
|
|
<div class="main-data" id="active_docs_count">0</div>
|
|
<h4>Documents opened</h4>
|
|
</div>
|
|
<div class="col-xs-6 col-sm-3 placeholder">
|
|
<div class="main-data" id="mem_consumed">0</div>
|
|
<h4>Memory consumed</h4>
|
|
</div>
|
|
</div>
|
|
|
|
<h2 class="sub-header">Documents opened</h2>
|
|
<div class="table-responsive">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>PID</th>
|
|
<th>Document</th>
|
|
<th>Number of views</th>
|
|
<th>Memory consumed</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="doclist">
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="rowContextMenu" class="dropdown clearfix">
|
|
<ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu" style="display:block;position:static;margin-bottom:5px;">
|
|
<li><a tabindex="-1" href="#">Kill</a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<!-- Bootstrap core JavaScript
|
|
================================================== -->
|
|
<!-- Placed at the end of the document so the pages load faster -->
|
|
<script src="../../dist/bootstrap/js/bootstrap.min.js"></script>
|
|
<!-- Just to make our placeholder images work. Don't actually copy the next line! -->
|
|
<script src="../../dist/bootstrap/assets/js/vendor/holder.min.js"></script>
|
|
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
|
|
<script src="../../dist/bootstrap/assets/js/ie10-viewport-bug-workaround.js"></script>
|
|
</body>
|
|
</html>
|