diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2003-05-18 11:12:04 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2003-05-18 11:12:04 +0000 |
commit | 178572a5d0609d2b3995c7487d3add95414bab51 (patch) | |
tree | 20f1ed2d601b82f5a9dfb29aa500d6c037875684 /phpBB/templates/subSilver | |
parent | 33b0446650cb38e462bf12005637dfc980e4458b (diff) | |
download | forums-178572a5d0609d2b3995c7487d3add95414bab51.tar forums-178572a5d0609d2b3995c7487d3add95414bab51.tar.gz forums-178572a5d0609d2b3995c7487d3add95414bab51.tar.bz2 forums-178572a5d0609d2b3995c7487d3add95414bab51.tar.xz forums-178572a5d0609d2b3995c7487d3add95414bab51.zip |
#642733
git-svn-id: file:///svn/phpbb/trunk@4011 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/templates/subSilver')
-rw-r--r-- | phpBB/templates/subSilver/editor.js | 1 | ||||
-rw-r--r-- | phpBB/templates/subSilver/posting_topic_review.html | 51 |
2 files changed, 50 insertions, 2 deletions
diff --git a/phpBB/templates/subSilver/editor.js b/phpBB/templates/subSilver/editor.js index 0ef736c94a..3bcd035346 100644 --- a/phpBB/templates/subSilver/editor.js +++ b/phpBB/templates/subSilver/editor.js @@ -84,6 +84,7 @@ function bbstyle(bbnumber) { donotinsert = false; theSelection = false; bblast = 0; + document.forms[form_name].elements[text_name].focus(); if (bbnumber == -1) { // Close all open tags & default button names while (bbcode[0]) { diff --git a/phpBB/templates/subSilver/posting_topic_review.html b/phpBB/templates/subSilver/posting_topic_review.html index 1ffbf5d7dc..14025cf8b7 100644 --- a/phpBB/templates/subSilver/posting_topic_review.html +++ b/phpBB/templates/subSilver/posting_topic_review.html @@ -5,12 +5,58 @@ <th height="28" align="center">{L_TOPIC_REVIEW}</th> </tr> <tr> - <td class="row1"><iframe width="100%" height="300" src="{U_REVIEW_TOPIC}"> + <td class="row1"><iframe width="100%" height="300" name="review_window" src="{U_REVIEW_TOPIC}"> <!-- ELSE --> <!-- INCLUDE simple_header.html --> + +<script language="javascript" type="text/javascript" src="templates/subSilver/editor.js"></script> + +<script language="JavaScript" type="text/javascript"> +<!-- + +var parent_form_name = 'post'; +var parent_text_name = 'message'; + +function insert_quote(text) { + if (window.parent.document.forms[parent_form_name].elements[parent_text_name].createTextRange && window.parent.document.forms[parent_form_name].elements[parent_text_name].caretPos) + { + var caretPos = window.parent.document.forms[parent_form_name].elements[parent_text_name].caretPos; + caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? text + ' ' : text; + window.parent.document.forms[parent_form_name].elements[parent_text_name].focus(); + } else { + window.parent.document.forms[parent_form_name].elements[parent_text_name].value += text; + window.parent.document.forms[parent_form_name].elements[parent_text_name].focus(); + } +} + +function addquote(post_id, username) { + + var text_name = 'message_' + post_id; + + if ((clientVer >= 4) && is_ie && is_win) + { + theSelection = document.selection.createRange().text; // Get text selection - does not consider the div only! + } + + if (!theSelection) + { + eval("theSelection = document.all." + text_name + ".innerText;"); + } + + if (theSelection) + { + insert_quote('[quote="' + username + '"]' + theSelection + '[/quote]'); + } + + return; +} + +//--> +</script> + <table class="tablebg" width="100%" cellpadding="2" cellspacing="1" border="0"> <tr> <th width="22%" height="26">{L_AUTHOR}</th> @@ -26,12 +72,13 @@ <td height="28" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="100%">{postrow.MINI_POST_IMG}<span class="postdetails">{L_POSTED}: {postrow.POST_DATE}<span class="gen"> </span> {L_POST_SUBJECT}: {postrow.POST_SUBJECT}</span></td> + <td valign="top" align="right" nowrap="nowrap"><input type="button" class="button" name="addquote" value="{L_QUOTE}" style="width: 50px" onClick="addquote({postrow.POST_ID}, '{postrow.POSTER_NAME}');" /></td> </tr> <tr> <td colspan="2"><hr /></td> </tr> <tr> - <td colspan="2"><span class="postbody">{postrow.MESSAGE}</span></td> + <td colspan="2"><span class="postbody"><div id="message_{postrow.POST_ID}">{postrow.MESSAGE}</div></span></td> </tr> </table></td> </tr> |