]> git.donarmstrong.com Git - infobot.git/blob - www/htdocs/inc/template.inc
* Remove old unneed CVSROOT
[infobot.git] / www / htdocs / inc / template.inc
1 <?
2 function bloot_header($title)
3 {
4         ?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><?
5         ?><html><head><title>B L O O T B O T . <? echo $title;
6         ?></title><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"><?
7         ?></head><body bgcolor="#333333" link="3333bb"><?
8         ?><table width="100%" border="0" cellspacing="0" cellpadding="3"><?
9         ?><tr><?
10         ?><td width="145" height="96"><a href="/"><?
11         ?><img src="/img/logo.gif" width="145" height="96" border="0"><?
12         ?></a></td><td valign="top"><?
13         ?><div align="right"><?
14         ?><font size="+3" color="#999999"><i><?
15         ?>The slowest and most bloated bot in the world</i><?
16         ?></font></div></td></tr><?
17         ?><tr> <td rowspan="2" valign="top"><?
18         bloot_menu();
19         ?><br><?
20         ?></td><?
21         ?><td valign="top" width="100%" height="412"><?
22 }
23
24 function bloot_menu()
25 {
26         ?><table width="100%" border="0" cellspacing="0" cellpadding="3"><?
27         ?><tr bgcolor="#666666"> <?
28         ?><td colspan="2" height="23"><font color="#FFFFFF" size="+1"><center><b>Download</center><?
29         ?></b></font></td><?
30         ?></tr><?
31         ?><tr bgcolor="#999999"><?
32         ?><td colspan="2"><?
33         ?><b>Releases:</b><?
34         ?><p>CVS tarball<br><?
35         ?>[<a href="/pub/blootbot-cvs.tar.gz">HTTP</a> | <a href="ftp://blootbot.sourceforge.net/pub/blootbot/blootbot-cvs.tar.gz">FTP</a>]<br><?
36         ?><p>releases<br><?
37         ?><a href="http://sourceforge.net/project/showfiles.php?group_id=8794">SourceForge</a><br><?
38         ?>Development:<br><?
39         ?>&nbsp;<a href="http://sourceforge.net/cvs/?group_id=8794">CVS info</a><br><?
40         ?>&nbsp;<a href="http://cvs.sourceforge.net/cvstarballs/blootbot-cvsroot.tar.gz">CVS Backup</a><br><?
41         ?>&nbsp;<a href="http://cvs.sourceforge.net/viewcvs.py/blootbot/blootbot/">CVS Tree</a></p><?
42         ?></td><?
43         ?></tr><?
44         ?></table><?
45         ?><br><?
46         ?><table width="%" border="0" cellspacing="0" cellpadding="3"><?
47         ?><tr bgcolor="#666666"><?
48         ?><td colspan="2" height="23"><font color="#FFFFFF" size="+1"><b><center>Support</center><?
49         ?></b></font></td><?
50         ?></tr><?
51         ?><tr bgcolor="#999999"><?
52         ?><td colspan="2"><?
53         ?><p><b>Other:</b> <br><?
54         ?><a href="http://sourceforge.net/support/?func=addsupport&amp;group_id=8794">Support</a><br><?
55         ?><a href="http://sourceforge.net/bugs/?group_id=8794">BUG list</a><br><?
56         ?><a href="http://sourceforge.net/forum/?group_id=8794">Discussion<?
57         ?> Forum</a></p><?
58         ?></td><?
59         ?></tr><?
60         ?></table><?
61         ?><br><?
62         ?><table width="100%" border="0" cellspacing="0" cellpadding="3"><?
63         ?><tr bgcolor="#666666"><?
64         ?><td colspan="2" height="23"><font color="#FFFFFF" size="+1"><b><center>Development</center><?
65         ?></b></font></td><?
66         ?></tr><?
67         ?><tr bgcolor="#999999"><?
68         ?><td colspan="2"><?
69         ?><p>Report <a href="http://sourceforge.net/bugs/?func=addbug&amp;group_id=8794"><?
70         ?> a BUG</a><br><?
71         ?>View <a href="http://cvs.sourceforge.net/viewcvs.py/blootbot/blootbot/TODO?view=markup">TODO</a><br><?
72         ?><br><?
73         ?><a href="http://sourceforge.net/project/admin/?group_id=8794">Admin<?
74         ?></a></p><?
75         ?></td><?
76         ?></tr><?
77         ?></table><?
78 }
79 function bloot_footer()
80 {
81         ?></td><?
82         ?></tr><?
83         ?><tr><? 
84         ?><td valign="bottom" align="right"> <?
85         ?><p><font color="#FFFFFF"><b><i>Hosted by:</i></b></font><br><?
86         ?><a href="http://sourceforge.net/projects/blootbot/"><?                           
87         ?><img src="http://sourceforge.net/sflogo.php?group_id=3248&type=1" width="88" height="31" border="0"<?
88         ?>alt="SourceForge Logo"><?
89         ?></a> </p><?              
90         ?></td><?    
91         ?></tr><?
92         ?></table><?
93         ?><p>&nbsp;</p><?
94         ?></body><?      
95         ?></html><?
96 }
97
98 function box_start($title,$author,$width)
99 {
100         ?><table width="<? echo $width 
101         ?>" border="0" cellspacing="0" cellpadding="3" align="center"><?
102         ?><tr bgcolor="#666666"><?
103         ?><td width="70%"><font color="#FFFFFF" size="+1"><? echo $title;
104         ?></font></td><?
105         ?><td width="100"><?
106         ?><div align="right"><i><font color="#333333"><? echo $author;
107         ?></font></i></div><?
108         ?></td><?
109         ?></tr><?
110         ?><tr bgcolor="#999999"><?
111         ?><td colspan="2"><?
112         ?><p><?
113 }
114
115 function box_end()
116 {
117         ?></td><?
118         ?></tr><?
119         ?></table><?
120 }
121
122 ?>