1 <!-- BEGIN switch_xs_enabled -->
3 if(xs_switch($this, 'switch_username_select') && empty($this->vars['USERNAME']))
5 global $HTTP_COOKIE_VARS;
6 if(isset($HTTP_COOKIE_VARS['guest_name']))
8 $this->vars['USERNAME'] = htmlspecialchars(stripslashes($HTTP_COOKIE_VARS['guest_name']));
12 <!-- END switch_xs_enabled -->
13 <script language="JavaScript" type="text/javascript">
21 var theSelection = false;
23 // Check for Browser & Platform for PC & IE specific bits
24 // More details from: http://www.mozilla.org/docs/web-developer/sniffer/browser_type.html
25 var clientPC = navigator.userAgent.toLowerCase(); // Get client info
26 var clientVer = parseInt(navigator.appVersion); // Get browser version
28 var is_ie = ((clientPC.indexOf("msie") != -1) && (clientPC.indexOf("opera") == -1));
29 var is_nav = ((clientPC.indexOf('mozilla')!=-1) && (clientPC.indexOf('spoofer')==-1)
30 && (clientPC.indexOf('compatible') == -1) && (clientPC.indexOf('opera')==-1)
31 && (clientPC.indexOf('webtv')==-1) && (clientPC.indexOf('hotjava')==-1));
34 var is_win = ((clientPC.indexOf("win")!=-1) || (clientPC.indexOf("16bit") != -1));
35 var is_mac = (clientPC.indexOf("mac")!=-1);
38 b_help = "{L_BBCODE_B_HELP}";
39 i_help = "{L_BBCODE_I_HELP}";
40 u_help = "{L_BBCODE_U_HELP}";
41 q_help = "{L_BBCODE_Q_HELP}";
42 c_help = "{L_BBCODE_C_HELP}";
43 l_help = "{L_BBCODE_L_HELP}";
44 o_help = "{L_BBCODE_O_HELP}";
45 p_help = "{L_BBCODE_P_HELP}";
46 w_help = "{L_BBCODE_W_HELP}";
47 a_help = "{L_BBCODE_A_HELP}";
48 s_help = "{L_BBCODE_S_HELP}";
49 f_help = "{L_BBCODE_F_HELP}";
51 // Define the bbCode tags
53 bbtags = new Array('[b]','[/b]','[i]','[/i]','[u]','[/u]','[quote]','[/quote]','[code]','[/code]','[list]','[/list]','[list=]','[/list]','[img]','[/img]','[url]','[/url]');
56 // Shows the help messages in the helpline window
57 function helpline(help) {
58 document.post.helpbox.value = eval(help + "_help");
62 // Replacement for arrayname.length property
63 function getarraysize(thearray) {
64 for (i = 0; i < thearray.length; i++) {
65 if ((thearray[i] == "undefined") || (thearray[i] == "") || (thearray[i] == null))
68 return thearray.length;
71 // Replacement for arrayname.push(value) not implemented in IE until version 5.5
72 // Appends element to the array
73 function arraypush(thearray,value) {
74 thearray[ getarraysize(thearray) ] = value;
77 // Replacement for arrayname.pop() not implemented in IE until version 5.5
78 // Removes and returns the last element of an array
79 function arraypop(thearray) {
80 thearraysize = getarraysize(thearray);
81 retval = thearray[thearraysize - 1];
82 delete thearray[thearraysize - 1];
89 exp.setTime(exp.getTime() + (expDays*24*60*60*1000));
91 function SetCookie (name, value) {
92 var argv = SetCookie.arguments;
93 var argc = SetCookie.arguments.length;
94 var expires = (argc > 2) ? argv[2] : null;
95 var path = (argc > 3) ? argv[3] : null;
96 var domain = (argc > 4) ? argv[4] : null;
97 var secure = (argc > 5) ? argv[5] : false;
98 document.cookie = name + "=" + escape (value) +
99 ((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
100 ((path == null) ? "" : ("; path=" + path)) +
101 ((domain == null) ? "" : ("; domain=" + domain)) +
102 ((secure == true) ? "; secure" : "");
105 function checkForm() {
109 if (document.post.message.value.length < 2) {
110 formErrors = "{L_EMPTY_MESSAGE}";
118 <!-- BEGIN switch_username_select -->
119 SetCookie('guest_name', document.post.username.value, exp);
120 <!-- END switch_username_select -->
121 //formObj.preview.disabled = true;
122 //formObj.submit.disabled = true;
127 function emoticon(text) {
128 var txtarea = document.post.message;
129 text = ' ' + text + ' ';
130 if (txtarea.createTextRange && txtarea.caretPos) {
131 var caretPos = txtarea.caretPos;
132 caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? text + ' ' : text;
135 txtarea.value += text;
140 function bbfontstyle(bbopen, bbclose) {
141 var txtarea = document.post.message;
143 if ((clientVer >= 4) && is_ie && is_win) {
144 theSelection = document.selection.createRange().text;
146 txtarea.value += bbopen + bbclose;
150 document.selection.createRange().text = bbopen + theSelection + bbclose;
154 else if (txtarea.selectionEnd && (txtarea.selectionEnd - txtarea.selectionStart > 0))
156 mozWrap(txtarea, bbopen, bbclose);
161 txtarea.value += bbopen + bbclose;
168 function bbstyle(bbnumber) {
169 var txtarea = document.post.message;
172 theSelection = false;
175 if (bbnumber == -1) { // Close all open tags & default button names
177 butnumber = arraypop(bbcode) - 1;
178 txtarea.value += bbtags[butnumber + 1];
179 buttext = eval('document.post.addbbcode' + butnumber + '.value');
180 eval('document.post.addbbcode' + butnumber + '.value ="' + buttext.substr(0,(buttext.length - 1)) + '"');
182 imageTag = false; // All tags are closed including image tags :D
187 if ((clientVer >= 4) && is_ie && is_win)
189 theSelection = document.selection.createRange().text; // Get text selection
191 // Add tags around selection
192 document.selection.createRange().text = bbtags[bbnumber] + theSelection + bbtags[bbnumber+1];
198 else if (txtarea.selectionEnd && (txtarea.selectionEnd - txtarea.selectionStart > 0))
200 mozWrap(txtarea, bbtags[bbnumber], bbtags[bbnumber+1]);
204 // Find last occurance of an open tag the same as the one just clicked
205 for (i = 0; i < bbcode.length; i++) {
206 if (bbcode[i] == bbnumber+1) {
212 if (donotinsert) { // Close all open tags up to the one just clicked & default button names
213 while (bbcode[bblast]) {
214 butnumber = arraypop(bbcode) - 1;
215 txtarea.value += bbtags[butnumber + 1];
216 buttext = eval('document.post.addbbcode' + butnumber + '.value');
217 eval('document.post.addbbcode' + butnumber + '.value ="' + buttext.substr(0,(buttext.length - 1)) + '"');
222 } else { // Open tags
224 if (imageTag && (bbnumber != 14)) { // Close image tag before adding another
225 txtarea.value += bbtags[15];
226 lastValue = arraypop(bbcode) - 1; // Remove the close image tag from the list
227 document.post.addbbcode14.value = "Img"; // Return button back to normal state
232 txtarea.value += bbtags[bbnumber];
233 if ((bbnumber == 14) && (imageTag == false)) imageTag = 1; // Check to stop additional tags after an unclosed image tag
234 arraypush(bbcode,bbnumber+1);
235 eval('document.post.addbbcode'+bbnumber+'.value += "*"');
242 // From http://www.massless.org/mozedit/
243 function mozWrap(txtarea, open, close)
245 var selLength = txtarea.textLength;
246 var selStart = txtarea.selectionStart;
247 var selEnd = txtarea.selectionEnd;
248 if (selEnd == 1 || selEnd == 2)
251 var s1 = (txtarea.value).substring(0,selStart);
252 var s2 = (txtarea.value).substring(selStart, selEnd)
253 var s3 = (txtarea.value).substring(selEnd, selLength);
254 txtarea.value = s1 + open + s2 + close + s3;
258 // Insert at Claret position. Code from
259 // http://www.faqts.com/knowledge_base/view.phtml/aid/1052/fid/130
260 function storeCaret(textEl) {
261 if (textEl.createTextRange) textEl.caretPos = document.selection.createRange().duplicate();
267 <!-- BEGIN switch_privmsg -->
268 <table border="0" cellspacing="0" cellpadding="0" align="center" width="100%">
270 <td valign="top" align="center" width="100%">
271 <table height="40" cellspacing="2" cellpadding="2" border="0">
274 <td><span class="cattitle">{INBOX} </span></td>
275 <td>{SENTBOX_IMG}</td>
276 <td><span class="cattitle">{SENTBOX} </span></td>
277 <td>{OUTBOX_IMG}</td>
278 <td><span class="cattitle">{OUTBOX} </span></td>
279 <td>{SAVEBOX_IMG}</td>
280 <td><span class="cattitle">{SAVEBOX} </span></td>
288 <!-- END switch_privmsg -->
290 <form action="{S_POST_ACTION}" method="post" name="post" onsubmit="return checkForm(this)">
295 <table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
297 <td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a>
298 <!-- BEGIN switch_not_privmsg -->
299 » <a href="{U_VIEW_FORUM}" class="nav">{FORUM_NAME}</a></span></td>
300 <!-- END switch_not_privmsg -->
304 {TPL_HDR1}<span class="cattitle">{L_POST_A}</span>{TPL_HDR2}<table border="0" cellpadding="3" cellspacing="1" width="100%" class="forumline">
305 <!-- BEGIN switch_username_select -->
307 <td class="row1"><span class="gen"><b>{L_USERNAME}</b></span></td>
308 <td class="row2"><span class="genmed"><input type="text" class="post" tabindex="1" name="username" size="25" maxlength="25" value="{USERNAME}" /></span></td>
310 <!-- END switch_username_select -->
311 <!-- BEGIN switch_privmsg -->
313 <td class="row1"><span class="gen"><b>{L_USERNAME}</b></span></td>
314 <td class="row2"><span class="genmed"><input type="text" class="post" name="username" maxlength="25" size="25" tabindex="1" value="{USERNAME}" /> <input type="submit" name="usersubmit" value="{L_FIND_USERNAME}" class="liteoption" onClick="window.open('{U_SEARCH_USER}', '_phpbbsearch', 'HEIGHT=250,resizable=yes,WIDTH=400');return false;" /></span></td>
316 <!-- END switch_privmsg -->
318 <td class="row1" width="22%"><span class="gen"><b>{L_SUBJECT}</b></span></td>
319 <td class="row2" width="78%"><span class="gen">
320 <input type="text" name="subject" size="45" maxlength="60" style="width:450px" tabindex="2" class="post" value="{SUBJECT}" />
324 <td class="row1" valign="top">
325 <table width="100%" border="0" cellspacing="0" cellpadding="1">
327 <td><span class="gen"><b>{L_MESSAGE_BODY}</b></span> </td>
330 <td valign="middle" align="center"> <br />
331 <table width="100" border="0" cellspacing="0" cellpadding="5">
333 <td colspan="{S_SMILIES_COLSPAN}" class="gensmall"><b>{L_EMOTICONS}</b></td>
335 <!-- BEGIN smilies_row -->
336 <tr align="center" valign="middle">
337 <!-- BEGIN smilies_col -->
338 <td><a href="javascript:emoticon('{smilies_row.smilies_col.SMILEY_CODE}')"><img src="{smilies_row.smilies_col.SMILEY_IMG}" border="0" alt="{smilies_row.smilies_col.SMILEY_DESC}" title="{smilies_row.smilies_col.SMILEY_DESC}" /></a></td>
339 <!-- END smilies_col -->
341 <!-- END smilies_row -->
342 <!-- BEGIN switch_smilies_extra -->
344 <td colspan="{S_SMILIES_COLSPAN}"><span class="nav"><a href="{U_MORE_SMILIES}" onclick="window.open('{U_MORE_SMILIES}', '_phpbbsmilies', 'HEIGHT=300,resizable=yes,scrollbars=yes,WIDTH=250');return false;" target="_phpbbsmilies" class="nav">{L_MORE_SMILIES}</a></span></td>
346 <!-- END switch_smilies_extra -->
352 <td class="row2" valign="top"><span class="gen"> <span class="genmed"> </span>
353 <table width="450" border="0" cellspacing="0" cellpadding="2">
354 <tr align="center" valign="middle">
355 <td><span class="genmed">
356 <input type="button" class="button" accesskey="b" name="addbbcode0" value=" B " style="font-weight:bold; width: 30px" onClick="bbstyle(0)" onMouseOver="helpline('b')" />
358 <td><span class="genmed">
359 <input type="button" class="button" accesskey="i" name="addbbcode2" value=" i " style="font-style:italic; width: 30px" onClick="bbstyle(2)" onMouseOver="helpline('i')" />
361 <td><span class="genmed">
362 <input type="button" class="button" accesskey="u" name="addbbcode4" value=" u " style="text-decoration: underline; width: 30px" onClick="bbstyle(4)" onMouseOver="helpline('u')" />
364 <td><span class="genmed">
365 <input type="button" class="button" accesskey="q" name="addbbcode6" value="Quote" style="width: 50px" onClick="bbstyle(6)" onMouseOver="helpline('q')" />
367 <td><span class="genmed">
368 <input type="button" class="button" accesskey="c" name="addbbcode8" value="Code" style="width: 40px" onClick="bbstyle(8)" onMouseOver="helpline('c')" />
370 <td><span class="genmed">
371 <input type="button" class="button" accesskey="l" name="addbbcode10" value="List" style="width: 40px" onClick="bbstyle(10)" onMouseOver="helpline('l')" />
373 <td><span class="genmed">
374 <input type="button" class="button" accesskey="o" name="addbbcode12" value="List=" style="width: 40px" onClick="bbstyle(12)" onMouseOver="helpline('o')" />
376 <td><span class="genmed">
377 <input type="button" class="button" accesskey="p" name="addbbcode14" value="Img" style="width: 40px" onClick="bbstyle(14)" onMouseOver="helpline('p')" />
379 <td><span class="genmed">
380 <input type="button" class="button" accesskey="w" name="addbbcode16" value="URL" style="text-decoration: underline; width: 40px" onClick="bbstyle(16)" onMouseOver="helpline('w')" />
385 <table width="100%" border="0" cellspacing="0" cellpadding="0">
387 <td><span class="genmed"> {L_FONT_COLOR}:
388 <select name="addbbcode18" onChange="bbfontstyle('[color=' + this.form.addbbcode18.options[this.form.addbbcode18.selectedIndex].value + ']', '[/color]');this.selectedIndex=0;" onMouseOver="helpline('s')">
389 <option style="color:black; background-color: {T_TD_COLOR1}" value="{T_FONTCOLOR1}" class="genmed">{L_COLOR_DEFAULT}</option>
390 <option style="color:darkred; background-color: {T_TD_COLOR1}" value="darkred" class="genmed">{L_COLOR_DARK_RED}</option>
391 <option style="color:red; background-color: {T_TD_COLOR1}" value="red" class="genmed">{L_COLOR_RED}</option>
392 <option style="color:orange; background-color: {T_TD_COLOR1}" value="orange" class="genmed">{L_COLOR_ORANGE}</option>
393 <option style="color:brown; background-color: {T_TD_COLOR1}" value="brown" class="genmed">{L_COLOR_BROWN}</option>
394 <option style="color:yellow; background-color: {T_TD_COLOR1}" value="yellow" class="genmed">{L_COLOR_YELLOW}</option>
395 <option style="color:green; background-color: {T_TD_COLOR1}" value="green" class="genmed">{L_COLOR_GREEN}</option>
396 <option style="color:olive; background-color: {T_TD_COLOR1}" value="olive" class="genmed">{L_COLOR_OLIVE}</option>
397 <option style="color:cyan; background-color: {T_TD_COLOR1}" value="cyan" class="genmed">{L_COLOR_CYAN}</option>
398 <option style="color:blue; background-color: {T_TD_COLOR1}" value="blue" class="genmed">{L_COLOR_BLUE}</option>
399 <option style="color:darkblue; background-color: {T_TD_COLOR1}" value="darkblue" class="genmed">{L_COLOR_DARK_BLUE}</option>
400 <option style="color:indigo; background-color: {T_TD_COLOR1}" value="indigo" class="genmed">{L_COLOR_INDIGO}</option>
401 <option style="color:violet; background-color: {T_TD_COLOR1}" value="violet" class="genmed">{L_COLOR_VIOLET}</option>
402 <option style="color:white; background-color: {T_TD_COLOR1}" value="white" class="genmed">{L_COLOR_WHITE}</option>
403 <option style="color:black; background-color: {T_TD_COLOR1}" value="black" class="genmed">{L_COLOR_BLACK}</option>
404 </select> {L_FONT_SIZE}:<select name="addbbcode20" onChange="bbfontstyle('[size=' + this.form.addbbcode20.options[this.form.addbbcode20.selectedIndex].value + ']', '[/size]')" onMouseOver="helpline('f')">
405 <option value="7" class="genmed">{L_FONT_TINY}</option>
406 <option value="9" class="genmed">{L_FONT_SMALL}</option>
407 <option value="12" selected class="genmed">{L_FONT_NORMAL}</option>
408 <option value="18" class="genmed">{L_FONT_LARGE}</option>
409 <option value="24" class="genmed">{L_FONT_HUGE}</option>
412 <td nowrap="nowrap" align="right"><span class="gensmall"><a href="javascript:bbstyle(-1)" class="genmed" onMouseOver="helpline('a')">{L_BBCODE_CLOSE_TAGS}</a></span></td>
418 <td colspan="9"> <span class="gensmall">
419 <input type="text" name="helpbox" size="45" maxlength="100" style="width:450px; font-size:10px" class="helpline" value="{L_STYLES_TIP}" />
423 <td colspan="9"><span class="gen">
424 <textarea name="message" rows="15" cols="35" wrap="virtual" style="width:450px" tabindex="3" class="post" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);">{MESSAGE}</textarea>
431 <td class="row1" valign="top"><span class="gen"><b>{L_OPTIONS}</b></span><br /><span class="gensmall">{HTML_STATUS}<br />{BBCODE_STATUS}<br />{SMILIES_STATUS}</span></td>
432 <td class="row2"><span class="gen"> </span>
433 <table cellspacing="0" cellpadding="1" border="0">
434 <!-- BEGIN switch_html_checkbox -->
437 <input type="checkbox" name="disable_html" {S_HTML_CHECKED} />
439 <td><span class="gen">{L_DISABLE_HTML}</span></td>
441 <!-- END switch_html_checkbox -->
442 <!-- BEGIN switch_bbcode_checkbox -->
445 <input type="checkbox" name="disable_bbcode" {S_BBCODE_CHECKED} />
447 <td><span class="gen">{L_DISABLE_BBCODE}</span></td>
449 <!-- END switch_bbcode_checkbox -->
450 <!-- BEGIN switch_smilies_checkbox -->
453 <input type="checkbox" name="disable_smilies" {S_SMILIES_CHECKED} />
455 <td><span class="gen">{L_DISABLE_SMILIES}</span></td>
457 <!-- END switch_smilies_checkbox -->
458 <!-- BEGIN switch_signature_checkbox -->
461 <input type="checkbox" name="attach_sig" {S_SIGNATURE_CHECKED} />
463 <td><span class="gen">{L_ATTACH_SIGNATURE}</span></td>
465 <!-- END switch_signature_checkbox -->
466 <!-- BEGIN switch_notify_checkbox -->
469 <input type="checkbox" name="notify" {S_NOTIFY_CHECKED} />
471 <td><span class="gen">{L_NOTIFY_ON_REPLY}</span></td>
473 <!-- END switch_notify_checkbox -->
474 <!-- BEGIN switch_delete_checkbox -->
477 <input type="checkbox" name="delete" />
479 <td><span class="gen">{L_DELETE_POST}</span></td>
481 <!-- END switch_delete_checkbox -->
482 <!-- BEGIN switch_type_toggle -->
485 <td><span class="gen">{S_TYPE_TOGGLE}</span></td>
487 <!-- END switch_type_toggle -->
493 <td class="row4" colspan="2" align="center" height="26"> {S_HIDDEN_FORM_FIELDS}<input type="submit" accesskey="s" tabindex="6" name="post" class="mainoption" value="{L_SUBMIT}" /> <input type="submit" tabindex="5" name="preview" class="mainoption" value="{L_PREVIEW}" /></td>
497 <table width="100%" cellspacing="2" border="0" align="center" cellpadding="2">
499 <td align="right" valign="top"><span class="gensmall">{S_TIMEZONE}</span></td>
504 <table width="100%" cellspacing="2" border="0" align="center">
506 <td valign="top" align="right">{JUMPBOX}</td>