<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
		>
	<channel>
		<title>bbPress Support Forums &#187; Tag: JavaScript - Recent Posts</title>
		<link>http://bbpress.org/forums/tags/javascript</link>
		<description>bbPress Support Forums &#187; Tag: JavaScript - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Fri, 25 May 2012 15:19:43 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://bbpress.org/forums/rss/tags/javascript" rel="self" type="application/rss+xml" />

		<item>
			<title>3sixty on "limit number of tags?"</title>
			<link>http://bbpress.org/forums/topic/limit-number-of-tags#post-77769</link>
			<pubDate>Tue, 30 Nov 2010 20:13:38 +0000</pubDate>
			<dc:creator>3sixty</dc:creator>
			<guid isPermaLink="false">77769@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>haha, irony... the "add tag" form on the left sidebar of this topic is borked (javascript doesn't automatically update tag listing on Firefox).
</p>]]></description>
					</item>
		<item>
			<title>3sixty on "limit number of tags?"</title>
			<link>http://bbpress.org/forums/topic/limit-number-of-tags#post-77768</link>
			<pubDate>Tue, 30 Nov 2010 20:12:03 +0000</pubDate>
			<dc:creator>3sixty</dc:creator>
			<guid isPermaLink="false">77768@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>OK, a brute force approach is to do the following:</p>
<p>1. Open topic.js<br />
2. comment out the Tags function that starts on line 18</p>
<p>The disadvantage is it's (a) hacking the core and (b) disables javascript updating across the whole site (rather than just the 2-3 forums where I want to limit tags). I would really appreciate any insights from people who better understand javascript/jQuery as to how to conditionally load the function.
</p>]]></description>
					</item>
		<item>
			<title>3sixty on "limit number of tags?"</title>
			<link>http://bbpress.org/forums/topic/limit-number-of-tags#post-77767</link>
			<pubDate>Tue, 30 Nov 2010 19:57:12 +0000</pubDate>
			<dc:creator>3sixty</dc:creator>
			<guid isPermaLink="false">77767@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I'm trying to limit the number of tags in certain forums, ie, users can post no more than 3 tags per topic, and if they do, the post form goes away ("sorry, you've reached the 3-tag limit; please delete a tag if you want to add another"). </p>
<p>I added a simple php switch to handle this. The problem is, tag adding is handled by javascript / ajax, so users can keep adding tags and they'll never trip the switch until they refresh the page.</p>
<p>Is there any simple way to limit the number of tags in certain forums?
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Security Issue (Javascript Insertion)"</title>
			<link>http://bbpress.org/forums/topic/security-issue-javascript-insertion#post-73596</link>
			<pubDate>Tue, 07 Sep 2010 05:12:56 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">73596@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Okay here's the reality.</p>
<p>Basically bbPress doesn't run it's tag filter on post_text when the text is finally displayed, because it would be too slow.</p>
<p>Instead it only checks tags during saving time and filters then.</p>
<p>If an item is not a tag AT SAVE TIME it won't get checked.</p>
<p>That is how this is slipping through, because bbcode are not html tags.</p>
<p>I have a quick, dirty fix.</p>
<p>Basically anything that gets stuck INSIDE a tag ie. <code>[HERE]</code> = <code>&#60; HERE &#62;</code> is no longer allowed to contain spaces, single quote or double quote.  Stuff  <code>[blah]HERE[/blah]</code> =  <code>&#60;blah&#62;HERE&#60;/blah&#62;</code> is okay.</p>
<p>Preventing spaces alone, in theory, should be enough. Even url or entity encoding won't get properly parsed. It will simply display as plain text and then you can see who is posting what instead of hidden stuff.</p>
<p>The only good news is that this problem in theory should not allow admin cookies to be stolen since the last version of 0.9 and 1.x already use HttpOnly cookies which cannot be read by javascript.</p>
<p>The downside of the quick-fix is that secondary attributes are no longer possible until I come up with another way. Example of secondary would be <code>alt</code> or <code>title</code> etc.</p>
<p>Many thanks for reporting this Tom!
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Security Issue (Javascript Insertion)"</title>
			<link>http://bbpress.org/forums/topic/security-issue-javascript-insertion#post-73595</link>
			<pubDate>Tue, 07 Sep 2010 04:44:28 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">73595@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Double frack, it's not just IMG.</p>
<p>Working hard on a fix.</p>
<p><strong>All BBcode-lite users should upgrade to 1.0.5 IMMEDIATELY</p>
<p>(regardless if you allow images or not)</strong></p>
<p><a href="http://bbpress.org/plugins/topic/bbcode-lite/" rel="nofollow">http://bbpress.org/plugins/topic/bbcode-lite/</a></p>
<p><a href="http://plugins-svn.bbpress.org/bbcode-lite/trunk/" rel="nofollow">http://plugins-svn.bbpress.org/bbcode-lite/trunk/</a>
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Security Issue (Javascript Insertion)"</title>
			<link>http://bbpress.org/forums/topic/security-issue-javascript-insertion#post-73594</link>
			<pubDate>Tue, 07 Sep 2010 04:23:33 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">73594@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Oh frack, it's bbcode-lite.</p>
<p>I run through post-text so the bbpress parser never fires.</p>
<p>Fortunately img is disabled by default but I bet people turn it on.</p>
<p>Working on a fix.
</p>]]></description>
					</item>
		<item>
			<title>zaerl on "Security Issue (Javascript Insertion)"</title>
			<link>http://bbpress.org/forums/topic/security-issue-javascript-insertion#post-73588</link>
			<pubDate>Tue, 07 Sep 2010 00:31:26 +0000</pubDate>
			<dc:creator>zaerl</dc:creator>
			<guid isPermaLink="false">73588@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I cannot reproduce the bug. The plugin is well written:</p>
<p><code>$tags[&#039;img&#039;] = array(&#039;src&#039; =&#62; array(), &#039;title&#039; =&#62; array(), &#039;alt&#039; =&#62; array());</code></p>
<p>only <code>src</code>, <code>title</code> and <code>alt</code> attributes are allowed. Can you share a <a href="http://pastebin.com/">pastebin link</a> with the exact rogue text?
</p>]]></description>
					</item>
		<item>
			<title>tom.mccabe on "Security Issue (Javascript Insertion)"</title>
			<link>http://bbpress.org/forums/topic/security-issue-javascript-insertion#post-73582</link>
			<pubDate>Mon, 06 Sep 2010 23:41:31 +0000</pubDate>
			<dc:creator>tom.mccabe</dc:creator>
			<guid isPermaLink="false">73582@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I'm using the Allow Images plugin (<a href="http://bbpress.org/plugins/topic/allow-images/" rel="nofollow">http://bbpress.org/plugins/topic/allow-images/</a>).
</p>]]></description>
					</item>
		<item>
			<title>Elias Schwerdtfeger on "Security Issue (Javascript Insertion)"</title>
			<link>http://bbpress.org/forums/topic/security-issue-javascript-insertion#post-73579</link>
			<pubDate>Mon, 06 Sep 2010 22:31:14 +0000</pubDate>
			<dc:creator>Elias Schwerdtfeger</dc:creator>
			<guid isPermaLink="false">73579@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>By default, bbPress does not allow using the <code>img</code> tag, it needs a plugin for this functionality. Of course, the given attributes <code>style</code> and any kind of JavaScript handler is highly unwanted, but it is a weakness in the plugin's code, which has to be patched asap.
</p>]]></description>
					</item>
		<item>
			<title>tom.mccabe on "Security Issue (Javascript Insertion)"</title>
			<link>http://bbpress.org/forums/topic/security-issue-javascript-insertion#post-73578</link>
			<pubDate>Mon, 06 Sep 2010 22:12:13 +0000</pubDate>
			<dc:creator>tom.mccabe</dc:creator>
			<guid isPermaLink="false">73578@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hey everyone. I believe there's a security flaw within BBPress that allows for any forum user to insert JavaScript into their posts. For instance, the following code replaces instances of "oldStuff" with "newStuff":</p>
<p>[img]http://www.whatever.net/forums/bb-admin/images/blank.gi" style="display:none;" onerror="this.parentNode.parentNode.parentNode.parentNode.parentNode.innerHTML = this.parentNode.parentNode.parentNode.parentNode.parentNode.innerHTML.replace(/oldStuff&#124;onerror/g,'newStuff'); [/img]</p>
<p>What are the patching instructions? Thanks.
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Headline plugin?"</title>
			<link>http://bbpress.org/forums/topic/headline-plugin#post-71525</link>
			<pubDate>Wed, 21 Jul 2010 18:17:26 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">71525@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Personally I would find that kind of nagging banner to be annoying but it's rather straightforward to do via a plugin with some javascript.
</p>]]></description>
					</item>
		<item>
			<title>Submachiner on "Headline plugin?"</title>
			<link>http://bbpress.org/forums/topic/headline-plugin#post-71429</link>
			<pubDate>Tue, 20 Jul 2010 07:07:53 +0000</pubDate>
			<dc:creator>Submachiner</dc:creator>
			<guid isPermaLink="false">71429@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I was viewing another forum that isn't hosted by BBPress, but I noticed it had a headline and I took a pic. I blotted out the name, so it wouldn't be considered advertising or spamming:</p>
<p><a href="http://i31.tinypic.com/2yl3dzd.png" rel="nofollow">http://i31.tinypic.com/2yl3dzd.png</a></p>
<p>Anyways, I'm wondering if there's some sort of plugin here that can do this? We have a lot of lurkers on the forum I moderate and I thought it would be nice to have something like this to encourage them to create an account and post.</p>
<p>If this is the wrong place to post this, I'm sorry, if a moderator can please move it to the appropriate area thanks.
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-71247</link>
			<pubDate>Sat, 17 Jul 2010 20:18:11 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">71247@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>This will probably be low on the priority list but tags are no longer being imported from the <code>readme.txt</code> in the plugin section, so any updated plugin since the bbpress.org 2.0 upgrade has lost it's tags.
</p>]]></description>
					</item>
		<item>
			<title>mr_pelle on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-71227</link>
			<pubDate>Sat, 17 Jul 2010 09:17:02 +0000</pubDate>
			<dc:creator>mr_pelle</dc:creator>
			<guid isPermaLink="false">71227@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>bbPress 2.0 milestone was removed when "1.2" was set, now it is merged into Future Release... =P</p>
<p>Anyway, we'd need someone to actually take a look and submit those patches: I've already opened tickets about bbPress.org bugs in the past weeks but a lot of them are still there...
</p>]]></description>
					</item>
		<item>
			<title>_ck_ on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-71224</link>
			<pubDate>Sat, 17 Jul 2010 07:52:03 +0000</pubDate>
			<dc:creator>_ck_</dc:creator>
			<guid isPermaLink="false">71224@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>There actually is a section on TRAC for  "bbpress.org website" to report bugs, so I am going to suggest we start posting there and fill trac with trackable bug reports that can be fulfilled and commented on individually?</p>
<p><a href="http://trac.bbpress.org/newticket" rel="nofollow">http://trac.bbpress.org/newticket</a></p>
<p>go to "component" and select "bbpress.org website"</p>
<p>feel free to still post them here but on TRAC is even better too
</p>]]></description>
					</item>
		<item>
			<title>Milan Dinić on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-71111</link>
			<pubDate>Thu, 15 Jul 2010 16:55:57 +0000</pubDate>
			<dc:creator>Milan Dinić</dc:creator>
			<guid isPermaLink="false">71111@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>If anyone reads this, link to download page from blog is broken.
</p>]]></description>
					</item>
		<item>
			<title>Gautam on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-71110</link>
			<pubDate>Thu, 15 Jul 2010 16:51:32 +0000</pubDate>
			<dc:creator>Gautam</dc:creator>
			<guid isPermaLink="false">71110@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>The disorder of posts on profile page is related to <a href="http://trac.bbpress.org/ticket/1301">#1301</a>
</p>]]></description>
					</item>
		<item>
			<title>mr_pelle on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-71109</link>
			<pubDate>Thu, 15 Jul 2010 16:38:17 +0000</pubDate>
			<dc:creator>mr_pelle</dc:creator>
			<guid isPermaLink="false">71109@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>It's probably related to this: <a href="http://trac.bbpress.org/ticket/1310" rel="nofollow">http://trac.bbpress.org/ticket/1310</a>
</p>]]></description>
					</item>
		<item>
			<title>chrishajer on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-71108</link>
			<pubDate>Thu, 15 Jul 2010 16:31:49 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">71108@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>That has been like that for a while.  </p>
<p><a href="http://bbpress.org/forums/topic/all-member-names-anonymous-on-front-page-bbpressorg#post-70653" rel="nofollow">http://bbpress.org/forums/topic/all-member-names-anonymous-on-front-page-bbpressorg#post-70653</a>
</p>]]></description>
					</item>
		<item>
			<title>kevinjohngallagher on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-71107</link>
			<pubDate>Thu, 15 Jul 2010 15:49:27 +0000</pubDate>
			<dc:creator>kevinjohngallagher</dc:creator>
			<guid isPermaLink="false">71107@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Homepage is broken again.<br />
Says everyone is Anonymous.
</p>]]></description>
					</item>
		<item>
			<title>kevinjohngallagher on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-70986</link>
			<pubDate>Tue, 13 Jul 2010 23:02:19 +0000</pubDate>
			<dc:creator>kevinjohngallagher</dc:creator>
			<guid isPermaLink="false">70986@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Profiles are no longer showing posts in the Recent Replies in the corect order. Or actually in any order. Do people actually test this before /after they push it live?
</p>]]></description>
					</item>
		<item>
			<title>Abdessamad Idrissi on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-70961</link>
			<pubDate>Tue, 13 Jul 2010 14:04:43 +0000</pubDate>
			<dc:creator>Abdessamad Idrissi</dc:creator>
			<guid isPermaLink="false">70961@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>a temporary fix is to search bbpress through google:</p>
<p>wysiwyg site:http://bbpress.org/plugins
</p>]]></description>
					</item>
		<item>
			<title>chrishajer on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-70652</link>
			<pubDate>Fri, 02 Jul 2010 15:57:38 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">70652@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Not sure who is working on it, if anyone, but it's not me.
</p>]]></description>
					</item>
		<item>
			<title>mr_pelle on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-70627</link>
			<pubDate>Fri, 02 Jul 2010 08:16:00 +0000</pubDate>
			<dc:creator>mr_pelle</dc:creator>
			<guid isPermaLink="false">70627@http://bbpress.org/forums/</guid>
			<description><![CDATA[<blockquote><p>I just noticed that download links at Download page should use a background image, but it cannot be found at the moment.</p>
<p>Full background attribute: url(&#38;quot;images/button-grad.png&#38;quot;) repeat-x scroll left top <a href="http://trac.bbpress.org/ticket/333333">#333333</a> </p></blockquote>
<p>Wow, now background attribute is gone, so download links are nearly invisible... =P
</p>]]></description>
					</item>
		<item>
			<title>kevinjohngallagher on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-70607</link>
			<pubDate>Thu, 01 Jul 2010 21:53:09 +0000</pubDate>
			<dc:creator>kevinjohngallagher</dc:creator>
			<guid isPermaLink="false">70607@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I contacted him through his personal blog (which I felt very guilty about incidently).</p>
<p>I'm seeing him in Manchester in 3 weeks for the WordCamp, and was rather hoping my first sentance would be "thanks so much for the help" and not have him see a middle aged man crying the whole way through the weekend.</p>
<p>He didn't disappoint.</p>
<p><a href="http://backpress.automattic.com/ticket/18" rel="nofollow">http://backpress.automattic.com/ticket/18</a> (the blocker for 1.0.3) and <a href="http://backpress.automattic.com/ticket/25" rel="nofollow">http://backpress.automattic.com/ticket/25</a> (the annoying -&#38;gt; bug) have both been fixed and closed.</p>
<p>If you're listening BackPress team, first drinks on me!</p>
<p>Thanks<br />
Kev
</p>]]></description>
					</item>
		<item>
			<title>chrishajer on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-70606</link>
			<pubDate>Thu, 01 Jul 2010 21:16:10 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">70606@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>You must have summoned Westi somehow.</p>
<p><a href="http://backpress.automattic.com/ticket/18" rel="nofollow">http://backpress.automattic.com/ticket/18</a>
</p>]]></description>
					</item>
		<item>
			<title>kevinjohngallagher on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-70569</link>
			<pubDate>Thu, 01 Jul 2010 14:11:23 +0000</pubDate>
			<dc:creator>kevinjohngallagher</dc:creator>
			<guid isPermaLink="false">70569@http://bbpress.org/forums/</guid>
			<description><![CDATA[<blockquote><p>
All links to plugins from the plugin browser link to: <a href="http://bbpress.org/plugins/topic/#post-" rel="nofollow">http://bbpress.org/plugins/topic/#post-</a></p>
<p>Can be seen/reproduced here: <a href="http://bbpress.org/plugins/search.php?q=test" rel="nofollow">http://bbpress.org/plugins/search.php?q=test</a>
</p></blockquote>
<p><a href="http://bbpress.org/forums/topic/whoa/page/5#post-70519" rel="nofollow">http://bbpress.org/forums/topic/whoa/page/5#post-70519</a>
</p>]]></description>
					</item>
		<item>
			<title>hpguru on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/6#post-70567</link>
			<pubDate>Thu, 01 Jul 2010 13:34:05 +0000</pubDate>
			<dc:creator>hpguru</dc:creator>
			<guid isPermaLink="false">70567@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>What plugin you search? Maybe we help you?
</p>]]></description>
					</item>
		<item>
			<title>nathan12343 on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/5#post-70549</link>
			<pubDate>Wed, 30 Jun 2010 19:31:46 +0000</pubDate>
			<dc:creator>nathan12343</dc:creator>
			<guid isPermaLink="false">70549@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I'm loving the new theme but as someone mentioned above the plugin search page isn't working. The title comes through but the link is broken. Can't get to the plugin that I want!
</p>]]></description>
					</item>
		<item>
			<title>mr_pelle on "Whoa! (bbPress.org 2.0 is live)"</title>
			<link>http://bbpress.org/forums/topic/whoa/page/5#post-70540</link>
			<pubDate>Wed, 30 Jun 2010 14:11:59 +0000</pubDate>
			<dc:creator>mr_pelle</dc:creator>
			<guid isPermaLink="false">70540@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I just noticed that download links at Download page should use a background image, but it cannot be found at the moment.</p>
<p>Full background attribute: <code>url(&#38;quot;images/button-grad.png&#38;quot;) repeat-x scroll left top #333333</code>
</p>]]></description>
					</item>

	</channel>
</rss>

