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
@@ -2,14 +2,23 @@
|
|
2
2
|
<html dir="ltr"><head>
|
3
3
|
|
4
4
|
|
5
|
-
<meta http-equiv="Content-Type" content="text/html; charset=
|
6
|
-
<meta http-equiv="Content-Style-Type" content="text/css"
|
7
|
-
|
8
|
-
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
6
|
+
<meta http-equiv="Content-Style-Type" content="text/css">
|
9
7
|
|
8
|
+
<link rel="top" href="http://example.com/forum/index.php" title="EXAMPLE.COM Forum Index">
|
9
|
+
<link rel="search" href="http://example.com/forum/search.php" title="Search">
|
10
|
+
<link rel="help" href="http://example.com/forum/faq.php" title="FAQ">
|
11
|
+
<link rel="author" href="http://example.com/forum/memberlist.php" title="Memberlist">
|
10
12
|
|
13
|
+
<title>EXAMPLE.COM :: Log in</title>
|
14
|
+
<!-- link rel="stylesheet" href="templates/subSilver/subsilver.css" type="text/css" -->
|
11
15
|
<style type="text/css">
|
12
16
|
<!--
|
17
|
+
.dom_overview_abshidden {
|
18
|
+
position: absolute;
|
19
|
+
visibility: hidden;
|
20
|
+
width: 300px;
|
21
|
+
}
|
13
22
|
/*
|
14
23
|
The original subSilver Theme for phpBB version 2+
|
15
24
|
Created by subBlue design
|
@@ -22,32 +31,32 @@
|
|
22
31
|
|
23
32
|
/* General page style. The scroll bar colours only visible in IE5.5+ */
|
24
33
|
body {
|
25
|
-
background-color: #
|
26
|
-
scrollbar-face-color: #
|
27
|
-
scrollbar-highlight-color: #
|
28
|
-
scrollbar-shadow-color: #
|
29
|
-
scrollbar-3dlight-color: #
|
30
|
-
scrollbar-arrow-color: #
|
31
|
-
scrollbar-track-color: #
|
32
|
-
scrollbar-darkshadow-color: #
|
34
|
+
background-color: #336633;
|
35
|
+
scrollbar-face-color: #cbe3cb;
|
36
|
+
scrollbar-highlight-color: #ffffff;
|
37
|
+
scrollbar-shadow-color: #cbe3cb;
|
38
|
+
scrollbar-3dlight-color: #009b01;
|
39
|
+
scrollbar-arrow-color: #264E18;
|
40
|
+
scrollbar-track-color: #ffffff;
|
41
|
+
scrollbar-darkshadow-color: #d4d4d4;
|
33
42
|
}
|
34
43
|
|
35
44
|
/* General font families for common tags */
|
36
|
-
font,th,td,p { font-family:
|
37
|
-
a:link,a:active,a:visited { color : #
|
45
|
+
font,th,td,p { font-family: Arial }
|
46
|
+
a:link,a:active,a:visited { color : #264E18; }
|
38
47
|
a:hover { text-decoration: underline; color : #DD6900; }
|
39
|
-
hr { height: 0px; border: solid #
|
48
|
+
hr { height: 0px; border: solid #009b01 0px; border-top-width: 1px;}
|
40
49
|
|
41
50
|
/* This is the border line & background colour round the entire page */
|
42
|
-
.bodyline { background-color: #
|
51
|
+
.bodyline { background-color: #ffffff; border: 1px #d4d4d4 solid; }
|
43
52
|
|
44
53
|
/* This is the outline round the main forum tables */
|
45
|
-
.forumline { background-color: #
|
54
|
+
.forumline { background-color: #ffffff; border: 2px #46af47 solid; }
|
46
55
|
|
47
56
|
/* Main table cell colours and backgrounds */
|
48
|
-
td.row1 { background-color: #
|
49
|
-
td.row2 { background-color: #
|
50
|
-
td.row3 { background-color: #
|
57
|
+
td.row1 { background-color: #ffffff; }
|
58
|
+
td.row2 { background-color: #cbe3cb; }
|
59
|
+
td.row3 { background-color: #009b01; }
|
51
60
|
|
52
61
|
/*
|
53
62
|
This is for the table cell above the Topics, Post & Last posts on the index.php page
|
@@ -55,21 +64,21 @@ td.row3 { background-color: #D1D7DC; }
|
|
55
64
|
However, you could replace this with a bitmap specific for each forum
|
56
65
|
*/
|
57
66
|
td.rowpic {
|
58
|
-
background-color: #
|
59
|
-
background-image: url(templates/subSilver/images/
|
67
|
+
background-color: #ffffff;
|
68
|
+
background-image: url(templates/subSilver/images/);
|
60
69
|
background-repeat: repeat-y;
|
61
70
|
}
|
62
71
|
|
63
72
|
/* Header cells - the blue and silver gradient backgrounds */
|
64
73
|
th {
|
65
|
-
color: #
|
66
|
-
background-color: #
|
67
|
-
background-image: url(templates/subSilver/images/
|
74
|
+
color: #8080ff; font-size: 11px; font-weight : bold;
|
75
|
+
background-color: #264E18; height: 25px;
|
76
|
+
background-image: url(templates/subSilver/images/);
|
68
77
|
}
|
69
78
|
|
70
79
|
td.cat,td.catHead,td.catSides,td.catLeft,td.catRight,td.catBottom {
|
71
|
-
background-image: url(templates/subSilver/images/
|
72
|
-
background-color:#
|
80
|
+
background-image: url(templates/subSilver/images/);
|
81
|
+
background-color:#009b01; border: #ffffff; border-style: solid; height: 28px;
|
73
82
|
}
|
74
83
|
|
75
84
|
/*
|
@@ -82,10 +91,10 @@ td.cat,td.catHead,td.catBottom {
|
|
82
91
|
border-width: 0px 0px 0px 0px;
|
83
92
|
}
|
84
93
|
th.thHead,th.thSides,th.thTop,th.thLeft,th.thRight,th.thBottom,th.thCornerL,th.thCornerR {
|
85
|
-
font-weight: bold; border: #
|
94
|
+
font-weight: bold; border: #ffffff; border-style: solid; height: 28px;
|
86
95
|
}
|
87
96
|
td.row3Right,td.spaceRow {
|
88
|
-
background-color: #
|
97
|
+
background-color: #009b01; border: #ffffff; border-style: solid;
|
89
98
|
}
|
90
99
|
|
91
100
|
th.thHead,td.catHead { font-size: 12px; border-width: 1px 1px 0px 1px; }
|
@@ -99,7 +108,7 @@ th.thCornerR { border-width: 1px 1px 0px 0px; }
|
|
99
108
|
|
100
109
|
/* The largest text used in the index page title and toptic title etc. */
|
101
110
|
.maintitle {
|
102
|
-
font-weight: bold; font-size: 22px; font-family: "
|
111
|
+
font-weight: bold; font-size: 22px; font-family: "Arial",Arial;
|
103
112
|
text-decoration: none; line-height : 120%; color : #000000;
|
104
113
|
}
|
105
114
|
|
@@ -108,32 +117,32 @@ th.thCornerR { border-width: 1px 1px 0px 0px; }
|
|
108
117
|
.genmed { font-size : 11px; }
|
109
118
|
.gensmall { font-size : 10px; }
|
110
119
|
.gen,.genmed,.gensmall { color : #000000; }
|
111
|
-
a.gen,a.genmed,a.gensmall { color: #
|
120
|
+
a.gen,a.genmed,a.gensmall { color: #264E18; text-decoration: none; }
|
112
121
|
a.gen:hover,a.genmed:hover,a.gensmall:hover { color: #DD6900; text-decoration: underline; }
|
113
122
|
|
114
123
|
/* The register, login, search etc links at the top of the page */
|
115
124
|
.mainmenu { font-size : 11px; color : #000000 }
|
116
|
-
a.mainmenu { text-decoration: none; color : #
|
125
|
+
a.mainmenu { text-decoration: none; color : #264E18; }
|
117
126
|
a.mainmenu:hover{ text-decoration: underline; color : #DD6900; }
|
118
127
|
|
119
128
|
/* Forum category titles */
|
120
|
-
.cattitle { font-weight: bold; font-size: 12px ; letter-spacing: 1px; color : #
|
121
|
-
a.cattitle { text-decoration: none; color : #
|
129
|
+
.cattitle { font-weight: bold; font-size: 12px ; letter-spacing: 1px; color : #264E18}
|
130
|
+
a.cattitle { text-decoration: none; color : #264E18; }
|
122
131
|
a.cattitle:hover{ text-decoration: underline; }
|
123
132
|
|
124
133
|
/* Forum title: Text and link to the forums used in: index.php */
|
125
|
-
.forumlink { font-weight: bold; font-size: 12px; color : #
|
126
|
-
a.forumlink { text-decoration: none; color : #
|
134
|
+
.forumlink { font-weight: bold; font-size: 12px; color : #264E18; }
|
135
|
+
a.forumlink { text-decoration: none; color : #264E18; }
|
127
136
|
a.forumlink:hover{ text-decoration: underline; color : #DD6900; }
|
128
137
|
|
129
138
|
/* Used for the navigation text, (Page 1,2,3 etc) and the navigation bar when in a forum */
|
130
139
|
.nav { font-weight: bold; font-size: 11px; color : #000000;}
|
131
|
-
a.nav { text-decoration: none; color : #
|
140
|
+
a.nav { text-decoration: none; color : #264E18; }
|
132
141
|
a.nav:hover { text-decoration: underline; }
|
133
142
|
|
134
143
|
/* titles for the topics: could specify viewed link colour too */
|
135
144
|
.topictitle,h1,h2 { font-weight: bold; font-size: 11px; color : #000000; }
|
136
|
-
a.topictitle:link { text-decoration: none; color : #
|
145
|
+
a.topictitle:link { text-decoration: none; color : #264E18; }
|
137
146
|
a.topictitle:visited { text-decoration: none; color : #5493B4; }
|
138
147
|
a.topictitle:hover { text-decoration: underline; color : #DD6900; }
|
139
148
|
|
@@ -145,58 +154,58 @@ a.topictitle:hover { text-decoration: underline; color : #DD6900; }
|
|
145
154
|
|
146
155
|
/* The content of the posts (body of text) */
|
147
156
|
.postbody { font-size : 12px; line-height: 18px}
|
148
|
-
a.postlink:link { text-decoration: none; color : #
|
157
|
+
a.postlink:link { text-decoration: none; color : #264E18 }
|
149
158
|
a.postlink:visited { text-decoration: none; color : #5493B4; }
|
150
159
|
a.postlink:hover { text-decoration: underline; color : #DD6900}
|
151
160
|
|
152
161
|
/* Quote & Code blocks */
|
153
162
|
.code {
|
154
|
-
font-family:
|
155
|
-
background-color: #
|
163
|
+
font-family: verdana; font-size: 11px; color: #006600;
|
164
|
+
background-color: #46af47; border: #009b01; border-style: solid;
|
156
165
|
border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px
|
157
166
|
}
|
158
167
|
|
159
168
|
.quote {
|
160
|
-
font-family:
|
161
|
-
background-color: #
|
169
|
+
font-family: Arial; font-size: 11px; color: #444444; line-height: 125%;
|
170
|
+
background-color: #46af47; border: #009b01; border-style: solid;
|
162
171
|
border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px
|
163
172
|
}
|
164
173
|
|
165
174
|
/* Copyright and bottom info */
|
166
|
-
.copyright { font-size: 10px; font-family:
|
175
|
+
.copyright { font-size: 10px; font-family: Arial; color: #444444; letter-spacing: -1px;}
|
167
176
|
a.copyright { color: #444444; text-decoration: none;}
|
168
177
|
a.copyright:hover { color: #000000; text-decoration: underline;}
|
169
178
|
|
170
179
|
/* Form elements */
|
171
180
|
input,textarea, select {
|
172
181
|
color : #000000;
|
173
|
-
font: normal 11px
|
182
|
+
font: normal 11px Arial;
|
174
183
|
border-color : #000000;
|
175
184
|
}
|
176
185
|
|
177
186
|
/* The text input fields background colour */
|
178
187
|
input.post, textarea.post, select {
|
179
|
-
background-color : #
|
188
|
+
background-color : #ffffff;
|
180
189
|
}
|
181
190
|
|
182
191
|
input { text-indent : 2px; }
|
183
192
|
|
184
193
|
/* The buttons used for bbCode styling in message post */
|
185
194
|
input.button {
|
186
|
-
background-color : #
|
195
|
+
background-color : #ffffff;
|
187
196
|
color : #000000;
|
188
|
-
font-size: 11px; font-family:
|
197
|
+
font-size: 11px; font-family: Arial;
|
189
198
|
}
|
190
199
|
|
191
200
|
/* The main submit button option */
|
192
201
|
input.mainoption {
|
193
|
-
background-color : #
|
202
|
+
background-color : #46af47;
|
194
203
|
font-weight : bold;
|
195
204
|
}
|
196
205
|
|
197
206
|
/* None-bold submit button */
|
198
207
|
input.liteoption {
|
199
|
-
background-color : #
|
208
|
+
background-color : #46af47;
|
200
209
|
font-weight : normal;
|
201
210
|
}
|
202
211
|
|
@@ -204,130 +213,507 @@ input.liteoption {
|
|
204
213
|
help line. This is actually a text box, but if set to be the same
|
205
214
|
colour as the background no one will know ;)
|
206
215
|
*/
|
207
|
-
.helpline { background-color: #
|
216
|
+
.helpline { background-color: #cbe3cb; border-style: none; }
|
208
217
|
|
209
218
|
/* Import the fancy styles for IE only (NS4.x doesn't use the @import function) */
|
210
219
|
@import url("templates/subSilver/formIE.css");
|
211
220
|
-->
|
212
221
|
</style>
|
213
|
-
<script language="Javascript"
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
222
|
+
<script language="Javascript">
|
223
|
+
var win = null;
|
224
|
+
function Gk_PopTart(mypage,myname,w,h,scroll)
|
225
|
+
{
|
226
|
+
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
|
227
|
+
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
|
228
|
+
settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable=yes';
|
229
|
+
win = window.open(mypage,myname,settings);
|
230
|
+
}
|
231
|
+
</script>
|
232
|
+
</head><body link="#264e18" text="#000000" vlink="#5493b4" bgcolor="#336633">
|
221
233
|
|
222
234
|
<a name="top"></a>
|
223
235
|
|
224
|
-
<table align="center" border="0" cellpadding="10" cellspacing="0"
|
236
|
+
<table width="100%" align="center" border="0" cellpadding="10" cellspacing="0">
|
225
237
|
<tbody><tr>
|
226
|
-
<td class="bodyline"><
|
238
|
+
<td class="bodyline"><div align="center"><a href="http://example.com/forum/index.php"><img src="not_files/greenforumheader.gif" alt="EXAMPLE.COM Forum Index" vspace="1" border="0"></a>
|
239
|
+
</div>
|
240
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
227
241
|
<tbody><tr>
|
228
|
-
<td
|
229
|
-
|
242
|
+
<td valign="middle" width="100%" align="center"><span class="maintitle"><br>
|
243
|
+
EXAMPLE.COM</span><br>
|
244
|
+
<span class="gen">Skateboarding, music, nightlife and other shenanigans<br>Remember - registered users can see all forums so sign up <link rel="search" type="application/opensearchdescription+xml" title="EXAMPLE" href="http://example.com/forum/search.xml"><br> </span>
|
245
|
+
<center><span class="mainmenu"><a href="http://example.com/forum/calendar.php" class="mainmenu"><img src="not_files/icon_mini_calendar.gif" alt="Calendar" height="13" hspace="3" width="12" border="0">Calendar</a> <a href="http://example.com/forum/gp.php" class="mainmenu"><img src="not_files/gp.gif" alt="GP GeoForum" height="18" hspace="3" width="19" border="0">GoogleMAP</a> <a href="http://example.com/forum/faq.php" class="mainmenu"><img src="not_files/icon_mini_faq.gif" alt="FAQ" height="13" hspace="3" width="12" border="0">FAQ</a> <a href="http://example.com/forum/shop.php" class="mainmenu"><img src="not_files/icon_shop.gif" alt="Shops" height="13" hspace="3" width="12" border="0">Shops</a> <a href="http://example.com/forum/search.php" class="mainmenu"><img src="not_files/icon_mini_search.gif" alt="Search" height="13" hspace="3" width="12" border="0">Search</a> <a href="http://example.com/forum/memberlist.php" class="mainmenu"><img src="not_files/icon_mini_members.gif" alt="Memberlist" height="13" hspace="3" width="12" border="0">Memberlist</a> <a href="http://example.com/forum/groupcp.php" class="mainmenu"><img src="not_files/icon_mini_groups.gif" alt="Usergroups" height="13" hspace="3" width="12" border="0">Usergroups</a>
|
246
|
+
|
247
|
+
|
248
|
+
|
249
|
+
|
250
|
+
|
251
|
+
|
252
|
+
|
253
|
+
|
254
|
+
|
255
|
+
|
256
|
+
|
257
|
+
<a href="http://example.com/forum/profile.php?mode=register" class="mainmenu"><img src="not_files/icon_mini_register.gif" alt="Register" height="13" hspace="3" width="12" border="0">Register</a>
|
258
|
+
<span class="mainmenu"> <a href="http://example.com/forum/profile.php?mode=editprofile" class="mainmenu"><img src="not_files/icon_mini_profile.gif" alt="Profile" height="13" hspace="3" width="12" border="0">Profile</a> <a href="http://example.com/forum/privmsg.php?folder=inbox" class="mainmenu"><img src="not_files/icon_mini_message.gif" alt="Log in to check your private messages" height="13" hspace="3" width="12" border="0">Log in to check your private messages</a> <a href="http://example.com/forum/login.php" class="mainmenu"><img src="not_files/icon_mini_login.gif" alt="Log in" height="13" hspace="3" width="12" border="0">Log in</a>
|
259
|
+
<a href="http://example.com/forum/activity.php" class="mainmenu"><img src="not_files/icon_mini_activity.gif" alt="Games" height="13" hspace="3" width="12" border="0">Games</a>
|
260
|
+
</span></span></center>
|
261
|
+
|
262
|
+
|
230
263
|
<table border="0" cellpadding="2" cellspacing="0">
|
231
|
-
|
232
|
-
|
233
|
-
</span></td>
|
234
|
-
</tr>
|
235
|
-
<tr>
|
236
|
-
<td align="center" height="25" nowrap="nowrap" valign="top"><span class="mainmenu"> <a href="http://localhost/phpBB2/profile.php?mode=editprofile" class="mainmenu"><img src="logged-in_files/icon_mini_profile.gif" alt="Profile" border="0" height="13" hspace="3" width="12">Profile</a> <a href="http://localhost/phpBB2/privmsg.php?folder=inbox" class="mainmenu"><img src="logged-in_files/icon_mini_message.gif" alt="You have no new messages" border="0" height="13" hspace="3" width="12">You have no new messages</a> <a href="http://localhost/phpBB2/login.php?logout=true&sid=c52fdbbee4eb77304055585f38d955b5" class="mainmenu"><img src="logged-in_files/icon_mini_login.gif" alt="Log out [ somedude ]" border="0" height="13" hspace="3" width="12">Log out [ somedude ]</a> </span></td>
|
237
|
-
</tr>
|
238
|
-
</tbody></table></td>
|
264
|
+
|
265
|
+
</table></td>
|
239
266
|
</tr>
|
240
267
|
</tbody></table>
|
241
268
|
|
242
269
|
<br>
|
243
270
|
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
</
|
271
|
+
|
272
|
+
<div id="item_0_83" class="dom_overview_abshidden"><table class="bodyline" width="100%" border="0" cellpadding="2" cellspacing="1"><tbody><tr><td><table class="forumline" width="100%" border="0" cellpadding="2" cellspacing="1">
|
273
|
+
<tbody><tr>
|
274
|
+
<td class="row1"><span class="topictitle">
|
275
|
+
<a href="http://example.com/forum/profile.php?mode=viewprofile&u=83" class="topictitle">bollox</a>
|
276
|
+
</span><hr><span class="genmed">July 06 1964
|
277
|
+
(44 year old)
|
278
|
+
</span><br><span class="gensmall">(adjusted to match your timezone difference, which is 12.00 hours)
|
279
|
+
</span></td>
|
280
|
+
</tr>
|
281
|
+
<tr>
|
282
|
+
<td class="row1" align="center"><span class="gensmall">
|
283
|
+
<img src="not_files/1.html" alt="" border="0">
|
284
|
+
</span></td>
|
285
|
+
</tr>
|
286
|
+
</tbody></table></td></tr></tbody></table></div>
|
287
|
+
<div id="item_0_201" class="dom_overview_abshidden"><table class="bodyline" width="100%" border="0" cellpadding="2" cellspacing="1"><tbody><tr><td><table class="forumline" width="100%" border="0" cellpadding="2" cellspacing="1">
|
288
|
+
<tbody><tr>
|
289
|
+
<td class="row1"><span class="topictitle">
|
290
|
+
<a href="http://example.com/forum/profile.php?mode=viewprofile&u=201" class="topictitle">buckSHOT</a>
|
291
|
+
</span><hr><span class="genmed">July 06 1985
|
292
|
+
(23 year old)
|
293
|
+
</span><br><span class="gensmall">(adjusted to match your timezone difference, which is 1.00 hours)
|
294
|
+
</span></td>
|
295
|
+
</tr>
|
296
|
+
<tr>
|
297
|
+
<td class="row1" align="center"><span class="gensmall">
|
298
|
+
<img src="not_files/238744651209207d09.jpg" alt="" border="0">
|
299
|
+
</span></td>
|
300
|
+
</tr>
|
301
|
+
</tbody></table></td></tr></tbody></table></div>
|
302
|
+
<div id="item_0_378" class="dom_overview_abshidden"><table class="bodyline" width="100%" border="0" cellpadding="2" cellspacing="1"><tbody><tr><td><table class="forumline" width="100%" border="0" cellpadding="2" cellspacing="1">
|
303
|
+
<tbody><tr>
|
304
|
+
<td class="row1"><span class="topictitle">
|
305
|
+
<a href="http://example.com/forum/profile.php?mode=viewprofile&u=378" class="topictitle">dober</a>
|
306
|
+
</span><hr><span class="genmed">July 07 1974
|
307
|
+
(34 year old)
|
308
|
+
</span></td>
|
309
|
+
</tr>
|
310
|
+
<tr>
|
311
|
+
<td class="row1" align="center"><span class="gensmall">
|
312
|
+
<img src="not_files/grosso.gif" alt="" border="0">
|
313
|
+
</span></td>
|
314
|
+
</tr>
|
315
|
+
</tbody></table></td></tr></tbody></table></div>
|
316
|
+
<div id="item_0_333" class="dom_overview_abshidden"><table class="bodyline" width="100%" border="0" cellpadding="2" cellspacing="1"><tbody><tr><td><table class="forumline" width="100%" border="0" cellpadding="2" cellspacing="1">
|
317
|
+
<tbody><tr>
|
318
|
+
<td class="row1"><span class="topictitle">
|
319
|
+
<a href="http://example.com/forum/profile.php?mode=viewprofile&u=333" class="topictitle">MissJacki</a>
|
320
|
+
</span><hr><span class="genmed">July 07 1981
|
321
|
+
(27 year old)
|
322
|
+
</span></td>
|
323
|
+
</tr>
|
324
|
+
<tr>
|
325
|
+
<td class="row1" align="center"><span class="gensmall">
|
326
|
+
<img src="not_files/318546ca28ac66500.jpg" alt="" border="0">
|
327
|
+
</span></td>
|
328
|
+
</tr>
|
329
|
+
</tbody></table></td></tr></tbody></table></div>
|
330
|
+
<div id="item_0_533" class="dom_overview_abshidden"><table class="bodyline" width="100%" border="0" cellpadding="2" cellspacing="1"><tbody><tr><td><table class="forumline" width="100%" border="0" cellpadding="2" cellspacing="1">
|
331
|
+
<tbody><tr>
|
332
|
+
<td class="row1"><span class="topictitle">
|
333
|
+
<a href="http://example.com/forum/profile.php?mode=viewprofile&u=533" class="topictitle">sjdagger</a>
|
334
|
+
</span><hr><span class="genmed">July 06 1983
|
335
|
+
(25 year old)
|
336
|
+
</span></td>
|
337
|
+
</tr>
|
338
|
+
<tr>
|
339
|
+
<td class="row1" align="center"><span class="gensmall">
|
340
|
+
<img src="not_files/15446483b8138df798.jpg" alt="" border="0">
|
341
|
+
</span></td>
|
342
|
+
</tr>
|
343
|
+
</tbody></table></td></tr></tbody></table></div>
|
254
344
|
|
255
|
-
<table class="
|
256
|
-
|
257
|
-
<
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
345
|
+
<div id="item_1_2607" class="dom_overview_abshidden"><table class="bodyline" width="100%" border="0" cellpadding="2" cellspacing="1"><tbody><tr><td><table class="forumline" width="100%" border="0" cellpadding="2" cellspacing="1">
|
346
|
+
<tbody><tr>
|
347
|
+
<td class="row1"><span class="topictitle">
|
348
|
+
<a href="http://example.com/forum/viewtopic.php?t=2607" class="topictitle">Magic Music Festival - 7/9/2008 Germany</a><br>
|
349
|
+
</span><span class="postdetails">
|
350
|
+
Event: 09 Jul 2008<br>
|
351
|
+
<b>Forum:</b>
|
352
|
+
<a href="http://example.com/forum/index.php?c=1" class="gensmall">General Debris</a>
|
353
|
+
�
|
354
|
+
<a href="http://example.com/forum/viewforum.php?f=8" class="gensmall">Music / Concerts</a>
|
355
|
+
<br>
|
356
|
+
</span><hr><span class="postdetails">
|
357
|
+
<b>Author:</b> bobcat<br>
|
358
|
+
<b>Posted:</b> Fri Nov 02, 2007 7:54 am<br>
|
359
|
+
<b>Replies:</b> 0<br>
|
360
|
+
<b>Views:</b> 13<br>
|
361
|
+
</span></td>
|
362
|
+
</tr>
|
363
|
+
<tr>
|
364
|
+
<td class="row1"><span class="postbody">
|
365
|
+
Sleestock 2008?
|
366
|
+
<br>
|
367
|
+
|
368
|
+
<br>
|
369
|
+
these guys know how to party!
|
370
|
+
<br>
|
371
|
+
|
372
|
+
<br>
|
373
|
+
[quote]Magic Circle Music
|
374
|
+
<br>
|
375
|
+
Proudly Presents
|
376
|
+
<br>
|
377
|
+
The Magic Circle Festival 2008
|
378
|
+
<br>
|
379
|
+
“The Kings Of Metal 20th Anniversary Event”
|
380
|
+
<br>
|
381
|
+
(Bad Arolsen, Germany)
|
382
|
+
<br>
|
383
|
+
|
384
|
+
<br>
|
385
|
+
...
|
386
|
+
</span></td>
|
387
|
+
</tr>
|
388
|
+
</tbody></table></td></tr></tbody></table></div>
|
389
|
+
<div id="item_1_4778" class="dom_overview_abshidden"><table class="bodyline" width="100%" border="0" cellpadding="2" cellspacing="1"><tbody><tr><td><table class="forumline" width="100%" border="0" cellpadding="2" cellspacing="1">
|
390
|
+
<tbody><tr>
|
391
|
+
<td class="row1"><span class="topictitle">
|
392
|
+
<a href="http://example.com/forum/viewtopic.php?t=4778" class="topictitle">Pablito in Sleeattle July 2-6</a><br>
|
393
|
+
</span><span class="postdetails">
|
394
|
+
Event starting 02 Jul 2008 for 4 days<br>
|
395
|
+
<b>Forum:</b>
|
396
|
+
<a href="http://example.com/forum/index.php?c=1" class="gensmall">General Debris</a>
|
397
|
+
�
|
398
|
+
<a href="http://example.com/forum/viewforum.php?f=2" class="gensmall">Operation: Skooterboard!</a>
|
399
|
+
<br>
|
400
|
+
</span><hr><span class="postdetails">
|
401
|
+
<b>Author:</b> pablitolaak<br>
|
402
|
+
<b>Posted:</b> Tue Jul 01, 2008 3:09 pm<br>
|
403
|
+
<b>Replies:</b> 17<br>
|
404
|
+
<b>Views:</b> 165<br>
|
405
|
+
</span></td>
|
406
|
+
</tr>
|
407
|
+
<tr>
|
408
|
+
<td class="row1"><span class="postbody">
|
409
|
+
Yo duders!!!
|
410
|
+
<br>
|
411
|
+
|
412
|
+
<br>
|
413
|
+
Pablito will be in Seattle (actually staying with friends in Renton,
|
414
|
+
not far from that park with lights on it now!) from July 2-6th. I would
|
415
|
+
love to get some skating in with some local... </span></td>
|
416
|
+
</tr>
|
417
|
+
</tbody></table></td></tr></tbody></table></div>
|
418
|
+
<div id="item_1_4785" class="dom_overview_abshidden"><table class="bodyline" width="100%" border="0" cellpadding="2" cellspacing="1"><tbody><tr><td><table class="forumline" width="100%" border="0" cellpadding="2" cellspacing="1">
|
419
|
+
<tbody><tr>
|
420
|
+
<td class="row1"><span class="topictitle">
|
421
|
+
<a href="http://example.com/forum/viewtopic.php?t=4785" class="topictitle">Murdock, Neon Nights, Valkyries, and Emeralds @ King Cobra</a><br>
|
422
|
+
</span><span class="postdetails">
|
423
|
+
Event from Fri Jul 11, 2008 8:00 pm to Fri Jul 11, 2008 10:54 pm<br>
|
424
|
+
<b>Forum:</b>
|
425
|
+
<a href="http://example.com/forum/index.php?c=1" class="gensmall">General Debris</a>
|
426
|
+
�
|
427
|
+
<a href="http://example.com/forum/viewforum.php?f=8" class="gensmall">Music / Concerts</a>
|
428
|
+
<br>
|
429
|
+
</span><hr><span class="postdetails">
|
430
|
+
<b>Author:</b> gr8noise<br>
|
431
|
+
<b>Posted:</b> Wed Jul 02, 2008 9:55 am<br>
|
432
|
+
<b>Replies:</b> 0<br>
|
433
|
+
<b>Views:</b> 9<br>
|
434
|
+
</span></td>
|
435
|
+
</tr>
|
436
|
+
<tr>
|
437
|
+
<td class="row1"><span class="postbody">
|
438
|
+
<a href="http://a633.ac-images.myspacecdn.com/images01/66/l_a5d30f72ac0e356d788e8a1953a2d770.jpg" target="_blank" class="postlink">http://a633.ac-images.myspacecdn.com/images01/66/l_a5d30f72ac0e356d788e8a1953a2d770.jpg</a>
|
439
|
+
</span></td>
|
440
|
+
</tr>
|
441
|
+
</tbody></table></td></tr></tbody></table></div>
|
442
|
+
<div id="item_1_4786" class="dom_overview_abshidden"><table class="bodyline" width="100%" border="0" cellpadding="2" cellspacing="1"><tbody><tr><td><table class="forumline" width="100%" border="0" cellpadding="2" cellspacing="1">
|
443
|
+
<tbody><tr>
|
444
|
+
<td class="row1"><span class="topictitle">
|
445
|
+
<a href="http://example.com/forum/viewtopic.php?t=4786" class="topictitle">Rat City Ruckus @ Fun House</a><br>
|
446
|
+
</span><span class="postdetails">
|
447
|
+
Event from Sat Jul 05, 2008 8:00 pm to Sat Jul 05, 2008 10:58 pm<br>
|
448
|
+
<b>Forum:</b>
|
449
|
+
<a href="http://example.com/forum/index.php?c=1" class="gensmall">General Debris</a>
|
450
|
+
�
|
451
|
+
<a href="http://example.com/forum/viewforum.php?f=8" class="gensmall">Music / Concerts</a>
|
452
|
+
<br>
|
453
|
+
</span><hr><span class="postdetails">
|
454
|
+
<b>Author:</b> gr8noise<br>
|
455
|
+
<b>Posted:</b> Wed Jul 02, 2008 9:58 am<br>
|
456
|
+
<b>Replies:</b> 0<br>
|
457
|
+
<b>Views:</b> 10<br>
|
458
|
+
</span></td>
|
459
|
+
</tr>
|
460
|
+
<tr>
|
461
|
+
<td class="row1"><span class="postbody">
|
462
|
+
Round out your holiday weekend at the Fun House with Rat City Ruckus...
|
463
|
+
</span></td>
|
464
|
+
</tr>
|
465
|
+
</tbody></table></td></tr></tbody></table></div>
|
466
|
+
<div id="item_1_4796" class="dom_overview_abshidden"><table class="bodyline" width="100%" border="0" cellpadding="2" cellspacing="1"><tbody><tr><td><table class="forumline" width="100%" border="0" cellpadding="2" cellspacing="1">
|
467
|
+
<tbody><tr>
|
468
|
+
<td class="row1"><span class="topictitle">
|
469
|
+
<a href="http://example.com/forum/viewtopic.php?t=4796" class="topictitle">6/6 - Dragonforce - FREE SHOW - El Corizon</a><br>
|
470
|
+
</span><span class="postdetails">
|
471
|
+
Event: 06 Jul 2008<br>
|
472
|
+
<b>Forum:</b>
|
473
|
+
<a href="http://example.com/forum/index.php?c=1" class="gensmall">General Debris</a>
|
474
|
+
�
|
475
|
+
<a href="http://example.com/forum/viewforum.php?f=8" class="gensmall">Music / Concerts</a>
|
476
|
+
<br>
|
477
|
+
</span><hr><span class="postdetails">
|
478
|
+
<b>Author:</b> bobcat<br>
|
479
|
+
<b>Posted:</b> Thu Jul 03, 2008 12:27 pm<br>
|
480
|
+
<b>Replies:</b> 1<br>
|
481
|
+
<b>Views:</b> 15<br>
|
482
|
+
</span></td>
|
483
|
+
</tr>
|
484
|
+
<tr>
|
485
|
+
<td class="row1"><span class="postbody">
|
486
|
+
<a href="http://a359.ac-images.myspacecdn.com/images01/43/l_d89f5aacd9ac817d238349907e7a6556.png" target="_blank" class="postlink">http://a359.ac-images.myspacecdn.com/images01/43/l_d89f5aacd9ac817d238349907e7a6556.png</a>
|
487
|
+
<br>
|
488
|
+
|
489
|
+
<br>
|
490
|
+
THIS SUNDAY!
|
491
|
+
<br>
|
492
|
+
July 6, 2008
|
493
|
+
<br>
|
494
|
+
|
495
|
+
<br>
|
496
|
+
FREE! ALL AGES!
|
497
|
+
<br>
|
498
|
+
Doors @ 7:00 PM
|
499
|
+
<br>
|
500
|
+
|
501
|
+
<br>
|
502
|
+
@ El Corazon
|
503
|
+
<br>
|
504
|
+
109 Eastlake Avenu...
|
505
|
+
</span></td>
|
506
|
+
</tr>
|
507
|
+
</tbody></table></td></tr></tbody></table></div>
|
285
508
|
|
286
|
-
<table align="center" border="0" cellpadding="2" cellspacing="0" width="100%">
|
287
|
-
<tbody><tr>
|
288
|
-
<td align="left">
|
289
|
-
<span class="gensmall"><a href="http://localhost/phpBB2/index.php?mark=forums" class="gensmall">Mark all forums read</a></span>
|
290
|
-
</td>
|
291
|
-
<td align="right"><span class="gensmall">All times are GMT</span></td>
|
292
|
-
</tr>
|
293
|
-
</tbody></table>
|
294
509
|
|
295
|
-
<
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
<td
|
301
|
-
|
302
|
-
</td>
|
303
|
-
|
304
|
-
|
305
|
-
<td class="row1" align="left"><span class="gensmall">In total there is <b>1</b> user online :: 1 Registered, 0 Hidden and 0 Guests [ <span style="color: rgb(255, 163, 79);">Administrator</span> ] [ <span style="color: rgb(0, 102, 0);">Moderator</span> ]<br>Most users ever online was <b>1</b> on Thu Aug 02, 2007 4:41 pm<br>Registered Users: <a href="http://localhost/phpBB2/profile.php?mode=viewprofile&u=3">somedude</a></span></td>
|
306
|
-
</tr>
|
510
|
+
<script language="JavaScript" type="text/javascript" src="not_files/js_dom_toggle.js"></script>
|
511
|
+
<script language="Javascript" type="text/javascript" src="not_files/js_dom_overview.js"></script>
|
512
|
+
|
513
|
+
<table width="100%" align="center" border="0" cellpadding="0" cellspacing="0">
|
514
|
+
<tbody><tr>
|
515
|
+
<td align="right"><span class="mainmenu">
|
516
|
+
<a href="#" onclick="dom_toggle.toggle('calrow','calrow_pic', './templates/greenSilver/images/icon_down_arrow.gif', './templates/greenSilver/images/icon_up_arrow.gif'); return false;" class="gensmall"><img src="not_files/icon_up_arrow.gif" id="calrow_pic" alt="" hspace="2" border="0">Calendar</a>
|
517
|
+
</span></td>
|
518
|
+
<td width="2"></td>
|
519
|
+
</tr>
|
307
520
|
</tbody></table>
|
521
|
+
<table id="calrow" style="" width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr><td>
|
308
522
|
|
309
|
-
<table border="0" cellpadding="
|
523
|
+
<table class="forumline" width="100%" border="0" cellpadding="2" cellspacing="1">
|
310
524
|
<tbody><tr>
|
311
|
-
<
|
525
|
+
<th class="thHead" colspan="7" height="25">
|
526
|
+
<a href="http://example.com/forum/calendar.php" title="Calendar"><img src="not_files/icon_calendar.gif" alt="Calendar" align="top" border="0"></a> Calendar
|
527
|
+
</th>
|
528
|
+
</tr>
|
529
|
+
<tr>
|
530
|
+
<td class="row2" width="14%" align="center"><span class="genmed">
|
531
|
+
<a href="http://example.com/forum/calendar.php?y=2008&m=7&d=5" class="genmed">Sat 05 Jul 2008</a>
|
532
|
+
</span></td>
|
533
|
+
<td class="row2" width="14%" align="center"><span class="genmed">
|
534
|
+
<b>
|
535
|
+
<a href="http://example.com/forum/calendar.php?y=2008&m=7&d=6" class="genmed">Sun 06 Jul 2008</a>
|
536
|
+
</b>
|
537
|
+
</span></td>
|
538
|
+
<td class="row2" width="14%" align="center"><span class="genmed">
|
539
|
+
<a href="http://example.com/forum/calendar.php?y=2008&m=7&d=7" class="genmed">Mon 07 Jul 2008</a>
|
540
|
+
</span></td>
|
541
|
+
<td class="row2" width="14%" align="center"><span class="genmed">
|
542
|
+
<a href="http://example.com/forum/calendar.php?y=2008&m=7&d=8" class="genmed">Tue 08 Jul 2008</a>
|
543
|
+
</span></td>
|
544
|
+
<td class="row2" width="14%" align="center"><span class="genmed">
|
545
|
+
<a href="http://example.com/forum/calendar.php?y=2008&m=7&d=9" class="genmed">Wed 09 Jul 2008</a>
|
546
|
+
</span></td>
|
547
|
+
<td class="row2" width="14%" align="center"><span class="genmed">
|
548
|
+
<a href="http://example.com/forum/calendar.php?y=2008&m=7&d=10" class="genmed">Thu 10 Jul 2008</a>
|
549
|
+
</span></td>
|
550
|
+
<td class="row2" width="14%" align="center"><span class="genmed">
|
551
|
+
<a href="http://example.com/forum/calendar.php?y=2008&m=7&d=11" class="genmed">Fri 11 Jul 2008</a>
|
552
|
+
</span></td>
|
553
|
+
</tr>
|
554
|
+
<tr>
|
555
|
+
<td class="row1" height="70" valign="top" width="14%"><table width="100%" border="0" cellpadding="0" cellspacing="1">
|
556
|
+
<tbody><tr>
|
557
|
+
<td><img src="not_files/icon_tiny_topic.gif" alt="Topic" title="Topic" border="0"></td>
|
558
|
+
<td width="100%"><span class="gensmall">
|
559
|
+
<a href="http://example.com/forum/viewtopic.php?t=4778" class="gensmall" onmouseover="dom_overview.show('item_1_4778');">Pablito in Sleeattle July 2-6</a>
|
560
|
+
</span></td>
|
561
|
+
<td nowrap="nowrap" align="right"><span class="gensmall">
|
562
|
+
</span></td>
|
563
|
+
</tr>
|
564
|
+
<tr>
|
565
|
+
<td><img src="not_files/icon_tiny_topic.gif" alt="Topic" title="Topic" border="0"></td>
|
566
|
+
<td width="100%"><span class="gensmall">
|
567
|
+
<a href="http://example.com/forum/viewtopic.php?t=4786" class="gensmall" onmouseover="dom_overview.show('item_1_4786');">Rat City Ruckus @ Fun House</a>
|
568
|
+
</span></td>
|
569
|
+
<td nowrap="nowrap" align="right"><span class="gensmall">
|
570
|
+
</span></td>
|
571
|
+
</tr>
|
572
|
+
</tbody></table></td>
|
573
|
+
<td class="row1" height="70" valign="top" width="14%"><table width="100%" border="0" cellpadding="0" cellspacing="1">
|
574
|
+
<tbody><tr>
|
575
|
+
<td><img src="not_files/icon_tiny_profile.gif" alt="Date of Birth" title="Date of Birth" border="0"></td>
|
576
|
+
<td width="100%"><span class="gensmall">
|
577
|
+
<a href="http://example.com/forum/profile.php?mode=viewprofile&u=83" class="gensmall" onmouseover="dom_overview.show('item_0_83');">bollox</a>
|
578
|
+
</span></td>
|
579
|
+
<td nowrap="nowrap" align="right"><span class="gensmall">
|
580
|
+
</span></td>
|
581
|
+
</tr>
|
582
|
+
<tr>
|
583
|
+
<td><img src="not_files/icon_tiny_profile.gif" alt="Date of Birth" title="Date of Birth" border="0"></td>
|
584
|
+
<td width="100%"><span class="gensmall">
|
585
|
+
<a href="http://example.com/forum/profile.php?mode=viewprofile&u=201" class="gensmall" onmouseover="dom_overview.show('item_0_201');">buckSHOT</a>
|
586
|
+
</span></td>
|
587
|
+
<td nowrap="nowrap" align="right"><span class="gensmall">
|
588
|
+
</span></td>
|
589
|
+
</tr>
|
590
|
+
<tr>
|
591
|
+
<td><img src="not_files/icon_tiny_profile.gif" alt="Date of Birth" title="Date of Birth" border="0"></td>
|
592
|
+
<td width="100%"><span class="gensmall">
|
593
|
+
<a href="http://example.com/forum/profile.php?mode=viewprofile&u=533" class="gensmall" onmouseover="dom_overview.show('item_0_533');">sjdagger</a>
|
594
|
+
</span></td>
|
595
|
+
<td nowrap="nowrap" align="right"><span class="gensmall">
|
596
|
+
</span></td>
|
597
|
+
</tr>
|
598
|
+
<tr>
|
599
|
+
<td><img src="not_files/icon_tiny_topic.gif" alt="Topic" title="Topic" border="0"></td>
|
600
|
+
<td width="100%"><span class="gensmall">
|
601
|
+
<a href="http://example.com/forum/viewtopic.php?t=4796" class="gensmall" onmouseover="dom_overview.show('item_1_4796');">6/6 - Dragonforce - FREE SH...</a>
|
602
|
+
</span></td>
|
603
|
+
<td nowrap="nowrap" align="right"><span class="gensmall">
|
604
|
+
</span></td>
|
605
|
+
</tr>
|
606
|
+
</tbody></table></td>
|
607
|
+
<td class="row1" height="70" valign="top" width="14%"><table width="100%" border="0" cellpadding="0" cellspacing="1">
|
608
|
+
<tbody><tr>
|
609
|
+
<td><img src="not_files/icon_tiny_profile.gif" alt="Date of Birth" title="Date of Birth" border="0"></td>
|
610
|
+
<td width="100%"><span class="gensmall">
|
611
|
+
<a href="http://example.com/forum/profile.php?mode=viewprofile&u=83" class="gensmall" onmouseover="dom_overview.show('item_0_83');">bollox</a>
|
612
|
+
</span></td>
|
613
|
+
<td nowrap="nowrap" align="right"><span class="gensmall">
|
614
|
+
</span></td>
|
615
|
+
</tr>
|
616
|
+
<tr>
|
617
|
+
<td><img src="not_files/icon_tiny_profile.gif" alt="Date of Birth" title="Date of Birth" border="0"></td>
|
618
|
+
<td width="100%"><span class="gensmall">
|
619
|
+
<a href="http://example.com/forum/profile.php?mode=viewprofile&u=201" class="gensmall" onmouseover="dom_overview.show('item_0_201');">buckSHOT</a>
|
620
|
+
</span></td>
|
621
|
+
<td nowrap="nowrap" align="right"><span class="gensmall">
|
622
|
+
</span></td>
|
623
|
+
</tr>
|
624
|
+
<tr>
|
625
|
+
<td><img src="not_files/icon_tiny_profile.gif" alt="Date of Birth" title="Date of Birth" border="0"></td>
|
626
|
+
<td width="100%"><span class="gensmall">
|
627
|
+
<a href="http://example.com/forum/profile.php?mode=viewprofile&u=378" class="gensmall" onmouseover="dom_overview.show('item_0_378');">dober</a>
|
628
|
+
</span></td>
|
629
|
+
<td nowrap="nowrap" align="right"><span class="gensmall">
|
630
|
+
</span></td>
|
631
|
+
</tr>
|
632
|
+
<tr>
|
633
|
+
<td><img src="not_files/icon_tiny_profile.gif" alt="Date of Birth" title="Date of Birth" border="0"></td>
|
634
|
+
<td width="100%"><span class="gensmall">
|
635
|
+
<a href="http://example.com/forum/profile.php?mode=viewprofile&u=333" class="gensmall" onmouseover="dom_overview.show('item_0_333');">MissJacki</a>
|
636
|
+
</span></td>
|
637
|
+
<td nowrap="nowrap" align="right"><span class="gensmall">
|
638
|
+
</span></td>
|
639
|
+
</tr>
|
640
|
+
</tbody></table></td>
|
641
|
+
<td class="row1" height="70" valign="top" width="14%"><table width="100%" border="0" cellpadding="0" cellspacing="1">
|
642
|
+
</table></td>
|
643
|
+
<td class="row1" height="70" valign="top" width="14%"><table width="100%" border="0" cellpadding="0" cellspacing="1">
|
644
|
+
<tbody><tr>
|
645
|
+
<td><img src="not_files/icon_tiny_topic.gif" alt="Topic" title="Topic" border="0"></td>
|
646
|
+
<td width="100%"><span class="gensmall">
|
647
|
+
<a href="http://example.com/forum/viewtopic.php?t=2607" class="gensmall" onmouseover="dom_overview.show('item_1_2607');">Magic Music Festival - 7/9/...</a>
|
648
|
+
</span></td>
|
649
|
+
<td nowrap="nowrap" align="right"><span class="gensmall">
|
650
|
+
</span></td>
|
651
|
+
</tr>
|
652
|
+
</tbody></table></td>
|
653
|
+
<td class="row1" height="70" valign="top" width="14%"><table width="100%" border="0" cellpadding="0" cellspacing="1">
|
654
|
+
</table></td>
|
655
|
+
<td class="row1" height="70" valign="top" width="14%"><table width="100%" border="0" cellpadding="0" cellspacing="1">
|
656
|
+
<tbody><tr>
|
657
|
+
<td><img src="not_files/icon_tiny_topic.gif" alt="Topic" title="Topic" border="0"></td>
|
658
|
+
<td width="100%"><span class="gensmall">
|
659
|
+
<a href="http://example.com/forum/viewtopic.php?t=4785" class="gensmall" onmouseover="dom_overview.show('item_1_4785');">Murdock, Neon Nights, Valky...</a>
|
660
|
+
</span></td>
|
661
|
+
<td nowrap="nowrap" align="right"><span class="gensmall">
|
662
|
+
</span></td>
|
663
|
+
</tr>
|
664
|
+
</tbody></table></td>
|
312
665
|
</tr>
|
313
666
|
</tbody></table>
|
314
667
|
|
668
|
+
</td></tr></tbody></table>
|
669
|
+
|
670
|
+
|
315
671
|
|
316
|
-
<br clear="all">
|
317
672
|
|
318
|
-
<
|
673
|
+
<form action="login.php" method="post" target="_top">
|
674
|
+
|
675
|
+
<table width="100%" align="center" border="0" cellpadding="2" cellspacing="2">
|
319
676
|
<tbody><tr>
|
320
|
-
<td
|
321
|
-
<td><span class="gensmall">New posts</span></td>
|
322
|
-
<td> </td>
|
323
|
-
<td align="center" width="20"><img src="logged-in_files/folder_big.gif" alt="No new posts"></td>
|
324
|
-
<td><span class="gensmall">No new posts</span></td>
|
325
|
-
<td> </td>
|
326
|
-
<td align="center" width="20"><img src="logged-in_files/folder_locked_big.gif" alt="Forum is locked"></td>
|
327
|
-
<td><span class="gensmall">Forum is locked</span></td>
|
677
|
+
<td class="nav" align="left"><a href="http://example.com/forum/index.php" class="nav">EXAMPLE.COM Forum Index</a></td>
|
328
678
|
</tr>
|
329
679
|
</tbody></table>
|
330
680
|
|
681
|
+
<table class="forumline" width="100%" align="center" border="0" cellpadding="4" cellspacing="1">
|
682
|
+
<tbody><tr>
|
683
|
+
<th class="thHead" height="25" nowrap="nowrap">Please enter your username and password to log in.</th>
|
684
|
+
</tr>
|
685
|
+
<tr>
|
686
|
+
<td class="row1"><table width="100%" border="0" cellpadding="3" cellspacing="1">
|
687
|
+
<tbody><tr>
|
688
|
+
<td colspan="2" align="center"> </td>
|
689
|
+
</tr>
|
690
|
+
<tr>
|
691
|
+
<td width="45%" align="right"><span class="gen">Username:</span></td>
|
692
|
+
<td>
|
693
|
+
<input class="post" name="username" size="25" maxlength="40" value="" type="text">
|
694
|
+
</td>
|
695
|
+
</tr>
|
696
|
+
<tr>
|
697
|
+
<td align="right"><span class="gen">Password:</span></td>
|
698
|
+
<td>
|
699
|
+
<input class="post" name="password" size="25" maxlength="32" type="password">
|
700
|
+
</td>
|
701
|
+
</tr>
|
702
|
+
<tr align="center">
|
703
|
+
<td colspan="2"><span class="gen">Log me on automatically each visit: <input name="autologin" type="checkbox"></span></td>
|
704
|
+
</tr>
|
705
|
+
<tr align="center">
|
706
|
+
<td colspan="2"><input name="redirect" value="" type="hidden"><input name="login" class="mainoption" value="Log in" type="submit"></td>
|
707
|
+
</tr>
|
708
|
+
<tr align="center">
|
709
|
+
<td colspan="2"><span class="gensmall"><a href="http://example.com/forum/profile.php?mode=sendpassword" class="gensmall">I forgot my password</a></span></td>
|
710
|
+
</tr>
|
711
|
+
</tbody></table></td>
|
712
|
+
</tr>
|
713
|
+
</tbody></table>
|
714
|
+
|
715
|
+
</form>
|
716
|
+
|
331
717
|
|
332
718
|
<div align="center"><span class="copyright"><br><br>
|
333
719
|
<!--
|
@@ -340,10 +726,9 @@ input.liteoption {
|
|
340
726
|
|
341
727
|
The phpBB Group : 2002
|
342
728
|
// -->
|
343
|
-
Powered by <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB</a>
|
729
|
+
Powered by <a href="http://www.phpbb.com/" target="_phpbb" class="copyright">phpBB</a> � 2001, 2005 phpBB Group<br></span></div>
|
344
730
|
</td>
|
345
731
|
</tr>
|
346
732
|
</tbody></table>
|
347
733
|
|
348
|
-
|
349
734
|
</body></html>
|