BUGFIX: vorbehalte of all players were visible
[e-DoKo.git] / include / about.php
1 <?php
2 /* Copyright 2010, 2011, 2012, 2013 Arun Persaud <arun@nubati.net>
3  *
4  *   This file is part of e-DoKo.
5  *
6  *   e-DoKo is free software: you can redistribute it and/or modify
7  *   it under the terms of the GNU General Public License as published by
8  *   the Free Software Foundation, either version 3 of the License, or
9  *   (at your option) any later version.
10  *
11  *   e-DoKo is distributed in the hope that it will be useful,
12  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *   GNU General Public License for more details.
15  *
16  *   You should have received a copy of the GNU General Public License
17  *   along with e-DoKo.  If not, see <http://www.gnu.org/licenses/>.
18  *
19  */
20
21 /* make sure that we are not called from outside the scripts,
22  * use a variable defined in config.php to check this
23  */
24 if(!isset($HOST))
25   exit;
26
27 echo '
28 <div class="about">
29
30 <div class="code">
31 <h3>Coding</h3>
32  <ul>
33     <li> Arun Persaud </li>
34     <li> Sean Brennan </li>
35  </ul>
36 </div>
37
38 <div class="database">
39 <h3>Database support</h3>
40  <ul>
41     <li> Arun Persaud </li>
42     <li> Jeff Zerger</li>
43  </ul>
44 </div>
45
46 <div class="graphics">
47 <h3> Graphics </h3>
48  <ul>
49     <li> Lance Thornton </li>
50     <li> Frances Allen </li>
51     <li> Arun Persaud  </li>
52  </ul>
53 <h4>external:</h4>
54  <ul>
55     <li> Cards design for english by David Bellot. <a href="http://svg-cards.sourceforge.net/">project page</a></li>
56     <li> Cards design for english2 by Chris Aguilar. <a href="http://code.google.com/p/vectorized-playing-cards/">project page</a></li>
57  </ul>
58 </div>
59
60 <div class="translation">
61 <h3>Translation</h3>
62  <ul>
63   <li> German
64     <ul>
65       <li> Arun Persaud </li>
66       <li> BK </li>
67     </ul>
68   </li>
69  </ul>
70 </div>
71 </div>
72 '
73 ?>