This extension adds a "quote" button to the upper right corner of each comment. When clicked on, javascript transfers the contents of that post to the comment field at the bottom of the page.
The extension also includes a stylesheet that styles the blockquote and cite elements inside a comment.
By default, this extension outputs HTML markup, but it now includes a script for outputting BBCode markup instead.
It is recommended that you use the Better BBCode Extension with this extension, rather than the original BBCode Extension, as the original extension has problems with nested tags.
Other Requirements (if any):
Why does this show the version number in the addons repository as 1.5, but default.php shows the version number as 1.6? It's causing the "Check for Updates" to come back and tell me that there's a new version to download:
Quotations 1.6
Version 1.5 is available. Download
Hi, when I make a quote with your addon, I see in the quote all "ForcedBBcode" addon's items of the quoted post.
Exemple : [b]text[b], [p]text[p]...
What can I do ?
Thanks.
Well if you have ForcedBBCode enlabed, you shouldn't see any BBCode tag once your comment is posted.
That's because div and span are HTML tags. They can't be used as BBCode tags. Now the problem is to know why there are HTML tags here if you don't use a HTML formatter...
Maybe you should try AjaxQuote and see if you have the same problem with this extension.
This extension is perfect, thank you a lot.
See you.
Where do we get version 1.6?
The Quotations extension will quote the Signature as well if you use the Signature extension.
(Signature Extension)
Add this 2 lines in quote.jsvar pattern = /<span class=\"CommentSignature\">.*<\/span>/;<br />commentText = commentText.replace(pattern, "");
aftercommentText = dumpCodeTree(document.getElementById("CommentBody_" + commentId));
Does this extension support multiple pages yet out of interest?
Additionally - this extension does not work if the user's handle has an apostrophe. Please advise.
Could you make this Extension work with the TinyMCE addon? You should check for TinyMCE and call tinyMCE.triggerSave() before adding the Quotation-code and tinyMCE.updateContent('Body') afterwards.
somewhere on this forum there is code to do that.
i think.let me know if u can't find it
It's not easy to find. Can you please advise.
u guys should use Ajaxquote instead
Dinobof has the changes to make it work with Tinymce
http://lussumo.com/community/?CommentID=47064
I'm finding every time I use this, the code is grabbing the [p] html tags (even though I'm using bbcode). So all quotes come out looking like:
[p]this is a quote[/p]
instead of:
this is a quote.
Suggestions?
Doesn't seem to be working when FCKeditor has already been installed.
Do you have any ideas what lines of code I need to change.
Thanks a lot in advance.
edit--
@AhYap.com I've made your alterations and its not working for me--- is it possible because I'm using bbcode and not html?
Hmm for some reason this is not working properly for me.
I renamed the quote.js to quote-html.js and then renamed the quote-bb.js to quote.js
and I am using the Forced BBCode 0.1.0 extension as well. But still the quote is trying to use html commands. <quote><cite></cite></quote>
Any ideas what I might be doing wrong?
Also tried this with BetterBBCode extension. It still chooses to use html
EDIT: Fixed. Please note that just renaming the quote.js file to quote-html.js and renaming quote-bbcode.js to quote.js wont work. You must also remove quote-html.js from the extensions/quotations/ folder.
can anybody help? when i quote a message with vanillacons, the vanillacons are all in errors...how can i fix this? since vanillacons are using ::filename:: it seems that quotations doesnt understand it...
As a side note, if you get PHP errors with this plugin, it's the casing. There's an instance of CommentGrid that is incorrectly cased as commentgrid.
I haven't tested yet but the previous Quotations was causing problems in ie6. Any thoughts. It would make posts run together and mess with layout and background color.
I'm having the same problem as "tabs".....vanillacons are not getting quoted properly. Has anyone made a fix for this? I'm going to attempt it myself, but I'm not that handy with js.
Wanderer Sorry, ignore this, I miss-read the comment above.
(I wish there was a delete comment feature) 
Posted: Wednesday, 25 July 2007 at 11:43AM
may not be the best javascript coding, but this worked for me:
just above the line: if(tagName != "")
add:<br />if (tagName == "img") {<br /> for (var j = 0; j < children[i].attributes.length; j++) <br /> {<br /> attributeName = children[i].attributes[j].name;<br /> attributeValue = children[i].attributes[j].value;<br /> if (children[i].attributes[j].value.match(/^:[a-z]*:$/m) && children[i].attributes[j].name == "title")<br /> {<br /> outputText += " "+attributeValue;<br /> tagName = "";<br /> }<br /> }<br />}<br />
is there any to exclude images (using either html or attachments extention) and videos (or anything using the jqmedia plugin) in the same way as you excluded the signitures.
would this kind of thing work?<br />var pattern = /<span class=\"image\">.*<\/span>/;<br />var pattern = /<span class=\"Attachments\">.*<\/span>/;<br />var pattern = /<span class=\"media youtube\">.*<\/span>/;<br />commentText = commentText.replace(pattern, "");
Just wanted to add my fix for the BBCode version, using the inline images modification for attachments.
var pattern = /\[div.*.class=Attachments\]\[ul\]\[div\].*.\[\/div\]\[\/ul\]\[\/div\]/gi;
I've got a small problem that occurs when I quote something that's formatted with HTML. If I quote this:
puppies look good covered in fur!
the output of the quote is this:
puppies lookgoodcovered infur!
Something is messing up the spaces in between HTML-formatted text. What do you suggest?
Sorry to bump, but does anyone have any suggestions for my problem above?
I seem to remember noticing it too, but only around BBCode tags. So the problem could be related to your BBCode parser. What does the source look like?
Source of original text:
<div class="CommentBody" id="CommentBody_111">puppies look <font color="green" >good</font> covered in <font color="red" ><b >fur!</b></font></div>
Source of quoted text:
<div class="CommentBody" id="CommentBody_112"><blockquote ><cite >Posted by Dylan</cite>puppies look<font color="green" >good</font>covered in<font color="red" ><b >fur!</b></font></blockquote>this is a reply</div>
Well, that points the blame at the javascript.
//strip whitespace
nodeValue = nodeValue.replace(/^\s*|\s*$/g,'');
You could try commenting out that line to see if it helps, but I imagine it's there for a reason. The method used to pull out the data may leave extra spaces. Which is more of a concern for you - extra spaces, or less spaces :P
My forum users recently discovered that they can change their display names. One of them chose a name that contained a single quote. When someone quoted one of the user's posts using this extension, the single quote in the authorName destroyed the page. Here is a fix I have implemented.
Insert the following code at line 18 in quote.jsauthorName = authorName.replace( /'/g, "'" );
This will replace single quotes in the authorName with the html element that will not break the page rendering.
Please use $Context->SetDefenition instead $Context->Dictionary
I need edit your code every time after update, and you can change some strings once! It's simple and fast way for you and other non english vanilla users.
P.S.
Multiply all edit time for change your wrong coding style with quaintly of all non-english of extension users and understand how much time of life you steal from peoples. It's theft of life on planet.
Be better - use $Context->SetDefenition
I can't seem to get this to work out correctly.
I click quote and it copies the text that needs to be copied but it shows everything as HTML.
Example:
Post:
Hi there!
Quoted Post:
<blockquote><cite>dubLeE</cite>Hi There!</blockquote>I'm trying to quote!
not sure how to fix this at all!
I've even tried formatting the post and the commented post as text, html, and bbcode!
how do i make it work with tinymce? thanks
Just edit the comment in default.php to match the version number 1.5 - that takes care of the auto updater issue. :)
hm, can you be more specific please...
To fix the problem of spaces between tags getting stripped completely, but still benefit from removal of whitespace stripping, you can use the following, which will strip all but one space from the beginning and end of each node:
(Near line 127 of quote.js)//strip whitespace<br />nodeValue = nodeValue.replace(/^\s+|\s+$/g,' ');
pbear default.php seems to be missing a ?> at the end.
also having the problem:
[quote][cite]Posted By: Cass_ette[/cite]testing something else[/quote] trying
it seems like there is more than one person having this problem... I tried the changing the quote.js and quote-html.js....... still doing the above?
bbakermay not be the best javascript coding, but this worked for me:
just above the line: if(tagName != "")
add:....
Purrrfect, that solved the issue with Vanillacons
hadnfieldTo fix the problem of spaces between tags getting stripped completely..
And this with some issues when quoting formatted text. Haven't checked with bb code yet but at least if there's some way to lose extra stuff and not to mess formatting..
Guess now there are only issues with Polls and attached images. :D
edit: One issue more with Vanillacons in quote. If and when quoting Vanillacons that have been renamed using Transmogrifer, code posted by bbakermay does not work and it prints <img src="./smilies/default/biggrin.gif" alt=":biggrin:">
Somebody willing to help? Appreciated :)
Addons are custom features that you can add to your Vanilla forum. Addons are created by our community of developers and people like you!
We review addons to make sure they are safe and don't cause bugs. An addon is considered to be "Vanilla Approved" once our review process is complete.