Seite 2 von 2

Verfasst: 08.06.2004 22:49
von Leuchte
Gib mir einen Link zu deiner templates/dein_template/posting_body.tpl

Verfasst: 09.06.2004 09:57
von color
Hier ist meine posting_Body.tpl

Mfg

Code: Alles auswählen

{MYCALJS}
<script language='javascript' src='spelling/spellmessage.js'></script>
<script language="javascript" type="text/javascript">
//<![CDATA[
// bbCode control by
// subBlue design
// www.subBlue.com

// Startup variables
var imageTag = false;
var theSelection = false;

// Check for Browser & Platform for PC & IE specific bits
// More details from: http://www.mozilla.org/docs/web-developer/sniffer/browser_type.html
var clientPC = navigator.userAgent.toLowerCase(); // Get client info
var clientVer = parseInt(navigator.appVersion); // Get browser version

var is_ie = ((clientPC.indexOf("msie") != -1) && (clientPC.indexOf("opera") == -1));
var is_nav = ((clientPC.indexOf('mozilla')!=-1) && (clientPC.indexOf('spoofer')==-1)
                && (clientPC.indexOf('compatible') == -1) && (clientPC.indexOf('opera')==-1)
                && (clientPC.indexOf('webtv')==-1) && (clientPC.indexOf('hotjava')==-1));
var is_moz = 0;

var is_win = ((clientPC.indexOf("win")!=-1) || (clientPC.indexOf("16bit") != -1));
var is_mac = (clientPC.indexOf("mac")!=-1);

// Helpline messages
b_help = "{L_BBCODE_B_HELP}";
i_help = "{L_BBCODE_I_HELP}";
u_help = "{L_BBCODE_U_HELP}";
q_help = "{L_BBCODE_Q_HELP}";
c_help = "{L_BBCODE_C_HELP}";
l_help = "{L_BBCODE_L_HELP}";
o_help = "{L_BBCODE_O_HELP}";
p_help = "{L_BBCODE_P_HELP}";
w_help = "{L_BBCODE_W_HELP}";
z_help = "{L_BBCODE_Z_HELP}";
s_help = "{L_BBCODE_S_HELP}";
f_help = "{L_BBCODE_F_HELP}";
g_help = "{L_BBCODE_G_HELP}";
m_help = "{L_BBCODE_M_HELP}";
d_help = "{L_BBCODE_D_HELP}";
n_help = "{L_BBCODE_N_HELP}";
a_help = "{L_BBCODE_A_HELP}";
k_help = "{L_BBCODE_K_HELP}";
t_help = "{L_BBCODE_T_HELP}";
e_help = "{L_BBCODE_E_HELP}";
x_help = "{L_BBCODE_X_HELP}";
y_help = "{L_BBCODE_Y_HELP}";
bbcode = new Array();
bbtags = new Array('[b]','[/b]','[i]','[/i]','[u]','[/u]','[quote]','[/quote]','[code]','
','
  • ','
','
  • ','
','[img]','[/img]','','','[align=]','[/align]','[tab]','[tab]','[table]','[/table]','[10]','[;]','[acronym=]','[/acronym]','[strike]','[/strike]','[spoiler]','[/spoiler]','[google]','[/google]','<!--break-->','',{BBCODE_ARRAY});
imageTag = false;

// Shows the help messages in the helpline window
function helpline(help) {
document.post.helpbox.value = eval(help + "_help");
}

function customhelpline(customhelp) {
document.post.helpbox.value = customhelp;
}

// Replacement for arrayname.length property
function getarraysize(thearray) {
for (i = 0; i < thearray.length; i++) {
if ((thearray == "undefined") || (thearray == "") || (thearray == null))
return i;
}
return thearray.length;
}

// Replacement for arrayname.push(value) not implemented in IE until version 5.5
// Appends element to the array
function arraypush(thearray,value) {
thearray[ getarraysize(thearray) ] = value;
}

// Replacement for arrayname.pop() not implemented in IE until version 5.5
// Removes and returns the last element of an array
function arraypop(thearray) {
thearraysize = getarraysize(thearray);
retval = thearray[thearraysize - 1];
delete thearray[thearraysize - 1];
return retval;
}

function checkForm() {

formErrors = false;

if (document.post.message.value.length < 2) {
formErrors = "{L_EMPTY_MESSAGE}";
}

if (formErrors) {
alert(formErrors);
return false;
} else {
bbstyle(-1);
//formObj.preview.disabled = true;
//formObj.submit.disabled = true;
return true;
}
}

function emoticon(text) {
var txtarea = document.post.message;
text = ' ' + text + ' ';
if (txtarea.createTextRange && txtarea.caretPos) {
var caretPos = txtarea.caretPos;
caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? caretPos.text + text + ' ' : caretPos.text + text;
txtarea.focus();
} else {
txtarea.value += text;
txtarea.focus();
}
}

function bbfontstyle(bbopen, bbclose) {
var txtarea = document.post.message;

if ((clientVer >= 4) && is_ie && is_win) {
theSelection = document.selection.createRange().text;
if (!theSelection) {
txtarea.value += bbopen + bbclose;
txtarea.focus();
return;
}
document.selection.createRange().text = bbopen + theSelection + bbclose;
txtarea.focus();
return;
}
else if (txtarea.selectionEnd && (txtarea.selectionEnd - txtarea.selectionStart > 0))
{
mozWrap(txtarea, bbopen, bbclose);
return;
}
else
{
txtarea.value += bbopen + bbclose;
txtarea.focus();
}
storeCaret(txtarea);
}

function bbstyle(bbnumber) {
var txtarea = document.post.message;

txtarea.focus();
donotinsert = false;
theSelection = false;
bblast = 0;

if (bbnumber == -1) { // Close all open tags & default button names
while (bbcode[0]) {
butnumber = arraypop(bbcode) - 1;
txtarea.value += bbtags[butnumber + 1];
buttext = eval('document.post.addbbcode' + butnumber + '.value');
eval('document.post.addbbcode' + butnumber + '.value ="' + buttext.substr(0,(buttext.length - 1)) + '"');
}
imageTag = false; // All tags are closed including image tags :D
txtarea.focus();
return;
}

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];
txtarea.focus();
theSelection = '';
return;
}
}
else if (txtarea.selectionEnd && (txtarea.selectionEnd - txtarea.selectionStart > 0))
{
mozWrap(txtarea, bbtags[bbnumber], bbtags[bbnumber+1]);
return;
}

// Find last occurance of an open tag the same as the one just clicked
for (i = 0; i < bbcode.length; i++) {
if (bbcode == bbnumber+1) {
bblast = i;
donotinsert = true;
}
}

if (donotinsert) { // Close all open tags up to the one just clicked & default button names
while (bbcode[bblast]) {
butnumber = arraypop(bbcode) - 1;
txtarea.value += bbtags[butnumber + 1];
buttext = eval('document.post.addbbcode' + butnumber + '.value');
eval('document.post.addbbcode' + butnumber + '.value ="' + buttext.substr(0,(buttext.length - 1)) + '"');
imageTag = false;
}
txtarea.focus();
return;
} else { // Open tags

if (imageTag && (bbnumber != 14)) { // Close image tag before adding another
txtarea.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
txtarea.value += bbtags[bbnumber];
if ((bbnumber == 14) && (imageTag == false)) imageTag = 1; // Check to stop additional tags after an unclosed image tag
arraypush(bbcode,bbnumber+1);
eval('document.post.addbbcode'+bbnumber+'.value += "*"');
txtarea.focus();
return;
}
storeCaret(txtarea);
}

// From http://www.massless.org/mozedit/
function mozWrap(txtarea, open, close)
{
var selLength = txtarea.textLength;
var selStart = txtarea.selectionStart;
var selEnd = txtarea.selectionEnd;
if (selEnd == 1 || selEnd == 2)
selEnd = selLength;

var s1 = (txtarea.value).substring(0,selStart);
var s2 = (txtarea.value).substring(selStart, selEnd)
var s3 = (txtarea.value).substring(selEnd, selLength);
txtarea.value = s1 + open + s2 + close + s3;
return;
}

// Insert at Claret position. Code from
// http://www.faqts.com/knowledge_base/vie ... 52/fid/130
function storeCaret(textEl) {
if (textEl.createTextRange) textEl.caretPos = document.selection.createRange().duplicate();
}

//]]>
</script>
<script language="JavaScript" type="text/javascript">
//<![CDATA[
function check_msg_length ()
{
var msg_length = document.post.message.value.length;
alert('{L_CURRENT_MESSAGE_LENGTH}'+msg_length);
}
//]]>
</script>

<script type="text/javascript">
//<![CDATA[
document.onkeyup = proces;
document.onmouseup = proces;
document.onmousedown = proces;
function proces()
{
value = document.post.message.value;
len = {L_MESSAGE_CHARS} - value.length;
if (len < 0 )
{
document.post.message.value = document.post.message.value.substring(0,{L_MESSAGE_CHARS});
document.post.left.value = 0;
}
else
{
document.post.left.value = len
}
}
//]]>
</script>

<form action="{S_POST_ACTION}" method="post" name="post" onsubmit="return checkForm(this)" {S_FORM_ENCTYPE}>
<table width="100%" cellspacing="2" cellpadding="2" border="0">
<tr>
<td class="maintitle">{L_POST_A}</td>
</tr>
<tr>

<!-- mod : hiérarchie des rubriques -->
<td align="left" valign="bottom">
<span class="nav">
<a href="{U_INDEX}" class="nav">{L_INDEX}</a>
<!-- BEGIN switch_not_privmsg -->
{NAV_CAT_DESC}{NAV_SEPARATOR}<a href="{U_VIEW_FORUM}" class="nav">{FORUM_NAME}</a>
<!-- END switch_not_privmsg -->
</span>
</td>
<!-- fin mod : hiérarchie des rubriques -->

</tr>
</table>
{POST_PREVIEW_BOX}
{ERROR_BOX}
<table border="0" cellpadding="3" cellspacing="1" width="100%" class="forumline">
<tr>
<th colspan="2">{L_POST_A}</th>
</tr>
<!-- BEGIN switch_username_select -->
<tr>
<td align="right" class="row1" width="22%"><span class="explaintitle">{L_USERNAME}:</span></td>
<td class="row2"><input type="text" class="post" tabindex="1" name="username" size="25" maxlength="25" value="{USERNAME}" /></td>
</tr>
<!-- END switch_username_select -->
<!-- BEGIN switch_privmsg -->
<tr>
<td align="right" class="row1" width="200"><span class="explaintitle">{L_USERNAME}:</span></td>
<td class="row2">
<input type="text" class="post" name="username" maxlength="25" size="25" tabindex="1" value="{USERNAME}" />
&nbsp;<input type="submit" name="usersubmit" value="{L_FIND_USERNAME}" class="button" onclick="window.open('{U_SEARCH_USER}', '_phpbbsearch', 'HEIGHT=250,resizable=yes,WIDTH=400');return false;" />
</td>
</tr>
<!-- END switch_privmsg -->
<tr>
<td align="right" class="row1" width="200"><span class="explaintitle">{L_SUBJECT}:</span></td>
<td class="row2"><input type="text" name="subject" size="45" maxlength="120" style="width:450px" tabindex="2" class="post" value="{SUBJECT}" /></td>
</tr>
<!-- BEGIN topic_description -->
<tr>
<td class="row1" width="200"><span class="explaintitle">{L_TOPIC_DESCRIPTION}:</span></td>
<td class="row2"><input type="text" name="topic_desc" size="45" maxlength="196" style="width:450px" tabindex="2" class="post" value="{TOPIC_DESCRIPTION}" /></td>
</tr>
<!-- END topic_description -->

<!-- BEGIN switch_msgicon_checkbox -->
<tr>
<td align="right" class="row1" valign="top" width="200"><span class="explaintitle">Message Icon:</span></td>
<td class="row2">
<table width="100%" border="0" cellspacing="0" cellpadding="2">
<tr>
<td>
<span class="gen">
<INPUT type="radio" name="msg_icon" value="2" {MSG_ICON_CHECKED2}><IMG SRC="{TEMPLATE}images/post_icon/icon2.gif" HEIGHT="25" WIDTH="25" ALIGN="absmiddle" />
<INPUT type="radio" name="msg_icon" value="3" {MSG_ICON_CHECKED3}><IMG SRC="{TEMPLATE}images/post_icon/icon3.gif" HEIGHT="25" WIDTH="25" ALIGN="absmiddle" />
<INPUT type="radio" name="msg_icon" value="4" {MSG_ICON_CHECKED4}><IMG SRC="{TEMPLATE}images/post_icon/icon4.gif" HEIGHT="25" WIDTH="25" ALIGN="absmiddle" />
<INPUT type="radio" name="msg_icon" value="5" {MSG_ICON_CHECKED5}><IMG SRC="{TEMPLATE}images/post_icon/icon5.gif" HEIGHT="25" WIDTH="25" ALIGN="absmiddle" />
<INPUT type="radio" name="msg_icon" value="7" {MSG_ICON_CHECKED7}><IMG SRC="{TEMPLATE}images/post_icon/icon7.gif" HEIGHT="25" WIDTH="25" ALIGN="absmiddle" /> </span> </td>
</tr>
<tr>
<td>
<span class="gen">
<INPUT type="radio" name="msg_icon" value="8" {MSG_ICON_CHECKED8}><IMG SRC="{TEMPLATE}images/post_icon/icon8.gif" HEIGHT="25" WIDTH="25" ALIGN="absmiddle" />
<INPUT type="radio" name="msg_icon" value="11" {MSG_ICON_CHECKED11}><IMG SRC="{TEMPLATE}images/post_icon/icon11.gif" HEIGHT="25" WIDTH="25" ALIGN="absmiddle" />
<INPUT type="radio" name="msg_icon" value="12" {MSG_ICON_CHECKED12}><IMG SRC="{TEMPLATE}images/post_icon/icon12.gif" HEIGHT="25" WIDTH="25" ALIGN="absmiddle" />
<INPUT type="radio" name="msg_icon" value="13" {MSG_ICON_CHECKED13}><IMG SRC="{TEMPLATE}images/post_icon/icon13.gif" HEIGHT="25" WIDTH="25" ALIGN="absmiddle" />
<INPUT type="radio" name="msg_icon" value="0" {MSG_ICON_CHECKED0}>{L_MSG_ICON_NO_ICON}
</span>
</td>
</tr>
</table>
</td>
</tr>
<!-- END switch_msgicon_checkbox -->
<!-- BEGIN switch_news_cat -->
<tr>
<td class="row1" align="right" width="200"><span class="explaintitle">{switch_news_cat.L_NEWS_CATEGORY}:</span></td>
<td class="row2"><select name="{switch_news_cat.S_NAME}">{switch_news_cat.S_CATEGORY_BOX}</select></td>
</tr>
<!-- END switch_news_cat -->

{MYCALBOX}

<tr>
<td class="row1" valign="top" width="200">
<table width="100%" border="0" cellspacing="0" cellpadding="1">
<tr>
<td align="right"><span class="explaintitle">{L_MESSAGE_BODY}:</span></td>
</tr>
<tr>
<td align="center">
<table width="100" border="0" cellspacing="0" cellpadding="5">
<tr>
<td align="center" colspan="{S_SMILIES_COLSPAN}" class="gensmall"><span class="explaintitle">{L_EMOTICONS}</span></td>
</tr>
<!-- BEGIN smilies_row -->
<tr>
<!-- BEGIN smilies_col -->
<td align="center"><img src="{smilies_row.smilies_col.SMILEY_IMG}" border="0" onmouseover="this.style.cursor='hand';" onclick="emoticon('{smilies_row.smilies_col.SMILEY_CODE}');" alt="{smilies_row.smilies_col.SMILEY_DESC}" title="{smilies_row.smilies_col.SMILEY_DESC}" width="19" height="19" /></a></td>
<!-- END smilies_col -->
</tr>
<!-- END smilies_row -->
<!-- BEGIN switch_smilies_extra -->
<tr>
<td align="center" colspan="{S_SMILIES_COLSPAN}" class="nav"><a href="{U_MORE_SMILIES}" onclick="window.open('{U_MORE_SMILIES}', '_phpbbsmilies', 'HEIGHT=250,resizable=yes,scrollbars=yes,WIDTH=300');return false;" target="_phpbbsmilies">{L_MORE_SMILIES}</a></td>
</tr>
<!-- END switch_smilies_extra -->
</table>
</td>
</tr>
</table>
</td>
<td class="row2" valign="top">
<table width="510" border="0" cellspacing="0" cellpadding="2">
<tr align="center">
<td>
<input type="button" class="button" accesskey="b" name="addbbcode0" value=" B " style="font-weight:bold; width: 50px" onclick="bbstyle(0)" onmouseover="helpline('b')" />
</td>
<td>
<input type="button" class="button" accesskey="c" name="addbbcode8" value="Code" style="width: 50px" onclick="bbstyle(8)" onmouseover="helpline('c')" />
</td>
<td>
<input type="button" class="button" accesskey="p" name="addbbcode14" value="Img" style="width: 50px" onclick="bbstyle(14)" onmouseover="helpline('p')" />
</td>
<td>
<input type="button" class="button" accesskey="w" name="addbbcode16" value="URL" style="width: 50px" onclick="bbstyle(16)" onmouseover="helpline('w')" />
</td>
</tr>

<!-- BEGIN XBBcode -->
<tr align="center" valign="middle">
<!-- BEGIN BB -->
<td>
<input type="button" class="button" accesskey="{XBBcode.BB.KEY}" name="{XBBcode.BB.NAME}" value="{XBBcode.BB.VALUE}" style="width: {XBBcode.BB.WIDTH}px" onClick="{XBBcode.BB.STYLE}" onMouseOver="helpline('{XBBcode.BB.KEY}')" />
</td>
<!-- END BB -->
</tr>
<!-- END XBBcode -->

<!-- BEGIN custom -->
<tr>
<td>
<!-- BEGIN bbcode -->
<input type="button" class="button" name="addbbcode{custom.bbcode.CUSTOMBBINDEX}" value="{custom.bbcode.CUSTOMBBCODE}" style="width: 50px" onClick="bbstyle({custom.bbcode.CUSTOMBBINDEX})" onMouseOver="customhelpline('{custom.bbcode.CUSTOMBBEXAMPLE}')" />
<!-- END bbcode -->
</td>
</tr>
<!-- END custom -->
<tr>
<td colspan="9">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td nowrap="nowrap" class="genmed">
<select name="addbbcodefontcolor" onchange="bbfontstyle('[color=' + this.form.addbbcodefontcolor.options[this.form.addbbcodefontcolor.selectedIndex].value + ']', '[/color]');this.selectedIndex=0;" onmouseover="helpline('s')">
<option value="0" class="genmed" selected="selected">{L_FONT_COLOR}</option>
<option value="{T_BODY_TEXT}">{L_COLOR_DEFAULT}</option>
<option style="color:darkred; background-color:transparent" value="darkred">{L_COLOR_DARK_RED}</option>
<option style="color:red; background-color:transparent" value="red">{L_COLOR_RED}</option>
<option style="color:orange; background-color:transparent" value="orange">{L_COLOR_ORANGE}</option>
<option style="color:brown; background-color:transparent" value="brown">{L_COLOR_BROWN}</option>
<option style="color:yellow; background-color:transparent" value="yellow">{L_COLOR_YELLOW}</option>
<option style="color:green; background-color:transparent" value="green">{L_COLOR_GREEN}</option>
<option style="color:olive; background-color:transparent" value="olive">{L_COLOR_OLIVE}</option>
<option style="color:cyan; background-color:transparent" value="cyan">{L_COLOR_CYAN}</option>
<option style="color:blue; background-color:transparent" value="blue">{L_COLOR_BLUE}</option>
<option style="color:darkblue; background-color:transparent" value="darkblue">{L_COLOR_DARK_BLUE}</option>
<option style="color:indigo; background-color:transparent" value="indigo">{L_COLOR_INDIGO}</option>
<option style="color:violet; background-color:transparent" value="violet">{L_COLOR_VIOLET}</option>
<option style="color:white; background-color:transparent" value="white">{L_COLOR_WHITE}</option>
<option style="color:black; background-color:transparent" value="black">{L_COLOR_BLACK}</option>
<option style="color:cadetblue; background-color:transparent" value="cadetblue">{L_COLOR_CADET_BLUE}</option>
<option style="color:coral; background-color:transparent" value="coral">{L_COLOR_CORAL}</option>
<option style="color:crimson; background-color:transparent" value="crimson">{L_COLOR_CRIMSON}</option>
<option style="color:tomato; background-color:transparent" value="tomato">{L_COLOR_TOMATO}</option>
<option style="color:seagreen; background-color:transparent" value="seagreen">{L_COLOR_SEA_GREEN}</option>
<option style="color:darkorchid; background-color:transparent" value="darkorchid">{L_COLOR_DARK_ORCHID}</option>
<option style="color:chocolate; background-color:transparent" value="chocolate">{L_COLOR_CHOCOLATE}</option>
<option style="color:deepskyblue; background-color:transparent" value="deepskyblue">{L_COLOR_DEEPSKYBLUE}</option>
<option style="color:gold; background-color:transparent" value="gold">{L_COLOR_GOLD}</option>
<option style="color:gray; background-color:transparent" value="gray">{L_COLOR_GRAY}</option>
<option style="color:midnightblue; background-color:transparent" value="midnightblue">{L_COLOR_MIDNIGHTBLUE}</option>
<option style="color:darkgreen; background-color:transparent" value="darkgreen">{L_COLOR_DARKGREEN}</option>
</select>&nbsp;
<select name="addbbcodefontsize" onchange="bbfontstyle('[size=' + this.form.addbbcodefontsize.options[this.form.addbbcodefontsize.selectedIndex].value + ']', '[/size]');this.selectedIndex=0;" onmouseover="helpline('f')">
<option value="0" class="genmed" selected="selected">{L_FONT_SIZE}</option>
<option value="7">{L_FONT_TINY}</option>
<option value="9">{L_FONT_SMALL}</option>
<option value="12">{L_FONT_NORMAL}</option>
<option value="18">{L_FONT_LARGE}</option>
<option value="24">{L_FONT_HUGE}</option>
</select>&nbsp;
<select name="addbbcodefontface" onchange="bbfontstyle('[font=' + this.form.addbbcodefontface.options[this.form.addbbcodefontface.selectedIndex].value + ']', '[/font]');this.selectedIndex=0;" onmouseover="helpline('y')" accesskey="y">
<option value="0" class="genmed" selected="selected">{L_FONT_STYLE}</option>
<!-- BEGIN font_styles -->
<option value="{font_styles.L_FONTNAME}" class="genmed" style="font-family:{font_styles.L_FONTNAME};">{font_styles.L_FONTNAME}</option>
<!-- END font_styles -->
</select>

</td>
<td nowrap="nowrap" align="right" class="genmed"><a href="javascript:bbstyle(-1)" onmouseover="helpline('z')">{L_BBCODE_CLOSE_TAGS}</a>&nbsp;</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="9">
<input type="text" name="helpbox" size="45" maxlength="100" style="width:500px; font-size:10px" class="helpline" value="{L_STYLES_TIP}" />
</td>
</tr>
<tr>
<td colspan="9">
<textarea name="message" rows="15" cols="35" style="width:500px" tabindex="3" class="post" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);">{MESSAGE}</textarea>
</td>
</tr>
<tr>
<td colspan="9" align="center"><!-- BEGIN switch_msg_length -->

<input type="button" class="liteoption" value="{L_MESSAGE_CHARS}" name="left" style="width: 100px" onMouseOver="customhelpline('{L_MAX_MESSAGE_LENGTH}')" readonly="readonly" onClick="alert('{L_CHARS_LEFT} {L_MESSAGE_CHARS}');" />
<!-- END switch_msg_length -->
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td class="row1" valign="top" width="200">
<span class="explaintitle">{L_OPTIONS}:</span><br />
<span class="gensmall">{HTML_STATUS}<br />
{BBCODE_STATUS}<br />
{SMILIES_STATUS}</span>
</td>
<td class="row2">
<table cellspacing="0" cellpadding="1" border="0">
<!-- BEGIN switch_html_checkbox -->
<tr>
<td><input type="checkbox" name="disable_html" {S_HTML_CHECKED} /></td>
<td class="gensmall">{L_DISABLE_HTML}</td>
</tr>
<!-- END switch_html_checkbox -->
<!-- BEGIN switch_bbcode_checkbox -->
<tr>
<td><input type="checkbox" name="disable_bbcode" {S_BBCODE_CHECKED} /></td>
<td class="gensmall">{L_DISABLE_BBCODE}</td>
</tr>
<!-- END switch_bbcode_checkbox -->
<!-- BEGIN switch_smilies_checkbox -->
<tr>
<td><input type="checkbox" name="disable_smilies" {S_SMILIES_CHECKED} /></td>
<td class="gensmall">{L_DISABLE_SMILIES}</td>
</tr>
<!-- END switch_smilies_checkbox -->
<!-- BEGIN switch_signature_checkbox -->
<tr>
<td><input type="checkbox" name="attach_sig" {S_SIGNATURE_CHECKED} /></td>
<td class="gensmall">{L_ATTACH_SIGNATURE}</td>
</tr>
<!-- END switch_signature_checkbox -->
<!-- BEGIN switch_notify_checkbox -->
<tr>
<td><input type="checkbox" name="notify" {S_NOTIFY_CHECKED} /></td>
<td class="gensmall">{L_NOTIFY_ON_REPLY}</td>
</tr>
<!-- END switch_notify_checkbox -->
<!-- BEGIN switch_delete_checkbox -->
<tr>
<td><input type="checkbox" name="delete" /></td>
<td class="gensmall">{L_DELETE_POST}</td>
</tr>
<!-- END switch_delete_checkbox -->
<!-- BEGIN switch_lock_topic -->
<tr>
<td><input type="checkbox" name="lock" {S_LOCK_CHECKED} /></td>
<td><span class="gensmall">{L_LOCK_TOPIC}</span></td>
</tr>
<!-- END switch_lock_topic -->
<!-- BEGIN switch_unlock_topic -->
<tr>
<td><input type="checkbox" name="unlock" {S_UNLOCK_CHECKED} /></td>
<td><span class="gensmall">{L_UNLOCK_TOPIC}</span></td>
</tr>
<!-- END switch_unlock_topic -->
<!-- BEGIN switch_type_toggle -->
<tr>
<td>&nbsp;</td>
<td><strong>{S_TYPE_TOGGLE}</strong></td>
</tr>
<!-- END switch_type_toggle -->
</table>
</td>
</tr>
{ATTACHBOX}
{POLLBOX}
{DELAYEDPOST}
<tr>
<td class="cat" colspan="2" align="center">
{S_HIDDEN_FORM_FIELDS}<input type="submit" tabindex="5" name="preview" class="mainoption" value="{L_PREVIEW}" />&nbsp;&nbsp;<input type="submit" accesskey="s" tabindex="6" name="post" class="mainoption" value="{L_SUBMIT}" />
</td>
</tr>
</table>
</form>
{TOPIC_REVIEW_BOX}
<table width="100%" cellspacing="2" cellpadding="2" border="0">
<tr>
<td class="nav">
<a href="{U_INDEX}">{L_INDEX}</a>
<!-- BEGIN switch_not_privmsg -->
{NAV_CAT_DESC}{NAV_SEPARATOR}<a href="{U_VIEW_FORUM}">{FORUM_NAME}</a>
<!-- END switch_not_privmsg -->
</td>
</tr>
<tr>
</tr>
</table>
[/code]

Verfasst: 09.06.2004 10:07
von Fabse
KB:datei

Verfasst: 09.06.2004 10:19
von Markus67
Hi ...

Code: Alles auswählen

#
# suche:
#

y_help = "{L_BBCODE_Y_HELP}";

#
# danach in einer neuen Zeile einfügen:
#

h_help = "Hide: [hide]message[/hide] (alt+h)";  

#
# suche:
#

'[spoiler]','[/spoiler]','[google]','[/google]',

#
# danach einfügen:
#

'[hide]','[/hide]',

#
# suche:
#

                        <td> 
                            <input type="button" class="button" accesskey="w" name="addbbcode16" value="URL"    style="width: 50px" onclick="bbstyle(16)" onmouseover="helpline('w')" /> 
                        </td> 

#
# danach in einer neuen Zeile einfügen:
#

			<td>
			    <input type="button" class="button" accesskey="h" name="addbbcode18" value="Hide" style="width: 50px" onClick="bbstyle(18)" onMouseOver="helpline('h')" /> 
			</td>


Ich denke so wird es klarer und du kannst die Datei entsprechend editieren ...

Markus

Verfasst: 09.06.2004 11:49
von color
Marcos du bist einfach supper :lol: Langer gerede kurze sin.
Ich danke dir.

Poste donwload poste link poste das poste dies. :D

mfg