blob: 0df6dfc62c9ac54f2b2cf8859fdffa9fb2cb2594 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
<?php
/* Copyright 2010, 2011, 2012, 2013, 2014, 2016 Arun Persaud <arun@nubati.net>
*
* This file is part of e-DoKo.
*
* e-DoKo 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.
*
* e-DoKo 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 e-DoKo. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* make sure that we are not called from outside the scripts,
* use a variable defined in config.php to check this
*/
if(!isset($HOST))
exit;
echo '
<div class="about">
<div class="code">
<h3>Coding</h3>
<ul>
<li> Arun Persaud </li>
<li> Sean Brennan </li>
</ul>
</div>
<div class="database">
<h3>Database support</h3>
<ul>
<li> Arun Persaud </li>
<li> Jeff Zerger</li>
</ul>
</div>
<div class="graphics">
<h3> Graphics </h3>
<ul>
<li> Lance Thornton </li>
<li> Frances Allen </li>
<li> Arun Persaud </li>
</ul>
<h4>external:</h4>
<ul>
<li> Cards design for english by David Bellot. <a href="http://svg-cards.sourceforge.net/">project page</a></li>
<li> Cards design for english2 by Chris Aguilar. <a href="http://code.google.com/p/vectorized-playing-cards/">project page</a></li>
</ul>
</div>
<div class="translation">
<h3>Translation</h3>
<ul>
<li> German
<ul>
<li> Arun Persaud </li>
<li> BK </li>
</ul>
</li>
</ul>
</div>
</div>
'
?>
|