<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>bbPress Support Forums Tag: api</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress Support Forums Tag: api</description>
<language>en</language>
<pubDate>Thu, 08 Jan 2009 23:03:25 +0000</pubDate>

<item>
<title>bloggsbe on "bbpress API?"</title>
<link>http://bbpress.org/forums/topic/bbpress-api#post-16325</link>
<pubDate>Mon, 19 May 2008 19:08:22 +0000</pubDate>
<dc:creator>bloggsbe</dc:creator>
<guid isPermaLink="false">16325@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#60;a href=&#34;http://bbpress.org/forums/topic/lets-collaborate-on-bbpulporg#post-12781&#34;&#62;http://bbpress.org/forums/topic/lets-collaborate-on-bbpulporg#post-12781&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Nice, bbPress comes with a search function :-)&#60;/p&#62;
&#60;p&#62;--&#60;br /&#62;
R
&#60;/p&#62;</description>
</item>
<item>
<title>kienphong on "bbpress API?"</title>
<link>http://bbpress.org/forums/topic/bbpress-api#post-16303</link>
<pubDate>Sun, 18 May 2008 13:53:14 +0000</pubDate>
<dc:creator>kienphong</dc:creator>
<guid isPermaLink="false">16303@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;i'm looking for function reference page and lists of filters/actions for bbpress and couldn't find it.  For wordpress we have something like this:&#60;br /&#62;
&#60;a href=&#34;http://codex.wordpress.org/Main_Page&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Main_Page&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Is there anything like that for bbpress?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>aabd on "get_bloginfo in bbpress"</title>
<link>http://bbpress.org/forums/topic/get_bloginfo-in-bbpress#post-14326</link>
<pubDate>Fri, 07 Mar 2008 05:45:47 +0000</pubDate>
<dc:creator>aabd</dc:creator>
<guid isPermaLink="false">14326@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks. i have the same problem!:)
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "get_bloginfo in bbpress"</title>
<link>http://bbpress.org/forums/topic/get_bloginfo-in-bbpress#post-14227</link>
<pubDate>Sun, 02 Mar 2008 20:22:46 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">14227@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I think you want bb_get_option()&#60;br /&#62;
ie. bb_get_option('name')&#60;br /&#62;
etc.
&#60;/p&#62;</description>
</item>
<item>
<title>darkling235 on "get_bloginfo in bbpress"</title>
<link>http://bbpress.org/forums/topic/get_bloginfo-in-bbpress#post-14149</link>
<pubDate>Thu, 28 Feb 2008 21:44:02 +0000</pubDate>
<dc:creator>darkling235</dc:creator>
<guid isPermaLink="false">14149@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;does anyone know the bbpress equivalent of wordpress's get_bloginfo function?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>HowToGeek on "Which filter/action hook should I use?"</title>
<link>http://bbpress.org/forums/topic/which-filteraction-hook-should-i-use#post-9983</link>
<pubDate>Mon, 06 Aug 2007 06:57:17 +0000</pubDate>
<dc:creator>HowToGeek</dc:creator>
<guid isPermaLink="false">9983@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;That got me thinking... why reinvent the wheel when I can just use the bbcode plugin.&#60;/p&#62;
&#60;p&#62;What I did was change the current quote plugin to insert the quote with [quote] instead of the other syntax, as well as strip out any blockquotes from the original post that you are quoting, which eliminates the multiple levels of quoting.&#60;/p&#62;
&#60;p&#62;So here's my new bb_quote_message() function:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;function bb_quote_message() {
	global $bbdb, $topic;
	$post_id = (int)$_GET[&#38;#39;quote&#38;#39;];
	if ($post_id) {
		$row = $bbdb-&#38;gt;get_row(&#38;quot;SELECT * FROM $bbdb-&#38;gt;posts WHERE post_id={$post_id} AND topic_id={$topic-&#38;gt;topic_id} AND post_status=0&#38;quot;);
		$row-&#38;gt;post_text = preg_replace( &#38;#39;(&#38;lt;p&#38;gt;&#124;&#38;lt;/p&#38;gt;)&#38;#39;, &#38;#39;&#38;#39;, $row-&#38;gt;post_text );
		$ret = preg_replace(&#38;quot;/&#38;lt;blockquote&#38;gt;((.&#124;[\n\r])*?)&#38;lt;\/blockquote&#38;gt;/&#38;quot;, &#38;quot;&#38;quot;,$row-&#38;gt;post_text);
		if ($row) echo htmlentities(&#38;#39;[quote]&#38;#39;.$ret.&#38;#39;[/quote]&#38;#39;, ENT_COMPAT, &#38;#39;UTF-8&#38;#39;);
	}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;So far it works great... except it's annoying that the cursor isn't positioned at the end of the textbox... I'm gonna look for some javascript to fix that.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Which filter/action hook should I use?"</title>
<link>http://bbpress.org/forums/topic/which-filteraction-hook-should-i-use#post-9980</link>
<pubDate>Mon, 06 Aug 2007 05:55:05 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">9980@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Just remember some people use the bbcode plugin so it would have to peacefully get along with that.
&#60;/p&#62;</description>
</item>
<item>
<title>HowToGeek on "Which filter/action hook should I use?"</title>
<link>http://bbpress.org/forums/topic/which-filteraction-hook-should-i-use#post-9979</link>
<pubDate>Mon, 06 Aug 2007 05:34:21 +0000</pubDate>
<dc:creator>HowToGeek</dc:creator>
<guid isPermaLink="false">9979@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'd think it would work out much better to use something other than blockquote... that's the whole idea behind the [quote] tag... it should be accepted by bbpress perfectly fine, and not used for any other reason.&#60;/p&#62;
&#60;p&#62;There's no reason to have full bbcode support if you don't need it, all we need is the [quote] tag.&#60;/p&#62;
&#60;p&#62;One of the problems with using blockquote is that somebody might already use blockquote in their posts. It would also make any old posts using blockquote completely incompatible with the new plugin.&#60;/p&#62;
&#60;p&#62;Otherwise you could use another tag, but then you have to modify the bbpress allowed tags list.&#60;/p&#62;
&#60;p&#62;And the issue here is that we are trying to indicate to the system that we are quoting something, not just trying to format the display. It's this that gives us the ability to filter out the first quote in a multiple-quote scenario that probably happens very often.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Which filter/action hook should I use?"</title>
<link>http://bbpress.org/forums/topic/which-filteraction-hook-should-i-use#post-9978</link>
<pubDate>Mon, 06 Aug 2007 05:29:09 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">9978@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Well you'd have to use an existing html tag like blockquote and map it to a bbcode tag via another plugin.&#60;/p&#62;
&#60;p&#62;But blockquote can have made-up attributes.&#60;br /&#62;
ie.&#60;br /&#62;
&#60;code&#62;&#38;lt;blockquote post=&#38;quot;1824&#38;quot; author=&#38;quot;_ck_&#38;quot;&#38;gt;blah blah&#38;lt;/blockquote&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;But it's much more simple to start with non-intelligent quoting. You can place the post reference but to look for it and analyse it is much more difficult.&#60;/p&#62;
&#60;p&#62;Stripping nested blockquotes will be very easy.&#60;br /&#62;
Well fairly easy.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Which filter/action hook should I use?"</title>
<link>http://bbpress.org/forums/topic/which-filteraction-hook-should-i-use#post-9977</link>
<pubDate>Mon, 06 Aug 2007 05:26:14 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">9977@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Oh wait, there's a plugin that does this already, though it needs to be seriously enhanced:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/plugins/topic/38?replies=17&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/plugins/topic/38?replies=17&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;And they came to the same conclusions that I did, you have to place the &#34;quote&#34; link and insert the quoted text the exact way I described.
&#60;/p&#62;</description>
</item>
<item>
<title>HowToGeek on "Which filter/action hook should I use?"</title>
<link>http://bbpress.org/forums/topic/which-filteraction-hook-should-i-use#post-9976</link>
<pubDate>Mon, 06 Aug 2007 05:23:55 +0000</pubDate>
<dc:creator>HowToGeek</dc:creator>
<guid isPermaLink="false">9976@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I am pretty busy at the moment... and you are rather amazing at creating these plugins...&#60;/p&#62;
&#60;p&#62;I was thinking that when generating the quoted text it would show up at the top of the textarea like this:&#60;/p&#62;
&#60;p&#62;--------------------------------------------&#60;br /&#62;
&#124; [quote] so you really like ascii?&#60;br /&#62;
&#124; that's pretty cool [/quote]&#60;br /&#62;
&#124;&#60;br /&#62;
&#124; Yeah, I love ascii... I'm a geek, afterall&#60;br /&#62;
--------------------------------------------&#60;/p&#62;
&#60;p&#62;When generating that quoted text, it would be necessary to find an existing quote within the post and remove that, so the quote of a post that quotes another post then would only have the actual post. (boy was that confusing) It should be simple enough to remove anything between [quote][/quote]&#60;/p&#62;
&#60;p&#62;Then on display there should be a hook to find a pair of [quote] [/quote] and replace it with a div that we can then style correctly. By only allowing a pair then you would prevent breaking divs. If the post submitter screwed up the [quote] tags, then their post would just not make sense, but wouldn't break the design of the page.&#60;/p&#62;
&#60;p&#62;This is similar to the way invision does it, and it seems like a reasonable way to handle it. &#60;/p&#62;
&#60;p&#62;Make sense?
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Which filter/action hook should I use?"</title>
<link>http://bbpress.org/forums/topic/which-filteraction-hook-should-i-use#post-9975</link>
<pubDate>Mon, 06 Aug 2007 05:10:14 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">9975@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Look again at this tonight I see all the magic would have to happen in &#34;post-form.php&#34; and unfortunately it would need a simple edit.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;textarea name=&#38;quot;post_content&#38;quot; cols=&#38;quot;50&#38;quot; rows=&#38;quot;8&#38;quot; id=&#38;quot;post_content&#38;quot; tabindex=&#38;quot;3&#38;quot;&#38;gt;&#38;lt;/textarea&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;would have to be edited to something like&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;textarea name=&#38;quot;post_content&#38;quot; cols=&#38;quot;50&#38;quot; rows=&#38;quot;8&#38;quot; id=&#38;quot;post_content&#38;quot; tabindex=&#38;quot;3&#38;quot;&#38;gt;&#38;lt;? quote_post(); ?&#38;gt; &#38;lt;/textarea&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Even though there is &#60;code&#62;do_action( &#38;#39;post_form_pre_post&#38;#39; );&#60;/code&#62; just above it, there is no way to manipulate the textarea content without javascript. It's a shame they didn't think of that.&#60;/p&#62;
&#60;p&#62;So quote_post() could just look for the added arg to the URL and insert the formatted quoted text in the textarea. Then a simple quote button on each post in the topic to trigger the new post.&#60;br /&#62;
ie.&#60;br /&#62;
&#60;strong&#62;?new=1&#38;#38;quote_post=1873&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;If you don't write it, I'll take a shot at it.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Which filter/action hook should I use?"</title>
<link>http://bbpress.org/forums/topic/which-filteraction-hook-should-i-use#post-9956</link>
<pubDate>Sun, 05 Aug 2007 17:55:06 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">9956@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;1. insert &#34;quote&#34; button on every post like my &#34;report&#34; button&#60;/p&#62;
&#60;p&#62;2. don't use javascript, use the arg add function and build a simple url for each quote button which references the source post id #&#60;/p&#62;
&#60;p&#62;3. clicking said url button does a get from the server/bbpress&#60;/p&#62;
&#60;p&#62;4. look for and capture the $_GET  (ie. &#38;#38;quotepost=1327)&#60;/p&#62;
&#60;p&#62;5. now the hard part, tell bbpress to start a new reply post in the topic and insert the formatted text from the quoted post. I have no clue how to pass bbpress existing text to a new post. Not even sure it has the action/filter to do it. I would bet not :-(
&#60;/p&#62;</description>
</item>
<item>
<title>HowToGeek on "Which filter/action hook should I use?"</title>
<link>http://bbpress.org/forums/topic/which-filteraction-hook-should-i-use#post-9952</link>
<pubDate>Sun, 05 Aug 2007 17:03:27 +0000</pubDate>
<dc:creator>HowToGeek</dc:creator>
<guid isPermaLink="false">9952@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Ah, sorry, I read that too quickly.&#60;/p&#62;
&#60;p&#62;The only issue with that is that what if there are two pages, and I want to respond to a post on the first page? It would simply be broken... clicking on the reply button there wouldn't do anything.&#60;/p&#62;
&#60;p&#62;I originally was thinking that an ajax method might work, but I think even so it has to be combined with something on the server side.&#60;/p&#62;
&#60;p&#62;Now I'm just thinking to send the user to a url like:&#60;br /&#62;
/topic/my-cool-topic?replyto=381#reply&#60;/p&#62;
&#60;p&#62;That way I can load up the reply in the box no matter where they click the reply link from.
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Which filter/action hook should I use?"</title>
<link>http://bbpress.org/forums/topic/which-filteraction-hook-should-i-use#post-9950</link>
<pubDate>Sun, 05 Aug 2007 16:50:02 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">9950@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm sorry if I just copy and paste what I said before but I'm not sure you saw. :/&#60;/p&#62;
&#60;p&#62;&#60;em&#62;Then the &#60;code&#62;somequote&#60;/code&#62; function finds the &#60;code&#62;li&#60;/code&#62; where &#60;code&#62;id&#60;/code&#62; is &#60;code&#62;post-#&#60;/code&#62;, extracts the post text (this depends somewhat on the page HTML but should work) and puts it in the post box at the bottom. The &#60;code&#62;somequote&#60;/code&#62;function can also use the DOM probably to take out blockquotes.&#60;/em&#62;&#60;/p&#62;
&#60;p&#62;The key bit is that the function is only passed the post ID. It can get the post HTML perfectly simply itself with the getElementById method. And then remove the &#60;code&#62;&#38;lt;blockquote&#38;gt;&#60;/code&#62; elements.
&#60;/p&#62;</description>
</item>
<item>
<title>HowToGeek on "Which filter/action hook should I use?"</title>
<link>http://bbpress.org/forums/topic/which-filteraction-hook-should-i-use#post-9946</link>
<pubDate>Sun, 05 Aug 2007 16:10:08 +0000</pubDate>
<dc:creator>HowToGeek</dc:creator>
<guid isPermaLink="false">9946@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;There's another plugin that already does the javascript quote post. The problem with javascript is that you effectively end up doubling the page size by duplicating every post on the page, and there's not a good reason for that.&#60;/p&#62;
&#60;p&#62;I may end up going with an ajax route, but another problem that you end up with is that you can only reply to posts on the current page.&#60;/p&#62;
&#60;p&#62;I figured the quote post should probably strip out any of the prior quotes.
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Which filter/action hook should I use?"</title>
<link>http://bbpress.org/forums/topic/which-filteraction-hook-should-i-use#post-9937</link>
<pubDate>Sun, 05 Aug 2007 14:36:36 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">9937@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;What I think you should do is use a bit of nifty javascript, like so:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;a href=&#38;quot;&#38;quot; onclick=&#38;quot;somequote( /* post_id */ ); return false;&#38;quot;&#38;gt;Quote&#38;lt;/a&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Then the somequote function finds the li with id &#60;code&#62;post-#&#60;/code&#62;, extracts the post text (this depends somewhat on the page HTML but should work) and puts it in the post box at the bottom. The &#60;code&#62;somequote&#60;/code&#62; function can also use the DOM probably to take out blockquotes.  Quoting people isn't something that needs bookmarking, at least not for my tastes, and reloading the page is annoying. But then quoting people is usually annoying anyway. You're on a forum, why do you have to quote someone else's post if other people can see it just above? Meh, personal preference :P
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Which filter/action hook should I use?"</title>
<link>http://bbpress.org/forums/topic/which-filteraction-hook-should-i-use#post-9928</link>
<pubDate>Sun, 05 Aug 2007 11:15:56 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">9928@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;To change text you either have to use &#34;pre_post&#34; which is a permanent change saved back to the database (ie. auto close tags) or &#34;post_text&#34; which only affects the outputted text and leaves the source alone (ie. smilies typically use this cause you don't want the image tags back into the text upon re-editing).&#60;/p&#62;
&#60;p&#62;IMHO &#34;post_text&#34; is an &#34;expensive&#34; operation in that it has to be generated on the text each and every  time it's displayed but sometimes there is no other choice.&#60;/p&#62;
&#60;p&#62;If you are asking how to automatically insert the button, that's very tricky because somethings still don't have hooks in bbpress, ie.&#60;br /&#62;
&#60;a href=&#34;http://trac.bbpress.org/ticket/720&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org/ticket/720&#60;/a&#62;&#60;br /&#62;
(ironically that's where I'd put a quote button)&#60;/p&#62;
&#60;p&#62;The trick is to start a new post with the old text as a quote. I have no idea how that would be done in bbpress because I don't think you can have existing text on a new post, old an old one, and you really don't want to pre-create a post in case the user cancels.&#60;/p&#62;
&#60;p&#62;I'd love to see this plugin happen, I just don't know enough to help you more - hope someone else can help. &#60;/p&#62;
&#60;p&#62;ps  please make it trim the old post for people who like to quote posts, who quote posts, who quote posts and it ends up being 10 pages long, LOL!
&#60;/p&#62;</description>
</item>
<item>
<title>HowToGeek on "Which filter/action hook should I use?"</title>
<link>http://bbpress.org/forums/topic/which-filteraction-hook-should-i-use#post-9920</link>
<pubDate>Sun, 05 Aug 2007 08:39:34 +0000</pubDate>
<dc:creator>HowToGeek</dc:creator>
<guid isPermaLink="false">9920@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm trying to write a better quote plugin, but I'm still trying to figure out where to hook this in.&#60;/p&#62;
&#60;p&#62;I'm thinking that the quote button will post back the topic page in order to fill in the previous post into the reply box. This is pretty standard for other forums.&#60;/p&#62;
&#60;p&#62;While I might also add an ajax mode, I'd prefer to start off with a post back.
&#60;/p&#62;</description>
</item>
<item>
<title>KJTED on "Showing threads in a flash movie"</title>
<link>http://bbpress.org/forums/topic/showing-threads-in-a-flash-movie#post-9029</link>
<pubDate>Tue, 17 Jul 2007 15:24:30 +0000</pubDate>
<dc:creator>KJTED</dc:creator>
<guid isPermaLink="false">9029@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#60;a href=&#34;http://bbpress.org/forums/topic/bb_query-class-and-next-version-of-bbpress?replies=2#post-9027&#34;&#62;This&#60;/a&#62; is probably something that might help me out with what I'm trying to do...
&#60;/p&#62;</description>
</item>
<item>
<title>KJTED on "Showing threads in a flash movie"</title>
<link>http://bbpress.org/forums/topic/showing-threads-in-a-flash-movie#post-9023</link>
<pubDate>Tue, 17 Jul 2007 12:42:55 +0000</pubDate>
<dc:creator>KJTED</dc:creator>
<guid isPermaLink="false">9023@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;That's the thing. I don't want a flash based forum. I'm building a flash application which has a secondary feature that allows people to comment on something and the best way that I can see to do that is to have a forum software in the backend serving up this feature for the flash movie. I can build one myself, it might be quicker for what I want but I thought that being an Open Source forum software that the API might be available and documented.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Showing threads in a flash movie"</title>
<link>http://bbpress.org/forums/topic/showing-threads-in-a-flash-movie#post-9022</link>
<pubDate>Tue, 17 Jul 2007 12:40:49 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">9022@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hmm, well if you want a flash based forum, why not just install a flash based forum?
&#60;/p&#62;</description>
</item>
<item>
<title>KJTED on "Showing threads in a flash movie"</title>
<link>http://bbpress.org/forums/topic/showing-threads-in-a-flash-movie#post-9021</link>
<pubDate>Tue, 17 Jul 2007 12:31:18 +0000</pubDate>
<dc:creator>KJTED</dc:creator>
<guid isPermaLink="false">9021@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I did think about using the RSS feeds to parse in Flash, however I'm also going to have a flash form that people will fill in to create a thread or reply to an existing thread... so I'll still need to access the functions.&#60;/p&#62;
&#60;p&#62;I've used AMFPHP to access functions from other applications in the past which then returns the data to the flash movie for processing. I'm hoping that it's possible to do something similar with bbPress and AMFPHP.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Showing threads in a flash movie"</title>
<link>http://bbpress.org/forums/topic/showing-threads-in-a-flash-movie#post-9020</link>
<pubDate>Tue, 17 Jul 2007 12:23:34 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">9020@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;If you can access rss xml from flash (which I believe you can) just grab it from the rss feed (/forum/rss.php). You can tell the rss to send you almost anything you want, latest, specific sub-forums, etc.
&#60;/p&#62;</description>
</item>
<item>
<title>KJTED on "Showing threads in a flash movie"</title>
<link>http://bbpress.org/forums/topic/showing-threads-in-a-flash-movie#post-9019</link>
<pubDate>Tue, 17 Jul 2007 12:01:58 +0000</pubDate>
<dc:creator>KJTED</dc:creator>
<guid isPermaLink="false">9019@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi,&#60;br /&#62;
I'm basically wondering if there is API documentation to help me with my quest. I'm wanting to show discussions in a flash movie so essentially I just need to access the appropriate functions to access thread data in the database but I don't know where to start.&#60;/p&#62;
&#60;p&#62;I'm hoping for some pointers in the right direction. Essentially what I want to do is use bbPress as a backend and display discussions in a flash movie.&#60;/p&#62;
&#60;p&#62;So to sum-up, I need the ability to access thread and post information from Flash. &#60;/p&#62;
&#60;p&#62;Thanks for your time&#60;br /&#62;
KJ
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "akismet says my API key is invalid, why?"</title>
<link>http://bbpress.org/forums/topic/akismet-says-my-api-key-is-invalid-why#post-7933</link>
<pubDate>Fri, 08 Jun 2007 18:02:44 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">7933@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It sure looks that way doesn't it.&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>maphew on "akismet says my API key is invalid, why?"</title>
<link>http://bbpress.org/forums/topic/akismet-says-my-api-key-is-invalid-why#post-7932</link>
<pubDate>Fri, 08 Jun 2007 17:17:55 +0000</pubDate>
<dc:creator>maphew</dc:creator>
<guid isPermaLink="false">7932@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Trent:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$bb-&#38;gt;akismet_key = &#38;#39;12345678&#38;#39;; // Example: &#38;#39;0123456789ab&#38;#39;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;but I think drmike might be right.
&#60;/p&#62;</description>
</item>
<item>
<title>drmike on "akismet says my API key is invalid, why?"</title>
<link>http://bbpress.org/forums/topic/akismet-says-my-api-key-is-invalid-why#post-7589</link>
<pubDate>Tue, 22 May 2007 18:23:45 +0000</pubDate>
<dc:creator>drmike</dc:creator>
<guid isPermaLink="false">7589@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I think sourceforge.net blocks all outbound PHP calls.
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "akismet says my API key is invalid, why?"</title>
<link>http://bbpress.org/forums/topic/akismet-says-my-api-key-is-invalid-why#post-7521</link>
<pubDate>Sat, 19 May 2007 20:06:57 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">7521@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;What exactly do you have for syntax in config.php (replacing your number with 12345678) ?&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>maphew on "akismet says my API key is invalid, why?"</title>
<link>http://bbpress.org/forums/topic/akismet-says-my-api-key-is-invalid-why#post-7506</link>
<pubDate>Fri, 18 May 2007 22:37:49 +0000</pubDate>
<dc:creator>maphew</dc:creator>
<guid isPermaLink="false">7506@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi All, &#60;/p&#62;
&#60;p&#62;When I go to &#34;bbpress dashboard &#38;gt; Content &#38;gt; Akismet Spam&#34;  I'm told   &#60;em&#62;&#34;The API key you have specified is invalid. Please double check the $bb-&#38;gt;akismet_key variable in your config.php file. If you don't have an API key yet, you can get one at WordPress.com.&#34;&#60;/em&#62;&#60;/p&#62;
&#60;p&#62;Which I've checked and double-checked. I'm positive I'm putting the same string in that I see when I login to &#60;a href=&#34;http://wordpress.com/profile/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.com/profile/&#60;/a&#62;&#60;br /&#62;
When I check my wordpress blog, running on a different host and different domain from bbpress, the same key is there and wp reports the akismet plugin is working. &#60;/p&#62;
&#60;p&#62;Another post from 6 months ago said replacing single quotes with double quotes in config.php fixed the problem for them. Doesn't work for me though. &#60;a href=&#34;http://bbpress.org/forums/topic/146?replies=4&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/146?replies=4&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I'm running bbpress 0.8.1 on Sourceforge.net.&#60;/p&#62;
&#60;p&#62;Any ideas what's wrong?&#60;br /&#62;
thanks!&#60;/p&#62;
&#60;p&#62;-matt
&#60;/p&#62;</description>
</item>

</channel>
</rss>
