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

<item>
<title>joannyjb on "Paragraph tag after TinyMCE"</title>
<link>http://bbpress.org/forums/topic/paragraph-tag-after-tinymce#post-20123</link>
<pubDate>Wed, 22 Oct 2008 10:41:38 +0000</pubDate>
<dc:creator>joannyjb</dc:creator>
<guid isPermaLink="false">20123@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have my answer :&#60;/p&#62;
&#60;p&#62;file : bb-include&#38;gt;template-fonction.php&#60;br /&#62;
search : &#34;bb_allowed_tag&#34;&#60;br /&#62;
Include :&#60;/p&#62;
&#60;p&#62;&#60;code&#62;// Add Tags with allow_tags&#60;/p&#62;
&#60;p&#62;    function allow_more_tags( $tags ) {&#60;br /&#62;
    $tags['p'] = array('style' =&#38;gt; array());&#60;br /&#62;
    $tags['span'] = array('style' =&#38;gt; array());&#60;br /&#62;
    $tags['b'] = array('style' =&#38;gt; array());&#60;br /&#62;
    $tags['em'] = array('style' =&#38;gt; array());&#60;br /&#62;
    $tags['ol'] = array('style' =&#38;gt; array());&#60;/p&#62;
&#60;p&#62;    return $tags;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;    add_filter( 'bb_allowed_tags', 'allow_more_tags' ); &#60;/code&#62;&#60;/p&#62;
&#60;p&#62;under  this...&#60;/p&#62;
&#60;p&#62;&#60;code&#62;// format=list or array( 'format' =&#38;gt; 'list' )&#60;br /&#62;
function get_allowed_markup( $args = '' ) {&#60;br /&#62;
	$args = wp_parse_args( $args, array('format' =&#38;gt; 'flat') );&#60;br /&#62;
	extract($args, EXTR_SKIP);&#60;/p&#62;
&#60;p&#62;	$tags = bb_allowed_tags();&#60;br /&#62;
	unset($tags['pre'], $tags['br']);&#60;br /&#62;
	$tags = array_keys($tags);&#60;/p&#62;
&#60;p&#62;	switch ( $format ) :&#60;br /&#62;
	case 'array' :&#60;br /&#62;
		$r = $tags;&#60;br /&#62;
		break;&#60;br /&#62;
	case 'list' :&#60;br /&#62;
		$r = &#34;&#38;lt;ul class='allowed-markup'&#38;gt;\n\t
&#60;li&#62;&#34;;&#60;br /&#62;
		$r .= join(&#34;&#60;/li&#62;
\n\t
&#60;li&#62;&#34;, $tags);&#60;br /&#62;
		$r .= &#34;&#60;/li&#62;
\n\n&#34;;&#60;br /&#62;
		break;&#60;br /&#62;
	default :&#60;br /&#62;
		$r = join(' ', $tags);&#60;br /&#62;
		break;&#60;br /&#62;
	endswitch;&#60;br /&#62;
	return apply_filters( 'get_allowed_markup', $r, $format );&#60;br /&#62;
}&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>joannyjb on "Paragraph tag after TinyMCE"</title>
<link>http://bbpress.org/forums/topic/paragraph-tag-after-tinymce#post-20121</link>
<pubDate>Wed, 22 Oct 2008 09:19:47 +0000</pubDate>
<dc:creator>joannyjb</dc:creator>
<guid isPermaLink="false">20121@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;How I can use it?&#60;br /&#62;
Where I have to insert it?&#60;/p&#62;
&#60;p&#62;Thx !
&#60;/p&#62;</description>
</item>
<item>
<title>harryworld on "Paragraph tag after TinyMCE"</title>
<link>http://bbpress.org/forums/topic/paragraph-tag-after-tinymce#post-15953</link>
<pubDate>Sat, 03 May 2008 15:39:48 +0000</pubDate>
<dc:creator>harryworld</dc:creator>
<guid isPermaLink="false">15953@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I made use of a plugin to add tags&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;
function allow_more_tags( $tags ) {&#60;br /&#62;
	$tags['p'] = array('style' =&#38;gt; array());&#60;br /&#62;
	$tags['span'] = array('style' =&#38;gt; array());&#60;br /&#62;
	return $tags;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;add_filter( 'bb_allowed_tags', 'allow_more_tags' );
&#60;/p&#62;&#60;/blockquote&#62;</description>
</item>
<item>
<title>svenl77 on "Paragraph tag after TinyMCE"</title>
<link>http://bbpress.org/forums/topic/paragraph-tag-after-tinymce#post-15920</link>
<pubDate>Thu, 01 May 2008 21:21:39 +0000</pubDate>
<dc:creator>svenl77</dc:creator>
<guid isPermaLink="false">15920@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;how you did this?
&#60;/p&#62;</description>
</item>
<item>
<title>harryworld on "Paragraph tag after TinyMCE"</title>
<link>http://bbpress.org/forums/topic/paragraph-tag-after-tinymce#post-15919</link>
<pubDate>Thu, 01 May 2008 19:06:22 +0000</pubDate>
<dc:creator>harryworld</dc:creator>
<guid isPermaLink="false">15919@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I found that it is as simple as to add the &#38;lt;p&#38;gt; tag to the allowed tags
&#60;/p&#62;</description>
</item>
<item>
<title>harryworld on "Paragraph tag after TinyMCE"</title>
<link>http://bbpress.org/forums/topic/paragraph-tag-after-tinymce#post-15876</link>
<pubDate>Wed, 30 Apr 2008 04:14:37 +0000</pubDate>
<dc:creator>harryworld</dc:creator>
<guid isPermaLink="false">15876@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have successfully integrated TinyMCE to my editor in bbpress, which I found that is so easy.&#60;/p&#62;
&#60;p&#62;However, when doing the submit, TinyMCE submits the HTML code on behind to bbpress. I found that each line TinyMCE created a &#38;lt;p&#38;gt;...&#38;lt;/p&#38;gt; tags, but bbpress is not allowing this. Finally, &#38;lt;p&#38;gt;&#38;lt;/p&#38;gt; comes to the screen when viewing the post.&#60;/p&#62;
&#60;p&#62;Is there any workaround for this?
&#60;/p&#62;</description>
</item>
<item>
<title>nitesher on "Looking Plugin Consulting Help"</title>
<link>http://bbpress.org/forums/topic/looking-plugin-consulting-help#post-14350</link>
<pubDate>Sat, 08 Mar 2008 15:32:11 +0000</pubDate>
<dc:creator>nitesher</dc:creator>
<guid isPermaLink="false">14350@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I'm looking for someone to build a plugin that will replace the existing text editor with a flash GUI editor located here: &#60;a href=&#34;http://flexcubed.com/component_details.php?id=ba7f51548179725f11c9786a5e2853df&#34; rel=&#34;nofollow&#34;&#62;http://flexcubed.com/component_details.php?id=ba7f51548179725f11c9786a5e2853df&#60;/a&#62;&#60;br /&#62;
The output should be .swf file on the topic post.  If you're interested in developing this plugin please contact me with your costs to do the plugin. Once it's created I'd be happy to share it back with the community. thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>Null on "I added WYSIWYG to my bbpress"</title>
<link>http://bbpress.org/forums/topic/i-added-wysiwyg-to-my-bbpress#post-4024</link>
<pubDate>Mon, 05 Feb 2007 10:17:29 +0000</pubDate>
<dc:creator>Null</dc:creator>
<guid isPermaLink="false">4024@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hmm I was working on such a plugin too. Also looked at FCKeditor, but it is kinda big and doesn't work with Opera. I haven't had good experience with TinyMCE, so I've decided to use an opensource WYSIWYG.&#60;/p&#62;
&#60;p&#62;It aint finished and if these other editors work good, there is no need for another one.
&#60;/p&#62;</description>
</item>
<item>
<title>yoyo on "I added WYSIWYG to my bbpress"</title>
<link>http://bbpress.org/forums/topic/i-added-wysiwyg-to-my-bbpress#post-4004</link>
<pubDate>Mon, 05 Feb 2007 02:57:30 +0000</pubDate>
<dc:creator>yoyo</dc:creator>
<guid isPermaLink="false">4004@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'll try to add TinyMCE in the morning.&#60;br /&#62;
I hope i can figure it out :-)
&#60;/p&#62;</description>
</item>
<item>
<title>JohanMaelson on "I added WYSIWYG to my bbpress"</title>
<link>http://bbpress.org/forums/topic/i-added-wysiwyg-to-my-bbpress#post-1646</link>
<pubDate>Mon, 27 Nov 2006 00:20:13 +0000</pubDate>
<dc:creator>JohanMaelson</dc:creator>
<guid isPermaLink="false">1646@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;heu dudes ... it's a TinyMCE ability to use WYSIWYG to enter URL of you r picture and add it to textarea ... i'm just edit some code in a image plugin for bbpress for compitability within html code which TinyMCE add.&#60;/p&#62;
&#60;p&#62;p.S image already has been uploaded ... but for other reason .. you may use another wysiwyg which provided image uploading ... or get commercial version of TinyMCE.
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "I added WYSIWYG to my bbpress"</title>
<link>http://bbpress.org/forums/topic/i-added-wysiwyg-to-my-bbpress#post-1589</link>
<pubDate>Thu, 23 Nov 2006 06:16:26 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">1589@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I would imagine with the image plugin at &#60;a href=&#34;http://bbpress.org/plugins/&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/plugins/&#60;/a&#62; because I don't think anyone else has created the image side of the javascript unless I am mistaken!&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>sing on "I added WYSIWYG to my bbpress"</title>
<link>http://bbpress.org/forums/topic/i-added-wysiwyg-to-my-bbpress#post-1588</link>
<pubDate>Thu, 23 Nov 2006 06:11:02 +0000</pubDate>
<dc:creator>sing</dc:creator>
<guid isPermaLink="false">1588@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi JohanMael,&#60;/p&#62;
&#60;p&#62;I noticed you can post the image &#60;a href=&#34;http://www.faces.kz/UCHITES_DETI_MOI.jpg&#34; rel=&#34;nofollow&#34;&#62;http://www.faces.kz/UCHITES_DETI_MOI.jpg&#60;/a&#62; in your &#60;a href=&#34;http://forum.faces.kz/topic/1?replies=10&#34; rel=&#34;nofollow&#34;&#62;http://forum.faces.kz/topic/1?replies=10&#60;/a&#62;&#60;br /&#62;
Could you please tell me how to do that?&#60;/p&#62;
&#60;p&#62;Thanks &#38;#38; Regards,&#60;br /&#62;
Sing
&#60;/p&#62;</description>
</item>
<item>
<title>JohanMaelson on "I added WYSIWYG to my bbpress"</title>
<link>http://bbpress.org/forums/topic/i-added-wysiwyg-to-my-bbpress#post-1523</link>
<pubDate>Sat, 18 Nov 2006 22:26:05 +0000</pubDate>
<dc:creator>JohanMaelson</dc:creator>
<guid isPermaLink="false">1523@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have added Wysiwyg to bbpress as a first. I choosing TinyMCE dunno why ... maybe cuz i haven't ever use this one. But it's relay roxx nice organization and realy lightweight. Author of this subject using fckeditorm .... but this wysiwyg so slow ... oh meine god ...&#60;br /&#62;
After inserting to my bbpress TinyMCE ... i'm starting to play within tags ... something doesn't works cuz BBPRESS cut out disallowed tags ... i thought that i can just edit some code in bbpress plugin for image tag. After some manipulation my wysiwyg work's well but not good as i want :)))&#60;br /&#62;
you can check out my bbpress forum and skin which i make for it here &#60;a href=&#34;http://www.forum.faces.kz&#34; rel=&#34;nofollow&#34;&#62;www.forum.faces.kz&#60;/a&#62; &#60;/p&#62;
&#60;p&#62;all suggestion and questions send to johanmaelson at gmail dot com .. or post here i'll check this three :)&#60;/p&#62;
&#60;p&#62;links : &#60;a href=&#34;http://tinymce.moxiecode.com/&#34; rel=&#34;nofollow&#34;&#62;http://tinymce.moxiecode.com/&#60;/a&#62; - TinyMCE ;)&#60;br /&#62;
forum page within TinyMCE : &#60;a href=&#34;http://forum.faces.kz/topic/1?replies=10&#34; rel=&#34;nofollow&#34;&#62;http://forum.faces.kz/topic/1?replies=10&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>circuit on "I added WYSIWYG to my bbpress"</title>
<link>http://bbpress.org/forums/topic/i-added-wysiwyg-to-my-bbpress#post-1518</link>
<pubDate>Sat, 18 Nov 2006 17:44:15 +0000</pubDate>
<dc:creator>circuit</dc:creator>
<guid isPermaLink="false">1518@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;thanks for the instructions. unfortunately it doesn't work for me.&#60;/p&#62;
&#60;p&#62;on the page you linked to, there are two pieces of advice as to where to put the editor files:&#60;/p&#62;
&#60;p&#62;&#34;create a directory in the root directory called &#34;editor&#34; and then upload the same directory from their download page.  Then drop the .js files into your root, and place the fckeditor.php file where ever you want (i chose the my-templates directory) and call it accordingly.&#34;&#60;/p&#62;
&#60;p&#62;or&#60;/p&#62;
&#60;p&#62;&#34;unrar FCKeditor_2.3.2.zip into my-templates&#34;&#60;/p&#62;
&#60;p&#62;Wherever I put it, it doesn't seem to work. I have tried a directory within my-templates, dropping it directly into my-templates, and putting the relevant files in the root with my-templates holding the PHP file. In all cases I edited the path in the replacement code accordingly.&#60;/p&#62;
&#60;p&#62;I think it's including the PHP file OK, but I guess there is an iframe where the FCKEditor box should be, and that is just pulling the home page of my site (i.e. a 404 error, as far as I can tell).
&#60;/p&#62;</description>
</item>
<item>
<title>wabler on "I added WYSIWYG to my bbpress"</title>
<link>http://bbpress.org/forums/topic/i-added-wysiwyg-to-my-bbpress#post-1344</link>
<pubDate>Sun, 12 Nov 2006 19:48:06 +0000</pubDate>
<dc:creator>wabler</dc:creator>
<guid isPermaLink="false">1344@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This shows you how I did it.  It is fairly easy, and I just use the fckeditorm, which i am very fond of.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://scripts.forumrow.com/topic.php?id=9&#38;#38;replies=1&#34; rel=&#34;nofollow&#34;&#62;http://scripts.forumrow.com/topic.php?id=9&#38;#38;replies=1&#60;/a&#62;
&#60;/p&#62;</description>
</item>

</channel>
</rss>
