]> git.sesse.net Git - remoteglot/blob - www/index.html
Move the JavaScript into an external file.
[remoteglot] / www / index.html
1 <!doctype html>
2 <html>
3 <head>
4   <meta charset="utf-8" />
5   <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
6   <title>analysis.sesse.net</title>
7
8   <link rel="stylesheet" href="css/chessboard-0.3.0.min.css" />
9   <link rel="stylesheet" href="css/remoteglot.css" />
10 </head>
11 <body>
12 <h1 id="headline">Analysis</h1>
13 <table>
14 <tr>
15 <td>
16 <div id="board" style="width: 400px"></div>
17 </td>
18 <td>
19   <p id="score">Score:</p>
20   <p><strong>PV:</strong> <span id="pv"></span></p>
21   <p id="searchstats"></p>
22   <h3 style="margin-top: 1em; margin-bottom: 0;">Shallow search of all legal moves (multi-PV)</h3>
23   <table id="refutationlines">
24   </table>
25 </td>
26 </tr>
27 </table>
28 <h2>Symbol explanation</h2>
29 <ul>
30   <li><strong>Score:</strong> 1.00 is the value of one pawn (in the opening). Positive values are better for white.</li>
31   <li><strong>PV:</strong> Principal Variation, the series of moves the engine thinks is the best.</li>
32   <li><strong>Thick red line:</strong> Marks the best move (in the view of the engine). Multiple chained arrows
33     means that the PV starts with multiple successive moves with the same piece, ie., the engine thinks
34     that the piece will execute a maneuver.</li>
35   <li><strong>Thin red lines:</strong> Other good moves, maximum two. Note that even though these are also
36     quality checked, these are less thoroughly analyzed by the engine,
37     and should be taken with a grain of salt.</li>
38   <li><strong>Thick blue line:</strong> Marks the best <em>response</em> move. Note that this is only rarely shown,
39     since usually, the best response move depends on what the first move is. A typical case is when the current move
40     is forced or nearly so.</li>
41 </ul>
42 <p id="credits"><a href="http://git.sesse.net/?p=remoteglot;a=summary">remoteglot</a>
43   &copy; 2007-2013 <a href="http://www.sesse.net/">Steinar H. Gunderson</a>.
44   Chess analysis by <a href="http://stockfishchess.org/">Stockfish</a> (main analysis: 12x2.3GHz Sandy Bridge,
45   multi-PV search: 8x2.27GHz Nehalem).
46   Moves provided by <a href="http://www.freechess.org/">FICS</a>.
47   Hosting and main analysis hardware by <a href="http://www.samfundet.no/">Studentersamfundet i Trondhjem</a>.
48   JavaScript chessboard powered by <a href="http://chessboardjs.com/">chessboard.js</a>.
49   Arrows by <a href="http://jsplumbtoolkit.com">jsPlumb</a>&mdash;who would think you could
50   draw such beautiful arrows in just 161 kB of JavaScript on top of the
51   323 kB needed for jQuery and jQuery UI? How far technology has come. If you want something
52   more retro, the <a href="/text.pl">text interface</a> is still available.</p>
53
54 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
55 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
56 <script type="text/javascript" src="js/jquery.jsPlumb-1.5.3-min.js"></script>
57 <script type="text/javascript" src="js/chessboard-0.3.0.min.js"></script>
58 <script type="text/javascript" src="js/remoteglot.js"></script>
59 </body>
60 </html>