summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--static/error.html20
-rw-r--r--static/js/fullscreen.js1
-rw-r--r--template/mutes.st23
3 files changed, 34 insertions, 10 deletions
diff --git a/static/error.html b/static/error.html
new file mode 100644
index 0000000..42fb64c
--- /dev/null
+++ b/static/error.html
@@ -0,0 +1,20 @@
+<html>
+<head>
+<title>
+dump.fm - error
+</title>
+<style>
+body{margin:1%;font-size:20px;color:#000;font-family: Monaco, "Courier New", Courier, monospace; text-shadow: 1px 1px #eee, 2px 2px #f0e, 3px 3px #eee,4px 4px #f0e,5px 5px #eee, 3px 3px #eee,4px 4px #f0e,5px 5px #eee,6px 6px #f0e,6px 6px #eee,7px 7px #f0e,7px 7px #eee,8px 8px #f0e,8px 8px #eee,9px 9px #f0e,9px 9px #eee; }
+img{border:0px;}
+</style>
+</head>
+<body>
+<center>
+<img src="http://dump.fm/images/20100826/1282858117687-dumpfm-ryder-404.gif">
+<br>
+We're sorry...
+<br>The page yur looking for can't be found.<br><br>
+ <a href="http://dump.fm"><img src="http://dump.fm/static/img/dumppixelhover.png" class="memelogo"></a>
+</center>
+</body>
+</html> \ No newline at end of file
diff --git a/static/js/fullscreen.js b/static/js/fullscreen.js
index 573cabe..0f54102 100644
--- a/static/js/fullscreen.js
+++ b/static/js/fullscreen.js
@@ -179,4 +179,5 @@ $(function() {
PrevMouseCoord = [e.pageX, e.pageY];
$('#memelogo').stop(true, false).animate({opacity: 1.0}, "fast").delay(LogoFadeDelay).animate({opacity: 0}, "slow");
});
+ $('#memelogo').delay(LogoFadeDelay).animate({opacity: 0}, "slow");
}); \ No newline at end of file
diff --git a/template/mutes.st b/template/mutes.st
index e826e8d..d8d9e96 100644
--- a/template/mutes.st
+++ b/template/mutes.st
@@ -1,14 +1,17 @@
<html>
<head>
- <title>dump.fm Mutes</title>
- $head()$
+ <title>dump.fm mutes</title>
+ <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
+ <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.0/jquery-ui.min.js"
+ type="text/javascript"></script>
<script src="/static/js/jquery.tablesorter.min.js"
type="text/javascript"></script>
+ <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/ui-lightness/jquery-ui.css"
+
+ <script src="/static/js/admin.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="/static/tsort/style.css">
<style>
- #main {
- padding: 100px 2em 0px 2em;
- }
+ body { font-family: Monaco, "Courier New", Courier, monospace; }
input[type=button] {
font-size: 100%;
}
@@ -29,10 +32,10 @@
</script>
</head>
<body>
- $banner()$
+ <h1><a href="http://dump.fm">dump.fm muting system</a></h1>
<div id="main">
- <h1>Active Mutes</h1>
+ <h2>Active Mutes</h2>
<table id="active-mutes" class="tablesorter">
<thead>
@@ -49,7 +52,7 @@
<tbody>
$active: { m |
<tr mute-id="$m.mute_id$">
- <td>$m.nick$</td>
+ <td><a href="/$m.nick$">$m.nick$</a></td>
<td>$m.admin_nick$</td>
<td>$m.set_on$</td>
<td>$m.expiry$</td>
@@ -66,7 +69,7 @@
<br />
- <h1>Inactive Mutes</h1>
+ <h2>Inactive Mutes</h2>
<table id="inactive-mutes" class="tablesorter">
<thead>
@@ -85,7 +88,7 @@
<tbody>
$inactive: { m |
<tr>
- <td>$m.nick$</td>
+ <td><a href="/$m.nick$">$m.nick$<a></td>
<td>$m.admin_nick$</td>
<td>$m.set_on$</td>
<td>$m.expiry$</td>