-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
55 lines (53 loc) · 2.19 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!--
* syslog-ng OSE configurator
*
* Copyright 2012, Andras Mitzki
* License: GNU GENERAL PUBLIC LICENSE v3
*
* Date: Wed Dec 19 10:03:56 CET 2012
-->
<!DOCTYPE html>
<html ng-app="configurator" ng-controller="AppCtrl">
<head>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.1/angular.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.1/angular-route.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mustache.js/2.1.2/mustache.min.js"></script>
<script type="text/javascript" src="javascripts/configurator.js"></script>
<link rel="stylesheet" href="stylesheets/master_stylesheet.css">
<link rel="stylesheet" href="stylesheets/display.css">
<link rel="stylesheet" href="stylesheets/menu.css">
<link rel="stylesheet" href="stylesheets/table.css">
<script type="text/javascript">
$(document).ready(function()
{
//Positioning DIV-s
$('#menu').height($(window).height()*0.999);
$('#content').height($(window).height()*0.90);
$('#navigator').width($(window).width()*0.749);
$('#navigator').height($(window).height()*0.06);
}
);
</script>
<title>syslog-ng Configurator</title>
</head>
<body>
<div id="container">
<nav id="vertical_menu">
<ul>
<li><a href="#/howtouse">How to use</a></li>
<li><a href="#/global-options">Global Options</a></li>
<li><a href="#/source-drivers/sinternal">Source Drivers</a></li>
<li><a href="#/destination-drivers/dfile">Destination Drivers</a></li>
<li><a href="#/logpath">Logpath and Config</a></li>
<li><a href="#/template">Default Config</a></li>
</ul>
</nav>
<div id="content">
<ng-view>LOADING...</ng-view>
<!--End content div-->
</div>
<!--End container div-->
</div>
</body>
</html>