Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Facebook Sign In with Google Sign In with OpenID Sign In with Twitter

Categories

In this Discussion

Who's Online 14

CurtisOdenZMOericgillettejohansonlockerwhu606 +9 guests

Quotations

This discussion is related to the Quotations addon.
Quotations
«1

Comments

  • Posts: 49
    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
  • Posts: 8
    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.
  • Posts: 600
    Well if you have ForcedBBCode enlabed, you shouldn't see any BBCode tag once your comment is posted.
  • Posts: 600
    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.
  • Posts: 8
    This extension is perfect, thank you a lot. See you.
  • Posts: 2
    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.js

    var pattern = /<span class=\"CommentSignature\">.*<\/span>/;
    commentText = commentText.replace(pattern, "");


    after

    commentText = dumpCodeTree(document.getElementById("CommentBody_" + commentId));
  • Posts: 840
    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.
  • Posts: 2
    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.
  • Posts: 1,799
    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.
  • Posts: 1,799
    u guys should use Ajaxquote instead Dinobof has the changes to make it work with Tinymce http://lussumo.com/community/?CommentID=47064
  • Posts: 95
    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?
  • Posts: 14
    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.
  • VazVaz
    Posts: 292
    edit--
  • Posts: 95
    @AhYap.com I've made your alterations and its not working for me--- is it possible because I'm using bbcode and not html?
  • Posts: 48
    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.
  • Posts: 16
    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.
  • Posts: 44
    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.
  • Posts: 3
    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.
  • Posts: 2,419
    Sorry, ignore this, I miss-read the comment above.
    (I wish there was a delete comment feature) pic

    Posted: Wednesday, 25 July 2007 at 11:43AM

  • Posts: 3
    may not be the best javascript coding, but this worked for me:

    just above the line: if(tagName != "")

    add:

    if (tagName == "img") {
    for (var j = 0; j < children[i].attributes.length; j++)
    {
    attributeName = children[i].attributes[j].name;
    attributeValue = children[i].attributes[j].value;
    if (children[i].attributes[j].value.match(/^:[a-z]*:$/m) && children[i].attributes[j].name == "title")
    {
    outputText += " "+attributeValue;
    tagName = "";
    }
    }
    }
  • 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?


    var pattern = /<span class=\"image\">.*<\/span>/;
    var pattern = /<span class=\"Attachments\">.*<\/span>/;
    var pattern = /<span class=\"media youtube\">.*<\/span>/;
    commentText = commentText.replace(pattern, "");
  • Posts: 201
    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?
  • Posts: 201
    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?
Sign In or Register to comment.