Vanilla 1.1.8 is a product of Lussumo. More Information: Documentation, Community Support.
Help keep Vanilla free:
Any working versions of the Quotations extension for a very recent 0.9.3?The version linked above was tested with revision #358, and seems to work fine. (certainly better than it worked before)
function quote() {
var d = document.createElement("p"), s = getSelection();
for(var i = 0; i < s.rangeCount; ++i)
{
var r = s.getRangeAt(i);
if (!r.collapsed) d.appendChild(r.cloneContents());
}
alert(d.innerHTML);
}
Extension Url:Extension Url: nullAnd that right there is the exact reason I won't be bothering to install any quote feature on my site :P
var tagOpenQuote = "bq. ";
var tagOpenCite = "??";
var tagCloseQuote = "";
var tagCloseCite = "??";
if ($tag == "bq") {
$cite = $this->checkRefs($cite);
$cite = ($cite != '') ? ' cite="' . $cite . '"' : '';
// $start = "\t<blockquote$cite>\n\t\t<p";
$start = "\t<blockquote$cite>\n\t\t"; // replacement without opening-p-tag
// $end = "</p>\n\t</blockquote>";
$end = "\n\t</blockquote>"; // replacement without closing-p-tag
}
// return "$start$atts>$content$end";
return "$start$atts$content$end"; // replacement without closing-angle-bracket
dfgsfgsfg :D :P -> :D and :P are smileys inserted with the Vanillacons extension[quote][cite]Posted By: uzi[/cite]dfgsfgsfg[img title=:D alt=:D]extensions/Vanillacons/smilies/standard/:D.gif[/img][img title=:P alt=:P]extensions/Vanillacons/smilies/standard/:P.gif[/img][/quote][quote][cite]Posted By: uzi[/cite]dfgsfgsfg :D :P[/quote]will the new updated quotations work w/ both the html and bbcode at the same time?No, because there's no way to know which format markup the user is going to use at the time the quote button is pressed.
$CommentList .= '<a onmousedown="quote(this);">quote</a>';