<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Module: Social Media Sharing</title>
        <description> Hello,

Because I couldn&amp;#039;t find anything that performed this function, I created a simple module that will share posts to social network sites. It is currently limited to Twitter, Facebook, and Google+. This module creates links on the post pages that allow you to share a post to the respective sites. It does NOT provide Like or +1 functionality, as I didn&amp;#039;t really think this was particularly useful for this. I doubt that it&amp;#039;s well written. I&amp;#039;m not really a programmer, but I&amp;#039;ve done a little with Phorum in the past, and I wanted to add this functionality to my phorum installation.

It does require adding a hook to the template, at least that&amp;#039;s the only way I could figure out how to do what I wanted. You can use it to add social network links in individual posts or entire threads currently.

I&amp;#039;d like to create an easy way to manage the social networks that can be used and a way to add the links to the list pages. Perhaps someday I will make some changes to add these features. I don&amp;#039;t spend a lot of time with this, so I can&amp;#039;t see when or if that will be possible. If anyone wants to make changes to support these features, feel free to do so.


README:

Social Media Sharing Module

Instructions:

1. Install module into mods directory.
2. Make necessary changes to read.tpl, read_hybrid.tpl, and read_threads.tpl (Emerald based templates):

   read.tpl, read_hybrid.tpl
   -------------------------

** To create the social links in the individual message boxes next to the reply/quote buttons
   Find:
   {IF MESSAGES-&amp;gt;URL-&amp;gt;REPORT}&amp;lt;a class=&amp;quot;icon icon-exclamation&amp;quot; href=&amp;quot;{MESSAGES-&amp;gt;URL-&amp;gt;REPORT}&amp;quot;&amp;gt;{LANG-&amp;gt;Report}&amp;lt;/a&amp;gt;{/IF}

   On a new line after this, add:
   {HOOK &amp;quot;social_share&amp;quot; MESSAGES}


** To create the social links for the entire topic near the print/follow/rss/moderator functions
   Find:
   {IF TOPIC-&amp;gt;URL-&amp;gt;MOVE}&amp;lt;a class=&amp;quot;icon icon-move&amp;quot; href=&amp;quot;{TOPIC-&amp;gt;URL-&amp;gt;MOVE}&amp;quot;&amp;gt;{LANG-&amp;gt;MoveThread}&amp;lt;/a&amp;gt;{/IF}
   {/IF}

   On a new line after this, add:
   {HOOK &amp;quot;social_share&amp;quot; TOPIC}

   read_threads.tpl
   -------------------------

** To create the social links in the individual message boxes next to the reply/quote buttons
   Find:
   {IF MESSAGE-&amp;gt;URL-&amp;gt;REPORT}&amp;lt;a class=&amp;quot;icon icon-exclamation&amp;quot; href=&amp;quot;{MESSAGE-&amp;gt;URL-&amp;gt;REPORT}&amp;quot;&amp;gt;{LANG-&amp;gt;Report}&amp;lt;/a&amp;gt;{/IF}

   On a new line after this, add:
   {HOOK &amp;quot;social_share&amp;quot; MESSAGE}


** To create the social links for the entire topic near the print/follow/rss/moderator functions
   Find:
   {IF URL-&amp;gt;FEED}
        &amp;lt;a class=&amp;quot;icon icon-feed&amp;quot; href=&amp;quot;{URL-&amp;gt;FEED}&amp;quot;&amp;gt;{FEED}&amp;lt;/a&amp;gt;
   {/IF}

   On a new line after this, add:
   {HOOK &amp;quot;social_share&amp;quot; TOPIC}

3. For Facebook and Google+ sharing, I recommend selecting a site image that is reasonably sized 
   and adding it to phorum_directory/images. Then add the following line to Phorum Head Tags in 
   General settings:

   &amp;lt;link rel=&amp;quot;image_src&amp;quot; href=&amp;quot;[www.domain.name]; /&amp;gt;

   This will cause Facebook and Google+ to use that image for posts.
4. Configure options.
5. Enable module.

Adding social networks is not a trivial task at the moment. I&amp;#039;d like to include a much easier way 
to do so in the future, but I don&amp;#039;t know if time will permit it.


Changelog:
----------

2012-08-14	v1.0

-Original version created by Ray Tetzloff

</description>
        <link>https://www.phorum.org/support/read.php?62,151884,151884#msg-151884</link>
        <lastBuildDate>Tue, 08 Sep 2026 11:04:46 -0500</lastBuildDate>
        <generator>Phorum 6.0.4</generator>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,151884,161370#msg-161370</guid>
            <title>Re: Module: Social Media Sharing</title>
            <link>https://www.phorum.org/support/read.php?62,151884,161370#msg-161370</link>
            <description><![CDATA[ I installed this module, but instead of individual posts, I always get a link (in Facebook) to the entire list of topics.<br />
<br />
The forum read view is set to &quot;threaded&quot;.<br />
I made the required changes in read_threads.tpl, but still, I get the entire list of topics.<br />
<br />
Can anybody help, please?<br />
<br />
Andrej]]></description>
            <dc:creator>Andrej Kikelj</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Sun, 06 Nov 2016 12:20:53 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,151884,155205#msg-155205</guid>
            <title>Re: Module: Social Media Sharing</title>
            <link>https://www.phorum.org/support/read.php?62,151884,155205#msg-155205</link>
            <description><![CDATA[ Sorry to come back to a question that was asked more than one year ago.<br />
<br />
You can remove the smiley in the subject by using regular expressions. In the file social_share.php, look for the function social_share_mod_thread. After the line<br />
$subject = $message[&#039;subject&#039;];<br />
add the following one<br />
$subject = preg_replace(&quot;/&lt;img[^&gt;]+\&gt;/i&quot;, &quot; &quot;, $subject);<br />
The twitter code is then properly created.]]></description>
            <dc:creator>slashbin</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Thu, 31 Jul 2014 21:49:30 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,151884,153501#msg-153501</guid>
            <title>Re: Module: Social Media Sharing</title>
            <link>https://www.phorum.org/support/read.php?62,151884,153501#msg-153501</link>
            <description><![CDATA[ Don&#039;t use smileys in the subject (e.g. disallow them in the module) or get someone to fix the module (probably not easy to do).]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Wed, 27 Mar 2013 02:43:40 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,151884,153499#msg-153499</guid>
            <title>Re: Module: Social Media Sharing</title>
            <link>https://www.phorum.org/support/read.php?62,151884,153499#msg-153499</link>
            <description><![CDATA[ How do i fix it?]]></description>
            <dc:creator>White_Rabbit</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Wed, 27 Mar 2013 02:25:51 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,151884,153494#msg-153494</guid>
            <title>Re: Module: Social Media Sharing</title>
            <link>https://www.phorum.org/support/read.php?62,151884,153494#msg-153494</link>
            <description><![CDATA[ there is a smiley replaced in the twitter code and that breaks it.]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Mon, 25 Mar 2013 06:37:54 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,151884,153493#msg-153493</guid>
            <title>Re: Module: Social Media Sharing</title>
            <link>https://www.phorum.org/support/read.php?62,151884,153493#msg-153493</link>
            <description><![CDATA[ How did this happen?<br />
[<a href="http://www.bannedlikeproductions.com/read.php?6,629" target="_blank"  rel="nofollow">www.bannedlikeproductions.com</a>]<br />
<br />
The twitter link is all messed up but only pops up in a few threads?]]></description>
            <dc:creator>White_Rabbit</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Mon, 25 Mar 2013 06:36:27 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,151884,153477#msg-153477</guid>
            <title>Re: Module: Social Media Sharing</title>
            <link>https://www.phorum.org/support/read.php?62,151884,153477#msg-153477</link>
            <description><![CDATA[ Did you follow the readme?]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Thu, 21 Mar 2013 02:10:53 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,151884,153475#msg-153475</guid>
            <title>Re: Module: Social Media Sharing</title>
            <link>https://www.phorum.org/support/read.php?62,151884,153475#msg-153475</link>
            <description><![CDATA[ I installed this mod on my site and it doesnt show up.<br />
[<a href="http://www.bannedlikeproductions.com/list.php?6" target="_blank"  rel="nofollow">www.bannedlikeproductions.com</a>]<br />
<br />
Yes i turned it on in the ACP but the buttons are not showing.]]></description>
            <dc:creator>White_Rabbit</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Wed, 20 Mar 2013 22:28:37 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,151884,153117#msg-153117</guid>
            <title>Re: Module: Social Media Sharing</title>
            <link>https://www.phorum.org/support/read.php?62,151884,153117#msg-153117</link>
            <description><![CDATA[ I got such a file social_share.php:<br />
<br />
<br />
<br />
[code=&quot;php&quot;]<br />
&lt;?php<br />
<br />
if(!defined(&quot;PHORUM&quot;)) return;<br />
<br />
function social_share_mod_css_register($data) {<br />
<br />
    $data[&#039;register&#039;][] = array(<br />
        &#039;module&#039; =&gt; &#039;social_share&#039;,<br />
        &#039;where&#039;  =&gt; &#039;after&#039;,<br />
        &#039;source&#039; =&gt; &#039;file(mods/social_share/social_share.css)&#039;<br />
    );<br />
    return $data;<br />
}<br />
<br />
function social_share_mod_thread($message) {<br />
<br />
global $PHORUM;<br />
        // Format the read URL.<br />
        $url = phorum_get_url(<br />
            PHORUM_FOREIGN_READ_URL,<br />
            $message[&#039;forum_id&#039;], $message[&#039;thread&#039;], $message[&#039;message_id&#039;]<br />
        );<br />
<br />
        // Strip auth data from the URL, if availble.<br />
        if (isset($_POST[PHORUM_SESSION_LONG_TERM])) {<br />
            $url = preg_replace(<br />
                &#039;!,?&#039; . PHORUM_SESSION_LONG_TERM.&#039;=&#039; .<br />
                urlencode($_POST[PHORUM_SESSION_LONG_TERM]).&#039;!&#039;,<br />
                &#039;&#039;, $url<br />
            );<br />
        }<br />
<br />
      $url=urlencode($url);<br />
      $thread = $message[&#039;subject&#039;];<br />
      $body = $message[&#039;body&#039;];<br />
      $tweet = strip_tags($body);<br />
      $facebook = &quot;&#039;&amp;t=&#039;.$tweet&quot;;  <br />
      if (strlen($facebook)&gt;300)<br />
             {<br />
	      $facebook=substr($tweet, 0, 300).&#039; ...&#039;;<br />
	     }<br />
	  <br />
      if (strlen($tweet)&gt;140)<br />
	     {<br />
	      $tweet=substr($tweet, 0, 136).&#039; ...&#039;;<br />
	     }<br />
<br />
       $facebook=iconv(&quot;WINDOWS-1251&quot;,&quot;utf-8&quot;,$facebook);<br />
       $tweet=iconv(&quot;WINDOWS-1251&quot;,&quot;utf-8&quot;,$tweet);<br />
<br />
	if ( $PHORUM[&#039;social_share&#039;][&#039;share_twitter&#039;] == 1 )<br />
		{<br />
		 print &quot;&lt;a class=\&quot;icon icon-share-twitter\&quot; href=\&quot;[<a href="http://twitter.com/intent/tweet?source=sharethiscom&amp;text=&quot;.$tweet.&quot;&amp;url=&quot;.$url.&quot" target="_blank"  rel="nofollow">twitter.com</a>];\&quot;&quot;;<br />
	 	 if ( $PHORUM[&#039;social_share&#039;][&#039;link_new_window&#039;] == 1 )<br />
		 	print &quot; target=\&quot;_blank\&quot;&quot;;<br />
		 print &quot;&gt;Tweet&lt;/a&gt;&quot;;<br />
		}<br />
<br />
      if ( $PHORUM[&#039;social_share&#039;][&#039;share_facebook&#039;] == 1 )<br />
            {<br />
             print &quot;&lt;a class=\&quot;icon icon-share-facebook\&quot; href=\&quot;[<a href="https://www.facebook.com/sharer.php?u=&quot;.$url.$facebook.&quot" target="_blank"  rel="nofollow">www.facebook.com</a>];\&quot;&quot;;<br />
             if ( $PHORUM[&#039;social_share&#039;][&#039;link_new_window&#039;] == 1 )<br />
                  print &quot; target=\&quot;_blank\&quot;&quot;;<br />
             print &quot;&gt;Facebook&lt;/a&gt;&quot;;<br />
            }<br />
<br />
      if ( $PHORUM[&#039;social_share&#039;][&#039;share_google-plus&#039;] == 1 )<br />
            {<br />
             print &quot;&lt;a class=\&quot;icon icon-share-google-plus\&quot; href=\&quot;[<a href="https://plus.google.com/share?url=&quot;.$url.&quot" target="_blank"  rel="nofollow">plus.google.com</a>];\&quot;&quot;;<br />
             if ( $PHORUM[&#039;social_share&#039;][&#039;link_new_window&#039;] == 1 )<br />
                  print &quot; target=\&quot;_blank\&quot;&quot;;<br />
             print &quot;&gt;Google+&lt;/a&gt;&quot;;<br />
            }<br />
<br />
<br />
}<br />
?&gt;<br />
[/code]<br />
<br />
<br />
<br />
<br />
<br />
<br />
Not a lot of changes. Works as I need. Unfortunately the output to Google+ looks bad. Google+ does not support the transfer of the post in the link, as facebook or twitter. Google+ so I disconnect to the admin.<br />
What happened and how it works can be found here. [<a href="http://www.vanderboot.ru/phorum/read.php?8,650,page=2" target="_blank"  rel="nofollow">www.vanderboot.ru</a>] May be useful to someone :)]]></description>
            <dc:creator>al</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Thu, 17 Jan 2013 05:59:42 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,151884,153113#msg-153113</guid>
            <title>Re: Module: Social Media Sharing</title>
            <link>https://www.phorum.org/support/read.php?62,151884,153113#msg-153113</link>
            <description><![CDATA[ <span style="color:#0033CC">I changed a little mod for Twitter could be someone like</span><br />
<span style="color:#0033CC">file</span> <b>social_share.php</b><br />
$subject = $message[&#039;subject&#039;]; <span style="color:#0033CC">replace</span>  $subject = $message[&#039;body&#039;];<br />
<span style="color:#0033CC">further add strings =&gt;</span><br />
<br />
      $subject=iconv(&quot;WINDOWS-1251&quot;,&quot;utf-8&quot;,$subject);  <span style="color:#0033CC">// instead of WINDOWS-1251 set the code page that you have chosen for your forum</span><br />
      $tweet = strip_tags($subject);<br />
      if (strlen($tweet)&gt;140)<br />
	  {<br />
	       $tweet=substr($tweet, 0, 136).&#039; ...&#039;;<br />
	   }<br />
<br />
<span style="color:#0033CC">further =&gt;</span><br />
[code=&quot;php&quot;]<br />
print &quot;&lt;a class=\&quot;icon icon-share-twitter\&quot; href=\&quot;[<a href="http://twitter.com/intent/tweet?source=sharethiscom&amp;text=&quot;.$subject.&quot;&amp;url=&quot;.$url.&quot" target="_blank"  rel="nofollow">twitter.com</a>];\&quot;&quot;;<br />
[/code]<br />
<br />
<span style="color:#0033CC">replace</span><br />
[code=&quot;php&quot;]<br />
print &quot;&lt;a class=\&quot;icon icon-share-twitter\&quot; href=\&quot;[<a href="http://twitter.com/intent/tweet?source=sharethiscom&amp;text=&quot;.$tweet.&quot;&amp;url=&quot;.$url.&quot" target="_blank"  rel="nofollow">twitter.com</a>];\&quot;&quot;;<br />
[/code]<br />
<br />
<br />
<span style="color:#0033CC">This allows you to Tweet concrete post, using a flat list.  I still work on it.</span>]]></description>
            <dc:creator>al</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Wed, 16 Jan 2013 11:58:36 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,151884,153013#msg-153013</guid>
            <title>Re: Module: Social Media Sharing</title>
            <link>https://www.phorum.org/support/read.php?62,151884,153013#msg-153013</link>
            <description><![CDATA[ Using the Social Media Sharing module and the Smileys module together causes problems whenever Smileys are used on the subject line for me. Having a smiley in the subject line breaks the Twitter link generated by the Social Media Sharing module. Can anyone assist with fixing?]]></description>
            <dc:creator>stargazer77</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Tue, 01 Jan 2013 12:47:20 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,151884,152523#msg-152523</guid>
            <title>Re: Module: Social Media Sharing</title>
            <link>https://www.phorum.org/support/read.php?62,151884,152523#msg-152523</link>
            <description><![CDATA[ Well, there is no link to a single message if the forum read view is set to flat.]]></description>
            <dc:creator>Thomas Seifert</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Tue, 06 Nov 2012 02:37:18 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,151884,152517#msg-152517</guid>
            <title>Re: Module: Social Media Sharing</title>
            <link>https://www.phorum.org/support/read.php?62,151884,152517#msg-152517</link>
            <description><![CDATA[ I installed this module, but instead of individual posts, I always get a link (in facebook) to the entire topic. <br />
<br />
I validated my changes on read.tpl, and I´m sure I added this: {HOOK &quot;social_share&quot; MESSAGES} on the right place, but still, I get the entire topic.<br />
<br />
Any help will be really appreciated.]]></description>
            <dc:creator>MXnewbie</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Mon, 05 Nov 2012 14:30:23 -0600</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,151884,151896#msg-151896</guid>
            <title>Re: Module: Social Media Sharing</title>
            <link>https://www.phorum.org/support/read.php?62,151884,151896#msg-151896</link>
            <description><![CDATA[ Great work, thanks for sharing your module!]]></description>
            <dc:creator>Maurice Makaay</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Thu, 16 Aug 2012 09:38:21 -0500</pubDate>
        </item>
        <item>
            <guid>https://www.phorum.org/support/read.php?62,151884,151884#msg-151884</guid>
            <title>Module: Social Media Sharing</title>
            <link>https://www.phorum.org/support/read.php?62,151884,151884#msg-151884</link>
            <description><![CDATA[ Hello,<br />
<br />
Because I couldn&#039;t find anything that performed this function, I created a simple module that will share posts to social network sites. It is currently limited to Twitter, Facebook, and Google+. This module creates links on the post pages that allow you to share a post to the respective sites. It does NOT provide Like or +1 functionality, as I didn&#039;t really think this was particularly useful for this. I doubt that it&#039;s well written. I&#039;m not really a programmer, but I&#039;ve done a little with Phorum in the past, and I wanted to add this functionality to my phorum installation.<br />
<br />
It does require adding a hook to the template, at least that&#039;s the only way I could figure out how to do what I wanted. You can use it to add social network links in individual posts or entire threads currently.<br />
<br />
I&#039;d like to create an easy way to manage the social networks that can be used and a way to add the links to the list pages. Perhaps someday I will make some changes to add these features. I don&#039;t spend a lot of time with this, so I can&#039;t see when or if that will be possible. If anyone wants to make changes to support these features, feel free to do so.<br />
<br />
<pre class="bbcode">
README:

Social Media Sharing Module

Instructions:

1. Install module into mods directory.
2. Make necessary changes to read.tpl, read_hybrid.tpl, and read_threads.tpl (Emerald based templates):

   read.tpl, read_hybrid.tpl
   -------------------------

** To create the social links in the individual message boxes next to the reply/quote buttons
   Find:
   {IF MESSAGES-&gt;URL-&gt;REPORT}&lt;a class=&quot;icon icon-exclamation&quot; href=&quot;{MESSAGES-&gt;URL-&gt;REPORT}&quot;&gt;{LANG-&gt;Report}&lt;/a&gt;{/IF}

   On a new line after this, add:
   {HOOK &quot;social_share&quot; MESSAGES}


** To create the social links for the entire topic near the print/follow/rss/moderator functions
   Find:
   {IF TOPIC-&gt;URL-&gt;MOVE}&lt;a class=&quot;icon icon-move&quot; href=&quot;{TOPIC-&gt;URL-&gt;MOVE}&quot;&gt;{LANG-&gt;MoveThread}&lt;/a&gt;{/IF}
   {/IF}

   On a new line after this, add:
   {HOOK &quot;social_share&quot; TOPIC}

   read_threads.tpl
   -------------------------

** To create the social links in the individual message boxes next to the reply/quote buttons
   Find:
   {IF MESSAGE-&gt;URL-&gt;REPORT}&lt;a class=&quot;icon icon-exclamation&quot; href=&quot;{MESSAGE-&gt;URL-&gt;REPORT}&quot;&gt;{LANG-&gt;Report}&lt;/a&gt;{/IF}

   On a new line after this, add:
   {HOOK &quot;social_share&quot; MESSAGE}


** To create the social links for the entire topic near the print/follow/rss/moderator functions
   Find:
   {IF URL-&gt;FEED}
        &lt;a class=&quot;icon icon-feed&quot; href=&quot;{URL-&gt;FEED}&quot;&gt;{FEED}&lt;/a&gt;
   {/IF}

   On a new line after this, add:
   {HOOK &quot;social_share&quot; TOPIC}

3. For Facebook and Google+ sharing, I recommend selecting a site image that is reasonably sized 
   and adding it to phorum_directory/images. Then add the following line to Phorum Head Tags in 
   General settings:

   &lt;link rel=&quot;image_src&quot; href=&quot;[<a href="http://www.domain.name/images/icon-site.png&quot" target="_blank"  rel="nofollow">www.domain.name</a>]; /&gt;

   This will cause Facebook and Google+ to use that image for posts.
4. Configure options.
5. Enable module.

Adding social networks is not a trivial task at the moment. I&#039;d like to include a much easier way 
to do so in the future, but I don&#039;t know if time will permit it.</pre>
<br />
<pre class="bbcode">
Changelog:
----------

2012-08-14	v1.0

-Original version created by Ray Tetzloff

</pre>]]></description>
            <dc:creator>rtetzloff</dc:creator>
            <category>v5/v6 Modules/Add-Ons</category>
            <pubDate>Tue, 14 Aug 2012 23:16:52 -0500</pubDate>
        </item>
    </channel>
</rss>
