impostor 0.0.1 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +7 -1
- data/Manifest.txt +9 -0
- data/README.txt +10 -3
- data/Rakefile +1 -1
- data/lib/www/impostor/phpbb2.rb +5 -7
- data/lib/www/impostor/phpbb3.rb +236 -0
- data/lib/www/impostor.rb +1 -1
- data/test/fixtures/phpbb2-not-logged-in.html +530 -145
- data/test/fixtures/phpbb3-get-new-topic-form-good-response.html +975 -0
- data/test/fixtures/phpbb3-get-reply-form-good-response.html +1015 -0
- data/test/fixtures/phpbb3-logged-in.html +512 -0
- data/test/fixtures/phpbb3-login.html +423 -0
- data/test/fixtures/phpbb3-not-logged-in.html +426 -0
- data/test/fixtures/phpbb3-post-new_topic-good-response.html +894 -0
- data/test/fixtures/phpbb3-post-reply-good-response.html +2077 -0
- data/test/test_www_impostor_phpbb3.rb +483 -0
- metadata +19 -27
- data.tar.gz.sig +0 -3
- metadata.gz.sig +0 -3
@@ -0,0 +1,894 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-gb" xml:lang="en-gb">
|
3
|
+
<head>
|
4
|
+
<link REL="SHORTCUT ICON" HREF="http://example.com/favicon.ico">
|
5
|
+
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
6
|
+
<meta http-equiv="content-language" content="en-gb" />
|
7
|
+
<meta http-equiv="content-style-type" content="text/css" />
|
8
|
+
<meta http-equiv="imagetoolbar" content="no" />
|
9
|
+
<meta name="resource-type" content="document" />
|
10
|
+
<meta name="distribution" content="global" />
|
11
|
+
<meta name="copyright" content="2000, 2002, 2005, 2007 phpBB Group" />
|
12
|
+
<meta name="keywords" content="" />
|
13
|
+
<meta name="description" content="" />
|
14
|
+
<title>EXAMPLE.COM • View topic - zazzle razzle razzle geewiz</title>
|
15
|
+
|
16
|
+
<link rel="stylesheet" href="./styles/GnB/theme/stylesheet.css" type="text/css" />
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
<script type="text/javascript">
|
21
|
+
// <![CDATA[
|
22
|
+
|
23
|
+
function popup(url, width, height, name)
|
24
|
+
{
|
25
|
+
if (!name)
|
26
|
+
{
|
27
|
+
name = '_popup';
|
28
|
+
}
|
29
|
+
|
30
|
+
window.open(url.replace(/&/g, '&'), name, 'height=' + height + ',resizable=yes,scrollbars=yes,width=' + width);
|
31
|
+
return false;
|
32
|
+
}
|
33
|
+
|
34
|
+
function jumpto()
|
35
|
+
{
|
36
|
+
var page = prompt('Enter the page number you wish to go to.:', '1');
|
37
|
+
var perpage = '';
|
38
|
+
var base_url = '';
|
39
|
+
|
40
|
+
if (page !== null && !isNaN(page) && page > 0)
|
41
|
+
{
|
42
|
+
document.location.href = base_url.replace(/&/g, '&') + '&start=' + ((page - 1) * perpage);
|
43
|
+
}
|
44
|
+
}
|
45
|
+
|
46
|
+
/**
|
47
|
+
* Find a member
|
48
|
+
*/
|
49
|
+
function find_username(url)
|
50
|
+
{
|
51
|
+
popup(url, 760, 570, '_usersearch');
|
52
|
+
return false;
|
53
|
+
}
|
54
|
+
|
55
|
+
/**
|
56
|
+
* Mark/unmark checklist
|
57
|
+
* id = ID of parent container, name = name prefix, state = state [true/false]
|
58
|
+
*/
|
59
|
+
function marklist(id, name, state)
|
60
|
+
{
|
61
|
+
var parent = document.getElementById(id);
|
62
|
+
if (!parent)
|
63
|
+
{
|
64
|
+
eval('parent = document.' + id);
|
65
|
+
}
|
66
|
+
|
67
|
+
if (!parent)
|
68
|
+
{
|
69
|
+
return;
|
70
|
+
}
|
71
|
+
|
72
|
+
var rb = parent.getElementsByTagName('input');
|
73
|
+
|
74
|
+
for (var r = 0; r < rb.length; r++)
|
75
|
+
{
|
76
|
+
if (rb[r].name.substr(0, name.length) == name)
|
77
|
+
{
|
78
|
+
rb[r].checked = state;
|
79
|
+
}
|
80
|
+
}
|
81
|
+
}
|
82
|
+
|
83
|
+
|
84
|
+
// ]]>
|
85
|
+
</script>
|
86
|
+
<SCRIPT TYPE="text/javascript">
|
87
|
+
<!--
|
88
|
+
// copyright 1999 Idocs, Inc. http://www.idocs.com/tags/
|
89
|
+
// Distribute this script freely, but please keep this
|
90
|
+
// notice with the code.
|
91
|
+
|
92
|
+
var rollOverArr=new Array();
|
93
|
+
function setrollover(OverImgSrc,pageImageName)
|
94
|
+
{
|
95
|
+
if (! document.images)return;
|
96
|
+
if (pageImageName == null)
|
97
|
+
pageImageName = document.images[document.images.length-1].name;
|
98
|
+
rollOverArr[pageImageName]=new Object;
|
99
|
+
rollOverArr[pageImageName].overImg = new Image;
|
100
|
+
rollOverArr[pageImageName].overImg.src=OverImgSrc;
|
101
|
+
}
|
102
|
+
|
103
|
+
function rollover(pageImageName)
|
104
|
+
{
|
105
|
+
if (! document.images)return;
|
106
|
+
if (! rollOverArr[pageImageName])return;
|
107
|
+
if (! rollOverArr[pageImageName].outImg)
|
108
|
+
{
|
109
|
+
rollOverArr[pageImageName].outImg = new Image;
|
110
|
+
rollOverArr[pageImageName].outImg.src = document.images[pageImageName].src;
|
111
|
+
}
|
112
|
+
document.images[pageImageName].src=rollOverArr[pageImageName].overImg.src;
|
113
|
+
}
|
114
|
+
|
115
|
+
function rollout(pageImageName)
|
116
|
+
{
|
117
|
+
if (! document.images)return;
|
118
|
+
if (! rollOverArr[pageImageName])return;
|
119
|
+
document.images[pageImageName].src=rollOverArr[pageImageName].outImg.src;
|
120
|
+
}
|
121
|
+
//-->
|
122
|
+
</SCRIPT>
|
123
|
+
|
124
|
+
</head>
|
125
|
+
<body class="ltr">
|
126
|
+
|
127
|
+
<a name="top"></a>
|
128
|
+
|
129
|
+
<div id="wrapheader">
|
130
|
+
<table id="bx" width="100%" border="0" cellpadding="0" cellspacing="0">
|
131
|
+
<tr>
|
132
|
+
<table id="bx" width="100%" height="40" border="0" cellpadding="0" cellspacing="0">
|
133
|
+
<td><img src="./styles/GnB/theme/images/header/h11.png" width="40" height="40" alt=""></td>
|
134
|
+
<td><img src="./styles/GnB/theme/images/header/h12.png" width="100" height="40" alt=""></td>
|
135
|
+
<td background="./styles/GnB/theme/images/header/h13.png" width="100%" height="40">
|
136
|
+
<td><img src="./styles/GnB/theme/images/header/h14.png" width="100" height="40" alt=""></td>
|
137
|
+
<td><img src="./styles/GnB/theme/images/header/h15.png" width="40" height="40" alt=""></td>
|
138
|
+
</table>
|
139
|
+
</tr>
|
140
|
+
<tr>
|
141
|
+
<table id="bx" width="100%" height="140" border="0" cellpadding="0" cellspacing="0">
|
142
|
+
<td><img src="./styles/GnB/theme/images/header/h21.png" width="40" height="140" alt=""></td>
|
143
|
+
<td><img src="./styles/GnB/theme/images/header/h22.png" width="100" height="140" alt=""></td>
|
144
|
+
<td background="./styles/GnB/theme/images/header/h23.png" width="100%" height="140">
|
145
|
+
<div id="logodesc">
|
146
|
+
<table width="100%" cellspacing="0">
|
147
|
+
<tr>
|
148
|
+
<td><a href="./index.php"><img src="./styles/GnB/imageset/site_logo.png" width="480" height="80" alt="" title="" /></a></td>
|
149
|
+
<td width="100%" align="center"><h1>EXAMPLE.COM</h1><span class="gen">HOME OF THE MEATSHIELDS</span></td>
|
150
|
+
</tr>
|
151
|
+
</table>
|
152
|
+
</div>
|
153
|
+
</td>
|
154
|
+
<td><img src="./styles/GnB/theme/images/header/h24.png" width="100" height="140" alt=""></td>
|
155
|
+
<td><img src="./styles/GnB/theme/images/header/h25.png" width="40" height="140" alt=""></td>
|
156
|
+
</table>
|
157
|
+
</tr>
|
158
|
+
<tr>
|
159
|
+
<table id="bx" width="100%" height="66" border="0" cellpadding="0" cellspacing="0">
|
160
|
+
<td><img src="./styles/GnB/theme/images/header/h31.png" width="40" height="66" alt=""></td>
|
161
|
+
<td><img src="./styles/GnB/theme/images/header/h32.png" width="100" height="66" alt=""></td>
|
162
|
+
<td background="./styles/GnB/theme/images/header/h33.png" width="20%" height="66" align="center">
|
163
|
+
<A HREF="./index.php"
|
164
|
+
onMouseOver = "rollover('home')"
|
165
|
+
onMouseOut = "rollout('home')"
|
166
|
+
>
|
167
|
+
<IMG SRC="./styles/GnB/theme/images/buttons/home1.png"
|
168
|
+
NAME="home"
|
169
|
+
ALT="Home Page" BORDER=0
|
170
|
+
HEIGHT=40 WIDTH=101
|
171
|
+
>
|
172
|
+
</A>
|
173
|
+
<SCRIPT TYPE="text/javascript">
|
174
|
+
<!--
|
175
|
+
setrollover("./styles/GnB/theme/images/buttons/home2.png");
|
176
|
+
//-->
|
177
|
+
</SCRIPT>
|
178
|
+
</td>
|
179
|
+
<td background="./styles/GnB/theme/images/header/h33.png" width="20%" height="66" align="center">
|
180
|
+
<A HREF="./faq.php"
|
181
|
+
onMouseOver = "rollover('faq')"
|
182
|
+
onMouseOut = "rollout('faq')"
|
183
|
+
>
|
184
|
+
<IMG SRC="./styles/GnB/theme/images/buttons/faq1.png"
|
185
|
+
NAME="faq"
|
186
|
+
ALT="Home Page" BORDER=0
|
187
|
+
HEIGHT=40 WIDTH=101
|
188
|
+
>
|
189
|
+
</A>
|
190
|
+
<SCRIPT TYPE="text/javascript">
|
191
|
+
<!--
|
192
|
+
setrollover("./styles/GnB/theme/images/buttons/faq2.png");
|
193
|
+
//-->
|
194
|
+
</SCRIPT>
|
195
|
+
</td>
|
196
|
+
<td background="./styles/GnB/theme/images/header/h33.png" width="20%" height="66" align="center">
|
197
|
+
<A HREF="./memberlist.php?mode=leaders"
|
198
|
+
onMouseOver = "rollover('team')"
|
199
|
+
onMouseOut = "rollout('team')"
|
200
|
+
>
|
201
|
+
<IMG SRC="./styles/GnB/theme/images/buttons/team1.png"
|
202
|
+
NAME="team"
|
203
|
+
ALT="Home Page" BORDER=0
|
204
|
+
HEIGHT=40 WIDTH=101
|
205
|
+
>
|
206
|
+
</A>
|
207
|
+
<SCRIPT TYPE="text/javascript">
|
208
|
+
<!--
|
209
|
+
setrollover("./styles/GnB/theme/images/buttons/team2.png");
|
210
|
+
//-->
|
211
|
+
</SCRIPT>
|
212
|
+
</td>
|
213
|
+
<td background="./styles/GnB/theme/images/header/h33.png" width="20%" height="66" align="center">
|
214
|
+
<A HREF="./search.php"
|
215
|
+
onMouseOver = "rollover('search')"
|
216
|
+
onMouseOut = "rollout('search')"
|
217
|
+
>
|
218
|
+
<IMG SRC="./styles/GnB/theme/images/buttons/search1.png"
|
219
|
+
NAME="search"
|
220
|
+
ALT="Home Page" BORDER=0
|
221
|
+
HEIGHT=40 WIDTH=101
|
222
|
+
>
|
223
|
+
</A>
|
224
|
+
<SCRIPT TYPE="text/javascript">
|
225
|
+
<!--
|
226
|
+
setrollover("./styles/GnB/theme/images/buttons/search2.png");
|
227
|
+
//-->
|
228
|
+
</SCRIPT>
|
229
|
+
</td>
|
230
|
+
<td background="./styles/GnB/theme/images/header/h33.png" width="20%" height="66" align="center">
|
231
|
+
<A HREF="./memberlist.php"
|
232
|
+
onMouseOver = "rollover('members')"
|
233
|
+
onMouseOut = "rollout('members')"
|
234
|
+
>
|
235
|
+
<IMG SRC="./styles/GnB/theme/images/buttons/members1.png"
|
236
|
+
NAME="members"
|
237
|
+
ALT="Home Page" BORDER=0
|
238
|
+
HEIGHT=40 WIDTH=101
|
239
|
+
>
|
240
|
+
</A>
|
241
|
+
<SCRIPT TYPE="text/javascript">
|
242
|
+
<!--
|
243
|
+
setrollover("./styles/GnB/theme/images/buttons/members2.png");
|
244
|
+
//-->
|
245
|
+
</SCRIPT>
|
246
|
+
</td>
|
247
|
+
<td background="./styles/GnB/theme/images/header/h33.png" width="100%" height="66"></td>
|
248
|
+
<td><img src="./styles/GnB/theme/images/header/h34.png" width="100" height="66" alt=""></td>
|
249
|
+
<td><img src="./styles/GnB/theme/images/header/h35.png" width="40" height="66" alt=""></td>
|
250
|
+
</table>
|
251
|
+
</tr>
|
252
|
+
</table>
|
253
|
+
</div>
|
254
|
+
|
255
|
+
<div id="wrapcentre">
|
256
|
+
<table id="bx" width="100%" border="0" cellpadding="0" cellspacing="0">
|
257
|
+
<tr>
|
258
|
+
<table id="bx" height="45" border="0" cellpadding="0" cellspacing="0" align="center">
|
259
|
+
<td><img src="./styles/GnB/theme/images/p_menu/p_01.png" width="61" height="45" alt=""></td>
|
260
|
+
<td background="./styles/GnB/theme/images/p_menu/p_02.png" width="20%" height="45"></td>
|
261
|
+
<td><img src="./styles/GnB/theme/images/p_menu/cu_l.png" width="44" height="45" alt=""></td>
|
262
|
+
<td background="./styles/GnB/theme/images/p_menu/cu_m.png" width="20%" height="45" align="center">
|
263
|
+
<h5>
|
264
|
+
<a href="./ucp.php?i=pm&folder=inbox"> <strong>0</strong> new messages </a>
|
265
|
+
</h5>
|
266
|
+
</td>
|
267
|
+
<td background="./styles/GnB/theme/images/p_menu/cu_m.png" width="20%" height="45" align="center">
|
268
|
+
<h5>
|
269
|
+
<a href="./ucp.php?mode=logout&sid=de536e272d3aa936541638e533737724"> Logout [ tester ]</a>
|
270
|
+
</h5>
|
271
|
+
</td>
|
272
|
+
<td background="./styles/GnB/theme/images/p_menu/cu_m.png" width="20%" height="45" align="center">
|
273
|
+
<h5>
|
274
|
+
<a href="./ucp.php"> User Control Panel</a>
|
275
|
+
</h5>
|
276
|
+
</td>
|
277
|
+
<td><img src="./styles/GnB/theme/images/p_menu/cu_r.png" width="45" height="45" alt=""></td>
|
278
|
+
<td background="./styles/GnB/theme/images/p_menu/p_02.png" width="20%" height="45"></td>
|
279
|
+
<td><img src="./styles/GnB/theme/images/p_menu/p_03.png" width="61" height="45" alt=""></td>
|
280
|
+
</table>
|
281
|
+
</tr>
|
282
|
+
<tr>
|
283
|
+
<table id="bx" height="45" border="0" cellpadding="0" cellspacing="0">
|
284
|
+
<td><img src="./styles/GnB/theme/images/p_menu/p_08.png" width="61" height="45" alt=""></td>
|
285
|
+
<td background="./styles/GnB/theme/images/p_menu/p_85.png" width="100%" height="45">
|
286
|
+
<table width="100%" cellspacing="0">
|
287
|
+
<tr>
|
288
|
+
<td background="./styles/GnB/theme/images/p_menu/p_85.png" width="10%" height="36" align="center">
|
289
|
+
<A HREF="./search.php?search_id=unanswered"
|
290
|
+
onMouseOver = "rollover('search_unanswered')"
|
291
|
+
onMouseOut = "rollout('search_unanswered')"
|
292
|
+
>
|
293
|
+
<IMG SRC="./styles/GnB/theme/images/buttons/ut1.png"
|
294
|
+
NAME="search_unanswered"
|
295
|
+
ALT="View unanswered posts" BORDER=0
|
296
|
+
HEIGHT=36 WIDTH=150
|
297
|
+
>
|
298
|
+
</A>
|
299
|
+
<SCRIPT TYPE="text/javascript">
|
300
|
+
<!--
|
301
|
+
setrollover("./styles/GnB/theme/images/buttons/ut2.png");
|
302
|
+
//-->
|
303
|
+
</SCRIPT>
|
304
|
+
</td>
|
305
|
+
<td background="./styles/GnB/theme/images/p_menu/p_85.png" width="10%" height="36" align="center">
|
306
|
+
<A HREF="./search.php?search_id=active_topics"
|
307
|
+
onMouseOver = "rollover('search_active')"
|
308
|
+
onMouseOut = "rollout('search_active')"
|
309
|
+
>
|
310
|
+
<IMG SRC="./styles/GnB/theme/images/buttons/at1.png"
|
311
|
+
NAME="search_active"
|
312
|
+
ALT="View active topics" BORDER=0
|
313
|
+
HEIGHT=36 WIDTH=150
|
314
|
+
>
|
315
|
+
</A>
|
316
|
+
<SCRIPT TYPE="text/javascript">
|
317
|
+
<!--
|
318
|
+
setrollover("./styles/GnB/theme/images/buttons/at2.png");
|
319
|
+
//-->
|
320
|
+
</SCRIPT>
|
321
|
+
</td>
|
322
|
+
<td align="center" width="60%">
|
323
|
+
Last visit was: Sun Jul 13, 2008 5:16 pm </td>
|
324
|
+
<td background="./styles/GnB/theme/images/p_menu/p_85.png" width="10%" height="36" align="center">
|
325
|
+
<A HREF="./search.php?search_id=newposts"
|
326
|
+
onMouseOver = "rollover('search_new')"
|
327
|
+
onMouseOut = "rollout('search_new')"
|
328
|
+
>
|
329
|
+
<IMG SRC="./styles/GnB/theme/images/buttons/np1.png"
|
330
|
+
NAME="search_new"
|
331
|
+
ALT="View new posts" BORDER=0
|
332
|
+
HEIGHT=36 WIDTH=150
|
333
|
+
>
|
334
|
+
</A>
|
335
|
+
<SCRIPT TYPE="text/javascript">
|
336
|
+
<!--
|
337
|
+
setrollover("./styles/GnB/theme/images/buttons/np2.png");
|
338
|
+
//-->
|
339
|
+
</SCRIPT>
|
340
|
+
</td>
|
341
|
+
<td background="./styles/GnB/theme/images/p_menu/p_85.png" width="10%" height="36" align="center">
|
342
|
+
<A HREF="./search.php?search_id=egosearch"
|
343
|
+
onMouseOver = "rollover('search_your')"
|
344
|
+
onMouseOut = "rollout('search_your')"
|
345
|
+
>
|
346
|
+
<IMG SRC="./styles/GnB/theme/images/buttons/yp1.png"
|
347
|
+
NAME="search_your"
|
348
|
+
ALT="View your posts" BORDER=0
|
349
|
+
HEIGHT=36 WIDTH=150
|
350
|
+
>
|
351
|
+
</A>
|
352
|
+
<SCRIPT TYPE="text/javascript">
|
353
|
+
<!--
|
354
|
+
setrollover("./styles/GnB/theme/images/buttons/yp2.png");
|
355
|
+
//-->
|
356
|
+
</SCRIPT>
|
357
|
+
</td>
|
358
|
+
</tr>
|
359
|
+
</table>
|
360
|
+
</td>
|
361
|
+
<td><img src="./styles/GnB/theme/images/p_menu/p_09.png" width="61" height="45" alt=""></td>
|
362
|
+
</table>
|
363
|
+
</tr>
|
364
|
+
<tr>
|
365
|
+
<table id="bx" height="40" border="0" cellpadding="0" cellspacing="0">
|
366
|
+
<td><img src="./styles/GnB/theme/images/p_menu/p_10.png" width="61" height="40" alt=""></td>
|
367
|
+
<td background="./styles/GnB/theme/images/p_menu/p_11.png" width="50%" height="40"></td>
|
368
|
+
<td background="./styles/GnB/theme/images/p_menu/clock.png" width="350" height="40">
|
369
|
+
<p class="gensmallclock" align="center">
|
370
|
+
<script language="javascript" src="./styles/GnB/template/liveclock.js">
|
371
|
+
</script>
|
372
|
+
</p>
|
373
|
+
</td>
|
374
|
+
<td background="./styles/GnB/theme/images/p_menu/p_11.png" width="20%" height="40"></td>
|
375
|
+
<td background="./styles/GnB/theme/images/p_menu/p_11.png" width="30%" height="40" align="right">
|
376
|
+
<a href="./ucp.php?mode=delete_cookies">Delete all board cookies</a>
|
377
|
+
</td>
|
378
|
+
<td><img src="./styles/GnB/theme/images/p_menu/p_13.png" width="61" height="40" alt=""></td>
|
379
|
+
</table>
|
380
|
+
</tr>
|
381
|
+
</table>
|
382
|
+
|
383
|
+
<table width="100%" cellspacing="0" cellpadding="0" style="margin-top: 5px;">
|
384
|
+
<tr>
|
385
|
+
<td><img src="./styles/GnB/theme/images/nav01.png" width="46" height="55" alt=""></td>
|
386
|
+
|
387
|
+
<td width="100%" background="./styles/GnB/theme/images/nav02.png" width="100%" height="55">
|
388
|
+
<p class="breadcrumbs"><a href="./index.php">Board index</a> » <a href="./viewforum.php?f=11">GnB Chat</a> » <a href="./viewforum.php?f=37">tester</a></p>
|
389
|
+
<p class="datetime">All times are UTC - 8 hours [ <abbr title="Daylight Saving Time">DST</abbr> ]</p>
|
390
|
+
</td>
|
391
|
+
<td><img src="./styles/GnB/theme/images/nav03.png" width="46" height="55" alt=""></td>
|
392
|
+
|
393
|
+
</tr>
|
394
|
+
</table>
|
395
|
+
<br />
|
396
|
+
<div id="pageheader">
|
397
|
+
<h2><a class="titles" href="./viewtopic.php?f=37&t=205&start=0&st=0&sk=t&sd=a">zazzle razzle razzle geewiz</a></h2>
|
398
|
+
|
399
|
+
<p class="moderators">Moderator: <a href="./memberlist.php?mode=viewprofile&u=58">dragonmike</a></p>
|
400
|
+
</div>
|
401
|
+
|
402
|
+
<br clear="all" /><br />
|
403
|
+
|
404
|
+
<div id="pagecontent">
|
405
|
+
|
406
|
+
<table width="100%" cellspacing="1">
|
407
|
+
<tr>
|
408
|
+
<td align="left" valign="middle" nowrap="nowrap">
|
409
|
+
|
410
|
+
|
411
|
+
|
412
|
+
<A
|
413
|
+
HREF="./posting.php?mode=post&f=37"
|
414
|
+
onMouseOver = "rollover('new_topic')"
|
415
|
+
onMouseOut = "rollout('new_topic')"
|
416
|
+
><IMG
|
417
|
+
SRC="./styles/GnB/theme/images/buttons/new_topic1.png"
|
418
|
+
NAME="new_topic"
|
419
|
+
ALT="Home Page" BORDER=0
|
420
|
+
HEIGHT=45 WIDTH=120
|
421
|
+
></A>
|
422
|
+
<SCRIPT TYPE="text/javascript">
|
423
|
+
<!--
|
424
|
+
setrollover("./styles/GnB/theme/images/buttons/new_topic2.png");
|
425
|
+
//-->
|
426
|
+
</SCRIPT>
|
427
|
+
|
428
|
+
|
429
|
+
|
430
|
+
|
431
|
+
<A
|
432
|
+
HREF="./posting.php?mode=reply&f=37&t=205"
|
433
|
+
onMouseOver = "rollover('post_reply')"
|
434
|
+
onMouseOut = "rollout('post_reply')"
|
435
|
+
><IMG
|
436
|
+
SRC="./styles/GnB/theme/images/buttons/post_reply1.png"
|
437
|
+
NAME="post_reply"
|
438
|
+
ALT="Home Page" BORDER=0
|
439
|
+
HEIGHT=45 WIDTH=120
|
440
|
+
></A>
|
441
|
+
<SCRIPT TYPE="text/javascript">
|
442
|
+
<!--
|
443
|
+
setrollover("./styles/GnB/theme/images/buttons/post_reply2.png");
|
444
|
+
//-->
|
445
|
+
</SCRIPT>
|
446
|
+
|
447
|
+
</td>
|
448
|
+
|
449
|
+
|
450
|
+
|
451
|
+
|
452
|
+
|
453
|
+
<td class="nav" valign="middle" nowrap="nowrap"> Page <strong>1</strong> of <strong>1</strong><br /></td>
|
454
|
+
<td class="gensmall" nowrap="nowrap"> [ 1 post ] </td>
|
455
|
+
<td class="gensmall" width="100%" align="right" nowrap="nowrap"></td>
|
456
|
+
</tr>
|
457
|
+
</table>
|
458
|
+
|
459
|
+
<table id="bx" width="100%" border="0" cellpadding="0" cellspacing="0">
|
460
|
+
<tr>
|
461
|
+
<td><img src="./styles/GnB/theme/images/box_01.png" width="41" height="48" alt=""></td>
|
462
|
+
<td background="./styles/GnB/theme/images/box_02.png" width="100%" height="48">
|
463
|
+
|
464
|
+
<table width="100%" cellspacing="0">
|
465
|
+
<tr>
|
466
|
+
<td nowrap="nowrap"><h6>
|
467
|
+
<a href="./viewtopic.php?f=37&t=205&watch=topic&start=0" title="Subscribe topic">Subscribe topic</a> | <a href="./viewtopic.php?f=37&t=205&start=0&st=0&sk=t&sd=a&bookmark=1" title="Bookmark topic">Bookmark topic</a> | <a href="./viewtopic.php?f=37&t=205&start=0&st=0&sk=t&sd=a&view=print" title="Print view">Print view</a> | <a href="./memberlist.php?mode=email&t=205" title="E-mail friend">E-mail friend</a> </h6></td>
|
468
|
+
<td align="right" nowrap="nowrap"><h6><a href="./viewtopic.php?f=37&t=205&view=previous">Previous topic</a> | <a href="./viewtopic.php?f=37&t=205&view=next">Next topic</a> </h6></td>
|
469
|
+
</tr>
|
470
|
+
</table>
|
471
|
+
|
472
|
+
</td>
|
473
|
+
<td><img src="./styles/GnB/theme/images/box_04.png" width="41" height="48" alt=""></td>
|
474
|
+
</tr>
|
475
|
+
<tr>
|
476
|
+
<td background="./styles/GnB/theme/images/box_08.png" width="48" height="100%"></td>
|
477
|
+
<td>
|
478
|
+
|
479
|
+
<table class="tablebg" width="100%" cellspacing="1">
|
480
|
+
</table>
|
481
|
+
|
482
|
+
<table class="tablebg" width="100%" cellspacing="1">
|
483
|
+
<tr>
|
484
|
+
<th>Author</th>
|
485
|
+
<th>Message</th>
|
486
|
+
</tr>
|
487
|
+
<tr class="rowf1">
|
488
|
+
<td align="center" valign="middle">
|
489
|
+
<a name="p2670"></a>
|
490
|
+
|
491
|
+
|
492
|
+
<img src="./styles/GnB/imageset/en/icon_user_online.gif" alt="Online" title="Online" />
|
493
|
+
|
494
|
+
<b class="postauthor"
|
495
|
+
>tester</b>
|
496
|
+
</td>
|
497
|
+
<td width="100%" height="25">
|
498
|
+
<table width="100%" cellspacing="0">
|
499
|
+
<tr>
|
500
|
+
<td class="gensmall" width="100%"><div style="float: left;"> <b>Post subject:</b> zazzle razzle razzle geewiz</div><div style="float: right;"><a href="./viewtopic.php?p=2670#p2670"><img src="./styles/GnB/imageset/icon_post_target.png" width="12" height="9" alt="Post" title="Post" /></a><b>Posted:</b> Mon Jul 14, 2008 10:02 am </div></td>
|
501
|
+
</tr>
|
502
|
+
</table>
|
503
|
+
</td>
|
504
|
+
</tr>
|
505
|
+
|
506
|
+
<tr class="rowf1">
|
507
|
+
<td valign="top" class="profile" align="center">
|
508
|
+
<table id="jim" align="center" width="190">
|
509
|
+
<td>
|
510
|
+
<table id="jim2" cellspacing="6" border="0" align="center" width="175">
|
511
|
+
|
512
|
+
|
513
|
+
<tr>
|
514
|
+
<td align="center"><img src="./download/file.php?avatar=57_1214859787.jpg" width="110" height="122" alt="User avatar" /></td>
|
515
|
+
</tr>
|
516
|
+
<tr>
|
517
|
+
<td class="postdetails" align="center">Nemacyst-ish</td>
|
518
|
+
</tr>
|
519
|
+
<tr>
|
520
|
+
<td align="center"><img src="./images/ranks/GnBphoto.png" alt="Nemacyst-ish" title="Nemacyst-ish" /></td>
|
521
|
+
</tr>
|
522
|
+
|
523
|
+
|
524
|
+
<td>
|
525
|
+
<span class="postdetails">
|
526
|
+
<br /><b style="color: ">Joined:</b> Mon Jun 30, 2008 1:31 pm<br /><b style="color: ">Posts:</b> 11<br /><b style="color: ">Location:</b> aServer</td>
|
527
|
+
</span>
|
528
|
+
</table>
|
529
|
+
</td>
|
530
|
+
</table>
|
531
|
+
</td>
|
532
|
+
|
533
|
+
|
534
|
+
<td valign="top">
|
535
|
+
<table width="100%" cellspacing="5">
|
536
|
+
<tr>
|
537
|
+
<td>
|
538
|
+
|
539
|
+
<div class="postbody">razzle lalalala geewiz zoo zoo geewiz lalalala fuzu fuzu fuzu geewiz</div>
|
540
|
+
|
541
|
+
<span class="postbody"><br />
|
542
|
+
<table width="100%" align="center">
|
543
|
+
<tr align="center">
|
544
|
+
<td><img src="./styles/GnB/theme/images/sig.png" width="480" height="24"></td>
|
545
|
+
</tr>
|
546
|
+
</table>
|
547
|
+
<br />"L1V1N6 V1C4R10U5LY 7HRU GnB 51NC5 2008" - tester<br />Send MMS (cell pics) to: <!-- e --><a href="mailto:tester@example.com">tester@example.com.com</a><!-- e --></span>
|
548
|
+
<br clear="all" /><br />
|
549
|
+
<table width="100%" cellspacing="0">
|
550
|
+
<tr valign="middle">
|
551
|
+
<td class="gensmall" align="right">
|
552
|
+
<a href="./report.php?f=37&p=2670"><img src="./styles/GnB/imageset/en/icon_post_report.png" alt="Report this post" title="Report this post" /></a> <a href="./posting.php?mode=delete&f=37&p=2670"><img src="./styles/GnB/imageset/en/icon_post_delete.png" alt="Delete post" title="Delete post" /></a> </td>
|
553
|
+
</tr>
|
554
|
+
</table>
|
555
|
+
</td>
|
556
|
+
</tr>
|
557
|
+
</table>
|
558
|
+
</td>
|
559
|
+
</tr>
|
560
|
+
|
561
|
+
<tr class="rowf1">
|
562
|
+
<td class="profile"><strong><a href="#wrapheader">Top</a></strong></td>
|
563
|
+
<td><div class="gensmall" style="float: left;"> <a href="./memberlist.php?mode=viewprofile&u=57"><img src="./styles/GnB/imageset/en/icon_user_profile.png" alt="Profile" title="Profile" /></a> <a href="./ucp.php?i=pm&mode=compose&action=quotepost&p=2670"><img src="./styles/GnB/imageset/en/icon_contact_pm.png" alt="Send private message" title="Send private message" /></a> </div> <div class="gensmall" style="float: right;"><a href="./posting.php?mode=edit&f=37&p=2670"><img src="./styles/GnB/imageset/en/icon_post_edit.png" alt="Edit post" title="Edit post" /></a> <a href="./posting.php?mode=quote&f=37&p=2670"><img src="./styles/GnB/imageset/en/icon_post_quote.png" alt="Reply with quote" title="Reply with quote" /></a> </div></td>
|
564
|
+
|
565
|
+
|
566
|
+
</tr>
|
567
|
+
<tr>
|
568
|
+
<td class="spacer" colspan="2" height="1"><img src="images/spacer.gif" alt="" width="1" height="1" /></td>
|
569
|
+
</tr>
|
570
|
+
</table>
|
571
|
+
|
572
|
+
|
573
|
+
|
574
|
+
|
575
|
+
|
576
|
+
<table width="100%" class="tablebg" border="0" cellpadding="0" cellspacing="1" align="right">
|
577
|
+
<tr align="right">
|
578
|
+
<td class="row1" width="30%" align="right">
|
579
|
+
<form method="post" name="search" action="./search.php?t=205"><span class="gensmall">Search for:</span> <input class="post" type="text" name="keywords" size="20" /> <input class="btnlite" type="submit" value="Go" /></form></td>
|
580
|
+
</tr>
|
581
|
+
</table>
|
582
|
+
|
583
|
+
|
584
|
+
|
585
|
+
|
586
|
+
|
587
|
+
|
588
|
+
|
589
|
+
</td>
|
590
|
+
<td background="./styles/GnB/theme/images/box_09.png" width="41" height="100%"></td>
|
591
|
+
</tr>
|
592
|
+
<tr>
|
593
|
+
<td><img src="./styles/GnB/theme/images/box_10.png" width="41" height="46" alt=""></td>
|
594
|
+
<td background="./styles/GnB/theme/images/box_11.png" width="100%" height="46" align="center">
|
595
|
+
<form name="viewtopic" method="post" action="./viewtopic.php?f=37&t=205&start=0"><span class="gensmall2">Display posts from previous:</span> <select name="st" id="st"><option value="0" selected="selected">All posts</option><option value="1">1 day</option><option value="7">7 days</option><option value="14">2 weeks</option><option value="30">1 month</option><option value="90">3 months</option><option value="180">6 months</option><option value="365">1 year</option></select> <span class="gensmall2">Sort by</span> <select name="sk" id="sk"><option value="a">Author</option><option value="t" selected="selected">Post time</option><option value="s">Subject</option></select> <select name="sd" id="sd"><option value="a" selected="selected">Ascending</option><option value="d">Descending</option></select> <input class="btnlite" type="submit" value="Go" name="sort" /></form>
|
596
|
+
</td>
|
597
|
+
<td><img src="./styles/GnB/theme/images/box_13.png" width="41" height="46" alt=""></td>
|
598
|
+
</tr>
|
599
|
+
</table>
|
600
|
+
|
601
|
+
<table width="100%" cellspacing="1">
|
602
|
+
<tr>
|
603
|
+
<td align="left" valign="middle" nowrap="nowrap">
|
604
|
+
|
605
|
+
|
606
|
+
|
607
|
+
<A
|
608
|
+
HREF="./posting.php?mode=post&f=37"
|
609
|
+
onMouseOver = "rollover('new_topic2')"
|
610
|
+
onMouseOut = "rollout('new_topic2')"
|
611
|
+
><IMG
|
612
|
+
SRC="./styles/GnB/theme/images/buttons/new_topic1.png"
|
613
|
+
NAME="new_topic2"
|
614
|
+
ALT="Home Page" BORDER=0
|
615
|
+
HEIGHT=45 WIDTH=120
|
616
|
+
></A>
|
617
|
+
<SCRIPT TYPE="text/javascript">
|
618
|
+
<!--
|
619
|
+
setrollover("./styles/GnB/theme/images/buttons/new_topic2.png");
|
620
|
+
//-->
|
621
|
+
</SCRIPT>
|
622
|
+
|
623
|
+
|
624
|
+
|
625
|
+
|
626
|
+
|
627
|
+
<A
|
628
|
+
HREF="./posting.php?mode=reply&f=37&t=205"
|
629
|
+
onMouseOver = "rollover('post_reply2')"
|
630
|
+
onMouseOut = "rollout('post_reply2')"
|
631
|
+
><IMG
|
632
|
+
SRC="./styles/GnB/theme/images/buttons/post_reply1.png"
|
633
|
+
NAME="post_reply2"
|
634
|
+
ALT="Home Page" BORDER=0
|
635
|
+
HEIGHT=45 WIDTH=120
|
636
|
+
></A>
|
637
|
+
<SCRIPT TYPE="text/javascript">
|
638
|
+
<!--
|
639
|
+
setrollover("./styles/GnB/theme/images/buttons/post_reply2.png");
|
640
|
+
//-->
|
641
|
+
</SCRIPT>
|
642
|
+
|
643
|
+
|
644
|
+
</td>
|
645
|
+
<td class="nav" valign="middle" nowrap="nowrap"> Page <strong>1</strong> of <strong>1</strong><br /></td>
|
646
|
+
<td class="gensmall" nowrap="nowrap"> [ 1 post ] </td>
|
647
|
+
<td class="gensmall" width="100%" align="right" nowrap="nowrap"></td>
|
648
|
+
</tr>
|
649
|
+
</table>
|
650
|
+
</div>
|
651
|
+
|
652
|
+
<div id="pagefooter"></div>
|
653
|
+
|
654
|
+
<br clear="all" />
|
655
|
+
|
656
|
+
<table width="100%" cellspacing="0" cellpadding="0" style="margin-top: 5px;">
|
657
|
+
<tr>
|
658
|
+
<td><img src="./styles/GnB/theme/images/nav01.png" width="46" height="55" alt=""></td>
|
659
|
+
|
660
|
+
<td width="100%" background="./styles/GnB/theme/images/nav02.png" width="100%" height="55">
|
661
|
+
<p class="breadcrumbs"><a href="./index.php">Board index</a> » <a href="./viewforum.php?f=11">GnB Chat</a> » <a href="./viewforum.php?f=37">tester</a></p>
|
662
|
+
<p class="datetime">All times are UTC - 8 hours [ <abbr title="Daylight Saving Time">DST</abbr> ]</p>
|
663
|
+
</td>
|
664
|
+
<td><img src="./styles/GnB/theme/images/nav03.png" width="46" height="55" alt=""></td>
|
665
|
+
|
666
|
+
</tr>
|
667
|
+
</table> <br clear="all" />
|
668
|
+
|
669
|
+
<table id="bx" width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
|
670
|
+
|
671
|
+
<tr>
|
672
|
+
|
673
|
+
<table id="bx" width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
|
674
|
+
|
675
|
+
<td><img src="./styles/GnB/theme/images/box_01.png" width="41" height="48" alt=""></td>
|
676
|
+
<td background="./styles/GnB/theme/images/box_02.png" width="50%" height="48">
|
677
|
+
<td background="./styles/GnB/theme/images/cu.png" width="350" height="48"><h4 align="center">Who is online</h4></td>
|
678
|
+
<td background="./styles/GnB/theme/images/box_02.png" width="50%" height="48">
|
679
|
+
|
680
|
+
<td><img src="./styles/GnB/theme/images/box_04.png" width="41" height="48" alt=""></td>
|
681
|
+
|
682
|
+
</table>
|
683
|
+
|
684
|
+
</tr>
|
685
|
+
<tr>
|
686
|
+
<table id="bx" width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
|
687
|
+
|
688
|
+
<td background="./styles/GnB/theme/images/box_08.png" width="41" height="100%"></td>
|
689
|
+
<td>
|
690
|
+
|
691
|
+
<table class="tablebg" width="100%" cellspacing="1">
|
692
|
+
<tr>
|
693
|
+
<td class="row1"><p class="gensmall">Users browsing this forum: <a href="./memberlist.php?mode=viewprofile&u=57">tester</a> and 0 guests</p></td>
|
694
|
+
</tr>
|
695
|
+
</table>
|
696
|
+
|
697
|
+
</td>
|
698
|
+
<td background="./styles/GnB/theme/images/box_09.png" width="9" height="100%"></td>
|
699
|
+
</tr>
|
700
|
+
<tr>
|
701
|
+
<td><img src="./styles/GnB/theme/images/box_10.png" width="41" height="46" alt=""></td>
|
702
|
+
<td background="./styles/GnB/theme/images/box_11.png" width="100%" height="46"></td>
|
703
|
+
<td><img src="./styles/GnB/theme/images/box_13.png" width="41" height="46" alt=""></td>
|
704
|
+
</tr>
|
705
|
+
</table>
|
706
|
+
|
707
|
+
<br clear="all" />
|
708
|
+
|
709
|
+
|
710
|
+
|
711
|
+
|
712
|
+
|
713
|
+
|
714
|
+
<table id="bx" width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
|
715
|
+
<tr>
|
716
|
+
<table id="bx" width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
|
717
|
+
|
718
|
+
<td><img src="./styles/GnB/theme/images/box_01.png" width="41" height="48" alt=""></td>
|
719
|
+
<td background="./styles/GnB/theme/images/box_02.png" width="50%" height="48"></td>
|
720
|
+
<td background="./styles/GnB/theme/images/box_02.png" width="50%" height="48"></td>
|
721
|
+
|
722
|
+
<td><img src="./styles/GnB/theme/images/box_04.png" width="41" height="48" alt=""></td>
|
723
|
+
|
724
|
+
</table>
|
725
|
+
</tr>
|
726
|
+
|
727
|
+
<tr>
|
728
|
+
<table id="bx" width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
|
729
|
+
|
730
|
+
<td background="./styles/GnB/theme/images/box_08.png" width="41" height="100%"></td>
|
731
|
+
<td>
|
732
|
+
|
733
|
+
|
734
|
+
|
735
|
+
|
736
|
+
|
737
|
+
|
738
|
+
|
739
|
+
|
740
|
+
|
741
|
+
<table class="row1" width="100%" cellspacing="1">
|
742
|
+
<tr>
|
743
|
+
<td width="40%" valign="middle" nowrap="nowrap" align="left"><form method="post" action="./mcp.php?f=37&t=205&quickmod=1&redirect=.%2Fviewtopic.php%3Ff%3D37%26t%3D205%26start%3D0%26st%3D0%26sk%3Dt%26sd%3Da&sid=de536e272d3aa936541638e533737724"><span class="gensmall">Quick-mod tools:</span> <select name="action" id="quick-mod-select"><option value="lock">Lock topic</option><option value="make_sticky">Change to “Sticky”</option><option value="make_announce">Change to “Announcement”</option><option value="make_global">Change to “Global”</option></select> <input class="btnlite" type="submit" value="Go" /></form></td>
|
744
|
+
<td align="right" valign="top" nowrap="nowrap"><span class="gensmall">You <strong>can</strong> post new topics in this forum<br />You <strong>can</strong> reply to topics in this forum<br />You <strong>can</strong> edit your posts in this forum<br />You <strong>can</strong> delete your posts in this forum<br />You <strong>can</strong> post attachments in this forum<br /></span></td>
|
745
|
+
</tr>
|
746
|
+
</table>
|
747
|
+
|
748
|
+
|
749
|
+
|
750
|
+
<table class="row1" width="100%" cellspacing="0">
|
751
|
+
<tr>
|
752
|
+
|
753
|
+
|
754
|
+
|
755
|
+
|
756
|
+
|
757
|
+
<td align="right"> <form method="post" name="jumpbox" action="./viewforum.php" onsubmit="if(document.jumpbox.f.value == -1){return false;}">
|
758
|
+
|
759
|
+
<table cellspacing="0" cellpadding="0" border="0">
|
760
|
+
<tr>
|
761
|
+
<td nowrap="nowrap"><span class="gensmall">Jump to:</span> <select name="f" onchange="if(this.options[this.selectedIndex].value != -1){ document.forms['jumpbox'].submit() }">
|
762
|
+
|
763
|
+
<option value="-1">Select a forum</option>
|
764
|
+
<option value="-1">------------------</option> <option value="5">Welcome Center</option>
|
765
|
+
<option value="6"> Orientation</option>
|
766
|
+
<option value="7"> Help</option>
|
767
|
+
<option value="8">Seriously</option>
|
768
|
+
<option value="9"> Game of Fame</option>
|
769
|
+
<option value="10"> Club 1000</option>
|
770
|
+
<option value="11">GnB Chat</option>
|
771
|
+
<option value="12"> Gears & Beers</option>
|
772
|
+
<option value="13"> The Pub</option>
|
773
|
+
<option value="23"> Member Blogs</option>
|
774
|
+
<option value="27"> BluStorm3D's Realm</option>
|
775
|
+
<option value="25"> Cappi's Blabs</option>
|
776
|
+
<option value="40"> Archive</option>
|
777
|
+
<option value="41"> Cappi's Current Chronicles</option>
|
778
|
+
<option value="38"> chachi's wax</option>
|
779
|
+
<option value="29"> Greeney's Corner</option>
|
780
|
+
<option value="34"> Hannie's Hale</option>
|
781
|
+
<option value="36"> Jag's Jibba Jabba</option>
|
782
|
+
<option value="35"> McSwiggs McBlogosphere</option>
|
783
|
+
<option value="26"> Pinky's Closet</option>
|
784
|
+
<option value="32"> Straight from Quahog</option>
|
785
|
+
<option value="30"> The Smiths Temple</option>
|
786
|
+
<option value="31"> The Sith Temple</option>
|
787
|
+
<option value="39"> The Dead Room</option>
|
788
|
+
<option value="33"> Volkmann's House of Mirrors</option>
|
789
|
+
<option value="42"> Welcome to Jamo's</option>
|
790
|
+
<option value="15"> Other Games</option>
|
791
|
+
<option value="16"> Upcoming Titles of Interest</option>
|
792
|
+
<option value="22"> Xbox Live Arcade</option>
|
793
|
+
<option value="17"> Call of Duty 4: Modern Warfare</option>
|
794
|
+
<option value="18"> Ghost Recon: Advanced Warfighter 2</option>
|
795
|
+
<option value="19"> Grand Theft Auto IV</option>
|
796
|
+
<option value="20"> Halo 3</option>
|
797
|
+
<option value="21"> Rainbow 6: Vegas 1 & 2</option>
|
798
|
+
<option value="43"> Unreal Tournament III</option>
|
799
|
+
<option value="37" selected="selected"> gnbphotobot</option>
|
800
|
+
<option value="44"> Movie Mania</option>
|
801
|
+
|
802
|
+
</select> <input class="btnlite" type="submit" value="Go" /></td>
|
803
|
+
</tr>
|
804
|
+
</table>
|
805
|
+
|
806
|
+
</form>
|
807
|
+
</td>
|
808
|
+
</tr>
|
809
|
+
</table>
|
810
|
+
|
811
|
+
|
812
|
+
|
813
|
+
|
814
|
+
</td>
|
815
|
+
<td background="./styles/GnB/theme/images/box_09.png" width="41" height="100%"></td>
|
816
|
+
|
817
|
+
</table>
|
818
|
+
</tr>
|
819
|
+
<tr>
|
820
|
+
<table id="bx" width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
|
821
|
+
|
822
|
+
<td><img src="./styles/GnB/theme/images/box_10.png" width="41" height="46" alt=""></td>
|
823
|
+
<td background="./styles/GnB/theme/images/box_11.png" width="100%" height="46"></td>
|
824
|
+
<td><img src="./styles/GnB/theme/images/box_13.png" width="41" height="46" alt=""></td>
|
825
|
+
</table>
|
826
|
+
</tr>
|
827
|
+
</table>
|
828
|
+
|
829
|
+
|
830
|
+
|
831
|
+
|
832
|
+
</div>
|
833
|
+
|
834
|
+
<!--
|
835
|
+
We request you retain the full copyright notice below including the link to www.phpbb.com.
|
836
|
+
This not only gives respect to the large amount of time given freely by the developers
|
837
|
+
but also helps build interest, traffic and use of phpBB3. If you (honestly) cannot retain
|
838
|
+
the full copyright we ask you at least leave in place the "Powered by phpBB" line, with
|
839
|
+
"phpBB" linked to www.phpbb.com. If you refuse to include even this then support on our
|
840
|
+
forums may be affected.
|
841
|
+
|
842
|
+
The phpBB Group : 2006
|
843
|
+
//-->
|
844
|
+
|
845
|
+
<div id="wrapfooter">
|
846
|
+
|
847
|
+
|
848
|
+
|
849
|
+
</div>
|
850
|
+
|
851
|
+
|
852
|
+
|
853
|
+
|
854
|
+
|
855
|
+
|
856
|
+
|
857
|
+
<table id="bx" width="100%" height="99" border="0" cellpadding="0" cellspacing="0">
|
858
|
+
<td><img src="./styles/GnB/theme/images/footer/f_01.png" width="81" height="99" alt=""></td>
|
859
|
+
<td background="./styles/GnB/theme/images/footer/f_02.png" width="100%" height="99" alt=""></td>
|
860
|
+
<td><img src="./styles/GnB/theme/images/footer/f_03.png" width="82" height="99" alt=""></td>
|
861
|
+
</table>
|
862
|
+
|
863
|
+
|
864
|
+
<table id="bx" width="100%" height="89" border="0" cellpadding="0" cellspacing="0">
|
865
|
+
<td><img src="./styles/GnB/theme/images/footer/f_10.png" width="81" height="89" alt=""></td>
|
866
|
+
<td><a href="http://www.phpbb.com"><img src="./styles/GnB/theme/images/footer/f_11.png" width="170" height="89" alt=""></a></td>
|
867
|
+
<td background="./styles/GnB/theme/images/footer/f_12.png" width="50%" height="89" alt=""></td>
|
868
|
+
<td><a href="http://www.phpbb-fox.info"><img src="./styles/GnB/theme/images/footer/f_13.png" width="120" height="89" alt=""></a></td>
|
869
|
+
<td background="./styles/GnB/theme/images/footer/f_12.png" width="50%" height="89" alt=""></td>
|
870
|
+
<td><a href="http://www.phpbb-fox.info"><img src="./styles/GnB/theme/images/footer/f_14.png" width="170" height="89" alt=""></a></td>
|
871
|
+
<td><img src="./styles/GnB/theme/images/footer/f_15.png" width="82" height="89" alt=""></td>
|
872
|
+
|
873
|
+
</table>
|
874
|
+
|
875
|
+
<table id="bx" width="100%" border="0" cellpadding="0" cellspacing="0" align="center">
|
876
|
+
|
877
|
+
<tr>
|
878
|
+
<td align="center"
|
879
|
+
</span>
|
880
|
+
</td>
|
881
|
+
</tr>
|
882
|
+
</table>
|
883
|
+
|
884
|
+
|
885
|
+
|
886
|
+
|
887
|
+
|
888
|
+
|
889
|
+
|
890
|
+
|
891
|
+
|
892
|
+
|
893
|
+
</body>
|
894
|
+
</html>
|