-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathlogs.xsl
72 lines (60 loc) · 1.7 KB
/
logs.xsl
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
<xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version = "1.0" >
<xsl:output method="xml" media-type="text/html" indent="yes" encoding="UTF-8"
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" />
<xsl:template match = "/icestats" >
<html>
<head>
<title>Icecast Streaming Media Server</title>
<link rel="stylesheet" type="text/css" href="../style.css" />
</head>
<body>
<div class="main">
<div class="roundcont">
<div class="roundtop">
</div>
<div class="newscontent">
<h3>Access log</h3>
<iframe frameborder="0" width="100%" height="400" src="showlog.xsl?log=accesslog">
no frame support however contents can be found <a href="showlog.xsl?log=accesslog">here</a>
</iframe>
</div>
<div class="roundbottom">
</div>
</div>
<br />
<br />
<div class="roundcont">
<div class="roundtop">
</div>
<div class="newscontent">
<h3>Error log</h3>
<iframe frameborder="0" width="100%" height="400" padding="5" src="showlog.xsl?log=errorlog">
no frame support however contents can be found <a href="showlog.xsl?log=errorlog">here</a>
</iframe>
</div>
<div class="roundbottom">
</div>
</div>
<br />
<br />
<div class="roundcont">
<div class="roundtop">
</div>
<div class="newscontent">
<h3>Playlist log</h3>
<iframe frameborder="0" width="100%" height="300" src="showlog.xsl?log=playlistlog">
no frame support however contents can be found <a href="showlog.xsl?log=playlistlog">here</a>
</iframe>
</div>
<div class="roundbottom">
</div>
</div>
<br />
<br />
<div class="poster">Support icecast development at <a class="nav" href="http://www.icecast.org">www.icecast.org</a></div>
</div>
</body>
</html>
</xsl:template>
</xsl:stylesheet>