<?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: documentation</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress Support Forums Tag: documentation</description>
<language>en</language>
<pubDate>Fri, 09 Jan 2009 04:33:15 +0000</pubDate>

<item>
<title>_ck_ on "List of filters/actions?"</title>
<link>http://bbpress.org/forums/topic/list-of-filtersactions#post-22463</link>
<pubDate>Fri, 02 Jan 2009 16:35:16 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">22463@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;There's no official documentation or codex yet.&#60;br /&#62;
A few people have done phpxref for bbpress but I find that kind of output fairly useless.&#60;/p&#62;
&#60;p&#62;If you have access to linux shell you can do a grep to get a function list in the template include like so (or install the &#60;a href=&#34;http://downloads.sourceforge.net/gnuwin32/grep-2.5.3-setup.exe&#34;&#62; grep for windows&#60;/a&#62;)&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;grep -oe ^function.*\) bb-includes/template-functions.php &#124; sort &#38;gt; functions.txt&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;modifying that you can also get the filters/actions&#60;/p&#62;
&#60;p&#62;&#60;code&#62;grep -oe apply\_.*\) bb-includes/template-functions.php &#124; sort &#38;gt; filters.txt&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;&#60;code&#62;grep -oe do\_.*\) bb-includes/template-functions.php &#124; sort &#38;gt; actions.txt&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;If you use the grep for windows, leave out the escapes (backslashes) or it won't work.
&#60;/p&#62;</description>
</item>
<item>
<title>Seans0n on "List of filters/actions?"</title>
<link>http://bbpress.org/forums/topic/list-of-filtersactions#post-22459</link>
<pubDate>Fri, 02 Jan 2009 14:32:55 +0000</pubDate>
<dc:creator>Seans0n</dc:creator>
<guid isPermaLink="false">22459@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm already familiar with writing plugins for WordPress but now I'm interested in writing a few plugins for bbPress. I'm trying to find a list of hooks/actions so I can get a better feel for what I have control over without altering the core files. Does such a thing exist? If not which php files should I be going through to find hooks/actions or are they all in different files?&#60;/p&#62;
&#60;p&#62;Cheers
&#60;/p&#62;</description>
</item>
<item>
<title>watson on "Need user role explanation"</title>
<link>http://bbpress.org/forums/topic/need-user-role-explanation#post-21631</link>
<pubDate>Sun, 14 Dec 2008 10:58:14 +0000</pubDate>
<dc:creator>watson</dc:creator>
<guid isPermaLink="false">21631@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks both of you for answering... This is just such a great forum :)
&#60;/p&#62;</description>
</item>
<item>
<title>johnjamesjacoby on "Need user role explanation"</title>
<link>http://bbpress.org/forums/topic/need-user-role-explanation#post-21513</link>
<pubDate>Fri, 12 Dec 2008 03:28:22 +0000</pubDate>
<dc:creator>johnjamesjacoby</dc:creator>
<guid isPermaLink="false">21513@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The Key Manager is basically designed to always be able to do everything, without any loss of functionality. Where as Admin's can be changed to be whatever you would like them to be. &#60;/p&#62;
&#60;p&#62;If you want the side by side comparison:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$roles-&#38;gt;add_role( &#38;#39;keymaster&#38;#39;, __(&#38;#39;Key Master&#38;#39;), array(
		&#38;#39;use_keys&#38;#39; =&#38;gt; true,				// Verb forms of roles - keymaster
		&#38;#39;administrate&#38;#39; =&#38;gt; true,			// administrator
		&#38;#39;moderate&#38;#39; =&#38;gt; true, 			// moderator
		&#38;#39;participate&#38;#39; =&#38;gt; true,			// member

		&#38;#39;keep_gate&#38;#39; =&#38;gt; true,			// Make new Key Masters		//+
		&#38;#39;import_export&#38;#39; =&#38;gt; true,		// Import and export data	//+
		&#38;#39;recount&#38;#39; =&#38;gt; true,				// bb-do-counts.php			//+
		&#38;#39;manage_options&#38;#39; =&#38;gt; true,		// backend					//+
		&#38;#39;manage_themes&#38;#39; =&#38;gt; true,		// Themes					//+
		&#38;#39;manage_plugins&#38;#39; =&#38;gt; true,		// Plugins					//+
		&#38;#39;manage_options&#38;#39; =&#38;gt; true,		// Options					//+
		&#38;#39;edit_users&#38;#39; =&#38;gt; true,
		&#38;#39;manage_tags&#38;#39; =&#38;gt; true,			// Rename, Merge, Destroy
		&#38;#39;edit_others_favorites&#38;#39; =&#38;gt; true,
		&#38;#39;manage_forums&#38;#39; =&#38;gt; true,		// Add/Rename forum
		&#38;#39;delete_forums&#38;#39; =&#38;gt; true,		// Delete forum
		&#38;#39;delete_topics&#38;#39; =&#38;gt; true,
		&#38;#39;close_topics&#38;#39; =&#38;gt; true,
		&#38;#39;stick_topics&#38;#39; =&#38;gt; true,
		&#38;#39;move_topics&#38;#39; =&#38;gt; true,
		&#38;#39;view_by_ip&#38;#39; =&#38;gt; true,			// view-ip.php
		&#38;#39;edit_closed&#38;#39; =&#38;gt; true,			// Edit closed topics
		&#38;#39;edit_deleted&#38;#39; =&#38;gt; true,			// Edit deleted topics/posts
		&#38;#39;browse_deleted&#38;#39; =&#38;gt; true,		// Use &#38;#39;deleted&#38;#39; view
		&#38;#39;edit_others_tags&#38;#39; =&#38;gt; true,
		&#38;#39;edit_others_topics&#38;#39; =&#38;gt; true,
		&#38;#39;delete_posts&#38;#39; =&#38;gt; true,
		&#38;#39;throttle&#38;#39; =&#38;gt; true,				// Post back to back arbitrarily quickly
		&#38;#39;ignore_edit_lock&#38;#39; =&#38;gt; true,
		&#38;#39;edit_others_posts&#38;#39; =&#38;gt; true,
		&#38;#39;edit_favorites&#38;#39; =&#38;gt; true,
		&#38;#39;edit_tags&#38;#39; =&#38;gt; true,
		&#38;#39;edit_topics&#38;#39; =&#38;gt; true,			// Edit title, resolution status
		&#38;#39;edit_posts&#38;#39; =&#38;gt; true,
		&#38;#39;edit_profile&#38;#39; =&#38;gt; true,
		&#38;#39;write_topics&#38;#39; =&#38;gt; true,
		&#38;#39;write_posts&#38;#39; =&#38;gt; true,
		&#38;#39;change_password&#38;#39; =&#38;gt; true,
		&#38;#39;read&#38;#39; =&#38;gt; true
	) );

	$roles-&#38;gt;add_role( &#38;#39;administrator&#38;#39;, __(&#38;#39;Administrator&#38;#39;), array(
		&#38;#39;administrate&#38;#39; =&#38;gt; true,
		&#38;#39;moderate&#38;#39; =&#38;gt; true,
		&#38;#39;participate&#38;#39; =&#38;gt; true,

		&#38;#39;edit_users&#38;#39; =&#38;gt; true,				//+
		&#38;#39;edit_others_favorites&#38;#39; =&#38;gt; true,	//+
		&#38;#39;manage_forums&#38;#39; =&#38;gt; true,			//+
		&#38;#39;delete_forums&#38;#39; =&#38;gt; true,			//+
		&#38;#39;manage_tags&#38;#39; =&#38;gt; true,
		&#38;#39;delete_topics&#38;#39; =&#38;gt; true,
		&#38;#39;close_topics&#38;#39; =&#38;gt; true,
		&#38;#39;stick_topics&#38;#39; =&#38;gt; true,
		&#38;#39;move_topics&#38;#39; =&#38;gt; true,
		&#38;#39;view_by_ip&#38;#39; =&#38;gt; true,
		&#38;#39;edit_closed&#38;#39; =&#38;gt; true,
		&#38;#39;edit_deleted&#38;#39; =&#38;gt; true,
		&#38;#39;browse_deleted&#38;#39; =&#38;gt; true,
		&#38;#39;edit_others_tags&#38;#39; =&#38;gt; true,
		&#38;#39;edit_others_topics&#38;#39; =&#38;gt; true,
		&#38;#39;delete_posts&#38;#39; =&#38;gt; true,
		&#38;#39;throttle&#38;#39; =&#38;gt; true,
		&#38;#39;ignore_edit_lock&#38;#39; =&#38;gt; true,
		&#38;#39;edit_others_posts&#38;#39; =&#38;gt; true,
		&#38;#39;edit_favorites&#38;#39; =&#38;gt; true,
		&#38;#39;edit_tags&#38;#39; =&#38;gt; true,
		&#38;#39;edit_topics&#38;#39; =&#38;gt; true,
		&#38;#39;edit_posts&#38;#39; =&#38;gt; true,
		&#38;#39;edit_profile&#38;#39; =&#38;gt; true,
		&#38;#39;write_topics&#38;#39; =&#38;gt; true,
		&#38;#39;write_posts&#38;#39; =&#38;gt; true,
		&#38;#39;change_password&#38;#39; =&#38;gt; true,
		&#38;#39;read&#38;#39; =&#38;gt; true
	) );&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>Ipstenu on "Need user role explanation"</title>
<link>http://bbpress.org/forums/topic/need-user-role-explanation#post-21508</link>
<pubDate>Thu, 11 Dec 2008 19:51:22 +0000</pubDate>
<dc:creator>Ipstenu</dc:creator>
<guid isPermaLink="false">21508@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Key Manager - &#60;a href=&#34;http://trac.bbpress.org/ticket/1&#34;&#62;#1&#60;/a&#62; The big Cheese&#60;br /&#62;
Administrator - &#60;a href=&#34;http://trac.bbpress.org/ticket/1&#34;&#62;#1&#60;/a&#62; The Veep.&#60;/p&#62;
&#60;p&#62;I'm not sure, but I think only a Key Manager can add new admins and Key Managers.
&#60;/p&#62;</description>
</item>
<item>
<title>watson on "Need user role explanation"</title>
<link>http://bbpress.org/forums/topic/need-user-role-explanation#post-21507</link>
<pubDate>Thu, 11 Dec 2008 19:47:43 +0000</pubDate>
<dc:creator>watson</dc:creator>
<guid isPermaLink="false">21507@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I need an overview of the different user roles in bbPress. E.g. what is the &#34;Key Manager&#34; and what is the difference between him an the &#34;Administrator&#34;?&#60;/p&#62;
&#60;p&#62;I can't seem to find anything in the documentation. Can anybody help with this?
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Function list for v1.0 alpha one"</title>
<link>http://bbpress.org/forums/topic/function-list-for-v10-alpha-one#post-18949</link>
<pubDate>Fri, 05 Sep 2008 08:45:37 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">18949@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Nice list but I've always found function lists fairly useless, though I guess if you have zero experience with how bbPress or WordPress works, they can give you a starting point with something to browse through.&#60;/p&#62;
&#60;p&#62;What really helps is a trace of how functions flow when a page is loaded and what files they are located in.&#60;/p&#62;
&#60;p&#62;I have an experimental version of bb-benchmark that does something like this using a trace feature from WordPress 2.6 but it's not available for public use yet.
&#60;/p&#62;</description>
</item>
<item>
<title>JediSthlm on "Function list for v1.0 alpha one"</title>
<link>http://bbpress.org/forums/topic/function-list-for-v10-alpha-one#post-18904</link>
<pubDate>Wed, 03 Sep 2008 20:55:12 +0000</pubDate>
<dc:creator>JediSthlm</dc:creator>
<guid isPermaLink="false">18904@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Here is a function list for the v1.0 alpha one. As the developers do not add any documentation I found this on the net. You can you this by your own if you have an older or newer version of bbPress by doing this command in the terminal (linux or mac):&#60;/p&#62;
&#60;p&#62;grep -oe ^function.*\) bb-includes/template-functions.php &#124; sort &#38;gt; functions.txt&#60;/p&#62;
&#60;p&#62;This idea is Tims (http://timjoh.com), I used updated his idea.&#60;br /&#62;
------&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;function _bb_list_tag_item( $tag, $args )
function _bb_parse_time_function_args( $args )
function _bb_time_function_return( $time, $args )
function allowed_markup( $args = &#38;#39;&#38;#39; )
function alt_class( $key, $others = &#38;#39;&#38;#39; )
function bb_active_theme_uri()
function bb_admin_link( $args = &#38;#39;&#38;#39; )
function bb_current_user_info( $key = &#38;#39;&#38;#39; )
function bb_feed_head()
function bb_forum()
function bb_forum_bread_crumb( $args = &#38;#39;&#38;#39; )
function bb_forum_class( $args = null )
function bb_forum_dropdown( $args = &#38;#39;&#38;#39; )
function bb_forum_pad( $pad, $offset = 0 )
function bb_forum_posts_rss_link( $forum_id = 0, $context = 0 )
function bb_forum_topics_rss_link( $forum_id = 0, $context = 0 )
function bb_get_active_theme_uri()
function bb_get_admin_link( $args = &#38;#39;&#38;#39; )
function bb_get_current_user_info( $key = &#38;#39;&#38;#39; )
function bb_get_footer()
function bb_get_forum_bread_crumb($args = &#38;#39;&#38;#39;)
function bb_get_forum_dropdown( $args = &#38;#39;&#38;#39; )
function bb_get_forum_is_category( $forum_id = 0 )
function bb_get_forum_posts_rss_link( $forum_id = 0, $context = 0 )
function bb_get_forum_topics_rss_link( $forum_id = 0, $context = 0 )
function bb_get_header()
function bb_get_location()
function bb_get_logout_link( $args = &#38;#39;&#38;#39; )
function bb_get_post_delete_link( $post_id = 0 )
function bb_get_post_edit_link( $post_id = 0 )
function bb_get_post_ip_link( $post_id = 0 )
function bb_get_post_time( $args = &#38;#39;&#38;#39; )
function bb_get_posts_rss_link($context = 0)
function bb_get_profile_link( $args = &#38;#39;&#38;#39; )
function bb_get_stylesheet_uri( $stylesheet = &#38;#39;&#38;#39; )
function bb_get_tag_heat_map( $tags, $args = &#38;#39;&#38;#39; )
function bb_get_tag_link( $tag_name = 0, $page = 1 )
function bb_get_tag_link_base()
function bb_get_tag_name( $id = 0 )
function bb_get_tag_page_link()
function bb_get_tag_remove_link( $args = null )
function bb_get_tag_rss_link( $tag_id = 0, $context = 0 )
function bb_get_template( $file )
function bb_get_theme_uri( $theme = false )
function bb_get_title( $args = &#38;#39;&#38;#39; )
function bb_get_topic_close_link( $args = &#38;#39;&#38;#39; )
function bb_get_topic_delete_link( $args = &#38;#39;&#38;#39; )
function bb_get_topic_pagecount( $topic_id = 0 )
function bb_get_topic_sticky_link( $args = &#38;#39;&#38;#39; )
function bb_get_topics_rss_link($context = 0)
function bb_get_user_email( $id )
function bb_get_user_id( $id = 0 )
function bb_get_view_rss_link($context = 0)
function bb_head()
function bb_is_topic_lastpage( $topic_id = 0 )
function bb_language_attributes( $xhtml = 0 )
function bb_list_tags( $args = null )
function bb_load_template( $file, $globals = false )
function bb_location()
function bb_logout_link( $args = &#38;#39;&#38;#39; )
function bb_new_topic_forum_dropdown()
function bb_post_admin()
function bb_post_template()
function bb_post_time( $args = &#38;#39;&#38;#39; )
function bb_profile_admin_form( $id = 0 )
function bb_profile_base_content()
function bb_profile_data( $id = 0 )
function bb_profile_data_form( $id = 0 )
function bb_profile_link( $args = &#38;#39;&#38;#39; )
function bb_profile_password_form( $id = 0 )
function bb_related_tags_heat_map( $args = &#38;#39;&#38;#39; )
function bb_sort_tag_heat_map( &#38;#38;$tag_counts )
function bb_stylesheet_uri( $stylesheet = &#38;#39;&#38;#39; )
function bb_tag_heat_map( $args = &#38;#39;&#38;#39; )
function bb_tag_link( $id = 0, $page = 1 )
function bb_tag_link_base()
function bb_tag_name( $id = 0 )
function bb_tag_page_link()
function bb_tag_remove_link( $args = null )
function bb_tag_rss_link( $id = 0, $context = 0 )
function bb_template_scripts()
function bb_title( $args = &#38;#39;&#38;#39; )
function bb_topic_admin( $args = &#38;#39;&#38;#39; )
function bb_topic_labels()
function bb_topic_pagecount( $topic_id = 0 )
function bb_topic_search_form( $args = null, $query_obj = null )
function edit_form()
function favorites_link( $user_id = 0 )
function favorites_pages()
function favorites_rss_link( $id = 0, $context = 0 )
function forum_description( $args = null )
function forum_id( $forum_id = 0 )
function forum_link( $forum_id = 0, $page = 1, $context = BB_URI_CONTEXT_A_HREF )
function forum_name( $forum_id = 0 )
function forum_pages( $forum_id = 0 )
function forum_posts( $forum_id = 0 )
function forum_topics( $forum_id = 0 )
function full_user_link( $id = 0 )
function get_allowed_markup( $args = &#38;#39;&#38;#39; )
function get_alt_class( $key, $others = &#38;#39;&#38;#39; )
function get_favorites_link( $user_id = 0 )
function get_favorites_rss_link( $id = 0, $context = 0 )
function get_forum_description( $forum_id = 0 )
function get_forum_id( $forum_id = 0 )
function get_forum_link( $forum_id = 0, $page = 1, $context = BB_URI_CONTEXT_A_HREF )
function get_forum_name( $forum_id = 0 )
function get_forum_parent( $forum_id = 0 )
function get_forum_position( $forum_id = 0 )
function get_forum_posts( $forum_id = 0 )
function get_forum_topics( $forum_id = 0 )
function get_full_user_link( $id = 0 )
function get_page_number_links($page, $total)
function get_post_author( $post_id = 0 )
function get_post_author_id( $post_id = 0 )
function get_post_author_title( $post_id = 0 )
function get_post_author_title_link( $post_id = 0 )
function get_post_id( $post_id = 0 )
function get_post_ip( $post_id = 0 )
function get_post_link( $post_id = 0 )
function get_post_text( $post_id = 0 )
function get_profile_tab_link( $id = 0, $tab, $page = 1 )
function get_topic_author( $id = 0 )
function get_topic_deleted_posts( $id = 0 )
function get_topic_id( $id = 0 )
function get_topic_last_post_link( $id = 0 )
function get_topic_last_poster( $id = 0 )
function get_topic_link( $id = 0, $page = 1, $context = BB_URI_CONTEXT_A_HREF )
function get_topic_posts( $id = 0 )
function get_topic_rss_link( $id = 0, $context = 0 )
function get_topic_start_time( $args = &#38;#39;&#38;#39; )
function get_topic_time( $args = &#38;#39;&#38;#39; )
function get_topic_title( $id = 0 )
function get_user_delete_button()
function get_user_display_name( $id = 0 )
function get_user_link( $id = 0 )
function get_user_name( $id = 0 )
function get_user_profile_link( $id = 0, $page = 1, $context = BB_URI_CONTEXT_A_HREF )
function get_user_title( $id = 0 )
function get_user_type( $id = 0 )
function get_user_type_label( $type )
function get_view_link( $_view = false, $page = 1, $context = BB_URI_CONTEXT_A_HREF )
function get_view_name( $_view = &#38;#39;&#38;#39; )
function is_bb_admin()
function is_bb_favorites()
function is_bb_feed()
function is_bb_profile()
function is_bb_search()
function is_bb_stats()
function is_bb_tag()
function is_bb_tags()
function is_forum()
function is_front()
function is_topic()
function is_view()
function login_form()
function manage_tags_forms()
function new_topic( $args = null )
function post_anchor_link( $force_full = false )
function post_author( $post_id = 0 )
function post_author_avatar( $size = &#38;#39;48&#38;#39;, $default = &#38;#39;&#38;#39;, $post_id = 0 )
function post_author_avatar_link( $size = &#38;#39;48&#38;#39;, $default = &#38;#39;&#38;#39;, $post_id = 0 )
function post_author_id( $post_id = 0 )
function post_author_link( $post_id = 0 )
function post_author_title( $post_id = 0 )
function post_author_title_link( $post_id = 0 )
function post_author_type( $post_id = 0 )
function post_del_class( $post_id = 0 )
function post_delete_link( $post_id = 0 )
function post_edit_link( $post_id = 0 )
function post_form( $h2 = &#38;#39;&#38;#39; )
function post_id( $post_id = 0 )
function post_ip( $post_id = 0 )
function post_ip_link( $post_id = 0 )
function post_link( $post_id = 0 )
function post_text( $post_id = 0 )
function profile_menu()
function profile_pages()
function profile_tab_link( $id = 0, $tab, $page = 1 )
function search_form( $q = &#38;#39;&#38;#39; )
function tag_form( $args = null )
function tag_pages()
function topic_author( $id = 0 )
function topic_class( $class = &#38;#39;&#38;#39;, $key = &#38;#39;topic&#38;#39;, $id = 0 )
function topic_close_link( $args = &#38;#39;&#38;#39; )
function topic_delete_link( $args = &#38;#39;&#38;#39; )
function topic_id( $id = 0 )
function topic_last_post_link( $id = 0 )
function topic_last_poster( $id = 0 )
function topic_link( $id = 0, $page = 1, $context = BB_URI_CONTEXT_A_HREF )
function topic_move_dropdown( $id = 0 )
function topic_noreply( $title )
function topic_pages( $id = 0 )
function topic_pages_add( $id = 0 )
function topic_posts( $id = 0 )
function topic_posts_link( $id = 0 )
function topic_rss_link( $id = 0, $context = 0 )
function topic_show_all_link( $id = 0 )
function topic_start_time( $args = &#38;#39;&#38;#39; )
function topic_sticky_link( $args = &#38;#39;&#38;#39; )
function topic_tags()
function topic_time( $args = &#38;#39;&#38;#39; )
function topic_title( $id = 0 )
function user_delete_button()
function user_favorites_link($add = array(), $rem = array(), $user_id = 0)
function user_link( $id = 0 )
function user_profile_link( $id = 0 , $page = 1, $context = BB_URI_CONTEXT_A_HREF )
function user_title( $id = 0 )
function user_type( $id = 0 )
function user_type_label( $type )
function view_link( $_view = false, $page = 1, $context = BB_URI_CONTEXT_A_HREF )
function view_name( $view = &#38;#39;&#38;#39; ) { // Filtration should be done at bb_register_view()
function view_pages()&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;--------
&#60;/p&#62;</description>
</item>
<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>retrospec on "Documentation updated for 0.9"</title>
<link>http://bbpress.org/forums/topic/documentation-updated-for-09#post-15038</link>
<pubDate>Fri, 04 Apr 2008 22:28:59 +0000</pubDate>
<dc:creator>retrospec</dc:creator>
<guid isPermaLink="false">15038@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You didn't mention what to do in the upgrade when it asks for a keymaster. I entered my same details and it went tits up telling me it's in safe mode, etc.&#60;/p&#62;
&#60;p&#62;I think you need to put what you do at this stage to make it clear.
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Documentation updated for 0.9"</title>
<link>http://bbpress.org/forums/topic/documentation-updated-for-09#post-15015</link>
<pubDate>Fri, 04 Apr 2008 04:03:01 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">15015@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The documentation on this site has been updated to reflect the recent changes to installation, upgrading and integration.&#60;/p&#62;
&#60;p&#62;Please consult the documentation before posting a question here. There is a good chance that your question will be answered there.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/documentation/&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/documentation/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>testosteron on "Complete Wordpress Integration!"</title>
<link>http://bbpress.org/forums/topic/complete-wordpress-integration#post-14580</link>
<pubDate>Fri, 21 Mar 2008 13:52:40 +0000</pubDate>
<dc:creator>testosteron</dc:creator>
<guid isPermaLink="false">14580@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;mhm can you say me wich login menu i should inegrate in the theme?&#60;br /&#62;
it is in the header and seen on every page!
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Complete Wordpress Integration!"</title>
<link>http://bbpress.org/forums/topic/complete-wordpress-integration#post-14577</link>
<pubDate>Fri, 21 Mar 2008 12:41:46 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">14577@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I think if you wait until bbPress 0.9 comes out, integration with WordPress 2.5 will be much easier, &#60;a href=&#34;http://bbpress.org/forums/topic/cookies-subtle-bug-single-sign-on-bbpress-and-wordpress#post-14373&#34;&#62;according to sambauers&#60;/a&#62;.
&#60;/p&#62;</description>
</item>
<item>
<title>testosteron on "Complete Wordpress Integration!"</title>
<link>http://bbpress.org/forums/topic/complete-wordpress-integration#post-14576</link>
<pubDate>Fri, 21 Mar 2008 10:15:19 +0000</pubDate>
<dc:creator>testosteron</dc:creator>
<guid isPermaLink="false">14576@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi!&#60;br /&#62;
I want to integrate bbpress into my wordpress blog complete!&#60;br /&#62;
that means  :&#60;/p&#62;
&#60;ul&#62;
&#60;li&#62; When you login into wordpress  you have to be logged in in bbpress the same time! (for write threads and wp comments with one login)&#60;/li&#62;
&#60;li&#62; I want that wordpress an bbpress look like one theme. So is it possible to show the normal wordpress sidebar in bbpress? and how? &#60;/li&#62;
&#60;li&#62;wich login menue i should use? (I want to integrate the login menue  in the header of both themes ) &#60;/li&#62;
&#60;/ul&#62;
&#60;p&#62;I read a lot of things here with set cookie path etc but in PHP I'm&#60;strong&#62;not &#60;/strong&#62;&#34;the best&#34;! :D&#60;br /&#62;
The  structure is like this.&#60;br /&#62;
The domain for the wordpress blog is &#60;a href=&#34;http://www.example.com/blog/&#34; rel=&#34;nofollow&#34;&#62;www.example.com/blog/&#60;/a&#62;&#60;br /&#62;
and the Domain for the Forum is &#60;a href=&#34;http://www.forum.example.com/&#34; rel=&#34;nofollow&#34;&#62;www.forum.example.com/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I think this thread is needed to make one real documentation for integration so the next with the problem don't have to read 100 threads :D&#60;br /&#62;
 // Sorry for my english! Im from germany ;)
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Let's collaborate on bbPulp.org"</title>
<link>http://bbpress.org/forums/topic/lets-collaborate-on-bbpulporg#post-12792</link>
<pubDate>Wed, 19 Dec 2007 21:28:41 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">12792@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I think there should be a new release before 0.8.4 that fixes all the stuff that was messed up with db-mysqli.php and the usernames with spaces or special characters in them.   Call it whatever you want, but I don't think those fixes should wait until 0.8.4.  Just look through this forum for the number of people who have had database problems.  Having a release or at least posting a sticky on how to get revision 980 seems like the right thing to do.  Right now 0.8.3 is broken for a lot of people.  It makes bbPress look bad.
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Let's collaborate on bbPulp.org"</title>
<link>http://bbpress.org/forums/topic/lets-collaborate-on-bbpulporg#post-12786</link>
<pubDate>Wed, 19 Dec 2007 17:01:18 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">12786@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I was actually suggesting that the user-level stuff stay off there and be concentrated in the documentation here on bbPress.org&#60;/p&#62;
&#60;p&#62;But if people are keen about writing docs then perhaps bbPulp can be a sandbox for that and when content matures it can be pulled across here to the &#34;official&#34; documentation.
&#60;/p&#62;</description>
</item>
<item>
<title>livibetter on "Let's collaborate on bbPulp.org"</title>
<link>http://bbpress.org/forums/topic/lets-collaborate-on-bbpulporg#post-12781</link>
<pubDate>Wed, 19 Dec 2007 14:45:54 +0000</pubDate>
<dc:creator>livibetter</dc:creator>
<guid isPermaLink="false">12781@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have kept reading this forums for about a month. I saw many similar processes of solving the same problem.&#60;/p&#62;
&#60;p&#62;Not long ago, I asked Sam Bauers a question about &#60;a href=&#34;http://bbpulp.org/&#34;&#62;bbpulp.org&#60;/a&#62; on IRC:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;livibetter&#38;gt; can we (users) expand it? like FAQ, troubleshooting, theme modifications?
&#38;lt;livibetter&#38;gt; there are many questions asked again and again on forums. If we can systematically organize a collection of these, then may be easily to give a solution for their questions.
&#38;lt;sambauers&#38;gt; Yeah, go ahead.
&#38;lt;sambauers&#38;gt; It is a wiki after all :)
&#38;lt;sambauers&#38;gt; Although it was focused on being a developers resource.
&#38;lt;livibetter&#38;gt; Thanks! I will post a post for this, and hope many other user will do the same thing.
&#38;lt;sambauers&#38;gt; If you wanted to look at the actual bbPress.org documentation
&#38;lt;sambauers&#38;gt; you are welcome to suggest additions and edits of the pages there
&#38;lt;livibetter&#38;gt; I see
&#38;lt;sambauers&#38;gt; It makes more sense to compile FAQs there for instance
&#38;lt;sambauers&#38;gt; And installation/integration notes
&#38;lt;sambauers&#38;gt; Which will soon need updating anyway
&#38;lt;livibetter&#38;gt; means 0.8.4 coming soon?
&#38;lt;sambauers&#38;gt; Probably not until WordPress 2.4&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;If we can collect and organize these solutions well, we can be more easier to help. I did a small change on the main page, not really start to write something.   I took a while to write those new entries, it's harder than I can imagine. I can't make them systematic. And that's still not good, but collaboration can correct mistakes and build a great stuff.&#60;/p&#62;
&#60;p&#62;So, &#60;a href=&#34;http://bbpulp.org/&#34;&#62;Let's collaborate!&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "how about an integrated wiki on bbpress.org ?"</title>
<link>http://bbpress.org/forums/topic/how-about-an-integrated-wiki-on-bbpressorg-#post-10240</link>
<pubDate>Fri, 17 Aug 2007 08:14:03 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">10240@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'd be happy for _ck_ to put some energy into bbpulp&#60;/p&#62;
&#60;p&#62;I've been meaning to get back in there and do some stuff myself but haven't had the time.
&#60;/p&#62;</description>
</item>
<item>
<title>Null on "how about an integrated wiki on bbpress.org ?"</title>
<link>http://bbpress.org/forums/topic/how-about-an-integrated-wiki-on-bbpressorg-#post-10238</link>
<pubDate>Fri, 17 Aug 2007 07:27:18 +0000</pubDate>
<dc:creator>Null</dc:creator>
<guid isPermaLink="false">10238@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#60;a href=&#34;http://www.bbpulp.org&#34; rel=&#34;nofollow&#34;&#62;www.bbpulp.org&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;We don't get much feedback from the builders and our community isn't big enough yet to get the attention for stuff like WP has. So some dude made this wiki.&#60;/p&#62;
&#60;p&#62;But I agree, we need way more documentation (starting on new added things in bbPress and how they work) and also a place to download language files...&#60;/p&#62;
&#60;p&#62;But we have spoken about these things many times, hence we've made bbpulp.org...
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "how about an integrated wiki on bbpress.org ?"</title>
<link>http://bbpress.org/forums/topic/how-about-an-integrated-wiki-on-bbpressorg-#post-10237</link>
<pubDate>Fri, 17 Aug 2007 06:26:00 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">10237@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Any chance of getting a wiki integrated here?&#60;/p&#62;
&#60;p&#62;It would go rather far in getting user-generated documentation going, especially pages like &#34;WordPress Integration&#34; which needs a bunch of updates to make it easier for new users trying out bbPress.
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "bbPulp.org - developer wiki"</title>
<link>http://bbpress.org/forums/topic/bbpulporg-developer-wiki#post-7123</link>
<pubDate>Mon, 30 Apr 2007 03:33:59 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">7123@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Yeah great, I moved the capabilities page to stay consistent with other API areas though.
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "bbPulp.org - developer wiki"</title>
<link>http://bbpress.org/forums/topic/bbpulporg-developer-wiki#post-7115</link>
<pubDate>Sun, 29 Apr 2007 19:11:35 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">7115@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Added &#60;a href=&#34;&#34;&#62;add_profile_tab&#60;/a&#62; as well as a top-level &#60;a href=&#34;http://bbpulp.org/wiki/Capabilities&#34;&#62;Capabilities&#60;/a&#62; page, figured that'd be useful too. Is that alright?
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "bbPulp.org - developer wiki"</title>
<link>http://bbpress.org/forums/topic/bbpulporg-developer-wiki#post-7093</link>
<pubDate>Sat, 28 Apr 2007 18:04:20 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">7093@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Very nice Sam!   Pro-forumed as well!&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://proforums.palmansworld.com/bbpress-news/bbpulporg-developer-wiki/&#34; rel=&#34;nofollow&#34;&#62;http://proforums.palmansworld.com/bbpress-news/bbpulporg-developer-wiki/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "bbPulp.org - developer wiki"</title>
<link>http://bbpress.org/forums/topic/bbpulporg-developer-wiki#post-7047</link>
<pubDate>Fri, 27 Apr 2007 08:28:59 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">7047@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It's pretty cool. I like it a lot!
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "bbPulp.org - developer wiki"</title>
<link>http://bbpress.org/forums/topic/bbpulporg-developer-wiki#post-7046</link>
<pubDate>Fri, 27 Apr 2007 05:31:43 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">7046@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I informally announced this in another post, but it kind of got buried.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpulp.org&#34;&#62;bbPulp&#60;/a&#62; is a wiki I have started for the purpose of creating some coherent documentation of the bbPress API for plugin and theme developers. There seemed to be enough people interested in having one now to start it. Hopefully it can form the foundation of the official wiki when it is created, and in the meantime we have some where to collect our knowledge of the API.&#60;/p&#62;
&#60;p&#62;Already documented are all the &#60;a href=&#34;http://bbpulp.org/wiki/API/Pluggable_Functions&#34;&#62;pluggable functions&#60;/a&#62;. I need help with all the hooks (due to sheer volume), both &#60;a href=&#34;http://bbpulp.org/wiki/API/filters&#34;&#62;filters&#60;/a&#62; and &#60;a href=&#34;http://bbpulp.org/wiki/API/actions&#34;&#62;actions&#60;/a&#62;. If you are inclined to help, please use the hooks already documented as examples for others.&#60;/p&#62;
&#60;p&#62;All submissions are released under the terms of the &#60;a href=&#34;http://www.gnu.org/licenses/fdl.html&#34;&#62;GNU Free Documentation License&#60;/a&#62;.
&#60;/p&#62;</description>
</item>
<item>
<title>eddd54 on "Hooks &#038; Filters Docu"</title>
<link>http://bbpress.org/forums/topic/hooks-038-filters-docu/page/2#post-6959</link>
<pubDate>Mon, 23 Apr 2007 18:09:04 +0000</pubDate>
<dc:creator>eddd54</dc:creator>
<guid isPermaLink="false">6959@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;hey, i found this link: &#60;a href=&#34;http://timjoh.com/list-of-bbpress-template-functions/&#34; rel=&#34;nofollow&#34;&#62;http://timjoh.com/list-of-bbpress-template-functions/&#60;/a&#62; yesterday - which has a list of all the template functions (up to 0.8.1).&#60;/p&#62;
&#60;p&#62;i was going to use that as a reference until bbpulp had more info -&#60;br /&#62;
but now i see that the wiki has already begun to fill out..&#60;/p&#62;
&#60;p&#62;i guess i'm still a little confused by all the terminology, perhaps someone could help me by distiguishing between the following terms:&#60;/p&#62;
&#60;p&#62;- template functions&#60;br /&#62;
- pluggable functions&#60;br /&#62;
- plugin functions&#60;br /&#62;
- filters (&#60;a href=&#34;http://bbpress.org/forums/topic/1070?replies=33#post-6740&#34;&#62;defined earlier&#60;/a&#62;)&#60;br /&#62;
- hooks / actions (&#60;a href=&#34;http://bbpress.org/forums/topic/1070?replies=33#post-6740&#34;&#62;defined earlier&#60;/a&#62;)&#60;/p&#62;
&#60;p&#62;maybe all this could be included on the wiki too?&#60;br /&#62;
anyway, the list of template functions might help since i see that no link has been created yet for it under the heading: &#34;Theming documentation&#34; on bbpulp.
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Hooks &#038; Filters Docu"</title>
<link>http://bbpress.org/forums/topic/hooks-038-filters-docu/page/2#post-6953</link>
<pubDate>Mon, 23 Apr 2007 14:29:44 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">6953@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Take your pick...&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;pulp&#60;/strong&#62;&#60;br /&#62;
[noun]: a soft, wet, shapeless mass of material&#60;br /&#62;
[noun]: a soft wet mass of fibers derived from rags or wood, used in papermaking.&#60;br /&#62;
[usu. as adj. ]: popular or sensational writing that is generally regarded as being of poor quality&#60;/p&#62;
&#60;p&#62;... and it's a synonym of &#34;press&#34;
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Hooks &#038; Filters Docu"</title>
<link>http://bbpress.org/forums/topic/hooks-038-filters-docu/page/2#post-6951</link>
<pubDate>Mon, 23 Apr 2007 14:02:51 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">6951@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#60;em&#62;so here it is &#60;a href=&#34;http://bbpulp.org&#34; rel=&#34;nofollow&#34;&#62;http://bbpulp.org&#60;/a&#62;&#60;/em&#62;&#60;/p&#62;
&#60;p&#62;Fantastic!&#60;/p&#62;
&#60;p&#62;What's the pulp thing about, though? :P
&#60;/p&#62;</description>
</item>
<item>
<title>eddd54 on "Hooks &#038; Filters Docu"</title>
<link>http://bbpress.org/forums/topic/hooks-038-filters-docu/page/2#post-6940</link>
<pubDate>Mon, 23 Apr 2007 08:04:24 +0000</pubDate>
<dc:creator>eddd54</dc:creator>
<guid isPermaLink="false">6940@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;cool. it will be. thanks again for the help. i'll be watching the (unofficial) wiki!
&#60;/p&#62;</description>
</item>

</channel>
</rss>
