<?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: trac</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Tag: trac</description>
<language>en</language>
<pubDate>Tue, 02 Dec 2008 05:56:36 +0000</pubDate>

<item>
<title>_ck_ on "Alt Class Not displaying correctly in"</title>
<link>http://bbpress.org/forums/topic/alt-class-not-displaying-correctly-in#post-19018</link>
<pubDate>Sat, 06 Sep 2008 18:44:37 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">19018@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This should be put into TRAC&#60;br /&#62;
&#60;a href=&#34;http://trac.bbpress.org&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>wiggster on "Alt Class Not displaying correctly in"</title>
<link>http://bbpress.org/forums/topic/alt-class-not-displaying-correctly-in#post-19012</link>
<pubDate>Sat, 06 Sep 2008 16:40:33 +0000</pubDate>
<dc:creator>wiggster</dc:creator>
<guid isPermaLink="false">19012@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Just a small cosmetic issue I noticed after installing the Version 1.0-alpha-1 zip file: after activating a few plugins, I noticed that the cells were not alternating classes correctly (or at least, what I'd think of as correctly).&#60;/p&#62;
&#60;p&#62;To test this, simply go to the Plugins page and activate a plugin.  If the plugin row had a white background, it changes to green to show it's active.  If it had a gray background, it stays gray whether it is active or not.  It seems to me that we'd want there to be either one or two shades of green to show the active plugins.&#60;/p&#62;
&#60;p&#62;The cause between this seems to be the CSS classes of the active rows alternated between &#60;code&#62;&#38;lt;tr class=&#38;quot;active&#38;quot;&#38;gt;&#60;/code&#62; and &#60;code&#62;&#38;lt;tr class=&#38;quot;active alt&#38;quot;&#38;gt;&#60;/code&#62;; this means that the row with 'active alt' takes the properties of the 'alt' row, which overrides the background color of the 'active' class as it is lower in the style.css template.  This derives from  the function get_alt_class(), as defined in bb-includes/template-functions.php, which can assign two classes to one element.
&#60;/p&#62;</description>
</item>
<item>
<title>isaacgreenspan on "backPress has trac"</title>
<link>http://bbpress.org/forums/topic/backpress-has-trac#post-18903</link>
<pubDate>Wed, 03 Sep 2008 19:19:10 +0000</pubDate>
<dc:creator>isaacgreenspan</dc:creator>
<guid isPermaLink="false">18903@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Is there a proper place for BackPress discussion, such a a specific forum or wiki or mailing list?
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "backPress has trac"</title>
<link>http://bbpress.org/forums/topic/backpress-has-trac#post-18724</link>
<pubDate>Wed, 27 Aug 2008 19:18:48 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">18724@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;BackPress has finally got its own trac under &#60;a href=&#34;http://backpress.automattic.com/.&#34; rel=&#34;nofollow&#34;&#62;http://backpress.automattic.com/.&#60;/a&#62; Login as normal.
&#60;/p&#62;</description>
</item>
<item>
<title>joelteixeira on "Install problem - Call-time pass-by-reference has been deprecated;"</title>
<link>http://bbpress.org/forums/topic/install-problem-call-time-pass-by-reference-has-been-deprecated#post-18362</link>
<pubDate>Sat, 16 Aug 2008 12:20:19 +0000</pubDate>
<dc:creator>joelteixeira</dc:creator>
<guid isPermaLink="false">18362@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The diff between &#60;strong&#62;functions.core.php&#60;/strong&#62; from the working install (&#60;em&#62;without errors - latest-alpha.zip&#60;/em&#62;) and &#60;strong&#62;functions.core.php&#60;/strong&#62; from the trunk directory (&#60;em&#62;in this install I see the error message&#60;/em&#62;) .&#60;/p&#62;
&#60;p&#62;A diff recursive from the root directory of both installs gave me a lot of output so I focused only in this file. I made a backup of the &#34;problematic&#34; file and overwrote it with the working (from the latest) so I got no more erros.&#60;/p&#62;
&#60;p&#62;I made this just to test, I know we should not mix files from different verionos&#60;/p&#62;
&#60;p&#62;$ diff ./bb-tag/bb-includes/backpress/functions.core.php ./bb-trunk/bb-includes/backpress/functions.core.php&#60;br /&#62;
494a495,507&#60;br /&#62;
&#38;gt;&#60;br /&#62;
&#38;gt; function backpress_convert_object( &#38;#38;$object, $output ) {&#60;br /&#62;
&#38;gt;       if ( is_array( $object ) ) {&#60;br /&#62;
&#38;gt;               foreach ( array_keys( $object ) as $key )&#60;br /&#62;
&#38;gt;                       backpress_convert_object( &#38;#38;$object[$key], $output );&#60;br /&#62;
&#38;gt;       } else {&#60;br /&#62;
&#38;gt;               switch ( $output ) {&#60;br /&#62;
&#38;gt;                       case OBJECT  : break;&#60;br /&#62;
&#38;gt;                       case ARRAY_A : $object = get_object_vars($object); break;&#60;br /&#62;
&#38;gt;                       case ARRAY_N : $object = array_values(get_object_vars($object)); break;&#60;br /&#62;
&#38;gt;               }&#60;br /&#62;
&#38;gt;       }&#60;br /&#62;
&#38;gt; }
&#60;/p&#62;</description>
</item>
<item>
<title>joelteixeira on "Install problem - Call-time pass-by-reference has been deprecated;"</title>
<link>http://bbpress.org/forums/topic/install-problem-call-time-pass-by-reference-has-been-deprecated#post-18361</link>
<pubDate>Sat, 16 Aug 2008 11:45:59 +0000</pubDate>
<dc:creator>joelteixeira</dc:creator>
<guid isPermaLink="false">18361@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;@chrishajer: I didn't the diff cause I'm starting over with the forum - no data to care. So after the error comes I just removed all files and elimI searched and inated all tables from database. I should make some tests and take the diff.&#60;/p&#62;
&#60;p&#62;@balgo: Yes, is a php error, but is called from a script in functions.core.php. There's no results relevant to actual versions of bbpress neither functions.core file.&#60;/p&#62;
&#60;p&#62;@zappoman: What let me really confused, please correct me if I'm wrong, is that I got error installing from &#34;svn co &#60;a href=&#34;http://svn.automattic.com/bbpress/tags/1.0-alpha-1/&#34; rel=&#34;nofollow&#34;&#62;http://svn.automattic.com/bbpress/tags/1.0-alpha-1/&#60;/a&#62;&#34; but had no errors with a installations from &#34;bbPress 1.0 Alpha (latest-alpha.zip)&#34; in the download page.  Since is tagged, is the same package right?&#60;/p&#62;
&#60;p&#62;Thanks all your attention guys.
&#60;/p&#62;</description>
</item>
<item>
<title>zappoman on "Install problem - Call-time pass-by-reference has been deprecated;"</title>
<link>http://bbpress.org/forums/topic/install-problem-call-time-pass-by-reference-has-been-deprecated#post-18355</link>
<pubDate>Sat, 16 Aug 2008 04:00:24 +0000</pubDate>
<dc:creator>zappoman</dc:creator>
<guid isPermaLink="false">18355@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This is new to the trunk... it is introduce by the function...&#60;/p&#62;
&#60;p&#62;function backpress_convert_object( &#38;#38;$object, $output ) {}&#60;/p&#62;
&#60;p&#62;Which was new since the alpha drop.&#60;/p&#62;
&#60;p&#62;(sorry for the duplicate ticket, I just deleted mine)
&#60;/p&#62;</description>
</item>
<item>
<title>zappoman on "bbPress Tags in 1.0 alpha"</title>
<link>http://bbpress.org/forums/topic/bbpress-tags-in-10-alpha#post-18354</link>
<pubDate>Sat, 16 Aug 2008 03:45:49 +0000</pubDate>
<dc:creator>zappoman</dc:creator>
<guid isPermaLink="false">18354@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;ticket submitted&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://trac.bbpress.org/ticket/930&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org/ticket/930&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>balgo on "Install problem - Call-time pass-by-reference has been deprecated;"</title>
<link>http://bbpress.org/forums/topic/install-problem-call-time-pass-by-reference-has-been-deprecated#post-18353</link>
<pubDate>Sat, 16 Aug 2008 03:42:42 +0000</pubDate>
<dc:creator>balgo</dc:creator>
<guid isPermaLink="false">18353@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;this is a minor issue the developers should fix, but if you'd like to learn more, google for that php error (&#34;Call-time pass-by-reference has been deprecated&#34;).. it's a php-specific problem, and as such, there's lots of dialogue about it floating around..
&#60;/p&#62;</description>
</item>
<item>
<title>zappoman on "bbPress Tags in 1.0 alpha"</title>
<link>http://bbpress.org/forums/topic/bbpress-tags-in-10-alpha#post-18350</link>
<pubDate>Sat, 16 Aug 2008 03:35:12 +0000</pubDate>
<dc:creator>zappoman</dc:creator>
<guid isPermaLink="false">18350@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks Chris, I have filed a ticket on another issue I found, and I will file a ticket for this. But I'm more curious to find out if I'm really the only one seeing this issue. It seems like a pretty obvious issue, so I'm surprised no one else has noticed it... which leads me to believe that I must have done something wrong.&#60;/p&#62;
&#60;p&#62;As a developer, I hate when people file bugs before looking for a minimal reproduce case... and so I was just trying to ask if someone else has seen this before I file a bug ticket.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Install problem - Call-time pass-by-reference has been deprecated;"</title>
<link>http://bbpress.org/forums/topic/install-problem-call-time-pass-by-reference-has-been-deprecated#post-18349</link>
<pubDate>Sat, 16 Aug 2008 03:24:02 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">18349@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Joel, did you do a diff on the two different directories to see what might have changed?
&#60;/p&#62;</description>
</item>
<item>
<title>joelteixeira on "Install problem - Call-time pass-by-reference has been deprecated;"</title>
<link>http://bbpress.org/forums/topic/install-problem-call-time-pass-by-reference-has-been-deprecated#post-18347</link>
<pubDate>Sat, 16 Aug 2008 02:16:22 +0000</pubDate>
<dc:creator>joelteixeira</dc:creator>
<guid isPermaLink="false">18347@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Guys,&#60;/p&#62;
&#60;p&#62;Something really strange in this problem, only happens when I do a SVN install.&#60;/p&#62;
&#60;p&#62;Errors to:&#60;br /&#62;
svn co &#60;a href=&#34;http://svn.automattic.com/bbpress/tags/1.0-alpha-1/&#34; rel=&#34;nofollow&#34;&#62;http://svn.automattic.com/bbpress/tags/1.0-alpha-1/&#60;/a&#62; .&#60;br /&#62;
svn co &#60;a href=&#34;http://svn.automattic.com/bbpress/trunk/&#34; rel=&#34;nofollow&#34;&#62;http://svn.automattic.com/bbpress/trunk/&#60;/a&#62; .&#60;/p&#62;
&#60;p&#62;But if I download (wget) latest.zip or latest-alpha.zip extract and install it will work without the mentioned error. omg --confused--
&#60;/p&#62;</description>
</item>
<item>
<title>joelteixeira on "Install problem - Call-time pass-by-reference has been deprecated;"</title>
<link>http://bbpress.org/forums/topic/install-problem-call-time-pass-by-reference-has-been-deprecated#post-18346</link>
<pubDate>Sat, 16 Aug 2008 02:02:39 +0000</pubDate>
<dc:creator>joelteixeira</dc:creator>
<guid isPermaLink="false">18346@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks chrishajer, &#60;/p&#62;
&#60;p&#62;Ticket #929 opened.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "bbPress Tags in 1.0 alpha"</title>
<link>http://bbpress.org/forums/topic/bbpress-tags-in-10-alpha#post-18344</link>
<pubDate>Sat, 16 Aug 2008 01:41:51 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">18344@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;If you have an issue with the alpha release, please file a ticket at trac.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://trac.bbpress.org/newticket&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org/newticket&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;You will need to log in before you can file a ticket.  Be sure to choose the correct version when submitting the ticket.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Install problem - Call-time pass-by-reference has been deprecated;"</title>
<link>http://bbpress.org/forums/topic/install-problem-call-time-pass-by-reference-has-been-deprecated#post-18343</link>
<pubDate>Sat, 16 Aug 2008 01:41:27 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">18343@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;If you have an issue with the alpha release, please file a ticket at trac.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://trac.bbpress.org/newticket&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org/newticket&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;You will need to log in before you can file a ticket.  Be sure to choose the correct version when submitting the ticket.
&#60;/p&#62;</description>
</item>
<item>
<title>zappoman on "bbPress Tags in 1.0 alpha"</title>
<link>http://bbpress.org/forums/topic/bbpress-tags-in-10-alpha#post-18342</link>
<pubDate>Sat, 16 Aug 2008 00:18:27 +0000</pubDate>
<dc:creator>zappoman</dc:creator>
<guid isPermaLink="false">18342@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Ok, more of a clue here...&#60;/p&#62;
&#60;p&#62;It looks like the insert into term_taxonomy is failing during the upgrade process.&#60;/p&#62;
&#60;p&#62;it appears as if, bb_term_taxonomy has a 'description' field which is NOT NULL in the schema:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// term_taxonomy
$bb_queries[&#38;#39;term_taxonomy&#38;#39;] = &#38;quot;CREATE TABLE IF NOT EXISTS $bbdb-&#38;gt;term_taxonomy (
	term_taxonomy_id bigint(20) NOT NULL auto_increment,
	term_id bigint(20) NOT NULL default 0,
	taxonomy varchar(32) NOT NULL default &#38;#39;&#38;#39;,
	description longtext NOT NULL,
	parent bigint(20) NOT NULL default 0,
	count bigint(20) NOT NULL default 0,
	PRIMARY KEY (term_taxonomy_id),
	UNIQUE KEY term_id_taxonomy (term_id, taxonomy)
);&#38;quot;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;but the upgrade code...&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$bbdb-&#38;gt;insert( $bbdb-&#38;gt;term_taxonomy, array(
				&#38;#39;term_id&#38;#39; =&#38;gt; $term_id,
				&#38;#39;taxonomy&#38;#39; =&#38;gt; &#38;#39;bb_topic_tag&#38;#39;
			) );&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;does not set a description, so this insert is failing.&#60;/p&#62;
&#60;p&#62;Not sure how this could be working for anyone else...&#60;/p&#62;
&#60;p&#62;Am I really the only one seeing this?
&#60;/p&#62;</description>
</item>
<item>
<title>zappoman on "bbPress Tags in 1.0 alpha"</title>
<link>http://bbpress.org/forums/topic/bbpress-tags-in-10-alpha#post-18341</link>
<pubDate>Fri, 15 Aug 2008 23:49:00 +0000</pubDate>
<dc:creator>zappoman</dc:creator>
<guid isPermaLink="false">18341@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;digging deeper...&#60;/p&#62;
&#60;p&#62;looks like something went wrong in the upgrade process... and tags didn't get migrated properly into the new term_taxonomy structure.&#60;/p&#62;
&#60;p&#62;bb_terms appears to have been filled.&#60;br /&#62;
bb_term_relationships has a bunch of rows.&#60;/p&#62;
&#60;p&#62;But... bb_term_taxonomy is empty...
&#60;/p&#62;</description>
</item>
<item>
<title>joelteixeira on "Install problem - Call-time pass-by-reference has been deprecated;"</title>
<link>http://bbpress.org/forums/topic/install-problem-call-time-pass-by-reference-has-been-deprecated#post-18340</link>
<pubDate>Fri, 15 Aug 2008 23:48:13 +0000</pubDate>
<dc:creator>joelteixeira</dc:creator>
<guid isPermaLink="false">18340@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks your attention Balgo, but I didn't do that cause I want to developers help me to understand the problem. I don't wanna just edit the file and maybe be messing something worse. &#60;/p&#62;
&#60;p&#62;Should this edit be really necessary, is inoffensive? Is there something wrong with the code? With the server? &#60;/p&#62;
&#60;p&#62;I know is not a stable version, problems is expected... I just want to understand this one.
&#60;/p&#62;</description>
</item>
<item>
<title>balgo on "Install problem - Call-time pass-by-reference has been deprecated;"</title>
<link>http://bbpress.org/forums/topic/install-problem-call-time-pass-by-reference-has-been-deprecated#post-18338</link>
<pubDate>Fri, 15 Aug 2008 23:33:20 +0000</pubDate>
<dc:creator>balgo</dc:creator>
<guid isPermaLink="false">18338@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;if you want to modify the files to fix the problem, remove the &#38;#38; symbol from within the line it's complaining about:&#60;/p&#62;
&#60;p&#62;/bb-includes/backpress/functions.core.php on line 499
&#60;/p&#62;</description>
</item>
<item>
<title>joelteixeira on "Install problem - Call-time pass-by-reference has been deprecated;"</title>
<link>http://bbpress.org/forums/topic/install-problem-call-time-pass-by-reference-has-been-deprecated#post-18335</link>
<pubDate>Fri, 15 Aug 2008 23:07:23 +0000</pubDate>
<dc:creator>joelteixeira</dc:creator>
<guid isPermaLink="false">18335@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Ok, just to let you know. &#60;/p&#62;
&#60;p&#62;I tried a latest stable version (0.9.0.2) install and got no errors... only occurs with the alpha release.&#60;/p&#62;
&#60;p&#62;Help plz.
&#60;/p&#62;</description>
</item>
<item>
<title>zappoman on "bbPress Tags in 1.0 alpha"</title>
<link>http://bbpress.org/forums/topic/bbpress-tags-in-10-alpha#post-18334</link>
<pubDate>Fri, 15 Aug 2008 23:03:42 +0000</pubDate>
<dc:creator>zappoman</dc:creator>
<guid isPermaLink="false">18334@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Are tags expected to be working on the 1.0 alpha code?&#60;/p&#62;
&#60;p&#62;I am playing around with the system, and it it appears as if tags are not being displayed. the bb_tag_heat_map() is displaying nothing, bb_get_top_tags() is returning an empty array. Individual posts don't show tags either.&#60;/p&#62;
&#60;p&#62;I am assuming this is related to the new taxonomy code... not sure if I did the upgrade incorrectly or what. When I logged into the admin system the first time, it did do a DB upgrade.
&#60;/p&#62;</description>
</item>
<item>
<title>joelteixeira on "Install problem - Call-time pass-by-reference has been deprecated;"</title>
<link>http://bbpress.org/forums/topic/install-problem-call-time-pass-by-reference-has-been-deprecated#post-18331</link>
<pubDate>Fri, 15 Aug 2008 22:54:46 +0000</pubDate>
<dc:creator>joelteixeira</dc:creator>
<guid isPermaLink="false">18331@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Everything works on a localhost install, but when I try install on dreamhost I get the following error:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file in /bb-includes/backpress/functions.core.php on line 499&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;The message stays on the top of page, above header, seems that I can use everything but the message stays there. How can I get ride of this.&#60;/p&#62;
&#60;p&#62;SVN INFO:&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;
$ svn info&#60;br /&#62;
Path: URL: &#60;a href=&#34;http://svn.automattic.com/bbpress/trunk&#34; rel=&#34;nofollow&#34;&#62;http://svn.automattic.com/bbpress/trunk&#60;/a&#62;&#60;br /&#62;
Repository Root: &#60;a href=&#34;http://svn.automattic.com/bbpress&#34; rel=&#34;nofollow&#34;&#62;http://svn.automattic.com/bbpress&#60;/a&#62;&#60;br /&#62;
Repository UUID: 9866e705-20ec-0310-96e7-cbb4277adcfb&#60;br /&#62;
Revision: 1651&#60;br /&#62;
Node Kind: directory&#60;br /&#62;
Schedule: normal&#60;br /&#62;
Last Changed Author: sambauers&#60;br /&#62;
Last Changed Rev: 1651&#60;br /&#62;
Last Changed Date: 2008-08-13 12:13:00 -0700 (Wed, 13 Aug 2008)
&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Joel  Teixeira
&#60;/p&#62;</description>
</item>
<item>
<title>Thion on "Need help with plugin submission"</title>
<link>http://bbpress.org/forums/topic/need-help-stupid-question-wrong-section-but-still-need-it#post-17707</link>
<pubDate>Sun, 27 Jul 2008 15:12:22 +0000</pubDate>
<dc:creator>Thion</dc:creator>
<guid isPermaLink="false">17707@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Oh my... this will be more difficult than I thought in first place ;). Thanks for links, I'm going to look for some SVN &#34;manager&#34; for my Ubuntu...&#60;/p&#62;
&#60;p&#62;Edit:&#60;br /&#62;
OK, topic is resolved. Although my knowledge is not enough to deal with SVN yet... ;)
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Need help with plugin submission"</title>
<link>http://bbpress.org/forums/topic/need-help-stupid-question-wrong-section-but-still-need-it#post-17699</link>
<pubDate>Sun, 27 Jul 2008 14:03:03 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">17699@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Ah there is probably a more developed guide on the WordPress side, let me see if I can find it for you.&#60;/p&#62;
&#60;p&#62;update: here's a few guides - essentially the process is identical to the WordPress side except the URL used is going to be &#60;code&#62;&#60;a href=&#34;http://plugins-svn.bbpress.org/&#34; rel=&#34;nofollow&#34;&#62;http://plugins-svn.bbpress.org/&#60;/a&#62;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;guides:&#60;br /&#62;
&#60;a href=&#34;http://www.binarymoon.co.uk/2008/01/wordpress-plugin-subversion-guide/&#34; rel=&#34;nofollow&#34;&#62;http://www.binarymoon.co.uk/2008/01/wordpress-plugin-subversion-guide/&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://wordpress.org/extend/plugins/about/svn/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/about/svn/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Thion on "Need help with plugin submission"</title>
<link>http://bbpress.org/forums/topic/need-help-stupid-question-wrong-section-but-still-need-it#post-17698</link>
<pubDate>Sun, 27 Jul 2008 08:18:16 +0000</pubDate>
<dc:creator>Thion</dc:creator>
<guid isPermaLink="false">17698@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have no idea where to post it so I'm using the less-invasive section of this forum :). Is there any &#34;guide to submitting a plugin&#34; to bbpress.org/plugins/? I've clicked &#34;Add your plugin!&#34;, I recieved approval and &#34;access to your SVN repository&#34; but now what?&#60;/p&#62;
&#60;p&#62;I never used SVN or Trac before, I have no idea what to do, I just want to share my plugin with others via bbpress.org ;). If there's any &#34;guide&#34; or wiki page out there to help me out, please point me to it as I have no idea where to look for anything like this...&#60;/p&#62;
&#60;p&#62;PS: I want coffeeeeeeee ;)
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Release Archives"</title>
<link>http://bbpress.org/forums/topic/release-archives#post-16469</link>
<pubDate>Mon, 26 May 2008 05:36:33 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">16469@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Take your pick:&#60;br /&#62;
&#60;a href=&#34;http://trac.bbpress.org/browser/tags&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org/browser/tags&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>antimatter15 on "Release Archives"</title>
<link>http://bbpress.org/forums/topic/release-archives#post-16468</link>
<pubDate>Mon, 26 May 2008 00:38:59 +0000</pubDate>
<dc:creator>antimatter15</dc:creator>
<guid isPermaLink="false">16468@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Does anyone have a release archives for bbPress, or at least the one for version 0.73. I'm trying to use the phpbb2bbpress &#60;a href=&#34;http://www.iteisa.com/phpbb2bbpress/&#34; rel=&#34;nofollow&#34;&#62;http://www.iteisa.com/phpbb2bbpress/&#60;/a&#62; converter, but it only works for 0.73. so i'm thinking I could use that, and then upgrade to version 0.9 later.
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "New bbPress BUGGY!!!"</title>
<link>http://bbpress.org/forums/topic/new-bbpress#post-16200</link>
<pubDate>Tue, 13 May 2008 14:01:07 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">16200@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I will be working on auto-generating the .htaccess file soon. It will be part of bbPress 1.0
&#60;/p&#62;</description>
</item>
<item>
<title>mdata on "New bbPress BUGGY!!!"</title>
<link>http://bbpress.org/forums/topic/new-bbpress#post-16162</link>
<pubDate>Mon, 12 May 2008 17:11:16 +0000</pubDate>
<dc:creator>mdata</dc:creator>
<guid isPermaLink="false">16162@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I just installed yesterday (5-11-08).  If a fresh bbPress version was posted for download since then, I could not be happier.  That is why I am posting these comments.
&#60;/p&#62;</description>
</item>
<item>
<title>prathik on "New bbPress BUGGY!!!"</title>
<link>http://bbpress.org/forums/topic/new-bbpress#post-16161</link>
<pubDate>Mon, 12 May 2008 16:58:56 +0000</pubDate>
<dc:creator>prathik</dc:creator>
<guid isPermaLink="false">16161@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Fresh copy of bbpress had no issues at all.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
