<?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 User Favorites: startribe</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress Support Forums User Favorites: startribe</description>
<language>en</language>
<pubDate>Fri, 09 Jan 2009 12:39:47 +0000</pubDate>

<item>
<title>chrishajer on "Plugin:  YouTube in bbPress"</title>
<link>http://bbpress.org/forums/topic/plugin-youtube-in-bbpress#post-16511</link>
<pubDate>Thu, 29 May 2008 14:31:19 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">16511@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;If you look at the plugin, it's pretty simple.  Line 12:&#60;br /&#62;
&#60;code&#62;if (bb_current_user_can(&#38;#39;administrate&#38;#39;)&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;If you want to allow other users to do everything that this plugin allows, you would need to change 'administrate' to whatever permission your users have.  I am not going to post exactly how to do it, since I think it could be a potential security hole, but that line right there is the key.  Take a look at the plugin and see what I mean.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/plugins/topic/admin-can-post-anything/&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/plugins/topic/admin-can-post-anything/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>bboysmaster on "Plugin:  YouTube in bbPress"</title>
<link>http://bbpress.org/forums/topic/plugin-youtube-in-bbpress#post-16505</link>
<pubDate>Thu, 29 May 2008 05:36:11 +0000</pubDate>
<dc:creator>bboysmaster</dc:creator>
<guid isPermaLink="false">16505@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;How to change it to all user can post embed object?
&#60;/p&#62;</description>
</item>
<item>
<title>andrew79 on "Plugin:  YouTube in bbPress"</title>
<link>http://bbpress.org/forums/topic/plugin-youtube-in-bbpress#post-11581</link>
<pubDate>Sat, 20 Oct 2007 16:47:33 +0000</pubDate>
<dc:creator>andrew79</dc:creator>
<guid isPermaLink="false">11581@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Great , Thanks trent
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "Plugin:  YouTube in bbPress"</title>
<link>http://bbpress.org/forums/topic/plugin-youtube-in-bbpress#post-11565</link>
<pubDate>Fri, 19 Oct 2007 19:02:10 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">11565@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I managed to destroy this one and with a server crash and just haven't rewrote it yet, but if you head over to &#60;a href=&#34;http://bbpress.org/plugins/topic/55?replies=8&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/plugins/topic/55?replies=8&#60;/a&#62; that plugin will do the same thing ;)&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>andrew79 on "Plugin:  YouTube in bbPress"</title>
<link>http://bbpress.org/forums/topic/plugin-youtube-in-bbpress#post-11525</link>
<pubDate>Thu, 18 Oct 2007 18:05:51 +0000</pubDate>
<dc:creator>andrew79</dc:creator>
<guid isPermaLink="false">11525@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Link doesnt work. 404 error. Anyone have the plugin somewhere else?
&#60;/p&#62;</description>
</item>
<item>
<title>Detective on "Plugin:  YouTube in bbPress"</title>
<link>http://bbpress.org/forums/topic/plugin-youtube-in-bbpress#post-11098</link>
<pubDate>Tue, 25 Sep 2007 17:48:30 +0000</pubDate>
<dc:creator>Detective</dc:creator>
<guid isPermaLink="false">11098@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I use this plugin ported from a Vanilla Extension:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
/*
Plugin Name: Video Tags
Plugin URI: &#60;a href=&#34;http://lussumo.com/addons/index.php?PostBackAction=AddOn&#38;#38;AddOnID=33&#34; rel=&#34;nofollow&#34;&#62;http://lussumo.com/addons/index.php?PostBackAction=AddOn&#38;#38;AddOnID=33&#60;/a&#62;
Description: Ported from SirNot&#38;#39;s HtmlFormatter for Vanilla
Author URI:
Version: 0.1
*/

//allow youtube and google videos to be posted, tags are:
//&#38;lt;video type=&#38;quot;google&#38;quot;&#38;gt;docid&#38;lt;/video&#38;gt; (google video) -or-
//&#38;lt;video type=&#38;quot;youtube&#38;quot;&#38;gt;video id&#38;lt;/video&#38;gt; (youtube) -or-

function video_embed($texto){
                $sReturn = preg_replace_callback(
                                &#38;#39;/&#38;lt;video(?&#38;gt;\s+)type=([&#38;quot;\&#38;#39;&#60;/code&#62;&#60;/pre&#62;
])((?&#38;gt;\w+))\1(?&#38;gt;\s*)&#38;gt;([A-Za-z\-_\d]+?)&#38;lt;\/video&#38;gt;/is',&#60;br /&#62;
                                'VideoLink',&#60;br /&#62;
                                $texto&#60;br /&#62;
                        );&#60;br /&#62;
                return $sReturn;&#60;br /&#62;
        }&#60;/p&#62;
&#60;p&#62;        function VideoLink($Matches)&#60;br /&#62;
        {&#60;br /&#62;
                $Type = strtolower(trim($Matches&#60;a href=&#34;http://trac.bbpress.org/changeset/2&#34;&#62;[2]&#60;/a&#62;));&#60;br /&#62;
                $ID = $Matches&#60;a href=&#34;http://trac.bbpress.org/changeset/3&#34;&#62;[3]&#60;/a&#62;;&#60;/p&#62;
&#60;p&#62;                switch($Type)&#60;br /&#62;
                {&#60;br /&#62;
                        case 'google' : return ('&#38;lt;embed style=&#34;width: 400px; height: 326px;&#34; id=&#34;VideoPlayback&#34; '.&#60;br /&#62;
                                'type=&#34;application/x-shockwave-flash&#34; src=&#34;http://video.google.com/googleplayer.swf?docId='.$ID.'&#34;&#38;gt;&#38;lt;/embed&#38;gt;');&#60;/p&#62;
&#60;p&#62;                        case 'youtube' : return ('&#38;lt;object width=&#34;425&#34; height=&#34;350&#34;&#38;gt;&#38;lt;param name=&#34;movie&#34; value=&#34;http://www.youtube.com/v/'.$ID.'&#34;&#38;gt;&#38;lt;/param&#38;gt;'.&#60;br /&#62;
                                '&#38;lt;embed src=&#34;http://www.youtube.com/v/'.$ID.'&#34; type=&#34;application/x-shockwave-flash&#34; width=&#34;425&#34; height=&#34;350&#34;&#38;gt;&#38;lt;/embed&#38;gt;'.&#60;br /&#62;
                                '&#38;lt;/object&#38;gt;');&#60;/p&#62;
&#60;p&#62;                        default : return $Matches&#60;a href=&#34;http://trac.bbpress.org/changeset/0&#34;&#62;[0]&#60;/a&#62;;&#60;br /&#62;
                }&#60;br /&#62;
        }&#60;/p&#62;
&#60;p&#62;function allow_video_tags( $tags ) {&#60;br /&#62;
        $tags['video'] = array('type' =&#38;gt; array('maxlen' =&#38;gt; 10));&#60;br /&#62;
        return $tags;&#60;br /&#62;
}                                         &#60;/p&#62;
&#60;p&#62;add_filter( 'bb_allowed_tags', 'allow_video_tags' );&#60;br /&#62;
add_filter( 'post_text', 'video_embed' );&#60;/p&#62;
&#60;p&#62;?&#38;gt;&#60;br /&#62;
`&#60;/p&#62;
&#60;p&#62;It allows you to embed video only from YT or Google Video.
&#60;/p&#62;</description>
</item>
<item>
<title>chanzero on "Plugin:  YouTube in bbPress"</title>
<link>http://bbpress.org/forums/topic/plugin-youtube-in-bbpress#post-11086</link>
<pubDate>Mon, 24 Sep 2007 21:40:05 +0000</pubDate>
<dc:creator>chanzero</dc:creator>
<guid isPermaLink="false">11086@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;i don't think it's just that link the entire plugin database seems to be down. but hopefully back up soon?
&#60;/p&#62;</description>
</item>
<item>
<title>intellivision on "Plugin:  YouTube in bbPress"</title>
<link>http://bbpress.org/forums/topic/plugin-youtube-in-bbpress#post-11085</link>
<pubDate>Mon, 24 Sep 2007 20:55:59 +0000</pubDate>
<dc:creator>intellivision</dc:creator>
<guid isPermaLink="false">11085@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Anyone have allow-youtube.zip? The link at the top is 404'ing.&#60;/p&#62;
&#60;p&#62;Thx
&#60;/p&#62;</description>
</item>
<item>
<title>chanzero on "Plugin:  YouTube in bbPress"</title>
<link>http://bbpress.org/forums/topic/plugin-youtube-in-bbpress#post-11084</link>
<pubDate>Mon, 24 Sep 2007 20:17:37 +0000</pubDate>
<dc:creator>chanzero</dc:creator>
<guid isPermaLink="false">11084@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I second nolageek's request :)
&#60;/p&#62;</description>
</item>
<item>
<title>nolageek on "Plugin:  YouTube in bbPress"</title>
<link>http://bbpress.org/forums/topic/plugin-youtube-in-bbpress#post-10598</link>
<pubDate>Thu, 30 Aug 2007 12:48:09 +0000</pubDate>
<dc:creator>nolageek</dc:creator>
<guid isPermaLink="false">10598@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;has anyone tried hacking this to limit the types of embeds.. say, make sure it's only from x-tube/youtube/etc... maybe a url check?
&#60;/p&#62;</description>
</item>
<item>
<title>Beer on "Plugin:  YouTube in bbPress"</title>
<link>http://bbpress.org/forums/topic/plugin-youtube-in-bbpress#post-8778</link>
<pubDate>Sun, 08 Jul 2007 18:50:42 +0000</pubDate>
<dc:creator>Beer</dc:creator>
<guid isPermaLink="false">8778@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Testing it out here:&#60;br /&#62;
&#60;a href=&#34;http://www.grindhouse.com/forums/topic/31&#34; rel=&#34;nofollow&#34;&#62;http://www.grindhouse.com/forums/topic/31&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Will come in handy for the site as it grows.  Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "Plugin:  YouTube in bbPress"</title>
<link>http://bbpress.org/forums/topic/plugin-youtube-in-bbpress#post-7703</link>
<pubDate>Mon, 28 May 2007 16:08:29 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">7703@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;How does that help integrate youtube into bbPress?    That is just a site that now allows its members to integrate youtube into their site.    I would recommend just using this one.&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>startribe on "Plugin:  YouTube in bbPress"</title>
<link>http://bbpress.org/forums/topic/plugin-youtube-in-bbpress#post-7697</link>
<pubDate>Mon, 28 May 2007 07:24:22 +0000</pubDate>
<dc:creator>startribe</dc:creator>
<guid isPermaLink="false">7697@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Beautiful! It works, thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "Plugin:  YouTube in bbPress"</title>
<link>http://bbpress.org/forums/topic/plugin-youtube-in-bbpress#post-7633</link>
<pubDate>Thu, 24 May 2007 17:13:55 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">7633@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Off the top of my head, change this line:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;if (bb_current_user_can(&#38;#39;administrate&#38;#39;)) :&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;to something like this:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;if (bb_current_user_can(&#38;#39;moderate&#38;#39;)) :&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;That should get it working!&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>startribe on "Plugin:  YouTube in bbPress"</title>
<link>http://bbpress.org/forums/topic/plugin-youtube-in-bbpress#post-7613</link>
<pubDate>Thu, 24 May 2007 00:37:36 +0000</pubDate>
<dc:creator>startribe</dc:creator>
<guid isPermaLink="false">7613@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey Trent,&#60;/p&#62;
&#60;p&#62;How can I set this so Moderators can also post youtube videos.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Orion
&#60;/p&#62;</description>
</item>
<item>
<title>startribe on "bbpress wysiwyg status"</title>
<link>http://bbpress.org/forums/topic/bbpress-wysiwyg-status#post-7431</link>
<pubDate>Mon, 14 May 2007 06:46:56 +0000</pubDate>
<dc:creator>startribe</dc:creator>
<guid isPermaLink="false">7431@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Awesome, quicktags will do for now... thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "bbpress wysiwyg status"</title>
<link>http://bbpress.org/forums/topic/bbpress-wysiwyg-status#post-7336</link>
<pubDate>Thu, 10 May 2007 15:20:18 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">7336@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You can hack your WYSIWYG plugin editor in fairly easy apparently but there's no plugin released to do that to my knowledge. &#60;a href=&#34;http://bbpress.org/plugins/topic/14&#34;&#62;Quicktags&#60;/a&#62; does the job without all that annoying &#60;em&#62;incredible slowness&#60;/em&#62;.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/forums/topic/14?replies=39#post-203&#34;&#62;Great emoticon plugin&#60;/a&#62;, unfortunately not available through the plugin browser.
&#60;/p&#62;</description>
</item>
<item>
<title>metalvalley on "bbpress wysiwyg status"</title>
<link>http://bbpress.org/forums/topic/bbpress-wysiwyg-status#post-7333</link>
<pubDate>Thu, 10 May 2007 10:03:38 +0000</pubDate>
<dc:creator>metalvalley</dc:creator>
<guid isPermaLink="false">7333@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'd like to see a smilie plugin like wp-grins for wordpress!
&#60;/p&#62;</description>
</item>
<item>
<title>startribe on "bbpress wysiwyg status"</title>
<link>http://bbpress.org/forums/topic/bbpress-wysiwyg-status#post-7323</link>
<pubDate>Wed, 09 May 2007 17:35:28 +0000</pubDate>
<dc:creator>startribe</dc:creator>
<guid isPermaLink="false">7323@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Any word on a simple WYSIWYG plugin  or feature for bbPress. Something similar to what is on  Wordpress support forums would be awesome.
&#60;/p&#62;</description>
</item>
<item>
<title>startribe on "sticky to latest discussions"</title>
<link>http://bbpress.org/forums/topic/sticky-to-latest-discussions#post-6895</link>
<pubDate>Sat, 21 Apr 2007 18:32:07 +0000</pubDate>
<dc:creator>startribe</dc:creator>
<guid isPermaLink="false">6895@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Beautiful, it worked, thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>Null on "sticky to latest discussions"</title>
<link>http://bbpress.org/forums/topic/sticky-to-latest-discussions#post-6884</link>
<pubDate>Sat, 21 Apr 2007 08:06:31 +0000</pubDate>
<dc:creator>Null</dc:creator>
<guid isPermaLink="false">6884@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Click: (to front) in: [Stick topic (to front)] and not the [Stick topic...] part
&#60;/p&#62;</description>
</item>
<item>
<title>startribe on "sticky to latest discussions"</title>
<link>http://bbpress.org/forums/topic/sticky-to-latest-discussions#post-6881</link>
<pubDate>Sat, 21 Apr 2007 03:28:59 +0000</pubDate>
<dc:creator>startribe</dc:creator>
<guid isPermaLink="false">6881@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Not sure if I was completely clear on this one. If you view the bbPress forum page, then under the latest discussions there are stickies. I am not sure if this a feature unique to the forum located here, but when I turn a topic into a sticky it only sticks inside the forum it is registered, and it doesn't stick in the latest discussion section (like the stickies on this forum's latest discussions).&#60;/p&#62;
&#60;p&#62;Thanks for the help.
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "sticky to latest discussions"</title>
<link>http://bbpress.org/forums/topic/sticky-to-latest-discussions#post-6880</link>
<pubDate>Sat, 21 Apr 2007 00:28:57 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">6880@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hello Individual,&#60;/p&#62;
&#60;p&#62;are you using the Latest Discussions plugin? There is no simple switch to flick that I know of.&#60;br /&#62;
The way to do it I think is to find all stickies - perhaps there's an API function, perhaps you need a quick database query - output them, count them and output the remaining number of threads the way it's done now. You could work that into the current plugin. If you don't want to get your hands dirty, perhaps someone will do it for you. :)&#60;/p&#62;
&#60;p&#62;No problem,&#60;br /&#62;
fel
&#60;/p&#62;</description>
</item>
<item>
<title>startribe on "sticky to latest discussions"</title>
<link>http://bbpress.org/forums/topic/sticky-to-latest-discussions#post-6876</link>
<pubDate>Fri, 20 Apr 2007 18:13:28 +0000</pubDate>
<dc:creator>startribe</dc:creator>
<guid isPermaLink="false">6876@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey Community,&#60;/p&#62;
&#60;p&#62;I created a sticky that works inside a forum, but how do I get it to work in the latest discussions area?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Orion
&#60;/p&#62;</description>
</item>
<item>
<title>Atsutane on "Latest Discussion Error"</title>
<link>http://bbpress.org/forums/topic/latest-discussion-error#post-6440</link>
<pubDate>Fri, 06 Apr 2007 09:00:40 +0000</pubDate>
<dc:creator>Atsutane</dc:creator>
<guid isPermaLink="false">6440@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Glad it work for you. For some reason i notice the default plugin setup not work on some server. Fix the problem already.
&#60;/p&#62;</description>
</item>
<item>
<title>startribe on "Latest Discussion Error"</title>
<link>http://bbpress.org/forums/topic/latest-discussion-error#post-6433</link>
<pubDate>Fri, 06 Apr 2007 00:26:39 +0000</pubDate>
<dc:creator>startribe</dc:creator>
<guid isPermaLink="false">6433@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey Atsutane,&#60;/p&#62;
&#60;p&#62;I was just going to post that I figured it out. On my last set up I was using a dedicated server with a local host for the DB, but this time I was running into an error with shared server and externally hosted DB. With the dedicated server I simply used a path in the BB Press Location field. When using a simple path on my shared server I was given the error, but when I changed it to the full url (http://mysite/) the plugin worked!&#60;/p&#62;
&#60;p&#62;Thanks for such a great plugin, one of my favorites!&#60;/p&#62;
&#60;p&#62;Best,&#60;br /&#62;
Orion
&#60;/p&#62;</description>
</item>
<item>
<title>Atsutane on "Latest Discussion Error"</title>
<link>http://bbpress.org/forums/topic/latest-discussion-error#post-6432</link>
<pubDate>Fri, 06 Apr 2007 00:13:22 +0000</pubDate>
<dc:creator>Atsutane</dc:creator>
<guid isPermaLink="false">6432@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The setting is missing. U need to configure the setting first inside the option page.
&#60;/p&#62;</description>
</item>
<item>
<title>startribe on "Forum Start Date"</title>
<link>http://bbpress.org/forums/topic/forum-start-date#post-6431</link>
<pubDate>Fri, 06 Apr 2007 00:10:49 +0000</pubDate>
<dc:creator>startribe</dc:creator>
<guid isPermaLink="false">6431@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Worked :)&#60;br /&#62;
Thanks again Trent!&#60;br /&#62;
Best,&#60;br /&#62;
Orion
&#60;/p&#62;</description>
</item>
<item>
<title>startribe on "Latest Discussion Error"</title>
<link>http://bbpress.org/forums/topic/latest-discussion-error#post-6430</link>
<pubDate>Thu, 05 Apr 2007 23:45:00 +0000</pubDate>
<dc:creator>startribe</dc:creator>
<guid isPermaLink="false">6430@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey Community,&#60;/p&#62;
&#60;p&#62;I am starting up another site, and I am setting up the Latest Discussions Plugin. I have installed and integrated WP &#38;#38; BB. Once I activate the plugin and use the call for the latest discussion on the wordpress page I am given this error:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;WordPress database error: [You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near &#38;#39;&#38;#39; at line 1]
SELECT * FROM topics WHERE topic_status = 0 ORDER BY topic_time DESC LIMIT&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Any ideas what might be going on here?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
Orion
&#60;/p&#62;</description>
</item>
<item>
<title>startribe on "Forum Start Date"</title>
<link>http://bbpress.org/forums/topic/forum-start-date#post-6384</link>
<pubDate>Thu, 05 Apr 2007 00:30:23 +0000</pubDate>
<dc:creator>startribe</dc:creator>
<guid isPermaLink="false">6384@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;beautiful, thanks Trent, I will give it a try.&#60;/p&#62;
&#60;p&#62;Best,&#60;br /&#62;
Orion
&#60;/p&#62;</description>
</item>

</channel>
</rss>
