forked from hestiacp/hestiacp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist_weblog.html
More file actions
127 lines (109 loc) · 2.69 KB
/
Copy pathlist_weblog.html
File metadata and controls
127 lines (109 loc) · 2.69 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Web Log Manager</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<style type="text/css">
body {
margin: 0;
margin-left: auto;
margin-right: auto;
font-family: Arial, Helvetica, sans-serif;
padding: 0 0 0 8px;
}
.main {
background-color: #ffffff;
padding: 0 0 18px 0;
box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
}
.top {
color: #ffd76e;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
margin: 0;
font-size: 10pt;
text-align: left;
border: 0px;
border-collapse:collapse;
}
.top thead td {
background-color: #505050;
border-bottom: 1px solid #fff;
height: 25px;
text-align: right;
padding: 0 24px 0 0px;
weight:120px;
}
.top thead td:first-child{
border-left: 1px solid #fff;
border-right:none;
text-align:left;
padding: 0 0 0 0;
width:auto;
}
.top-link {
padding: 5px 22px 4px;
text-decoration: none;
color: #fff;
border-right: 1px solid #fff;
}
.top-link:hover {
color: #fff;
background-color: #999;
}
.top-link:active{
color: #fff;
background-color: #f79b44;
}
.top-selected-link {
padding: 5px 22px;
text-decoration: none;
color: #555;
background-color: #fff;
border-right: 1px solid #fff;
}
.top-selected-link:hover {
color: #174f82;
}
.top-selected-link:active {
color: #fff;
background-color: #f79b44;
}
.top-user {
padding: 0 2px 0 0;
text-decoration: none;
color: #ffd76e;
}
.top-user:hover {
color: #fff;
}
.top-user:active{
color: #fff;
background-color: #f79b44;
}
</style>
</head>
<body>
<table class="top">
<thead>
<tr>
<td>
<b><a class="top-<?php if($_GET['type'] == 'access' ) echo 'selected-' ?>link" href="/list/web-log/?domain=<?php echo $_GET['domain']."&type=access"?>">
<?php print __('AccessLog') ?>
</a></b>
<b><a class="top-<?php if($_GET['type'] == 'error' ) echo 'selected-' ?>link" href="/list/web-log/?domain=<?php echo $_GET['domain']."&type=error"?>">
<?php print __('ErrorLog') ?>
</a></b>
<b><a class="top-link" href="/download/web-log/?domain=<?php echo $_GET['domain']."&type=access"?>">
<?php print __('Download AccessLog') ?>
</a></b>
<b><a class="top-link" href="/download/web-log/?domain=<?php echo $_GET['domain']."&type=error"?>">
<?php print __('Download ErrorLog') ?>
</a></b>
</td>
</tr>
</thead>
</table>
<div style="color: #323232; padding: 16px 0px;"><?php echo __('Last 70 lines of %s.%s.log',$_GET['domain'],$_GET['type']) ;?></div>
<pre>