Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

BBcode Buttons & Smileys

uziuzi
edited May 2006 in Vanilla 1.0 Help
I had in my old forum BBcode Buttons and Smileys Buttons:

image


I need the same feature in Vanilla and I think the "BBCode and Smilies (v1.0)"-Extension will do it. Is it right?

The Smileys can be converted from :) or ;) with the "Transmogrifier"-Extension. I only need some code that inserts the :) and ;)....

BBcode would be also very useful to add the bbcodes automatically.

Comments

  • Options
    Yeah, currently we don't have any code-inserting toolbar extensions.
  • Options
    :(
  • Options
    One significant barrier to this idea is that there is no delegate where the toolbar should go, at least in my version.
  • Options
    MarkMark Vanilla Staff
    Just tell me where you want it and I'll add it. Now is the time, since the launch is nigh.
  • Options
    edited April 2006
    Right now the Comment Form template looks like this:

    $this->CallDelegate('CommentForm_PreCommentsInputRender'); echo '<li> <label for="CommentBox"> <a href="./" id="CommentBoxController" onclick="' ."ToggleCommentBox('".$this->Context->Configuration['WEB_ROOT']."ajax/switch.php', '".$this->Context->GetDefinition('SmallInput')."', '".$this->Context->GetDefinition('BigInput')."'); return false;".'">'.$this->Context->GetDefinition($this->Context->Session->User->Preference('ShowLargeCommentBox')?'SmallInput':'BigInput').'</a> [= Delegate goes here. The echo will need to be split up into two parts. =] '.$this->Context->GetDefinition('EnterYourComments').' </label> <textarea name="Body" class="' .($this->Context->Session->User->Preference('ShowLargeCommentBox') ? 'LargeCommentBox' : 'SmallCommentBox') .'" id="CommentBox" rows="10" cols="85">' .$Comment->Body .'</textarea> </li> '.$this->GetPostFormatting($Comment->FormatType) .'</ul>'; $this->CallDelegate('CommentForm_PreButtonsRender');

    Ditto for the Discussion Form template (after the #CommentBoxController link, but before the "enter your comments" text).

    To be honest, I don't know what besides a comment toolbar extension would use something like this, so I don't blame you for not putting one there.
  • Options
    Yes Bergamot, I think it's a good place for the tool ;)

    It would be a great extension for Vanilla :)
  • Options
    MarkMark Vanilla Staff
    edited April 2006
    Done:

    echo '<li> <label for="CommentBox"> <a href="./" id="CommentBoxController" onclick="' ."ToggleCommentBox('".$this->Context->Configuration['WEB_ROOT']."ajax/switch.php', '".$this->Context->GetDefinition('SmallInput')."', '".$this->Context->GetDefinition('BigInput')."'); return false;".'">'.$this->Context->GetDefinition($this->Context->Session->User->Preference('ShowLargeCommentBox')?'SmallInput':'BigInput').'</a>'; $this->CallDelegate('CommentForm_PostCommentToggle'); echo $this->Context->GetDefinition('EnterYourComments').' </label> <textarea name="Body" class="' .($this->Context->Session->User->Preference('ShowLargeCommentBox') ? 'LargeCommentBox' : 'SmallCommentBox') .'" id="CommentBox" rows="10" cols="85">' .$Comment->Body .'</textarea> </li>
  • Options
    edited April 2006
    extreeeeeeeemly minor quibble: for consistency's sake, shouldn't the delegate in the Discussion Form template be called "DiscussionForm_PostCommentToggle".

    Makes no difference to me really, since I'd be tossing the same code in both places.
  • Options
    MarkMark Vanilla Staff
    edited April 2006
    dammit - my bad.

    My hangover apologizes.

    Fixed now.
  • Options
    Rockin.

    I suppose now I have to write the damn thing.
  • Options
    To Bergamot: We would be very happy :)
  • Options
    Now we have a very beautiful extension for the smileys!

    http://lussumo.com/addons/index.php?PostBackAction=AddOn&AddOnID=26


    *waiting for BBcode* :))))))))))))))))
  • Options
    how do i install this? where do I stick the files? or is this not for .0.9.2.6?
  • Options
    uziuzi
    edited April 2006
    In the add-on repository is everything listed, you require the version 1 (current svn) of Vanilla for this extension. For 9.2.6 it will not work. ;)

    Just unrar and add the vanillacons folder into the extensions folder on your server ;)
  • Options
    this thread just came back to the top when it claims to be 3 days old. Whisper bug?
  • Options
    I saw that too. But commenting on it in the thread kinda makes it less obvious :-)
  • Options
    yeah but you can still see the previous threads are 3 days old. I noticed it on a different thread a while ago too.
  • Options
    Yes mini, I whispered! Should not be, what? BUG?
  • Options
    it should for anyone that isnt you and the person you whispered to.
This discussion has been closed.