woozle-scoreboard/index.html

145 lines
4.4 KiB
HTML
Raw Normal View History

2011-11-11 23:20:31 -07:00
<!DOCTYPE html>
2011-12-07 21:47:58 -07:00
<!--
Roller Derby Scoreboard Copyright © 2011 Neale Pickett
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see
<http://www.gnu.org/licenses/>.
-->
2011-11-11 23:20:31 -07:00
<html>
<head>
2011-11-17 17:53:49 -07:00
<title>LADD Roller Derby Scoreboard</title>
2011-11-11 23:20:31 -07:00
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
2011-11-17 17:53:49 -07:00
<link rel="stylesheet" type="text/css" href="scoreboard.css">
2011-11-11 23:20:31 -07:00
</head>
<body>
2011-11-17 17:53:49 -07:00
<h1>LADD Roller Derby Scoreboard</h1>
<p>
This is the scoreboard used by
the <a href="http://laderbydames.com/">Los Alamos Derby Dames</a>,
in bouts and scrimmages.
</p>
2011-11-23 21:43:09 -07:00
<script type="text/javascript" src="logos.js"></script>
2011-11-17 17:53:49 -07:00
<script type="text/javascript" src="scoreboard.js"></script>
<table id="scoreboard">
2011-12-07 22:04:22 -07:00
<caption>
Working demonstration, no keyboard shortcuts
(<a href="scoreboard.html">full version</a>)
</caption>
2011-11-11 23:20:31 -07:00
<tr>
2011-11-14 22:41:03 -07:00
<td width="20%" class="team">
2011-11-15 21:56:33 -07:00
<span id="name-a" onclick="handle(event);">-</span>
2011-11-11 23:20:31 -07:00
<br>
2011-11-23 21:43:09 -07:00
<img src="" alt="☻" id="logo-a" onclick="handle(event);">
2011-11-11 23:20:31 -07:00
</td>
<td width="60%" rowspan="2">
2011-11-14 22:41:03 -07:00
<p>
2011-11-15 21:56:33 -07:00
<span id="period" onclick="handle(event);">--:--</span>
2011-11-11 23:20:31 -07:00
<br>
2011-11-15 21:56:33 -07:00
<span id="periodtext" onclick="handle(event);">-</span>
2011-11-11 23:20:31 -07:00
</p>
2011-11-14 22:41:03 -07:00
<p>
2011-12-07 21:50:32 -07:00
<span id="timeouts-a" onclick="handle(event);">0</span>
2011-11-14 22:41:03 -07:00
<span id="jamtext">-</span>
2011-12-07 21:50:32 -07:00
<span id="timeouts-b" onclick="handle(event);">0</span>
2011-11-11 23:20:31 -07:00
<br>
2011-11-15 21:56:33 -07:00
<span id="jam" onclick="handle(event);">-:--.--</span>
2011-11-11 23:20:31 -07:00
</p>
</td>
2011-11-14 22:41:03 -07:00
<td width="20%" class="team">
2011-11-15 21:56:33 -07:00
<span id="name-b" onclick="handle(event);">-</span>
2011-11-11 23:20:31 -07:00
<br>
2011-11-23 21:43:09 -07:00
<img src="" alt="☻" id="logo-b" onclick="handle(event);">
2011-11-11 23:20:31 -07:00
</td>
</tr>
<tr>
<td>
2011-11-15 21:56:33 -07:00
<span id="score-a" onclick="handle(event);">-</span>
2011-11-11 23:20:31 -07:00
</td>
<td>
2011-11-15 21:56:33 -07:00
<span id="score-b" onclick="handle(event);">-</span>
2011-11-11 23:20:31 -07:00
</td>
</tr>
</table>
2011-11-17 17:53:49 -07:00
2011-12-02 17:55:47 -07:00
<h1>Features</h1>
<ul>
2011-12-08 00:48:16 -07:00
<li>
Free to use, share, and change (GPLv3)
</li>
2011-12-02 17:55:47 -07:00
<li>
Easy mouse-driven (with hotkeys) setup and operation
</li>
<li>
Looks <em>good</em>, with colors tuned for high-visibility
2011-12-08 00:48:16 -07:00
on projectors
2011-12-02 17:55:47 -07:00
</li>
<li>
Appearance can be customized in HTML and CSS
</li>
<li>
Runs in any modern web browser—even smartphones and
tablets
</li>
<li>
Ships with <a href="logos.html">an ever-expanding set of
team logos</a>
</li>
<li>Uses WFTDA timing</li>
</ul>
<h1>Try it!</h1>
2011-11-17 17:53:49 -07:00
<p>
The scoreboard is implemented in pure HTML5 and JavaScript. The
box above is a <em>running scoreboard</em>. If the box works, you
can run this scoreboard without installing anything else. Try
2011-12-02 17:55:47 -07:00
clicking on team logos, then the Jam Timer, to get things started.
2011-11-17 17:53:49 -07:00
</p>
<h1>Documentation</h1>
<p>
<a href="usage.html">Full documentation</a> comes bundled with the
download.
</p>
<h1>Download</h1>
<p>
2011-12-07 23:26:27 -07:00
<a href="http://woozle.org/~neale/gitweb.cgi/scoreboard/snapshot/stable.zip">Download
2011-11-17 17:53:49 -07:00
the latest version</a> to your hard drive to run a scoreboard
without Internet access (<strong>recommended</strong>). This
2011-11-22 12:23:32 -07:00
includes the documentation.
2011-11-17 17:53:49 -07:00
</p>
<p>
If your scoreboard computer has an Internet connection, you don't
need to download anything at all. Just load up
the <a href="scoreboard.html">full-screen version</a> from this
page and you're all set.
</p>
<p>
You can
also <a href="http://woozle.org/~neale/gitweb.cgi/scoreboard">browse
the source tree</a> or clone it with git:
<pre>git clone http://woozle.org/~neale/projects/scoreboard</pre>
</p>
2011-11-11 23:20:31 -07:00
</body>
</html>