woozle-scoreboard/index.html

187 lines
5.7 KiB
HTML

<!DOCTYPE html>
<!--
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/>.
-->
<html>
<head>
<title>LADD Roller Derby Scoreboard</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="scoreboard.css">
</head>
<body>
<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>
<script type="text/javascript" src="logos.js"></script>
<script type="text/javascript" src="scoreboard.js"></script>
<div id="screenshot">
<img src="screenshot.png">
<p>
The scoreboard requires JavaScript. If your browser is capable
of JavaScript, enable it for this page to try the scoreboard
in your browser!
</p>
</div>
<table id="scoreboard" style="display: none;">
<caption>
Working demonstration: click on
team logos, then the jam time!
<a href="scoreboard.html">Full-screen version here</a>.
</caption>
<tr>
<td width="20%" class="team">
<span id="name-a" onclick="handle(event);">-</span>
<br>
<img src="" alt="☻" id="logo-a" onclick="handle(event);">
</td>
<td width="60%" rowspan="2">
<p>
<span id="period" onclick="handle(event);">--:--</span>
<br>
<span id="periodtext" onclick="handle(event);">-</span>
</p>
<p>
<span id="timeouts-a" onclick="handle(event);">0</span>
<span id="jamtext">-</span>
<span id="timeouts-b" onclick="handle(event);">0</span>
<br>
<span id="jam" onclick="handle(event);">-:--.--</span>
</p>
</td>
<td width="20%" class="team">
<span id="name-b" onclick="handle(event);">-</span>
<br>
<img src="" alt="☻" id="logo-b" onclick="handle(event);">
</td>
</tr>
<tr>
<td>
<span id="score-a" onclick="handle(event);">-</span>
</td>
<td>
<span id="score-b" onclick="handle(event);">-</span>
</td>
</tr>
</table>
<script type="text/javascript">
var sb = document.getElementById("scoreboard");
sb.style.display = "table";
sb = document.getElementById("screenshot");
sb.style.display = "none";
</script>
<h1>Features</h1>
<ul>
<li>
Free to use, share, and change (GPLv3)
</li>
<li>
Easy mouse-driven (with hotkeys) setup and operation
</li>
<li>
Looks <em>good</em>, with colors tuned for high-visibility
on projectors
</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>
<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
clicking on team logos, then the Jam Timer, to get things started.
</p>
<h1>Documentation</h1>
<p>
Watch a <a href="http://youtu.be/MXOzmmnHqXU">5-minute video
tutorial</a> or read the
<a href="usage.html">Full documentation</a> which comes bundled with the
download.
</p>
<h1>Download</h1>
<p>
<a href="http://woozle.org/~neale/g.cgi/scoreboard/snapshot/scoreboard-stable.zip">Download
the latest version</a> to your hard drive to run a scoreboard
without Internet access (<strong>recommended</strong>). This
includes the documentation.
</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/g.cgi/scoreboard">browse
the source tree</a> or clone it with git:
<pre>git clone http://woozle.org/~neale/projects/scoreboard</pre>
</p>
<h1>Other Derby Stuff</h1>
<p>
I've also written a <a href="http://woozle.org/track/">Derby Track</a>
position editor, which lets you place people and save the positions
as a link. This is free too!
</p>
<h1>Contact Me</h1>
<p>
If you'd like me to add your team logo, have an idea for improvement,
or just want to say hi, please send me an email. I especially
like hearing from people who are using the software: I love knowing
I'm able to help people out.
</p>
<address>
Neale Pickett &lt;<a href="mailto:neale&#64;woozle&#46;org">neale&#64;woozle&#46;org</a>&gt;
</address>
</body>
</html>