mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-13 11:06:03 +02:00
Includes the color Mod javascript written by mat100
git-svn-id: file:///svn/phpbb/trunk@2921 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
9ea1bc91e9
commit
35d7bfcca7
@ -1,10 +1,10 @@
|
||||
<!-- INCLUDE overall_header.html -->
|
||||
|
||||
<script language="JavaScript" src="templates/subSilver/color.js"></script>
|
||||
<script language="JavaScript" type="text/javascript">
|
||||
<!--
|
||||
// bbCode control by
|
||||
// subBlue design
|
||||
// www.subBlue.com
|
||||
// bbCode control by subBlue design [ www.subBlue.com ]
|
||||
// Includes the color bar by mat100 [ see forums ]
|
||||
|
||||
// Startup variables
|
||||
var imageTag = false;
|
||||
@ -23,6 +23,10 @@ var is_nav = ((clientPC.indexOf('mozilla')!=-1) && (clientPC.indexOf('spoofer')
|
||||
var is_win = ((clientPC.indexOf("win")!=-1) || (clientPC.indexOf("16bit") != -1));
|
||||
var is_mac = (clientPC.indexOf("mac")!=-1);
|
||||
|
||||
// This is for the color bar by mat100
|
||||
var height1 = 10;//define the height of the color bar
|
||||
var pas = 28;// define the number of color in the color bar
|
||||
var width1 = Math.floor(-2/15 * pas + 6);//define the width of the color bar here automatic ajust for subsilver template.
|
||||
|
||||
// Helpline messages
|
||||
b_help = "{L_BBCODE_B_HELP}";
|
||||
@ -37,6 +41,8 @@ w_help = "{L_BBCODE_W_HELP}";
|
||||
a_help = "{L_BBCODE_A_HELP}";
|
||||
s_help = "{L_BBCODE_S_HELP}";
|
||||
f_help = "{L_BBCODE_F_HELP}";
|
||||
text1 = s_help.substring(0,search(s_help,"="));
|
||||
text2 = s_help.substring(search(s_help,"]"),search(s_help,"/"));
|
||||
|
||||
// Define the bbCode tags
|
||||
bbcode = new Array();
|
||||
@ -76,7 +82,7 @@ function arraypop(thearray) {
|
||||
|
||||
function checkForm() {
|
||||
|
||||
formErrors = false;
|
||||
formErrors = false;
|
||||
|
||||
if (document.post.message.value.length < 2) {
|
||||
formErrors = "{L_EMPTY_MESSAGE}";
|
||||
@ -87,8 +93,10 @@ function checkForm() {
|
||||
return false;
|
||||
} else {
|
||||
bbstyle(-1);
|
||||
//formObj.preview.disabled = true;
|
||||
//formObj.submit.disabled = true;
|
||||
//document.post.preview.disabled = true;
|
||||
//document.post.submit.disabled = true;
|
||||
//document.post.save.disabled = true;
|
||||
//document.post.cancel.disabled = true;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@ -145,7 +153,7 @@ function bbstyle(bbnumber) {
|
||||
|
||||
if ((clientVer >= 4) && is_ie && is_win)
|
||||
theSelection = document.selection.createRange().text; // Get text selection
|
||||
|
||||
|
||||
if (theSelection) {
|
||||
// Add tags around selection
|
||||
document.selection.createRange().text = bbtags[bbnumber] + theSelection + bbtags[bbnumber+1];
|
||||
@ -153,7 +161,7 @@ function bbstyle(bbnumber) {
|
||||
theSelection = '';
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
// Find last occurance of an open tag the same as the one just clicked
|
||||
for (i = 0; i < bbcode.length; i++) {
|
||||
if (bbcode[i] == bbnumber+1) {
|
||||
@ -173,14 +181,14 @@ function bbstyle(bbnumber) {
|
||||
document.post.message.focus();
|
||||
return;
|
||||
} else { // Open tags
|
||||
|
||||
|
||||
if (imageTag && (bbnumber != 14)) { // Close image tag before adding another
|
||||
document.post.message.value += bbtags[15];
|
||||
lastValue = arraypop(bbcode) - 1; // Remove the close image tag from the list
|
||||
document.post.addbbcode14.value = "Img"; // Return button back to normal state
|
||||
imageTag = false;
|
||||
}
|
||||
|
||||
|
||||
// Open tag
|
||||
document.post.message.value += bbtags[bbnumber];
|
||||
if ((bbnumber == 14) && (imageTag == false)) imageTag = 1; // Check to stop additional tags after an unclosed image tag
|
||||
@ -201,250 +209,268 @@ function storeCaret(textEl) {
|
||||
//-->
|
||||
</script>
|
||||
|
||||
<!-- IF S_DISPLAY_PM_ICONS -->
|
||||
<table border="0" cellspacing="0" cellpadding="0" align="center" width="100%">
|
||||
<tr>
|
||||
<td valign="top" align="center" width="100%">
|
||||
<table height="40" cellspacing="2" cellpadding="2" border="0">
|
||||
<tr valign="middle">
|
||||
<td>{INBOX_IMG}</td>
|
||||
<td><span class="cattitle">{INBOX_LINK} </span></td>
|
||||
<td>{SENTBOX_IMG}</td>
|
||||
<td><span class="cattitle">{SENTBOX_LINK} </span></td>
|
||||
<td>{OUTBOX_IMG}</td>
|
||||
<td><span class="cattitle">{OUTBOX_LINK} </span></td>
|
||||
<td>{SAVEBOX_IMG}</td>
|
||||
<td><span class="cattitle">{SAVEBOX_LINK} </span></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<form action="{S_POST_ACTION}" method="post" name="post" onsubmit="return checkForm(this)"><table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||
<tr>
|
||||
<td colspan="2" align="left" valign="bottom"><a class="maintitle" href="{U_VIEW_FORUM}">{FORUM_NAME}</a><!-- IF TOPIC_TITLE --> :: <a class="maintitle" href="{U_VIEWTOPIC}">{TOPIC_TITLE}</a><!-- ENDIF --><br /><span class="gensmall"> [ <a href="{U_VIEW_MODERATORS}">{L_VIEW_MODERATORS}</a> ]<br /><br /><b>{LOGGED_IN_USER_LIST}</b></span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="nav" width="100%" align="left" valign="middle"><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a> -> <a class="nav" href="{U_VIEW_FORUM}">{FORUM_NAME}</a></span></td>
|
||||
<td class="nav" align="right" valign="bottom" nowrap="nowrap"><span class="gensmall"><a href="{U_MARK_READ}">{L_MARK_TOPICS_READ}</a></span></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br clear="all" />
|
||||
<!-- ENDIF -->
|
||||
|
||||
<form action="{S_POST_ACTION}" method="post" name="post" onsubmit="return checkForm(this)">
|
||||
|
||||
{POST_PREVIEW_BOX}
|
||||
{ERROR_BOX}
|
||||
|
||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||
<tr>
|
||||
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a>
|
||||
<!-- BEGIN switch_not_privmsg -->
|
||||
-> <a href="{U_VIEW_FORUM}" class="nav">{FORUM_NAME}</a></span></td>
|
||||
<!-- END switch_not_privmsg -->
|
||||
<table class="forumline" width="100%" cellspacing="1" cellpadding="3" border="0">
|
||||
<tr>
|
||||
<th class="thHead" colspan="2" height="25"><b>{L_POST_A}</b></th>
|
||||
</tr>
|
||||
<!-- IF S_DISPLAY_USERNAME -->
|
||||
<tr>
|
||||
<td class="row1"><span class="gen"><b>{L_USERNAME}</b></span></td>
|
||||
<td class="row2"><input type="text" class="post" tabindex="1" name="username" size="25" maxlength="25" value="{USERNAME}" /></td>
|
||||
</tr>
|
||||
<!-- ENDIF -->
|
||||
<!-- IF S_PRIVMSG_POST -->
|
||||
<tr>
|
||||
<td class="row1"><span class="gen"><b>{L_USERNAME}</b></span></td>
|
||||
<td class="row2"><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;" /></td>
|
||||
</tr>
|
||||
<!-- ENDIF -->
|
||||
<!-- IF S_SHOW_TOPIC_ICONS -->
|
||||
<tr>
|
||||
<td class="row1"><span class="gen"><b>{L_TOPIC_ICON}</b></span></td>
|
||||
<td class="row2"><table width="100%" cellspacing="0" cellpadding="0" border="0">
|
||||
<tr>
|
||||
<td valign="middle"><span class="gensmall"><input type="radio" name="icon" value="1" checked="checked" /><span class="genmed">{L_NONE}</span> <!-- BEGIN topic_icon --><input type="radio" name="icon" value="{topic_icon.ICON_ID}" /><img src="{topic_icon.ICON_IMG}" width="{topic_icon.ICON_WIDTH}" height="{topic_icon.ICON_HEIGHT}" alt="" title="" hspace="2" vspace="2" /> <!-- END topic_icon --></td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
<!-- ENDIF -->
|
||||
<tr>
|
||||
<td class="row1" width="22%"><span class="gen"><b>{L_SUBJECT}</b></span></td>
|
||||
<td class="row2" width="78%"><input type="text" name="subject" size="45" maxlength="60" style="width:450px" tabindex="2" class="post" value="{SUBJECT}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="1">
|
||||
<tr>
|
||||
<td><span class="gen"><b>{L_MESSAGE_BODY}</b></span> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="middle" align="center"><br /><table width="120" cellspacing="0" cellpadding="5" border="0">
|
||||
<tr>
|
||||
<td class="gensmall" align="center"><b>{L_EMOTICONS}</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center"><!-- BEGIN emoticon --> <a href="javascript:emoticon('{emoticon.SMILEY_CODE}')"><img src="{emoticon.SMILEY_IMG}" width="{emoticon.SMILEY_WIDTH}" height="{emoticon.SMILEY_HEIGHT}" border="0" alt="{emoticon.SMILEY_DESC}" title="{emoticon.SMILEY_DESC}" onclick="emoticon('{emoticon.SMILEY_CODE}');return false" hspace="2" vspace="2" /></a> <!-- END emoticon --></td>
|
||||
</tr>
|
||||
<!-- IF S_SHOW_EMOTICON_LINK -->
|
||||
<tr>
|
||||
<td colspan="{S_SMILIES_COLSPAN}" align="center"><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>
|
||||
</tr>
|
||||
<!-- ENDIF -->
|
||||
</table></td>
|
||||
</tr>
|
||||
</table></td>
|
||||
<td class="row2" valign="top"><span class="gen"><table width="450" border="0" cellspacing="0" cellpadding="2">
|
||||
<tr align="center" valign="middle">
|
||||
<td><input type="button" class="button" accesskey="b" name="addbbcode0" value=" B " style="font-weight:bold; width: 30px" onClick="bbstyle(0)" onMouseOver="helpline('b')" /></td>
|
||||
<td><input type="button" class="button" accesskey="i" name="addbbcode2" value=" i " style="font-style:italic; width: 30px" onClick="bbstyle(2)" onMouseOver="helpline('i')" /></td>
|
||||
<td><input type="button" class="button" accesskey="u" name="addbbcode4" value=" u " style="text-decoration: underline; width: 30px" onClick="bbstyle(4)" onMouseOver="helpline('u')" /></td>
|
||||
<td><input type="button" class="button" accesskey="q" name="addbbcode6" value="Quote" style="width: 50px" onClick="bbstyle(6)" onMouseOver="helpline('q')" /></td>
|
||||
<td><input type="button" class="button" accesskey="c" name="addbbcode8" value="Code" style="width: 40px" onClick="bbstyle(8)" onMouseOver="helpline('c')" /></td>
|
||||
<td><input type="button" class="button" accesskey="l" name="addbbcode10" value="List" style="width: 40px" onClick="bbstyle(10)" onMouseOver="helpline('l')" /></td>
|
||||
<td><input type="button" class="button" accesskey="o" name="addbbcode12" value="List=" style="width: 40px" onClick="bbstyle(12)" onMouseOver="helpline('o')" /></td>
|
||||
<td><input type="button" class="button" accesskey="p" name="addbbcode14" value="Img" style="width: 40px" onClick="bbstyle(14)" onMouseOver="helpline('p')" /></td>
|
||||
<td><input type="button" class="button" accesskey="w" name="addbbcode16" value="URL" style="text-decoration: underline; width: 40px" onClick="bbstyle(16)" onMouseOver="helpline('w')" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="9"><table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td><span class="genmed"> {L_FONT_SIZE}:<select name="addbbcode20" onChange="bbfontstyle('[size=' + this.form.addbbcode20.options[this.form.addbbcode20.selectedIndex].value + ']', '[/size]');this.form.addbbcode20.selectedIndex = 1;" onMouseOver="helpline('f')">
|
||||
<option value="7" class="genmed">{L_FONT_TINY}</option>
|
||||
<option value="9" class="genmed">{L_FONT_SMALL}</option>
|
||||
<option value="12" selected class="genmed">{L_FONT_NORMAL}</option>
|
||||
<option value="18" class="genmed">{L_FONT_LARGE}</option>
|
||||
<option value="24" class="genmed">{L_FONT_HUGE}</option>
|
||||
</select></span></td>
|
||||
<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>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="9"><input type="text" name="helpbox" size="45" maxlength="100" style="width:450px; font-size:10px" class="helpline" value="{L_STYLES_TIP}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="9"><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></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="9"><table id="ColorPanel" cellspacing="0" cellpadding="0" border="0" align="center">
|
||||
<tr>
|
||||
<td style="border:1px" id="ColorUsed" onmouseover="helpline('s')" onclick="if(this.bgColor.length > 0) insertTag(this.bgColor)" valign="center" align="middle"><img src="templates/subSilver/images/spacer.gif" width="10" height="10"border="1"></td>
|
||||
<td width="5"><img src="templates/subSilver/images/spacer.gif" width="5" border="0" /></td>
|
||||
<td><script language="javascript" type="text/javascript"><!--
|
||||
|
||||
// Note this may take some processing ...
|
||||
rgb(pas,width1,height1,text1,text2);
|
||||
|
||||
//--></script></td>
|
||||
|
||||
</table></td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1" valign="top"><span class="gen"><b>{L_OPTIONS}</b></span><br /><table cellspacing="2" cellpadding="" border="0">
|
||||
<tr>
|
||||
<td><span class="gensmall">{HTML_STATUS}</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><span class="gensmall">{BBCODE_STATUS}</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><span class="gensmall">{IMG_STATUS}</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><span class="gensmall">{FLASH_STATUS}</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><span class="gensmall">{SMILIES_STATUS}</span></td>
|
||||
</tr>
|
||||
</table></td>
|
||||
<td class="row2"><table cellspacing="0" cellpadding="1" border="0">
|
||||
<!-- IF S_HTML_ALLOWED -->
|
||||
<tr>
|
||||
<td><input type="checkbox" name="disable_html" {S_HTML_CHECKED} /></td>
|
||||
<td><span class="gen">{L_DISABLE_HTML}</span></td>
|
||||
</tr>
|
||||
<!-- ENDIF -->
|
||||
<!-- IF S_BBCODE_ALLOWED -->
|
||||
<tr>
|
||||
<td><input type="checkbox" name="disable_bbcode" {S_BBCODE_CHECKED} /></td>
|
||||
<td><span class="gen">{L_DISABLE_BBCODE}</span></td>
|
||||
</tr>
|
||||
<!-- ENDIF -->
|
||||
<!-- IF S_SMILIES_ALLOWED -->
|
||||
<tr>
|
||||
<td><input type="checkbox" name="disable_smilies" {S_SMILIES_CHECKED} /></td>
|
||||
<td><span class="gen">{L_DISABLE_SMILIES}</span></td>
|
||||
</tr>
|
||||
<!-- ENDIF -->
|
||||
<tr>
|
||||
<td><input type="checkbox" name="disable_magic_url" {S_MAGIC_URL_CHECKED} /></td>
|
||||
<td><span class="gen">{L_DISABLE_MAGIC_URL}</span></td>
|
||||
</tr>
|
||||
<!-- IF S_SIG_ALLOWED -->
|
||||
<tr>
|
||||
<td><input type="checkbox" name="attach_sig" {S_SIGNATURE_CHECKED} /></td>
|
||||
<td><span class="gen">{L_ATTACH_SIGNATURE}</span></td>
|
||||
</tr>
|
||||
<!-- ENDIF -->
|
||||
<!-- IF S_NOTIFY_ALLOWED -->
|
||||
<tr>
|
||||
<td><input type="checkbox" name="notify" {S_NOTIFY_CHECKED} /></td>
|
||||
<td><span class="gen">{L_NOTIFY_ON_REPLY}</span></td>
|
||||
</tr>
|
||||
<!-- ENDIF -->
|
||||
<!-- IF S_DELETE_ALLOWED -->
|
||||
<tr>
|
||||
<td><input type="checkbox" name="delete" /></td>
|
||||
<td><span class="gen">{L_DELETE_POST}</span></td>
|
||||
</tr>
|
||||
<!-- ENDIF -->
|
||||
<!-- IF S_TYPE_TOGGLE -->
|
||||
<tr>
|
||||
<td></td>
|
||||
<td><span class="gen">{S_TYPE_TOGGLE}</span></td>
|
||||
</tr>
|
||||
<!-- ENDIF -->
|
||||
</table></td>
|
||||
</tr>
|
||||
<!-- IF S_SHOW_POLL_BOX -->
|
||||
<tr>
|
||||
<th class="thHead" colspan="2">{L_ADD_A_POLL}</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1" colspan="2"><span class="gensmall">{L_ADD_POLL_EXPLAIN}</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen"><b>{L_POLL_QUESTION}</b></span></td>
|
||||
<td class="row2"><span class="genmed"><input type="text" name="poll_title" size="50" maxlength="255" class="post" value="{POLL_TITLE}" /></span></td>
|
||||
</tr>
|
||||
<!-- BEGIN poll_options -->
|
||||
<tr>
|
||||
<td class="row1"><span class="gen"><b>{L_POLL_OPTION}</b></span></td>
|
||||
<td class="row2"><span class="genmed"><input type="text" name="poll_option_text[{poll_options.S_POLL_OPTION_NUM}]" size="50" class="post" maxlength="255" value="{poll_options.POLL_OPTION}" /></span> <input class="liteoption" type="submit" name="edit_poll_option" value="{L_UPDATE_OPTION}" /> <input class="liteoption" type="submit" name="del_poll_option[{poll_options.S_POLL_OPTION_NUM}]" value="{L_DELETE_OPTION}" /></td>
|
||||
</tr>
|
||||
<!-- END poll_options -->
|
||||
<tr>
|
||||
<td class="row1"><span class="gen"><b>{L_POLL_OPTION}</b></span></td>
|
||||
<td class="row2"><span class="genmed"><input type="text" name="add_poll_option_text" size="50" maxlength="255" class="post" value="{ADD_POLL_OPTION}" /></span> <input class="liteoption" type="submit" name="add_poll_option" value="{L_ADD_OPTION}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen"><b>{L_POLL_LENGTH}</b></span></td>
|
||||
<td class="row2"><span class="genmed"><input type="text" name="poll_length" size="3" maxlength="3" class="post" value="{POLL_LENGTH}" /></span> <span class="gen"><b>{L_DAYS}</b></span> <span class="gensmall">{L_POLL_LENGTH_EXPLAIN}</span></td>
|
||||
</tr>
|
||||
<!-- IF S_POLL_DELETE -->
|
||||
<tr>
|
||||
<td class="row1"><span class="gen"><b>{L_POLL_DELETE}</b></span></td>
|
||||
<td class="row2"><input type="checkbox" name="poll_delete" /></td>
|
||||
</tr>
|
||||
<!-- ENDIF -->
|
||||
<!-- ENDIF -->
|
||||
<!-- IF S_SHOW_ATTACH_BOX -->
|
||||
<tr>
|
||||
<th class="thHead" colspan="2">{L_ADD_ATTACHMENT}</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1" colspan="2"><span class="gensmall">{L_ADD_ATTACHMENT_EXPLAIN}</span></td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td class="row1"><span class="gen"><b>{L_FILE_NAME}</b></span></td>
|
||||
<td class="row2"><input type="file" name="fileupload" size="50" maxlength="{FILESIZE}" value="{FILENAME}" class="post"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen"><b>{L_FILE_COMMENT}</b></span></td>
|
||||
<td class="row2"><input type="text" name="filecomment" size="40" maxlength="60" value="{FILE_COMMENT}" class="post"> <input type="submit" name="add_attachment" value="{L_ADD_FILE}" class="liteoption" /></td>
|
||||
</tr>
|
||||
<!-- IF S_HAS_ATTACHMENTS -->
|
||||
<tr>
|
||||
<th class="thHead" colspan="2">{L_POSTED_ATTACHMENTS}</th>
|
||||
</tr>
|
||||
<!-- BEGIN attach_row -->
|
||||
<tr>
|
||||
<td class="row1"><span class="gen"><b>{L_FILE_NAME}</b></span></td>
|
||||
<td class="row2"><span class="gen"><a class="gen" href="{attach_row.U_VIEW_ATTACHMENT}" target="_blank">{attach_row.FILE_NAME}</a></span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1"><span class="gen"><b>{L_FILE_COMMENT}</b></span></td>
|
||||
<td class="row2"><input type="text" name="comment_list[]" size="40" class="post" maxlength="60" value="{attach_row.FILE_COMMENT}" /></span> <input type="submit" name="edit_comment[{attach_row.ATTACH_FILENAME}]" value="{L_UPDATE_COMMENT}" class="liteoption" /> <input type="submit" name="del_attachment[{attach_row.ATTACH_FILENAME}]" value="{L_DELETE_ATTACHMENT}" class="liteoption" /></td>
|
||||
</tr>
|
||||
{attach_row.S_HIDDEN}
|
||||
<!-- END attach_row -->
|
||||
<!-- ENDIF -->
|
||||
<!-- ENDIF -->
|
||||
</div>
|
||||
<tr>
|
||||
<td class="catBottom" colspan="2" align="center">{S_HIDDEN_FIELDS}<input class="mainoption" type="submit" tabindex="5" name="preview" value="{L_PREVIEW}" /> <input class="liteoption" type="submit" accesskey="s" tabindex="6" name="post" value="{L_SUBMIT}" /><!-- IF S_SAVE_ALLOWED --> <input class="liteoption" type="submit" accesskey="k" tabindex="8" name="save" value="{L_SAVE}" /><!-- ENDIF --> <input class="liteoption" type="submit" accesskey="c" tabindex="7" name="cancel" value="{L_CANCEL}" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<table border="0" cellpadding="3" cellspacing="1" width="100%" class="forumline">
|
||||
<tr>
|
||||
<th class="thHead" colspan="2" height="25"><b>{L_POST_A}</b></th>
|
||||
<table width="100%" cellspacing="2" border="0" align="center" cellpadding="2">
|
||||
<tr>
|
||||
<td align="right" valign="top"><span class="gensmall">{S_TIMEZONE}</span></td>
|
||||
</tr>
|
||||
<!-- BEGIN switch_username_select -->
|
||||
<tr>
|
||||
<td class="row1"><span class="gen"><b>{L_USERNAME}</b></span></td>
|
||||
<td class="row2"><span class="genmed"><input type="text" class="post" tabindex="1" name="username" size="25" maxlength="25" value="{USERNAME}" /></span></td>
|
||||
</tr>
|
||||
<!-- END switch_username_select -->
|
||||
<!-- BEGIN switch_privmsg -->
|
||||
<tr>
|
||||
<td class="row1"><span class="gen"><b>{L_USERNAME}</b></span></td>
|
||||
<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>
|
||||
</tr>
|
||||
<!-- END switch_privmsg -->
|
||||
<tr>
|
||||
<td class="row1" width="22%"><span class="gen"><b>{L_SUBJECT}</b></span></td>
|
||||
<td class="row2" width="78%"> <span class="gen">
|
||||
<input type="text" name="subject" size="45" maxlength="60" style="width:450px" tabindex="2" class="post" value="{SUBJECT}" />
|
||||
</span> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="row1" valign="top">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="1">
|
||||
<tr>
|
||||
<td><span class="gen"><b>{L_MESSAGE_BODY}</b></span> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="middle" align="center"> <br />
|
||||
<table width="100" border="0" cellspacing="0" cellpadding="5">
|
||||
<tr align="center">
|
||||
<td colspan="{S_SMILIES_COLSPAN}" class="gensmall"><b>{L_EMOTICONS}</b></td>
|
||||
</tr>
|
||||
<!-- BEGIN smilies_row -->
|
||||
<tr align="center" valign="middle">
|
||||
<!-- BEGIN smilies_col -->
|
||||
<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>
|
||||
<!-- END smilies_col -->
|
||||
</tr>
|
||||
<!-- END smilies_row -->
|
||||
<!-- BEGIN switch_smilies_extra -->
|
||||
<tr align="center">
|
||||
<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>
|
||||
</tr>
|
||||
<!-- END switch_smilies_extra -->
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
<td class="row2" valign="top"><span class="gen"> <span class="genmed"> </span>
|
||||
<table width="450" border="0" cellspacing="0" cellpadding="2">
|
||||
<tr align="center" valign="middle">
|
||||
<td><span class="genmed">
|
||||
<input type="button" class="button" accesskey="b" name="addbbcode0" value=" B " style="font-weight:bold; width: 30px" onClick="bbstyle(0)" onMouseOver="helpline('b')" />
|
||||
</span></td>
|
||||
<td><span class="genmed">
|
||||
<input type="button" class="button" accesskey="i" name="addbbcode2" value=" i " style="font-style:italic; width: 30px" onClick="bbstyle(2)" onMouseOver="helpline('i')" />
|
||||
</span></td>
|
||||
<td><span class="genmed">
|
||||
<input type="button" class="button" accesskey="u" name="addbbcode4" value=" u " style="text-decoration: underline; width: 30px" onClick="bbstyle(4)" onMouseOver="helpline('u')" />
|
||||
</span></td>
|
||||
<td><span class="genmed">
|
||||
<input type="button" class="button" accesskey="q" name="addbbcode6" value="Quote" style="width: 50px" onClick="bbstyle(6)" onMouseOver="helpline('q')" />
|
||||
</span></td>
|
||||
<td><span class="genmed">
|
||||
<input type="button" class="button" accesskey="c" name="addbbcode8" value="Code" style="width: 40px" onClick="bbstyle(8)" onMouseOver="helpline('c')" />
|
||||
</span></td>
|
||||
<td><span class="genmed">
|
||||
<input type="button" class="button" accesskey="l" name="addbbcode10" value="List" style="width: 40px" onClick="bbstyle(10)" onMouseOver="helpline('l')" />
|
||||
</span></td>
|
||||
<td><span class="genmed">
|
||||
<input type="button" class="button" accesskey="o" name="addbbcode12" value="List=" style="width: 40px" onClick="bbstyle(12)" onMouseOver="helpline('o')" />
|
||||
</span></td>
|
||||
<td><span class="genmed">
|
||||
<input type="button" class="button" accesskey="p" name="addbbcode14" value="Img" style="width: 40px" onClick="bbstyle(14)" onMouseOver="helpline('p')" />
|
||||
</span></td>
|
||||
<td><span class="genmed">
|
||||
<input type="button" class="button" accesskey="w" name="addbbcode16" value="URL" style="text-decoration: underline; width: 40px" onClick="bbstyle(16)" onMouseOver="helpline('w')" />
|
||||
</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="9">
|
||||
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td><span class="genmed"> {L_FONT_COLOR}:
|
||||
<select name="addbbcode18" onChange="bbfontstyle('[color=' + this.form.addbbcode18.options[this.form.addbbcode18.selectedIndex].value + ']', '[/color]')" onMouseOver="helpline('s')">
|
||||
<option style="color:black; background-color: #FFFFFF " value="{T_FONTCOLOR1}" class="genmed">{L_COLOR_DEFAULT}</option>
|
||||
<option style="color:darkred; background-color: #DEE3E7" value="darkred" class="genmed">{L_COLOR_DARK_RED}</option>
|
||||
<option style="color:red; background-color: #DEE3E7" value="red" class="genmed">{L_COLOR_RED}</option>
|
||||
<option style="color:orange; background-color: #DEE3E7" value="orange" class="genmed">{L_COLOR_ORANGE}</option>
|
||||
<option style="color:brown; background-color: #DEE3E7" value="brown" class="genmed">{L_COLOR_BROWN}</option>
|
||||
<option style="color:yellow; background-color: #DEE3E7" value="yellow" class="genmed">{L_COLOR_YELLOW}</option>
|
||||
<option style="color:green; background-color: #DEE3E7" value="green" class="genmed">{L_COLOR_GREEN}</option>
|
||||
<option style="color:olive; background-color: #DEE3E7" value="olive" class="genmed">{L_COLOR_OLIVE}</option>
|
||||
<option style="color:cyan; background-color: #DEE3E7" value="cyan" class="genmed">{L_COLOR_CYAN}</option>
|
||||
<option style="color:blue; background-color: #DEE3E7" value="blue" class="genmed">{L_COLOR_BLUE}</option>
|
||||
<option style="color:darkblue; background-color: #DEE3E7" value="darkblue" class="genmed">{L_COLOR_DARK_BLUE}</option>
|
||||
<option style="color:indigo; background-color: #DEE3E7" value="indigo" class="genmed">{L_COLOR_INDIGO}</option>
|
||||
<option style="color:violet; background-color: #DEE3E7" value="violet" class="genmed">{L_COLOR_VIOLET}</option>
|
||||
<option style="color:white; background-color: #DEE3E7" value="white" class="genmed">{L_COLOR_WHITE}</option>
|
||||
<option style="color:black; background-color: #DEE3E7" value="black" class="genmed">{L_COLOR_BLACK}</option>
|
||||
</select> {L_FONT_SIZE}:<select name="addbbcode20" onChange="bbfontstyle('[size=' + this.form.addbbcode20.options[this.form.addbbcode20.selectedIndex].value + ']', '[/size]')" onMouseOver="helpline('f')">
|
||||
<option value="7" class="genmed">{L_FONT_TINY}</option>
|
||||
<option value="9" class="genmed">{L_FONT_SMALL}</option>
|
||||
<option value="12" selected class="genmed">{L_FONT_NORMAL}</option>
|
||||
<option value="18" class="genmed">{L_FONT_LARGE}</option>
|
||||
<option value="24" class="genmed">{L_FONT_HUGE}</option>
|
||||
</select>
|
||||
</span></td>
|
||||
<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>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="9"> <span class="gensmall">
|
||||
<input type="text" name="helpbox" size="45" maxlength="100" style="width:450px; font-size:10px" class="helpline" value="{L_STYLES_TIP}" />
|
||||
</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="9"><span class="gen">
|
||||
<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>
|
||||
</span></td>
|
||||
</tr>
|
||||
</table>
|
||||
</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<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>
|
||||
<td class="row2"><span class="gen"> </span>
|
||||
<table cellspacing="0" cellpadding="1" border="0">
|
||||
<!-- BEGIN switch_html_checkbox -->
|
||||
<tr>
|
||||
<td>
|
||||
<input type="checkbox" name="disable_html" {S_HTML_CHECKED} />
|
||||
</td>
|
||||
<td><span class="gen">{L_DISABLE_HTML}</span></td>
|
||||
</tr>
|
||||
<!-- END switch_html_checkbox -->
|
||||
<!-- BEGIN switch_bbcode_checkbox -->
|
||||
<tr>
|
||||
<td>
|
||||
<input type="checkbox" name="disable_bbcode" {S_BBCODE_CHECKED} />
|
||||
</td>
|
||||
<td><span class="gen">{L_DISABLE_BBCODE}</span></td>
|
||||
</tr>
|
||||
<!-- END switch_bbcode_checkbox -->
|
||||
<!-- BEGIN switch_smilies_checkbox -->
|
||||
<tr>
|
||||
<td>
|
||||
<input type="checkbox" name="disable_smilies" {S_SMILIES_CHECKED} />
|
||||
</td>
|
||||
<td><span class="gen">{L_DISABLE_SMILIES}</span></td>
|
||||
</tr>
|
||||
<!-- END switch_smilies_checkbox -->
|
||||
<!-- BEGIN switch_signature_checkbox -->
|
||||
<tr>
|
||||
<td>
|
||||
<input type="checkbox" name="attach_sig" {S_SIGNATURE_CHECKED} />
|
||||
</td>
|
||||
<td><span class="gen">{L_ATTACH_SIGNATURE}</span></td>
|
||||
</tr>
|
||||
<!-- END switch_signature_checkbox -->
|
||||
<!-- BEGIN switch_notify_checkbox -->
|
||||
<tr>
|
||||
<td>
|
||||
<input type="checkbox" name="notify" {S_NOTIFY_CHECKED} />
|
||||
</td>
|
||||
<td><span class="gen">{L_NOTIFY_ON_REPLY}</span></td>
|
||||
</tr>
|
||||
<!-- END switch_notify_checkbox -->
|
||||
<!-- BEGIN switch_delete_checkbox -->
|
||||
<tr>
|
||||
<td>
|
||||
<input type="checkbox" name="delete" />
|
||||
</td>
|
||||
<td><span class="gen">{L_DELETE_POST}</span></td>
|
||||
</tr>
|
||||
<!-- END switch_delete_checkbox -->
|
||||
<!-- BEGIN switch_type_toggle -->
|
||||
<tr>
|
||||
<td></td>
|
||||
<td><span class="gen">{S_TYPE_TOGGLE}</span></td>
|
||||
</tr>
|
||||
<!-- END switch_type_toggle -->
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
{POLLBOX}
|
||||
<tr>
|
||||
<td class="catBottom" colspan="2" align="center" height="28"> {S_HIDDEN_FORM_FIELDS}<input type="submit" tabindex="5" name="preview" class="mainoption" value="{L_PREVIEW}" /> <input type="submit" accesskey="s" tabindex="6" name="post" class="mainoption" value="{L_SUBMIT}" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</table>
|
||||
|
||||
<table width="100%" cellspacing="2" border="0" align="center" cellpadding="2">
|
||||
<tr>
|
||||
<td align="right" valign="top"><span class="gensmall">{S_TIMEZONE}</span></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
<table width="100%" cellspacing="2" border="0" align="center">
|
||||
<tr>
|
||||
<td valign="top" align="right"><!-- INCLUDE jumpbox.html --></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" align="right"><!-- INCLUDE jumpbox.html --></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
{TOPIC_REVIEW_BOX}
|
||||
|
Loading…
x
Reference in New Issue
Block a user