impostor 0.0.1
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 +4 -0
- data/Manifest.txt +50 -0
- data/README.txt +65 -0
- data/Rakefile +40 -0
- data/lib/impostor.rb +6 -0
- data/lib/www/impostor/phpbb2.rb +260 -0
- data/lib/www/impostor/wwf79.rb +254 -0
- data/lib/www/impostor/wwf80.rb +264 -0
- data/lib/www/impostor.rb +269 -0
- data/test/fixtures/phpbb2-get-new_topic-form-good-response.html +725 -0
- data/test/fixtures/phpbb2-get-viewtopic-for-new-topic-good-response.html +364 -0
- data/test/fixtures/phpbb2-get-viewtopic-for-new-topic-malformed-response.html +364 -0
- data/test/fixtures/phpbb2-index.html +361 -0
- data/test/fixtures/phpbb2-logged-in.html +349 -0
- data/test/fixtures/phpbb2-login.html +306 -0
- data/test/fixtures/phpbb2-not-logged-in.html +349 -0
- data/test/fixtures/phpbb2-post-new_topic-good-response.html +290 -0
- data/test/fixtures/phpbb2-post-reply-good-response.html +290 -0
- data/test/fixtures/phpbb2-post-reply-throttled-response.html +290 -0
- data/test/fixtures/phpbb2-too-many-posts.html +290 -0
- data/test/fixtures/wwf79-forum_posts.html +422 -0
- data/test/fixtures/wwf79-general-new-topic-error.html +46 -0
- data/test/fixtures/wwf79-general-posting-error.html +46 -0
- data/test/fixtures/wwf79-good-post-forum_posts.html +462 -0
- data/test/fixtures/wwf79-index.html +137 -0
- data/test/fixtures/wwf79-logged-in.html +46 -0
- data/test/fixtures/wwf79-login.html +123 -0
- data/test/fixtures/wwf79-new-topic-forum_posts-response.html +305 -0
- data/test/fixtures/wwf79-new-topic-post_message_form.html +212 -0
- data/test/fixtures/wwf79-not-logged-in.html +128 -0
- data/test/fixtures/wwf79-too-many-posts.html +46 -0
- data/test/fixtures/wwf79-too-many-topics.html +46 -0
- data/test/fixtures/wwf80-general-posting-error.html +54 -0
- data/test/fixtures/wwf80-get-new_topic-form-good-response.html +217 -0
- data/test/fixtures/wwf80-get-viewtopic-for-new-topic-good-response.html +290 -0
- data/test/fixtures/wwf80-index.html +371 -0
- data/test/fixtures/wwf80-logged-in.html +52 -0
- data/test/fixtures/wwf80-login.html +125 -0
- data/test/fixtures/wwf80-new_reply_form.html +204 -0
- data/test/fixtures/wwf80-not-logged-in.html +136 -0
- data/test/fixtures/wwf80-post-new_topic-good-response.html +293 -0
- data/test/fixtures/wwf80-post-reply-good-response.html +331 -0
- data/test/fixtures/wwf80-too-many-posts.html +54 -0
- data/test/test_helper.rb +38 -0
- data/test/test_www_impostor.rb +165 -0
- data/test/test_www_impostor_phpbb2.rb +536 -0
- data/test/test_www_impostor_wwf79.rb +535 -0
- data/test/test_www_impostor_wwf80.rb +535 -0
- data/vendor/plugins/impostor/lib/autotest/discover.rb +3 -0
- data/vendor/plugins/impostor/lib/autotest/impostor.rb +49 -0
- data.tar.gz.sig +3 -0
- metadata +156 -0
- metadata.gz.sig +3 -0
@@ -0,0 +1,293 @@
|
|
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"><head>
|
3
|
+
|
4
|
+
|
5
|
+
|
6
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><title>OMLB Forums: another test topic</title>
|
7
|
+
|
8
|
+
<meta name="generator" content="Web Wiz Forums"><!--//
|
9
|
+
/* *******************************************************
|
10
|
+
Application: Web Wiz Forums ver. 8.05a
|
11
|
+
Info: http://www.webwizforums.com
|
12
|
+
Copyright: 2001-2006 Web Wiz. All rights reserved
|
13
|
+
******************************************************* */
|
14
|
+
//-->
|
15
|
+
|
16
|
+
|
17
|
+
|
18
|
+
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="http://omlb.com/forum/RSS_post_feed.asp?TID=5082">
|
19
|
+
|
20
|
+
<script language="JavaScript">
|
21
|
+
function chgOrder(Show){
|
22
|
+
|
23
|
+
strShow = escape(Show.options[Show.selectedIndex].value);
|
24
|
+
|
25
|
+
if (Show != '') self.location.href = 'forum_posts.asp?TID=5082&PD=' + strShow + '';
|
26
|
+
return true;
|
27
|
+
}
|
28
|
+
|
29
|
+
function CheckForm() {
|
30
|
+
var errorMsg = '';
|
31
|
+
var formArea = document.getElementById('frmMessageForm');
|
32
|
+
|
33
|
+
//For Gecko Madis API (RTE)
|
34
|
+
if (formArea.message.value.indexOf('<br>') > -1 && formArea.message.value.length==5) formArea.message.value = '';
|
35
|
+
|
36
|
+
|
37
|
+
//Check for message
|
38
|
+
if (formArea.message.value==''){
|
39
|
+
errorMsg += '\n\tMessage Box \t\t- Enter a Message to Submit';
|
40
|
+
}
|
41
|
+
|
42
|
+
//If there is aproblem with the form then display an error
|
43
|
+
if (errorMsg != ''){
|
44
|
+
msg = '_______________________________________________________________\n\n';
|
45
|
+
msg += 'The form has not been submitted because there are problem(s) with the form.\n';
|
46
|
+
msg += 'Please correct the problem(s) and re-submit the form.\n';
|
47
|
+
msg += '_______________________________________________________________\n\n';
|
48
|
+
msg += 'The following field(s) need to be corrected: -\n';
|
49
|
+
|
50
|
+
errorMsg += alert(msg + errorMsg + '\n\n');
|
51
|
+
return false;
|
52
|
+
}
|
53
|
+
|
54
|
+
return true;
|
55
|
+
}
|
56
|
+
</script>
|
57
|
+
<link href="wwf80-new-topic-forum_posts.asp_files/default_style.css" rel="stylesheet" type="text/css">
|
58
|
+
<script language="javascript" src="wwf80-new-topic-forum_posts.asp_files/default_javascript.js" type="text/javascript"></script><style type="text/css">@import url(http://hoodwink.d/themes/1/hoodwinkd.css);</style><style type="text/css"></style></head><body>
|
59
|
+
<table class="basicTable" align="center" cellpadding="3" cellspacing="0">
|
60
|
+
<tbody><tr>
|
61
|
+
<td rowspan="2"><a href="http://www.omlb.com/html/olmb.htm" accesskey="1"><img src="wwf80-new-topic-forum_posts.asp_files/logo.gif" border="0"></a></td>
|
62
|
+
<td align="center"> <a href="http://omlb.com/forum/pre_approved_topics.asp" class="nav"><img src="wwf80-new-topic-forum_posts.asp_files/hidden_topics.gif" alt="Hidden Topics" align="absmiddle" border="0">Hidden Topics</a> <a href="http://omlb.com/forum/active_topics.asp" class="nav" accesskey="2"><img src="wwf80-new-topic-forum_posts.asp_files/active_topics.gif" alt="Active Topics" align="absmiddle" border="0">Active Topics</a> <a href="http://omlb.com/forum/members.asp" class="nav"><img src="wwf80-new-topic-forum_posts.asp_files/members_list.gif" alt="Display List of Forum Members" align="absmiddle" border="0">Memberlist</a> <a href="http://omlb.com/forum/calendar.asp" class="nav"><img src="wwf80-new-topic-forum_posts.asp_files/calendar.gif" alt="Calendar" align="absmiddle" border="0">Calendar</a> <a href="http://omlb.com/forum/search_form.asp?FID=37" class="nav" accesskey="4"><img src="wwf80-new-topic-forum_posts.asp_files/search.gif" alt="Search The Forum" align="absmiddle" border="0">Search</a> <a href="http://omlb.com/forum/help.asp" class="nav" accesskey="5"><img src="wwf80-new-topic-forum_posts.asp_files/help_icon.gif" alt="Help" align="absmiddle" border="0">Help</a></td>
|
63
|
+
</tr>
|
64
|
+
<tr>
|
65
|
+
<td align="center"><a href="http://omlb.com/forum/pm_welcome.asp" class="nav"><img src="wwf80-new-topic-forum_posts.asp_files/read_private_message_icon.gif" alt="Read" message="" align="absmiddle" border="0">Private Messenger</a> <a href="http://omlb.com/forum/member_control_panel.asp" class="nav"><img src="wwf80-new-topic-forum_posts.asp_files/admin_icon.gif" alt="Member Control Panel Menu" align="absmiddle" border="0">Settings</a> <a href="http://omlb.com/forum/log_off_user.asp" class="nav"><img src="wwf80-new-topic-forum_posts.asp_files/log_off_icon.gif" alt="Logout" align="absmiddle" border="0">Logout [tester]</a></td>
|
66
|
+
</tr>
|
67
|
+
</tbody></table>
|
68
|
+
<div style="margin: 5px;" align="center"></div>
|
69
|
+
<a name="top"></a>
|
70
|
+
<table class="basicTable" align="center" cellpadding="3" cellspacing="0">
|
71
|
+
<tbody><tr>
|
72
|
+
<td class="heading">Cellphoto bot</td>
|
73
|
+
</tr>
|
74
|
+
<tr>
|
75
|
+
<td><strong><img src="wwf80-new-topic-forum_posts.asp_files/open_folder_icon.gif" align="absmiddle" border="0"> <a href="http://omlb.com/forum/default.asp"><strong>OMLB Forums</strong></a> : <a href="http://omlb.com/forum/default.asp?C=2"><strong>The Shit Pit </strong></a> : <a href="http://omlb.com/forum/forum_topics.asp?FID=37"><strong>Cellphoto bot</strong></a></strong></td>
|
76
|
+
<td align="right" nowrap="nowrap" width="5%"><a href="javascript:winOpener('pop_up_topic_admin.asp?TID=5082','admin',1,1,480,265)"><img src="wwf80-new-topic-forum_posts.asp_files/admin.gif" alt="Topic Admin" align="absmiddle" border="0"></a> <a href="http://omlb.com/forum/RSS_post_feed.asp?TID=5082" target="_blank"><img src="wwf80-new-topic-forum_posts.asp_files/rss.png" title="RSS Feed: another test topic" align="absmiddle" border="0"></a> </td>
|
77
|
+
</tr>
|
78
|
+
</tbody></table>
|
79
|
+
<table class="basicTable" align="center" cellpadding="3" cellspacing="0">
|
80
|
+
<tbody><tr>
|
81
|
+
<td width="70%"> <img src="wwf80-new-topic-forum_posts.asp_files/topic_icon.gif" alt="Message Icon" align="absmiddle" border="0"> <span class="lgText">Topic: another test topic</span></td>
|
82
|
+
<td align="right" nowrap="nowrap"><a href="http://omlb.com/forum/new_reply_form.asp?TID=5082&PN=1&TR=1"><img src="wwf80-new-topic-forum_posts.asp_files/post_reply.gif" alt="Post Reply" align="absmiddle" border="0"></a> <a href="http://omlb.com/forum/new_topic_form.asp?FID=37"><img src="wwf80-new-topic-forum_posts.asp_files/new_post.gif" alt="Post New Topic" align="absmiddle" border="0"></a> <a href="http://omlb.com/forum/new_poll_form.asp?FID=37"><img src="wwf80-new-topic-forum_posts.asp_files/new_poll.gif" alt="Create New Poll" align="absmiddle" border="0"></a></td>
|
83
|
+
</tr>
|
84
|
+
<tr>
|
85
|
+
<td>
|
86
|
+
<select name="PD" id="PD" onchange="chgOrder(this)">
|
87
|
+
<option value="1" selected="selected">Oldest Post First</option>
|
88
|
+
<option value="0">Newest Post First</option>
|
89
|
+
</select>
|
90
|
+
</td>
|
91
|
+
<td align="right"></td>
|
92
|
+
</tr>
|
93
|
+
</tbody></table>
|
94
|
+
<table class="tableBorder" style="table-layout: fixed;" align="center" cellpadding="3" cellspacing="1">
|
95
|
+
<tbody><tr class="tableLedger">
|
96
|
+
<td style="width: 140px;" align="center">Author</td>
|
97
|
+
<td align="center">Message</td>
|
98
|
+
</tr>
|
99
|
+
<tr>
|
100
|
+
<td rowspan="5" class="msgEvenTableSide" valign="top">
|
101
|
+
<a name="103143"></a>
|
102
|
+
<a href="http://omlb.com/forum/member_profile.asp?PF=203&FID=37">tester</a>
|
103
|
+
<br>Cellphotobot
|
104
|
+
<br><img src="wwf80-new-topic-forum_posts.asp_files/1up.gif" alt="Cellphotobot">
|
105
|
+
<br><img src="wwf80-new-topic-forum_posts.asp_files/2007-04-20_153013_dm-bird.png" alt="Avatar" class="avatar" onerror="this.src='avatars/blank_avatar.jpg';">
|
106
|
+
<br>rad bainbridge dude
|
107
|
+
<br><br>Joined: June 21 2005
|
108
|
+
<br>Location: United States
|
109
|
+
<br>Online Status: Online
|
110
|
+
<br>Posts: 4480
|
111
|
+
<br>
|
112
|
+
</td>
|
113
|
+
<td class="msgEvenTableRow" valign="top"><span style="float: right;"><a href="http://omlb.com/forum/new_reply_form.asp?M=Q&PID=103143&PN=1&TR=1"><img src="wwf80-new-topic-forum_posts.asp_files/quote_icon.gif" alt="Quote tester" align="absmiddle" border="0"></a> <a href="http://omlb.com/forum/new_reply_form.asp?PID=103143&PN=1&TR=1"><img src="wwf80-new-topic-forum_posts.asp_files/reply.gif" alt="Reply" align="absmiddle" border="0"></a></span><a href="http://omlb.com/forum/forum_posts.asp?TID=5082&PID=103143#103143" alt="Direct Link To This Post"><img src="wwf80-new-topic-forum_posts.asp_files/bullet.gif" alt="bullet" align="absmiddle" border="0"></a> <strong>Topic: another test topic</strong><br> Posted: Today at 9:49pm</td>
|
114
|
+
</tr>
|
115
|
+
<tr class="msgEvenTableRow">
|
116
|
+
<td class="msgLineDevider" height="150" valign="top">
|
117
|
+
<!-- Start Member Post -->
|
118
|
+
<div class="msgBody" style="overflow: auto; float: left;">
|
119
|
+
some words here
|
120
|
+
|
121
|
+
</div>
|
122
|
+
<!-- End Member Post -->
|
123
|
+
</td>
|
124
|
+
</tr>
|
125
|
+
<tr class="msgEvenTableRow">
|
126
|
+
<td class="msgLineDevider" style="border-top-width: 0px;">
|
127
|
+
<!-- Start Signature -->
|
128
|
+
<div class="msgSignature" style="overflow: auto; float: left;">
|
129
|
+
"... I was getting laid too much because of my membership (in Bellingham Linux Users Group) so i quit." - coldpeelers
|
130
|
+
</div>
|
131
|
+
<!-- End Signature "'' -->
|
132
|
+
</td>
|
133
|
+
</tr>
|
134
|
+
<tr class="msgEvenTableRow">
|
135
|
+
<td class="msgLineDevider" style="border-top-width: 0px;" align="center"><div align="center"></div>
|
136
|
+
</td>
|
137
|
+
</tr>
|
138
|
+
<tr class="msgEvenTableRow">
|
139
|
+
<td nowrap="nowrap">
|
140
|
+
<span style="float: right;"><img src="wwf80-new-topic-forum_posts.asp_files/ip.gif" alt="IP" align="absmiddle" border="0"> IP: <a href="javascript:winOpener('pop_up_IP_blocking.asp?IP=65.102.174.9','ip',1,1,425,400)" class="smLink">65.102.174.9</a></span> <a href="http://omlb.com/forum/edit_post_form.asp?PID=103143&PN=1"><img src="wwf80-new-topic-forum_posts.asp_files/edit_post_icon.gif" alt="Edit Post" align="absmiddle" border="0"></a> <a href="http://omlb.com/forum/delete_post.asp?PID=103143&PN=1" onclick="return confirm('Are you sure you want to delete this post?')"><img src="wwf80-new-topic-forum_posts.asp_files/delete_sm.gif" alt="Delete Post" align="absmiddle" border="0"></a> <a href="http://omlb.com/forum/hide_post.asp?PID=103143" onclick="return confirm('Are you sure you want to hide this post?')"><img src="wwf80-new-topic-forum_posts.asp_files/hide_icon.gif" alt="Hide Post" align="absmiddle" border="0"></a> <a href="javascript:winOpener('move_post_form.asp?PID=103143','move',1,1,460,255)"><img src="wwf80-new-topic-forum_posts.asp_files/move_icon.gif" alt="Move Post" align="absmiddle" border="0"></a></td>
|
141
|
+
</tr>
|
142
|
+
<tr class="postSeparatorTableRow">
|
143
|
+
<td colspan="2"></td>
|
144
|
+
</tr>
|
145
|
+
</tbody></table><br>
|
146
|
+
<form method="post" name="frmMessageForm" id="frmMessageForm" action="new_post.asp" onsubmit="return CheckForm();" onreset="return clearForm();">
|
147
|
+
<table class="tableBorder" align="center" cellpadding="2" cellspacing="1">
|
148
|
+
<tbody><tr class="tableLedger">
|
149
|
+
<td>Quick Reply</td>
|
150
|
+
</tr>
|
151
|
+
<tr class="tableRow">
|
152
|
+
<td>
|
153
|
+
<table align="center" cellpadding="2" cellspacing="0">
|
154
|
+
<tbody><tr class="tableRow">
|
155
|
+
<td align="right" valign="top" width="15%"><br>Message:
|
156
|
+
</td><td valign="top" width="85%">
|
157
|
+
|
158
|
+
<!--//
|
159
|
+
/* *******************************************************
|
160
|
+
Application: Web Wiz Rich Text Editor
|
161
|
+
Info: http://www.richtexteditor.org
|
162
|
+
Copyright: 2001-2006 Web Wiz. All rights reserved
|
163
|
+
******************************************************* */
|
164
|
+
//-->
|
165
|
+
|
166
|
+
<script language="JavaScript" src="wwf80-new-topic-forum_posts.asp_files/RTE_javascript_common.html" type="text/javascript"></script>
|
167
|
+
<script language="JavaScript" src="wwf80-new-topic-forum_posts.asp_files/RTE_javascript.html" type="text/javascript"></script>
|
168
|
+
<script language="javascript">
|
169
|
+
WebWizRTEtoolbar('frmMessageForm');
|
170
|
+
document.write ('<iframe id="WebWizRTE" src="RTE_textarea.asp?mode=reply&ID=182" width="490" height="100" style="border: #A5ACB2 1px solid" onLoad="initialiseWebWizRTE();"></iframe>');
|
171
|
+
</script><iframe id="colourPalette" src="wwf80-new-topic-forum_posts.asp_files/RTE_iframe_colour_palette.html" style="visibility: hidden; position: absolute; left: 0px; top: 0px;" frameborder="0" height="165" scrolling="no" width="260"></iframe>
|
172
|
+
<table id="toolbar" border="0" cellpadding="1" cellspacing="0" width="490">
|
173
|
+
<tbody><tr>
|
174
|
+
<td>
|
175
|
+
<img src="wwf80-new-topic-forum_posts.asp_files/toolbar_separator.gif" align="absmiddle"><img src="wwf80-new-topic-forum_posts.asp_files/post_button_spell_check.gif" onclick="checkspell()" title="Spell Check" class="WebWizRTEbutton" onmouseover="overIcon(this)" onmouseout="outIcon(this)" id="spellboundSC" align="absmiddle" border="0">
|
176
|
+
<img src="wwf80-new-topic-forum_posts.asp_files/toolbar_separator.gif" align="absmiddle"><img src="wwf80-new-topic-forum_posts.asp_files/post_button_hyperlink.gif" onclick="winOpener('RTE_popup_link.asp','link',0,1,490,332)" title="Insert Hyperlink" class="WebWizRTEbutton" onmouseover="overIcon(this)" onmouseout="outIcon(this)" align="absmiddle" border="0"><img src="wwf80-new-topic-forum_posts.asp_files/post_button_smiley.gif" onclick="winOpener('RTE_popup_emoticons.asp','emot',0,1,450,340)" title="Emoticons" class="WebWizRTEbutton" onmouseover="overIcon(this)" onmouseout="outIcon(this)" align="absmiddle" border="0">
|
177
|
+
<img src="wwf80-new-topic-forum_posts.asp_files/toolbar_separator.gif" align="absmiddle"><img src="wwf80-new-topic-forum_posts.asp_files/post_button_bold.gif" title="Bold" onclick="FormatText('bold', '')" class="WebWizRTEbutton" onmouseover="overIcon(this)" onmouseout="outIcon(this)" align="absmiddle"><img src="wwf80-new-topic-forum_posts.asp_files/post_button_italic.gif" title="Italic" onclick="FormatText('italic', '')" class="WebWizRTEbutton" onmouseover="overIcon(this)" onmouseout="outIcon(this)" align="absmiddle"><img src="wwf80-new-topic-forum_posts.asp_files/post_button_underline.gif" title="Underline" onclick="FormatText('underline', '')" class="WebWizRTEbutton" onmouseover="overIcon(this)" onmouseout="outIcon(this)" align="absmiddle">
|
178
|
+
<img src="wwf80-new-topic-forum_posts.asp_files/toolbar_separator.gif" align="absmiddle"><img id="forecolor" src="wwf80-new-topic-forum_posts.asp_files/post_button_colour_pallete.gif" title="Text Colour" onclick="FormatText('forecolor', '')" class="WebWizRTEbutton" onmouseover="overIcon(this)" onmouseout="outIcon(this)" align="absmiddle" border="0">
|
179
|
+
<img src="wwf80-new-topic-forum_posts.asp_files/toolbar_separator.gif" align="absmiddle"><img src="wwf80-new-topic-forum_posts.asp_files/post_button_about.gif" onclick="winOpener('RTE_popup_about.asp','about',0,0,400,187)" title="About Rich Text Editor" class="WebWizRTEbutton" onmouseover="overIcon(this)" onmouseout="outIcon(this)" align="absmiddle" border="0">
|
180
|
+
</td>
|
181
|
+
</tr>
|
182
|
+
</tbody></table>
|
183
|
+
<iframe id="WebWizRTE" src="wwf80-new-topic-forum_posts.asp_files/RTE_textarea.html" style="border: 1px solid rgb(165, 172, 178);" onload="initialiseWebWizRTE();" height="100" width="490"></iframe>
|
184
|
+
<noscript><strong><br /><br />JavaScript must be enabled on your web browser in order to use this Rich Text Editor!</strong></noscript>
|
185
|
+
<input name="message" id="message" value="" type="hidden">
|
186
|
+
<input name="browser" id="browser" value="RTE" type="hidden">
|
187
|
+
</td>
|
188
|
+
</tr>
|
189
|
+
<tr class="tableRow">
|
190
|
+
<td align="right" width="92"> </td>
|
191
|
+
<td class="text" valign="bottom" width="508"> <input name="forumCodes" id="forumCodes" value="True" checked="checked" type="checkbox">Enable <a href="javascript:winOpener('forum_codes.asp','codes',1,1,550,400)">Forum Codes</a> to format post
|
192
|
+
</td></tr>
|
193
|
+
<tr class="tableRow">
|
194
|
+
<td align="right" height="7" width="92"> </td>
|
195
|
+
<td class="text" height="7" valign="bottom" width="508">
|
196
|
+
<input name="signature" value="True" checked="checked" type="checkbox">Show Signature
|
197
|
+
</td>
|
198
|
+
</tr>
|
199
|
+
<tr class="tableRow">
|
200
|
+
<td>
|
201
|
+
<input name="mode" id="mode" value="reply" type="hidden">
|
202
|
+
<input name="FID" id="FID" value="37" type="hidden">
|
203
|
+
<input name="TID" id="TID" value="152" type="hidden">
|
204
|
+
<input name="PN" id="PN" value="1" type="hidden">
|
205
|
+
<input name="ThreadPos" id="ThreadPos" value="2" type="hidden">
|
206
|
+
<input name="formID" id="formID" value="" type="hidden">
|
207
|
+
<input name="pre" id="pre" value="" type="hidden">
|
208
|
+
</td>
|
209
|
+
<td width="70%">
|
210
|
+
<input id="Submit" name="Submit" value="Post Reply" onclick="document.getElementById('message').value=document.getElementById('WebWizRTE').contentWindow.document.body.innerHTML;" type="submit">
|
211
|
+
<input name="Preview" value="Preview Post" onclick="document.getElementById('pre').value=document.getElementById('WebWizRTE').contentWindow.document.body.innerHTML; OpenPreviewWindow(document.frmMessageForm);" type="button">
|
212
|
+
<input name="Reset" value="Clear Form" type="reset">
|
213
|
+
</td>
|
214
|
+
</tr>
|
215
|
+
</tbody></table>
|
216
|
+
</td>
|
217
|
+
</tr>
|
218
|
+
</tbody></table>
|
219
|
+
</form><table class="basicTable" align="center" cellpadding="3" cellspacing="0">
|
220
|
+
<tbody><tr>
|
221
|
+
<td colspan="2" align="right" nowrap="nowrap"><a href="http://omlb.com/forum/new_reply_form.asp?TID=5082&PN=1&TR=1"><img src="wwf80-new-topic-forum_posts.asp_files/post_reply.gif" alt="Post Reply" align="absmiddle" border="0"></a> <a href="http://omlb.com/forum/new_topic_form.asp?FID=37"><img src="wwf80-new-topic-forum_posts.asp_files/new_post.gif" alt="Post New Topic" align="absmiddle" border="0"></a> <a href="http://omlb.com/forum/new_poll_form.asp?FID=37"><img src="wwf80-new-topic-forum_posts.asp_files/new_poll.gif" alt="Create New Poll" align="absmiddle" border="0"></a></td>
|
222
|
+
</tr>
|
223
|
+
<tr>
|
224
|
+
<td>
|
225
|
+
<table class="tableBorder" style="width: 100px;" cellpadding="6" cellspacing="1">
|
226
|
+
<tbody><tr class="tableRow">
|
227
|
+
<td align="center" nowrap="nowrap"><img src="wwf80-new-topic-forum_posts.asp_files/print_version.gif" alt="Printable version" align="absmiddle" border="0"> <a href="http://omlb.com/forum/printer_friendly_posts.asp?TID=5082" target="_blank" class="smLink">Printable version</a>
|
228
|
+
</td>
|
229
|
+
</tr>
|
230
|
+
</tbody></table>
|
231
|
+
<br>
|
232
|
+
Forum Jump
|
233
|
+
<select onchange="linkURL(this)" name="SelectJumpForum">
|
234
|
+
<option value="" disabled="disabled" selected="selected">-- Select Forum --</option>
|
235
|
+
<optgroup label="Forum(s)">
|
236
|
+
</optgroup><optgroup label=" The Shit Pit ">
|
237
|
+
<option value="forum_topics.asp?FID=28"> General info</option>
|
238
|
+
<option value="forum_topics.asp?FID=30"> Daily Clicks</option>
|
239
|
+
<option value="forum_topics.asp?FID=38"> Cellphotobot rewind</option>
|
240
|
+
<option value="forum_topics.asp?FID=37"> Cellphoto bot</option>
|
241
|
+
<option value="forum_topics.asp?FID=38"> Cellphotobot rewind</option>
|
242
|
+
<option value="forum_topics.asp?FID=37"> Cellphoto bot</option>
|
243
|
+
<option value="forum_topics.asp?FID=2"> The Hookup</option>
|
244
|
+
<option value="forum_topics.asp?FID=3"> General Bullshit</option>
|
245
|
+
<option value="forum_topics.asp?FID=4"> One Chord Wonders</option>
|
246
|
+
<option value="forum_topics.asp?FID=26"> Shit Peddling</option>
|
247
|
+
<option value="forum_topics.asp?FID=34"> Keep it Swappy!</option>
|
248
|
+
<option value="forum_topics.asp?FID=29"> Old Cellphotobot</option>
|
249
|
+
</optgroup>
|
250
|
+
<optgroup label=" Skate 2 Hell">
|
251
|
+
<option value="forum_topics.asp?FID=8"> Skate Sessions</option>
|
252
|
+
<option value="forum_topics.asp?FID=20"> Backyard Ramp Party</option>
|
253
|
+
</optgroup>
|
254
|
+
<optgroup label=" Skate Park Reviews and Info">
|
255
|
+
<option value="forum_topics.asp?FID=16"> Oregon Rules</option>
|
256
|
+
<option value="forum_topics.asp?FID=17"> Other</option>
|
257
|
+
<option value="forum_topics.asp?FID=14"> Seattle Area</option>
|
258
|
+
<option value="forum_topics.asp?FID=15"> Other WA Parks</option>
|
259
|
+
<option value="forum_topics.asp?FID=9"> EASTSIDE PARKS</option>
|
260
|
+
</optgroup>
|
261
|
+
<optgroup label=" Other Old Man Fun">
|
262
|
+
<option value="forum_topics.asp?FID=23"> Miscellaneous Geriatrics </option>
|
263
|
+
<option value="forum_topics.asp?FID=25"> Game On!</option>
|
264
|
+
<option value="forum_topics.asp?FID=31"> Fish On!</option>
|
265
|
+
<option value="forum_topics.asp?FID=22"> OMLB MotoX</option>
|
266
|
+
</optgroup>
|
267
|
+
<optgroup label=" OMLB Site and Stuff ">
|
268
|
+
<option value="forum_topics.asp?FID=35"> CellphotobotTest</option>
|
269
|
+
<option value="forum_topics.asp?FID=19"> Site Shite</option>
|
270
|
+
<option value="forum_topics.asp?FID=18"> T-shirts, Stickers and other Paraphernalia</option>
|
271
|
+
<option value="forum_topics.asp?FID=35"> CellphotobotTest</option>
|
272
|
+
<option value="forum_topics.asp?FID=5"> New Forum</option>
|
273
|
+
<option value="forum_topics.asp?FID=10"> Tips, Tricks, & How to...</option>
|
274
|
+
</optgroup>
|
275
|
+
<optgroup label=" Snowboarding is for Pussies ">
|
276
|
+
<option value="forum_topics.asp?FID=11"> Face Plant!</option>
|
277
|
+
<option value="forum_topics.asp?FID=1"> Snow Sessions</option>
|
278
|
+
<option value="forum_topics.asp?FID=39"> - Sled Stoke</option>
|
279
|
+
<option value="forum_topics.asp?FID=6"> CATastrophy!</option>
|
280
|
+
<option value="forum_topics.asp?FID=7"> Masters Division</option>
|
281
|
+
</optgroup>
|
282
|
+
<optgroup label=" 100 Post Club!">
|
283
|
+
<option value="forum_topics.asp?FID=13"> Congratulations</option>
|
284
|
+
</optgroup>
|
285
|
+
|
286
|
+
</select>
|
287
|
+
</td>
|
288
|
+
<td class="smText" align="right" nowrap="nowrap">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> delete your posts in this forum<br>You <strong>can</strong> edit your posts in this forum<br>You <strong>can</strong> create polls in this forum<br>You <strong>can</strong> vote in polls in this forum<br></td>
|
289
|
+
</tr>
|
290
|
+
</tbody></table>
|
291
|
+
<br>
|
292
|
+
<div align="center"><span class="text" style="font-size: 10px;">Bulletin Board Software by <a href="http://www.webwizforums.com/" target="_blank" style="font-size: 10px;">Web Wiz Forums</a> version 8.05a</span><br><span class="text" style="font-size: 10px;">Copyright �2001-2006 <a href="http://www.webwizguide.info/" target="_blank" style="font-size: 10px;">Web Wiz Guide</a></span><span class="smText"><br><br>This page was generated in 0.094 seconds.</span></div><!-- footer -->
|
293
|
+
</body></html>
|