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,305 @@
|
|
1
|
+
<html><head><title>Post Alley..: test topic</title>
|
2
|
+
|
3
|
+
|
4
|
+
<meta name="copyright" content="Copyright (C) 2001-2004 Bruce Corkhill"><!-- Web Wiz Forums ver. 7.91 is written and produced by Bruce Corkhill �2001-2004
|
5
|
+
If you want your own FREE Forum then goto http://www.webwizforums.com -->
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
<script language="JavaScript">
|
10
|
+
function CheckForm() {
|
11
|
+
var errorMsg = '';
|
12
|
+
//For Gecko Madis API (RTE)
|
13
|
+
if (document.frmAddMessage.message.value.indexOf('<br>') > -1 && document.frmAddMessage.message.value.length == 8) document.frmAddMessage.message.value = '';
|
14
|
+
|
15
|
+
|
16
|
+
//Check for message
|
17
|
+
if (document.frmAddMessage.message.value==''){
|
18
|
+
errorMsg += '\n\tMessage \t\t- Enter a Message to post';
|
19
|
+
}
|
20
|
+
|
21
|
+
//If there is aproblem with the form then display an error
|
22
|
+
if (errorMsg != ''){
|
23
|
+
msg = '_______________________________________________________________\n\n';
|
24
|
+
msg += 'The form has not been submitted because there are problem(s) with the form.\n';
|
25
|
+
msg += 'Please correct the problem(s) and re-submit the form.\n';
|
26
|
+
msg += '_______________________________________________________________\n\n';
|
27
|
+
msg += 'The following field(s) need to be corrected: -\n';
|
28
|
+
|
29
|
+
errorMsg += alert(msg + errorMsg + '\n\n');
|
30
|
+
return false;
|
31
|
+
}
|
32
|
+
|
33
|
+
//Reset the submition action
|
34
|
+
document.frmAddMessage.action = 'post_message.asp?PN=1'
|
35
|
+
document.frmAddMessage.target = '_self';
|
36
|
+
document.frmAddMessage.Submit.disabled=true;
|
37
|
+
return true;
|
38
|
+
}
|
39
|
+
</script><script language="javascript" src="wwf79-new-topic-forum_posts-response_files/default_javascript.js" type="text/javascript"></script>
|
40
|
+
|
41
|
+
<link href="wwf79-new-topic-forum_posts-response_files/default_style.css" rel="stylesheet" type="text/css"><style type="text/css">@import url(http://hoodwink.d/themes/1/hoodwinkd.css);</style><style type="text/css"></style></head><body leftmargin="0" topmargin="0" background="" bgcolor="#ffffff" marginheight="0" marginwidth="0" text="#000000"><table align="center" border="0" cellpadding="4" cellspacing="0" width="98%">
|
42
|
+
<tbody><tr>
|
43
|
+
<td class="text">
|
44
|
+
<a href="http://auggiedawg.com/auggiedawg/forum" target="_self"><img src="wwf79-new-topic-forum_posts-response_files/Fuzzy2.jpg" border="0"></a>
|
45
|
+
</td>
|
46
|
+
<td align="center" height="2"><table border="0" cellpadding="0" cellspacing="0" width="100%">
|
47
|
+
<tbody><tr>
|
48
|
+
<td align="center"> <a href="http://auggiedawg.com/forum/active_topics.asp" target="_self" class="nav"><img src="wwf79-new-topic-forum_posts-response_files/active_topics.gif" alt="Active Topics" align="absmiddle" border="0">Active Topics</a> <a href="http://auggiedawg.com/forum/members.asp" target="_self" class="nav"><img src="wwf79-new-topic-forum_posts-response_files/members_list.gif" alt="Display List of Forum Members" align="absmiddle" border="0">Memberlist</a> <a href="http://auggiedawg.com/forum/search_form.asp?FID=39" target="_self" class="nav"><img src="wwf79-new-topic-forum_posts-response_files/search.gif" alt="Search The Forum" align="absmiddle" border="0">Search</a> <a href="http://auggiedawg.com/forum/help.asp" target="_self" class="nav"><img src="wwf79-new-topic-forum_posts-response_files/help_icon.gif" alt="Help" align="absmiddle" border="0">Help</a><br></td>
|
49
|
+
</tr>
|
50
|
+
<tr>
|
51
|
+
<td align="center"><a href="http://auggiedawg.com/forum/pm_welcome.asp" target="_self" class="nav"><img src="wwf79-new-topic-forum_posts-response_files/read_private_message_icon.gif" alt="Read" message="" align="absmiddle" border="0">Private Messenger</a> <a href="http://auggiedawg.com/forum/member_control_panel.asp" target="_self" class="nav"><img src="wwf79-new-topic-forum_posts-response_files/admin_icon.gif" alt="Member Control Panel Menu" align="absmiddle" border="0">Settings</a> <a href="http://auggiedawg.com/forum/log_off_user.asp" target="_self" class="nav"><img src="wwf79-new-topic-forum_posts-response_files/log_off_icon.gif" alt="Logout" align="absmiddle" border="0">Logout [tester]</a></td>
|
52
|
+
</tr>
|
53
|
+
</tbody></table>
|
54
|
+
</td>
|
55
|
+
</tr>
|
56
|
+
</tbody></table>
|
57
|
+
<a name="top"></a>
|
58
|
+
<table align="center" border="0" cellpadding="3" cellspacing="0" width="98%"><tbody><tr>
|
59
|
+
<td class="heading" align="left">Phone photos</td>
|
60
|
+
</tr>
|
61
|
+
<tr>
|
62
|
+
<td class="bold" align="left" width="95%"><img src="wwf79-new-topic-forum_posts-response_files/open_folder_icon.gif" align="absmiddle" border="0"> <a href="http://auggiedawg.com/forum/default.asp" target="_self" class="boldLink">Post Alley..</a> : <a href="http://auggiedawg.com/forum/forum_topics.asp?FID=39&PN=1" target="_self" class="boldLink">Phone photos</a>
|
63
|
+
</td>
|
64
|
+
<td align="right" width="5%">
|
65
|
+
</td>
|
66
|
+
</tr>
|
67
|
+
</tbody></table>
|
68
|
+
<table align="center" border="0" cellpadding="4" cellspacing="0" width="98%">
|
69
|
+
<tbody><tr>
|
70
|
+
<td width="70%"><span class="lgText"><img src="wwf79-new-topic-forum_posts-response_files/subject_folder.gif" alt="Subject" align="absmiddle"> Topic: test topic</span>
|
71
|
+
</td>
|
72
|
+
<td align="right"><a href="#reply" target="_self"><img src="wwf79-new-topic-forum_posts-response_files/post_reply.gif" alt="Post Reply" align="absmiddle" border="0"></a><a href="http://auggiedawg.com/forum/post_message_form.asp?FID=39" target="_self"><img src="wwf79-new-topic-forum_posts-response_files/new_post.gif" alt="Post New Topic" align="absmiddle" border="0"></a><a href="http://auggiedawg.com/forum/poll_create_form.asp?FID=39" target="_self"><img src="wwf79-new-topic-forum_posts-response_files/new_poll.gif" alt="Create New Poll" align="absmiddle" border="0"></a>
|
73
|
+
</td>
|
74
|
+
</tr>
|
75
|
+
</tbody></table><table align="center" bgcolor="#006699" border="0" cellpadding="1" cellspacing="0" width="98%">
|
76
|
+
<tbody><tr>
|
77
|
+
<td>
|
78
|
+
<table bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="0" width="100%">
|
79
|
+
<tbody><tr>
|
80
|
+
<td bgcolor="#ffffff">
|
81
|
+
<table border="0" cellpadding="3" cellspacing="1" width="100%">
|
82
|
+
<tbody><tr>
|
83
|
+
<td class="tHeading" background="wwf79-new-topic-forum_posts-response_files/table_bg_image.html" bgcolor="#cccccc" nowrap="nowrap" width="140">Author</td>
|
84
|
+
<td class="tHeading" background="wwf79-new-topic-forum_posts-response_files/table_bg_image.html" bgcolor="#cccccc" nowrap="nowrap" width="82%"><table border="0" cellpadding="0" cellspacing="0" width="100%">
|
85
|
+
<tbody><tr>
|
86
|
+
<td class="tHeading" width="20%">Message</td>
|
87
|
+
<td align="right" nowrap="nowrap" width="80%"><a href="http://auggiedawg.com/forum/get_topic.asp?FID=39&TID=139&DIR=P" target="_self" class="npLink"><< Prev Topic</a> | <a href="http://auggiedawg.com/forum/get_topic.asp?FID=39&TID=139&DIR=N" target="_self" class="npLink">Next Topic >></a></td>
|
88
|
+
</tr>
|
89
|
+
</tbody></table></td>
|
90
|
+
</tr>
|
91
|
+
<tr>
|
92
|
+
<td class="smText" background="" bgcolor="#efefef" valign="top">
|
93
|
+
<a name="1215"></a>
|
94
|
+
<span class="bold">tester</span><br>Barney<br>
|
95
|
+
<img src="wwf79-new-topic-forum_posts-response_files/1_star_rating.gif" alt="Barney"><br><img src="wwf79-new-topic-forum_posts-response_files/mike-fs-cellphone-110x110.png" alt="Avatar" onerror="this.src='forum_images/blank.gif', height='0';" height="95" vspace="5" width="95"><br><br>Joined: 17 October 2006<br>Location: United States
|
96
|
+
<br>Online Status: Online<br>Posts: 10
|
97
|
+
</td>
|
98
|
+
<td class="text" background="" bgcolor="#efefef" valign="top">
|
99
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
100
|
+
<tbody><tr>
|
101
|
+
<td class="smText" width="80%">Posted: 24 October 2007 at 9:03pm | IP Logged
|
102
|
+
</td>
|
103
|
+
<td align="right" nowrap="nowrap" width="20%">
|
104
|
+
<a href="http://auggiedawg.com/forum/edit_post.asp?M=Q&PID=1215&TPN=1"><img src="wwf79-new-topic-forum_posts-response_files/quote_icon.gif" alt="Quote tester" align="absmiddle" border="0"></a>
|
105
|
+
</td>
|
106
|
+
</tr>
|
107
|
+
<tr>
|
108
|
+
<td colspan="2"><hr></td>
|
109
|
+
</tr>
|
110
|
+
</tbody></table>
|
111
|
+
<!-- Message body -->
|
112
|
+
just testing
|
113
|
+
|
114
|
+
<!-- Message body ''"" -->
|
115
|
+
</td>
|
116
|
+
</tr>
|
117
|
+
<tr>
|
118
|
+
<td background="" bgcolor="#efefef"><a href="#top" target="_self" class="npLink">Back to Top</a></td>
|
119
|
+
<td class="text" background="" bgcolor="#efefef"><a href="javascript:openWin('pop_up_profile.asp?PF=27&FID=39','profile','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=590,height=425')"><img src="wwf79-new-topic-forum_posts-response_files/profile_icon.gif" alt="View tester's Profile" align="absmiddle" border="0"></a>
|
120
|
+
<a href="http://auggiedawg.com/forum/search_form.asp?KW=tester&SI=AR&FM=39&FID=39&TID=139&PN=1&TPN=1"><img src="wwf79-new-topic-forum_posts-response_files/search_sm.gif" alt="Search for other posts by tester" align="absmiddle" border="0"></a>
|
121
|
+
<a href="http://mondragon.cc/" target="_blank"><img src="wwf79-new-topic-forum_posts-response_files/home_icon.gif" alt="Visit tester's Homepage" align="absmiddle" border="0"></a>
|
122
|
+
<a href="http://auggiedawg.com/forum/pm_new_message_form.asp?name=tester" target="_self"><img src="wwf79-new-topic-forum_posts-response_files/pm_icon.gif" alt="Send Private Message" align="absmiddle" border="0"></a>
|
123
|
+
<a href="http://auggiedawg.com/forum/pm_buddy_list.asp?name=tester" target="_self"><img src="wwf79-new-topic-forum_posts-response_files/add_buddy_sm.gif" alt="Add to Buddy List" align="absmiddle" border="0"></a>
|
124
|
+
<a href="http://auggiedawg.com/forum/edit_post.asp?PID=1215&PN=1&TPN=1" target="_self"><img src="wwf79-new-topic-forum_posts-response_files/edit_post_icon.gif" alt="Edit Post" align="absmiddle" border="0"></a>
|
125
|
+
<a href="http://auggiedawg.com/forum/delete_post.asp?PID=1215&PN=1&TPN=1" target="_self" onclick="return confirm('Are you sure you want to delete this post?')"><img src="wwf79-new-topic-forum_posts-response_files/delete_sm.gif" alt="Delete Post" align="absmiddle" border="0"></a>
|
126
|
+
</td>
|
127
|
+
</tr>
|
128
|
+
|
129
|
+
<tr>
|
130
|
+
<td colspan="2" align="center" background="" bgcolor="#d1d7dc"><span style="font-size: 2px;"> </span></td> </tr>
|
131
|
+
</tbody></table></td>
|
132
|
+
</tr>
|
133
|
+
</tbody></table>
|
134
|
+
</td></tr>
|
135
|
+
</tbody></table>
|
136
|
+
<br>
|
137
|
+
<div align="center"><a name="reply"></a>
|
138
|
+
<span class="heading">Post Reply</span><br>
|
139
|
+
<script language="JavaScript" src="wwf79-new-topic-forum_posts-response_files/RTE_message_form_js.html" type="text/javascript"></script>
|
140
|
+
<form method="post" name="frmAddMessage" action="post_message.asp?PN=" onsubmit="return CheckForm();" onreset="return ResetForm();">
|
141
|
+
<table align="center" bgcolor="#006699" border="0" cellpadding="1" cellspacing="0" height="230" width="610">
|
142
|
+
<tbody><tr>
|
143
|
+
<td>
|
144
|
+
<table align="center" background="" bgcolor="#efefef" border="0" cellpadding="0" cellspacing="0" height="201" width="100%">
|
145
|
+
<tbody><tr>
|
146
|
+
<td>
|
147
|
+
<table align="center" border="0" cellpadding="2" cellspacing="0" height="233" width="100%">
|
148
|
+
<tbody><tr>
|
149
|
+
<td colspan="2" class="text" align="left" height="30">*Indicates required fields</td>
|
150
|
+
</tr> <tr>
|
151
|
+
<td align="right" valign="bottom" width="15%"> </td>
|
152
|
+
<td valign="bottom" width="70%">
|
153
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
154
|
+
<tbody><tr>
|
155
|
+
<td>
|
156
|
+
<table border="0" cellpadding="2" cellspacing="0" width="100%">
|
157
|
+
<tbody><tr>
|
158
|
+
<td>
|
159
|
+
<span id="ToolBar1">
|
160
|
+
<select id="selectFont" name="selectFont" onchange="FormatText('fontname', selectFont.options[selectFont.selectedIndex].value); document.frmAddMessage.selectFont.options[0].selected = true;">
|
161
|
+
<option value="0" selected="selected">-- Font Type --</option>
|
162
|
+
<option value="Arial, Helvetica, sans-serif">Arial</option>
|
163
|
+
<option value="Times New Roman, Times, serif">Times</option>
|
164
|
+
<option value="Courier New, Courier, mono">Courier New</option>
|
165
|
+
<option value="Verdana, Arial, Helvetica, sans-serif">Verdana</option>
|
166
|
+
</select>
|
167
|
+
<select id="selectFontSize" name="selectFontSize" onchange="FormatText('fontsize', selectFontSize.options[selectFontSize.selectedIndex].value); document.frmAddMessage.selectFontSize.options[0].selected = true;">
|
168
|
+
<option value="0" selected="selected">-- Font Size --</option>
|
169
|
+
<option value="1">1</option>
|
170
|
+
<option value="2">2</option>
|
171
|
+
<option value="3">3</option>
|
172
|
+
<option value="4">4</option>
|
173
|
+
<option value="5">5</option>
|
174
|
+
<option value="6">6</option>
|
175
|
+
<option value="7">7</option>
|
176
|
+
</select>
|
177
|
+
<img src="wwf79-new-topic-forum_posts-response_files/post_button_bold.gif" title="Bold" onclick="FormatText('bold', '')" style="cursor: pointer;" align="absmiddle">
|
178
|
+
<img src="wwf79-new-topic-forum_posts-response_files/post_button_italic.gif" title="Italic" onclick="FormatText('italic', '')" style="cursor: pointer;" align="absmiddle">
|
179
|
+
<img src="wwf79-new-topic-forum_posts-response_files/post_button_underline.gif" title="Underline" onclick="FormatText('underline', '')" style="cursor: pointer;" align="absmiddle">
|
180
|
+
<img id="forecolor" src="wwf79-new-topic-forum_posts-response_files/post_button_colour_pallete.gif" title="Text Colour" onclick="FormatText('forecolor', '')" style="cursor: pointer;" align="absmiddle" border="0">
|
181
|
+
<a href="javascript:openWin('upload_images.asp?MSG=RTE&FID=39','images','toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width=400,height=150')"><img src="wwf79-new-topic-forum_posts-response_files/post_button_image_upload.gif" alt="Image Upload" align="absmiddle" border="0"></a>
|
182
|
+
<a href="javascript:openWin('upload_files.asp?MSG=RTE&FID=39','files','toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width=400,height=150')"><img src="wwf79-new-topic-forum_posts-response_files/post_button_file_upload.gif" alt="File Upload" align="absmiddle" border="0"></a> </span> </td>
|
183
|
+
</tr>
|
184
|
+
<tr>
|
185
|
+
<td>
|
186
|
+
<span id="ToolBar2">
|
187
|
+
<img src="wwf79-new-topic-forum_posts-response_files/post_button_undo.gif" onclick="FormatText('undo')" style="cursor: pointer;" title="Undo" align="absmiddle">
|
188
|
+
<img src="wwf79-new-topic-forum_posts-response_files/post_button_redo.gif" onclick="FormatText('redo')" style="cursor: pointer;" title="Redo" align="absmiddle">
|
189
|
+
<img src="wwf79-new-topic-forum_posts-response_files/post_button_left_just.gif" onclick="FormatText('JustifyLeft', '')" style="cursor: pointer;" title="Left Justify" align="absmiddle">
|
190
|
+
<img src="wwf79-new-topic-forum_posts-response_files/post_button_centre.gif" onclick="FormatText('JustifyCenter', '')" style="cursor: pointer;" title="Centre Justify" align="absmiddle" border="0">
|
191
|
+
<img src="wwf79-new-topic-forum_posts-response_files/post_button_right_just.gif" onclick="FormatText('JustifyRight', '')" style="cursor: pointer;" title="Right Justify" align="absmiddle">
|
192
|
+
<img src="wwf79-new-topic-forum_posts-response_files/post_button_or_list.gif" onclick="FormatText('InsertOrderedList', '')" style="cursor: pointer;" title="Ordered List" align="absmiddle" border="0">
|
193
|
+
<img src="wwf79-new-topic-forum_posts-response_files/post_button_list.gif" onclick="FormatText('InsertUnorderedList', '')" style="cursor: pointer;" title="Unordered List" align="absmiddle" border="0">
|
194
|
+
<img src="wwf79-new-topic-forum_posts-response_files/post_button_outdent.gif" onclick="FormatText('Outdent', '')" style="cursor: pointer;" title="Outdent" align="absmiddle">
|
195
|
+
<img src="wwf79-new-topic-forum_posts-response_files/post_button_indent.gif" onclick="FormatText('indent', '')" style="cursor: pointer;" title="Indent" align="absmiddle" border="0">
|
196
|
+
<img src="wwf79-new-topic-forum_posts-response_files/post_button_hyperlink.gif" onclick="FormatText('createLink')" style="cursor: pointer;" title="Add Hyperlink" align="absmiddle" border="0">
|
197
|
+
<img src="wwf79-new-topic-forum_posts-response_files/post_button_image.gif" title="Add Image" onclick="AddImage()" style="cursor: pointer;" align="absmiddle" border="0">
|
198
|
+
</span>
|
199
|
+
<a href="javascript:openWin('RTE_about.asp','about','toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width=400,height=200')"><img src="wwf79-new-topic-forum_posts-response_files/post_button_about.gif" title="About Rich Text Editor" style="cursor: pointer;" align="absmiddle" border="0"></a>
|
200
|
+
<iframe id="colourPalette" src="wwf79-new-topic-forum_posts-response_files/RTE_colour_palette.html" style="visibility: hidden; position: absolute; left: 0px; top: 0px;" frameborder="0" height="165" scrolling="no" width="260"></iframe>
|
201
|
+
</td>
|
202
|
+
</tr>
|
203
|
+
</tbody></table>
|
204
|
+
</td>
|
205
|
+
</tr>
|
206
|
+
</tbody></table>
|
207
|
+
</td>
|
208
|
+
</tr>
|
209
|
+
<tr>
|
210
|
+
<td class="text" align="right" height="61" valign="top" width="15%">Message*:
|
211
|
+
<table align="center" border="0" cellpadding="4" cellspacing="0">
|
212
|
+
<tbody><tr><td class="smText" colspan="3" align="center"><br>Emoticons</td></tr><tr>
|
213
|
+
<td><img src="wwf79-new-topic-forum_posts-response_files/smiley1.gif" alt="Smile" onclick="AddSmileyIcon('smileys/smiley1.gif')" style="cursor: pointer;" border="0"></td>
|
214
|
+
<td><img src="wwf79-new-topic-forum_posts-response_files/smiley17.gif" alt="Tongue" onclick="AddSmileyIcon('smileys/smiley17.gif')" style="cursor: pointer;" border="0"></td>
|
215
|
+
<td><img src="wwf79-new-topic-forum_posts-response_files/smiley2.gif" alt="Wink" onclick="AddSmileyIcon('smileys/smiley2.gif')" style="cursor: pointer;" border="0"></td></tr><tr>
|
216
|
+
<td><img src="wwf79-new-topic-forum_posts-response_files/smiley19.gif" alt="Cry" onclick="AddSmileyIcon('smileys/smiley19.gif')" style="cursor: pointer;" border="0"></td>
|
217
|
+
<td><img src="wwf79-new-topic-forum_posts-response_files/smiley4.gif" alt="Big smile" onclick="AddSmileyIcon('smileys/smiley4.gif')" style="cursor: pointer;" border="0"></td>
|
218
|
+
<td><img src="wwf79-new-topic-forum_posts-response_files/smiley36.gif" alt="LOL" onclick="AddSmileyIcon('smileys/smiley36.gif')" style="cursor: pointer;" border="0"></td></tr><tr>
|
219
|
+
<td><img src="wwf79-new-topic-forum_posts-response_files/smiley11.gif" alt="Dead" onclick="AddSmileyIcon('smileys/smiley11.gif')" style="cursor: pointer;" border="0"></td>
|
220
|
+
<td><img src="wwf79-new-topic-forum_posts-response_files/smiley9.gif" alt="Embarrassed" onclick="AddSmileyIcon('smileys/smiley9.gif')" style="cursor: pointer;" border="0"></td>
|
221
|
+
<td><img src="wwf79-new-topic-forum_posts-response_files/smiley5.gif" alt="Confused" onclick="AddSmileyIcon('smileys/smiley5.gif')" style="cursor: pointer;" border="0"></td></tr><tr>
|
222
|
+
<td><img src="wwf79-new-topic-forum_posts-response_files/smiley32.gif" alt="Clap" onclick="AddSmileyIcon('smileys/smiley32.gif')" style="cursor: pointer;" border="0"></td>
|
223
|
+
<td><img src="wwf79-new-topic-forum_posts-response_files/smiley7.gif" alt="Angry" onclick="AddSmileyIcon('smileys/smiley7.gif')" style="cursor: pointer;" border="0"></td>
|
224
|
+
<td><img src="wwf79-new-topic-forum_posts-response_files/smiley18.gif" alt="Ouch" onclick="AddSmileyIcon('smileys/smiley18.gif')" style="cursor: pointer;" border="0"></td></tr>
|
225
|
+
<tr><td colspan="3" align="center"><a href="javascript:openWin('RTE_emoticons_smilies.asp','emot','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=400,height=400')" class="smLink">more...</a></td></tr>
|
226
|
+
</tbody></table></td> <td height="61" valign="top" width="70%">
|
227
|
+
<script language="javascript">
|
228
|
+
//Create an iframe
|
229
|
+
document.write ('<iframe id="message" src="RTE_textbox.asp?mode=reply&POID=1215&ID=234" width="490" height="200" onMouseOver="hideColourPallete()"></iframe>')
|
230
|
+
</script><iframe id="message" src="wwf79-new-topic-forum_posts-response_files/RTE_textbox.html" onmouseover="hideColourPallete()" height="200" width="490"></iframe>
|
231
|
+
<!-- Display a message for RTE users with JavaScript turned off -->
|
232
|
+
<noscript><span class="bold"><br /><br />JavaScript must be enabled on your web browser for you to post a message in the forum!</span></noscript></td>
|
233
|
+
</tr>
|
234
|
+
<tr>
|
235
|
+
<td align="right" width="92"> </td>
|
236
|
+
<td class="text" valign="bottom" width="508"> <input name="forumCodes" value="True" checked="checked" type="checkbox">Enable <a href="javascript:openWin('forum_codes.asp','codes','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=550,height=400')">Forum Codes</a> to format post
|
237
|
+
</td></tr>
|
238
|
+
<tr><td>
|
239
|
+
<input name="message" value="" type="hidden">
|
240
|
+
<input name="mode" value="reply" type="hidden">
|
241
|
+
<input name="FID" value="39" type="hidden">
|
242
|
+
<input name="TID" value="357" type="hidden">
|
243
|
+
<input name="PID" value="1215" type="hidden">
|
244
|
+
<input name="TPN" value="1" type="hidden">
|
245
|
+
<input name="ThreadPos" value="2" type="hidden">
|
246
|
+
<input name="browser" value="RTE" type="hidden">
|
247
|
+
<input name="sessionID" value="1799752" type="hidden">
|
248
|
+
</td>
|
249
|
+
<td align="left" height="2" width="70%">
|
250
|
+
<p>
|
251
|
+
<input name="Submit" value="Post Reply" onclick="document.frmAddMessage.message.value = document.getElementById('message').contentWindow.document.body.innerHTML;" tabindex="30" type="submit">
|
252
|
+
<input name="Preview" value="Preview Post" onclick="document.frmAddMessage.message.value = document.getElementById('message').contentWindow.document.body.innerHTML; OpenPreviewWindow('post_preview.asp', document.frmAddMessage);" type="button">
|
253
|
+
<input name="Reset" value="Clear Form" type="reset">
|
254
|
+
</p>
|
255
|
+
</td>
|
256
|
+
</tr>
|
257
|
+
</tbody></table>
|
258
|
+
</td>
|
259
|
+
</tr>
|
260
|
+
</tbody></table>
|
261
|
+
</td>
|
262
|
+
</tr>
|
263
|
+
</tbody></table>
|
264
|
+
</form>
|
265
|
+
<table border="0" cellpadding="3" cellspacing="0" width="98%">
|
266
|
+
<tbody><tr><form></form></tr>
|
267
|
+
<tr>
|
268
|
+
<td>
|
269
|
+
</td>
|
270
|
+
<td align="right"><a href="http://auggiedawg.com/forum/post_message_form.asp?FID=39" target="_self"><img src="wwf79-new-topic-forum_posts-response_files/new_post.gif" alt="Post New Topic" align="absmiddle" border="0"></a><a href="http://auggiedawg.com/forum/poll_create_form.asp?FID=39" target="_self"><img src="wwf79-new-topic-forum_posts-response_files/new_poll.gif" alt="Create New Poll" align="absmiddle" border="0"></a>
|
271
|
+
</td>
|
272
|
+
</tr>
|
273
|
+
</tbody></table>
|
274
|
+
<table border="0" cellpadding="1" cellspacing="0" width="98%">
|
275
|
+
<tbody><tr>
|
276
|
+
<td width="30%">
|
277
|
+
<table border="0" cellpadding="2" cellspacing="0" width="380">
|
278
|
+
<tbody><tr>
|
279
|
+
<td>
|
280
|
+
<table align="center" bgcolor="#006699" border="0" cellpadding="1" cellspacing="0" width="300">
|
281
|
+
<tbody><tr>
|
282
|
+
<td>
|
283
|
+
<table align="center" background="" bgcolor="#efefef" border="0" cellpadding="4" cellspacing="0" width="100%">
|
284
|
+
<tbody><tr>
|
285
|
+
<td align="center"> <a href="javascript:openWin('printer_friendly_posts.asp?TID=139','printer_friendly','toolbar=0,location=0,status=0,menubar=1,scrollbars=1,resizable=1,width=640,height=390')"><img src="wwf79-new-topic-forum_posts-response_files/print_version.gif" alt="Printable version" align="absmiddle" border="0"></a>
|
286
|
+
<a href="javascript:openWin('printer_friendly_posts.asp?FID=39&TID=139','printer_friendly','toolbar=0,location=0,status=0,menubar=1,scrollbars=1,resizable=1,width=640,height=390')" class="smLink">Printable version</a> </td>
|
287
|
+
</tr>
|
288
|
+
</tbody></table>
|
289
|
+
</td></tr>
|
290
|
+
</tbody></table><br><form>
|
291
|
+
<span class="text">Forum Jump</span>
|
292
|
+
<select onchange="ForumJump(this)" name="SelectJumpForum">
|
293
|
+
<option value="" selected="selected">-- Select Forum --</option>
|
294
|
+
<option value="">the winkelshed</option>
|
295
|
+
<option value="forum_topics.asp?FID=39"> - Phone photos</option>
|
296
|
+
<option value="forum_topics.asp?FID=40"> - Are you serious?</option>
|
297
|
+
<option value="">another skate forum?</option>
|
298
|
+
<option value="forum_topics.asp?FID=41"> - Sessions, parties and events.</option>
|
299
|
+
</select></form></td>
|
300
|
+
</tr></tbody></table></td>
|
301
|
+
<td class="smText" align="right" nowrap="nowrap" width="70%">You <span style="font-weight: bold;">can</span> post new topics in this forum<br>You <span style="font-weight: bold;">can</span> reply to topics in this forum<br>You <span style="font-weight: bold;">can</span> delete your posts in this forum<br>You <span style="font-weight: bold;">can</span> edit your posts in this forum<br>You <span style="font-weight: bold;">can</span> create polls in this forum<br>You <span style="font-weight: bold;">can</span> vote in polls in this forum<br></td>
|
302
|
+
</tr>
|
303
|
+
</tbody></table>
|
304
|
+
<br><span class="text" style="font-size: 10px;">Powered by <a href="http://www.webwizforums.com/" target="_blank" style="font-size: 10px;">Web Wiz Forums</a> version 7.91</span><br><span class="text" style="font-size: 10px;">Copyright �2001-2004 <a href="http://www.webwizguide.info/" target="_blank" style="font-size: 10px;">Web Wiz Guide</a></span></div><!-- footer -->
|
305
|
+
</body></html>
|
@@ -0,0 +1,212 @@
|
|
1
|
+
<html><head><title>Post New Topic</title>
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
<meta name="copyright" content="Copyright (C) 2001-2004 Bruce Corkhill"><!-- The Web Wiz Guide ASP forum is written by Bruce Corkhill �2001-2004
|
6
|
+
If you want your forum then goto http://www.webwizforums.com --><!-- Check the from is filled in correctly before submitting -->
|
7
|
+
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
<script language="JavaScript">
|
12
|
+
|
13
|
+
//Function to check form is filled in correctly before submitting
|
14
|
+
function CheckForm () {
|
15
|
+
|
16
|
+
var errorMsg = "";
|
17
|
+
|
18
|
+
//For Gecko Madis API (RTE)
|
19
|
+
if (document.frmAddMessage.message.value.indexOf('<br>') > -1 && document.frmAddMessage.message.value.length == 8) document.frmAddMessage.message.value = '';
|
20
|
+
|
21
|
+
//Check for a subject
|
22
|
+
if (document.frmAddMessage.subject.value==""){
|
23
|
+
errorMsg += "\n\tSubject \t\t- Enter a Subject for your new Topic";
|
24
|
+
}
|
25
|
+
|
26
|
+
//Check for message
|
27
|
+
if (document.frmAddMessage.message.value==""){
|
28
|
+
errorMsg += "\n\tMessage \t\t- Enter a Message to post";
|
29
|
+
}
|
30
|
+
|
31
|
+
//If there is aproblem with the form then display an error
|
32
|
+
if (errorMsg != ""){
|
33
|
+
msg = "_______________________________________________________________\n\n";
|
34
|
+
msg += "The form has not been submitted because there are problem(s) with the form.\n";
|
35
|
+
msg += "Please correct the problem(s) and re-submit the form.\n";
|
36
|
+
msg += "_______________________________________________________________\n\n";
|
37
|
+
msg += "The following field(s) need to be corrected: -\n";
|
38
|
+
|
39
|
+
errorMsg += alert(msg + errorMsg + "\n\n");
|
40
|
+
return false;
|
41
|
+
}
|
42
|
+
|
43
|
+
//Reset the submition page back to it's original place
|
44
|
+
document.frmAddMessage.action = "post_message.asp?PN=0"
|
45
|
+
document.frmAddMessage.target = "_self";
|
46
|
+
|
47
|
+
document.frmAddMessage.Submit.disabled=true;
|
48
|
+
|
49
|
+
return true;
|
50
|
+
}
|
51
|
+
</script>
|
52
|
+
|
53
|
+
<script language="javascript" src="wwf79-post_message_form.asp_files/default_javascript.js" type="text/javascript"></script>
|
54
|
+
|
55
|
+
<link href="wwf79-post_message_form.asp_files/default_style.css" rel="stylesheet" type="text/css"><style type="text/css">@import url(http://hoodwink.d/themes/1/hoodwinkd.css);</style><style type="text/css"></style></head><body leftmargin="0" topmargin="0" background="" bgcolor="#ffffff" marginheight="0" marginwidth="0" text="#000000"><table align="center" border="0" cellpadding="4" cellspacing="0" width="98%">
|
56
|
+
<tbody><tr>
|
57
|
+
<td class="text">
|
58
|
+
<a href="http://auggiedawg.com/auggiedawg/forum" target="_self"><img src="wwf79-post_message_form.asp_files/Fuzzy2.jpg" border="0"></a>
|
59
|
+
</td>
|
60
|
+
<td align="center" height="2"><table border="0" cellpadding="0" cellspacing="0" width="100%">
|
61
|
+
<tbody><tr>
|
62
|
+
<td align="center"> <a href="http://auggiedawg.com/forum/active_topics.asp" target="_self" class="nav"><img src="wwf79-post_message_form.asp_files/active_topics.gif" alt="Active Topics" align="absmiddle" border="0">Active Topics</a> <a href="http://auggiedawg.com/forum/members.asp" target="_self" class="nav"><img src="wwf79-post_message_form.asp_files/members_list.gif" alt="Display List of Forum Members" align="absmiddle" border="0">Memberlist</a> <a href="http://auggiedawg.com/forum/search_form.asp?FID=39" target="_self" class="nav"><img src="wwf79-post_message_form.asp_files/search.gif" alt="Search The Forum" align="absmiddle" border="0">Search</a> <a href="http://auggiedawg.com/forum/help.asp" target="_self" class="nav"><img src="wwf79-post_message_form.asp_files/help_icon.gif" alt="Help" align="absmiddle" border="0">Help</a><br></td>
|
63
|
+
</tr>
|
64
|
+
<tr>
|
65
|
+
<td align="center"><a href="http://auggiedawg.com/forum/pm_welcome.asp" target="_self" class="nav"><img src="wwf79-post_message_form.asp_files/read_private_message_icon.gif" alt="Read" message="" align="absmiddle" border="0">Private Messenger</a> <a href="http://auggiedawg.com/forum/member_control_panel.asp" target="_self" class="nav"><img src="wwf79-post_message_form.asp_files/admin_icon.gif" alt="Member Control Panel Menu" align="absmiddle" border="0">Settings</a> <a href="http://auggiedawg.com/forum/log_off_user.asp" target="_self" class="nav"><img src="wwf79-post_message_form.asp_files/log_off_icon.gif" alt="Logout" align="absmiddle" border="0">Logout [tester]</a></td>
|
66
|
+
</tr>
|
67
|
+
</tbody></table>
|
68
|
+
</td>
|
69
|
+
</tr>
|
70
|
+
</tbody></table>
|
71
|
+
<table align="center" border="0" cellpadding="3" cellspacing="0" width="98%">
|
72
|
+
<tbody><tr>
|
73
|
+
<td class="heading" align="left">Post New Topic</td>
|
74
|
+
</tr>
|
75
|
+
<tr>
|
76
|
+
<td class="bold" align="left" width="71%"><img src="wwf79-post_message_form.asp_files/open_folder_icon.gif" align="absmiddle" border="0"> <a href="http://auggiedawg.com/forum/default.asp" target="_self" class="boldLink">Post Alley..</a> : <a href="http://auggiedawg.com/forum/forum_topics.asp?FID=39" target="_self" class="boldLink">Phone photos</a> : Post New Topic<br></td>
|
77
|
+
</tr>
|
78
|
+
</tbody></table><br>
|
79
|
+
<script language="JavaScript" src="wwf79-post_message_form.asp_files/RTE_message_form_js.html" type="text/javascript"></script>
|
80
|
+
<form method="post" name="frmAddMessage" action="post_message.asp?PN=" onsubmit="return CheckForm();" onreset="return ResetForm();">
|
81
|
+
<table align="center" bgcolor="#006699" border="0" cellpadding="1" cellspacing="0" height="230" width="610">
|
82
|
+
<tbody><tr>
|
83
|
+
<td>
|
84
|
+
<table align="center" background="" bgcolor="#efefef" border="0" cellpadding="0" cellspacing="0" height="201" width="100%">
|
85
|
+
<tbody><tr>
|
86
|
+
<td>
|
87
|
+
<table align="center" border="0" cellpadding="2" cellspacing="0" height="233" width="100%">
|
88
|
+
<tbody><tr>
|
89
|
+
<td colspan="2" class="text" align="left" height="30">*Indicates required fields</td>
|
90
|
+
</tr> <tr>
|
91
|
+
<td class="text" align="right">Subject*:</td>
|
92
|
+
<td width="70%">
|
93
|
+
<input name="subject" size="30" maxlength="41" type="text"> </td>
|
94
|
+
</tr> <tr>
|
95
|
+
<td align="right" valign="bottom" width="15%"> </td>
|
96
|
+
<td valign="bottom" width="70%">
|
97
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
98
|
+
<tbody><tr>
|
99
|
+
<td>
|
100
|
+
<table border="0" cellpadding="2" cellspacing="0" width="100%">
|
101
|
+
<tbody><tr>
|
102
|
+
<td>
|
103
|
+
<span id="ToolBar1">
|
104
|
+
<select id="selectFont" name="selectFont" onchange="FormatText('fontname', selectFont.options[selectFont.selectedIndex].value); document.frmAddMessage.selectFont.options[0].selected = true;">
|
105
|
+
<option value="0" selected="selected">-- Font Type --</option>
|
106
|
+
<option value="Arial, Helvetica, sans-serif">Arial</option>
|
107
|
+
<option value="Times New Roman, Times, serif">Times</option>
|
108
|
+
<option value="Courier New, Courier, mono">Courier New</option>
|
109
|
+
<option value="Verdana, Arial, Helvetica, sans-serif">Verdana</option>
|
110
|
+
</select>
|
111
|
+
<select id="selectFontSize" name="selectFontSize" onchange="FormatText('fontsize', selectFontSize.options[selectFontSize.selectedIndex].value); document.frmAddMessage.selectFontSize.options[0].selected = true;">
|
112
|
+
<option value="0" selected="selected">-- Font Size --</option>
|
113
|
+
<option value="1">1</option>
|
114
|
+
<option value="2">2</option>
|
115
|
+
<option value="3">3</option>
|
116
|
+
<option value="4">4</option>
|
117
|
+
<option value="5">5</option>
|
118
|
+
<option value="6">6</option>
|
119
|
+
<option value="7">7</option>
|
120
|
+
</select>
|
121
|
+
<img src="wwf79-post_message_form.asp_files/post_button_bold.gif" title="Bold" onclick="FormatText('bold', '')" style="cursor: pointer;" align="absmiddle">
|
122
|
+
<img src="wwf79-post_message_form.asp_files/post_button_italic.gif" title="Italic" onclick="FormatText('italic', '')" style="cursor: pointer;" align="absmiddle">
|
123
|
+
<img src="wwf79-post_message_form.asp_files/post_button_underline.gif" title="Underline" onclick="FormatText('underline', '')" style="cursor: pointer;" align="absmiddle">
|
124
|
+
<img id="forecolor" src="wwf79-post_message_form.asp_files/post_button_colour_pallete.gif" title="Text Colour" onclick="FormatText('forecolor', '')" style="cursor: pointer;" align="absmiddle" border="0">
|
125
|
+
<a href="javascript:openWin('upload_images.asp?MSG=RTE&FID=39','images','toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width=400,height=150')"><img src="wwf79-post_message_form.asp_files/post_button_image_upload.gif" alt="Image Upload" align="absmiddle" border="0"></a>
|
126
|
+
<a href="javascript:openWin('upload_files.asp?MSG=RTE&FID=39','files','toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width=400,height=150')"><img src="wwf79-post_message_form.asp_files/post_button_file_upload.gif" alt="File Upload" align="absmiddle" border="0"></a> </span> </td>
|
127
|
+
</tr>
|
128
|
+
<tr>
|
129
|
+
<td>
|
130
|
+
<span id="ToolBar2">
|
131
|
+
<img src="wwf79-post_message_form.asp_files/post_button_undo.gif" onclick="FormatText('undo')" style="cursor: pointer;" title="Undo" align="absmiddle">
|
132
|
+
<img src="wwf79-post_message_form.asp_files/post_button_redo.gif" onclick="FormatText('redo')" style="cursor: pointer;" title="Redo" align="absmiddle">
|
133
|
+
<img src="wwf79-post_message_form.asp_files/post_button_left_just.gif" onclick="FormatText('JustifyLeft', '')" style="cursor: pointer;" title="Left Justify" align="absmiddle">
|
134
|
+
<img src="wwf79-post_message_form.asp_files/post_button_centre.gif" onclick="FormatText('JustifyCenter', '')" style="cursor: pointer;" title="Centre Justify" align="absmiddle" border="0">
|
135
|
+
<img src="wwf79-post_message_form.asp_files/post_button_right_just.gif" onclick="FormatText('JustifyRight', '')" style="cursor: pointer;" title="Right Justify" align="absmiddle">
|
136
|
+
<img src="wwf79-post_message_form.asp_files/post_button_or_list.gif" onclick="FormatText('InsertOrderedList', '')" style="cursor: pointer;" title="Ordered List" align="absmiddle" border="0">
|
137
|
+
<img src="wwf79-post_message_form.asp_files/post_button_list.gif" onclick="FormatText('InsertUnorderedList', '')" style="cursor: pointer;" title="Unordered List" align="absmiddle" border="0">
|
138
|
+
<img src="wwf79-post_message_form.asp_files/post_button_outdent.gif" onclick="FormatText('Outdent', '')" style="cursor: pointer;" title="Outdent" align="absmiddle">
|
139
|
+
<img src="wwf79-post_message_form.asp_files/post_button_indent.gif" onclick="FormatText('indent', '')" style="cursor: pointer;" title="Indent" align="absmiddle" border="0">
|
140
|
+
<img src="wwf79-post_message_form.asp_files/post_button_hyperlink.gif" onclick="FormatText('createLink')" style="cursor: pointer;" title="Add Hyperlink" align="absmiddle" border="0">
|
141
|
+
<img src="wwf79-post_message_form.asp_files/post_button_image.gif" title="Add Image" onclick="AddImage()" style="cursor: pointer;" align="absmiddle" border="0">
|
142
|
+
</span>
|
143
|
+
<a href="javascript:openWin('RTE_about.asp','about','toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width=400,height=200')"><img src="wwf79-post_message_form.asp_files/post_button_about.gif" title="About Rich Text Editor" style="cursor: pointer;" align="absmiddle" border="0"></a>
|
144
|
+
<iframe id="colourPalette" src="wwf79-post_message_form.asp_files/RTE_colour_palette.html" style="visibility: hidden; position: absolute; left: 0px; top: 0px;" frameborder="0" height="165" scrolling="no" width="260"></iframe>
|
145
|
+
</td>
|
146
|
+
</tr>
|
147
|
+
</tbody></table>
|
148
|
+
</td>
|
149
|
+
</tr>
|
150
|
+
</tbody></table>
|
151
|
+
</td>
|
152
|
+
</tr>
|
153
|
+
<tr>
|
154
|
+
<td class="text" align="right" height="61" valign="top" width="15%">Message*:
|
155
|
+
<table align="center" border="0" cellpadding="4" cellspacing="0">
|
156
|
+
<tbody><tr><td class="smText" colspan="3" align="center"><br>Emoticons</td></tr><tr>
|
157
|
+
<td><img src="wwf79-post_message_form.asp_files/smiley1.gif" alt="Smile" onclick="AddSmileyIcon('smileys/smiley1.gif')" style="cursor: pointer;" border="0"></td>
|
158
|
+
<td><img src="wwf79-post_message_form.asp_files/smiley17.gif" alt="Tongue" onclick="AddSmileyIcon('smileys/smiley17.gif')" style="cursor: pointer;" border="0"></td>
|
159
|
+
<td><img src="wwf79-post_message_form.asp_files/smiley2.gif" alt="Wink" onclick="AddSmileyIcon('smileys/smiley2.gif')" style="cursor: pointer;" border="0"></td></tr><tr>
|
160
|
+
<td><img src="wwf79-post_message_form.asp_files/smiley19.gif" alt="Cry" onclick="AddSmileyIcon('smileys/smiley19.gif')" style="cursor: pointer;" border="0"></td>
|
161
|
+
<td><img src="wwf79-post_message_form.asp_files/smiley4.gif" alt="Big smile" onclick="AddSmileyIcon('smileys/smiley4.gif')" style="cursor: pointer;" border="0"></td>
|
162
|
+
<td><img src="wwf79-post_message_form.asp_files/smiley36.gif" alt="LOL" onclick="AddSmileyIcon('smileys/smiley36.gif')" style="cursor: pointer;" border="0"></td></tr><tr>
|
163
|
+
<td><img src="wwf79-post_message_form.asp_files/smiley11.gif" alt="Dead" onclick="AddSmileyIcon('smileys/smiley11.gif')" style="cursor: pointer;" border="0"></td>
|
164
|
+
<td><img src="wwf79-post_message_form.asp_files/smiley9.gif" alt="Embarrassed" onclick="AddSmileyIcon('smileys/smiley9.gif')" style="cursor: pointer;" border="0"></td>
|
165
|
+
<td><img src="wwf79-post_message_form.asp_files/smiley5.gif" alt="Confused" onclick="AddSmileyIcon('smileys/smiley5.gif')" style="cursor: pointer;" border="0"></td></tr><tr>
|
166
|
+
<td><img src="wwf79-post_message_form.asp_files/smiley32.gif" alt="Clap" onclick="AddSmileyIcon('smileys/smiley32.gif')" style="cursor: pointer;" border="0"></td>
|
167
|
+
<td><img src="wwf79-post_message_form.asp_files/smiley7.gif" alt="Angry" onclick="AddSmileyIcon('smileys/smiley7.gif')" style="cursor: pointer;" border="0"></td>
|
168
|
+
<td><img src="wwf79-post_message_form.asp_files/smiley18.gif" alt="Ouch" onclick="AddSmileyIcon('smileys/smiley18.gif')" style="cursor: pointer;" border="0"></td></tr>
|
169
|
+
<tr><td colspan="3" align="center"><a href="javascript:openWin('RTE_emoticons_smilies.asp','emot','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=400,height=400')" class="smLink">more...</a></td></tr>
|
170
|
+
</tbody></table></td> <td height="61" valign="top" width="70%">
|
171
|
+
<script language="javascript">
|
172
|
+
//Create an iframe
|
173
|
+
document.write ('<iframe id="message" src="RTE_textbox.asp?mode=new&POID=0&ID=329" width="490" height="200" onMouseOver="hideColourPallete()"></iframe>')
|
174
|
+
</script><iframe id="message" src="wwf79-post_message_form.asp_files/RTE_textbox.html" onmouseover="hideColourPallete()" height="200" width="490"></iframe>
|
175
|
+
<!-- Display a message for RTE users with JavaScript turned off -->
|
176
|
+
<noscript><span class="bold"><br /><br />JavaScript must be enabled on your web browser for you to post a message in the forum!</span></noscript></td>
|
177
|
+
</tr>
|
178
|
+
<tr>
|
179
|
+
<td align="right" width="92"> </td>
|
180
|
+
<td class="text" valign="bottom" width="508"> <input name="forumCodes" value="True" checked="checked" type="checkbox">Enable <a href="javascript:openWin('forum_codes.asp','codes','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=550,height=400')">Forum Codes</a> to format post
|
181
|
+
</td></tr>
|
182
|
+
<tr><td>
|
183
|
+
<input name="message" value="" type="hidden">
|
184
|
+
<input name="mode" value="new" type="hidden">
|
185
|
+
<input name="FID" value="39" type="hidden">
|
186
|
+
<input name="TID" value="0" type="hidden">
|
187
|
+
<input name="PID" value="0" type="hidden">
|
188
|
+
<input name="TPN" value="1" type="hidden">
|
189
|
+
<input name="browser" value="RTE" type="hidden">
|
190
|
+
<input name="sessionID" value="1799752" type="hidden">
|
191
|
+
</td>
|
192
|
+
<td align="left" height="2" width="70%">
|
193
|
+
<p>
|
194
|
+
<input name="Submit" value="Post New Topic" onclick="document.frmAddMessage.message.value = document.getElementById('message').contentWindow.document.body.innerHTML;" tabindex="30" type="submit">
|
195
|
+
<input name="Preview" value="Preview Post" onclick="document.frmAddMessage.message.value = document.getElementById('message').contentWindow.document.body.innerHTML; OpenPreviewWindow('post_preview.asp', document.frmAddMessage);" type="button">
|
196
|
+
<input name="Reset" value="Clear Form" type="reset">
|
197
|
+
</p>
|
198
|
+
</td>
|
199
|
+
</tr>
|
200
|
+
</tbody></table>
|
201
|
+
</td>
|
202
|
+
</tr>
|
203
|
+
</tbody></table>
|
204
|
+
</td>
|
205
|
+
</tr>
|
206
|
+
</tbody></table>
|
207
|
+
</form>
|
208
|
+
<br>
|
209
|
+
<div align="center"><span class="text" style="font-size: 10px;">Powered by <a href="http://www.webwizforums.com/" target="_blank" style="font-size: 10px;">Web Wiz Forums</a> version 7.91</span><br><span class="text" style="font-size: 10px;">Copyright �2001-2004 <a href="http://www.webwizguide.info/" target="_blank" style="font-size: 10px;">Web Wiz Guide</a></span>
|
210
|
+
</div>
|
211
|
+
<!-- footer -->
|
212
|
+
</body></html>
|