<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Fruits of my Labour &#187; Joomla</title>
	<atom:link href="http://www.toao.net/web-programming/joomla/feed" rel="self" type="application/rss+xml" />
	<link>http://www.toao.net</link>
	<description>by Mango</description>
	<lastBuildDate>Sun, 18 Jul 2010 21:44:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Automatic Read More in Joomla</title>
		<link>http://www.toao.net/182-automatic-read-more-in-joomla</link>
		<comments>http://www.toao.net/182-automatic-read-more-in-joomla#comments</comments>
		<pubDate>Sun, 07 Feb 2010 15:40:22 +0000</pubDate>
		<dc:creator>Mango</dc:creator>
				<category><![CDATA[Joomla]]></category>

		<guid isPermaLink="false">http://www.toao.net/?p=182</guid>
		<description><![CDATA[We've always wanted to be able to set up Joomla to automatically add a "Read More" link for articles in Category Blog or Section Blog Layouts so that the articles would all be the same length and they would line up just as pretty as you please.&#160; Google revealed a handful of other people attempting [...]]]></description>
			<content:encoded><![CDATA[<br />We've always wanted to be able to set up Joomla to automatically add a "Read More" link for articles in Category Blog or Section Blog Layouts so that the articles would all be the same length and they would line up just as pretty as you please.&nbsp; Google revealed a handful of other people attempting the same thing, but having no solution.&nbsp; So Mango wrote a plugin for it.<br />
<br  />
<span id="more-182"></span><br  />
<b>By popular request, we have added the following new features in the new <a href='/pub/plg_AutoReadMore.zip'>Version 1.1 Beta 3</a>:</b><br  />
<ul>
<li>Thumbnails are linked to the full version of the article.</li>
<li>Portuguese and Spanish language files are included.&nbsp; Thanks to the volunteers who translated these!</li>
<li>FJ Related Articles is tentatively supported.</li>
<li>"Developer mode" feature to assist PHP coders in making Auto Read More compatible with other modules.</li>
<li>Bug where special characters were not displayed correctly has been fixed.</li>
<li>Bug where multiple thumbnails were sometimes not displayed correctly has been fixed.</li></ul><br  />
<strong>Features:</strong><br  />
<ul>
<li>Automatically adds "Read more..." link after a configurable number of characters.</li>
<li>Articles with shorter intro text display their intro text only.</li>
<li>Works on the Front Page, Category Blog, or Section Blog.</li>
<li>Will not break HTML or break the article in the middle of a word.</li>
<li>Configurable to ignore specific categories, sections, articles, or the Front Page.</li>
<li>Commented so that you may read through the code and add your own features if you like.</li>
</ul>Latest version (1.1 Beta 3): <a href='/pub/plg_AutoReadMore.zip'>Download Plugin to insert Read More links automatically in Joomla articles</a><br   />
<br  />
<b>Note:</b> If you already use a different version of Auto Read More, <b>you must uninstall it first.</b><br   />
<br />
Old versions: <a href='/pub/plg_AutoReadMore1.0.zip'>1.0</a>, <a href='/pub/plg_AutoReadMore1.1Beta.zip'>1.1 Beta</a>, <a href='/pub/plg_AutoReadMore1.1Beta2.zip'>1.1 Beta 2</a><br   />
<br />
Feature requests, bug reports, and general comments welcome!]]></content:encoded>
			<wfw:commentRss>http://www.toao.net/182-automatic-read-more-in-joomla/feed</wfw:commentRss>
		<slash:comments>40</slash:comments>
		</item>
		<item>
		<title>Replacing smart quotes, em-dashes, and ellipses with MySQL or PHP</title>
		<link>http://www.toao.net/48-replacing-smart-quotes-and-em-dashes-in-mysql</link>
		<comments>http://www.toao.net/48-replacing-smart-quotes-and-em-dashes-in-mysql#comments</comments>
		<pubDate>Thu, 05 Mar 2009 21:28:24 +0000</pubDate>
		<dc:creator>Mango</dc:creator>
				<category><![CDATA[Joomla]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.toao.net/48/replacing-smart-quotes-and-em-dashes-in-mysql/</guid>
		<description><![CDATA[Alternate title: "Help!&#160; My Quotes Appear as Question Marks or Other Strange Characters!" The "Smart quotes" feature in Microsoft Office transforms straight quotes into curly quotes.&#160; It also transforms hyphens into em-dashes and three periods into ellipses.&#160; While one might think, "How lovely!&#160; My document looks almost as if I'm educated!" readers of said document [...]]]></description>
			<content:encoded><![CDATA[<br />Alternate title: "Help!&nbsp; My Quotes Appear as Question Marks or Other Strange Characters!"<br />
<br />
The "Smart quotes" feature in Microsoft Office transforms straight quotes into curly quotes.&nbsp; It also transforms hyphens into em-dashes and three periods into ellipses.&nbsp; While one might think, "How lovely!&nbsp; My document looks almost as if I'm educated!" readers of said document may not.&nbsp; Microsoft, in its infinite wisdom, decided to assign special characters such as the ones I just mentioned to a range of codes above 128.&nbsp; Problem: these codes were already assigned to other characters, resulting in frustrating incompatibility with non-Microsoft systems.<br />
<br />
Keep reading for some PHP and MySQL code to help out with this issue, as well as a Joomla! plugin.<br />
<br  />
<span id="more-48"></span><br   />
<br />
Our introduction to this was in a situation where we had people using many different systems submitting articles to one of our programs.&nbsp; We decided that we wanted all our articles to use straight quotes, hyphens, and periods.&nbsp; This was partly for consistency, and partly because these characters are common to many character sets and won't cause incompatibilities.<br />
<br />
This article isn't really intended as a complete explanation of charsets, though we recommend <a href="http://www.joelonsoftware.com/articles/Unicode.html" target='_blank'>The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets</a> if you're interested in learning more.&nbsp; We will however show you some MySQL and PHP techniques for replacing all instances of smart quotes, plus the en dash, em dash, and ellipsis with straight quotes, one or two dashes, or three dots.&nbsp; This code should operate with both the Windows-1252 charset, and also UTF-8, an encoding with an extended character set that has made it the preferred encoding for email and websites.<br />
<br />
MySQL:<br />


<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #808080; font-style: italic;"># First, replace UTF-8 characters.</span>
<span style="color: #993333; font-weight: bold;">UPDATE</span> <span style="color: #ff0000;">`t`</span> <span style="color: #993333; font-weight: bold;">SET</span> <span style="color: #ff0000;">`c`</span> <span style="color: #66cc66;">=</span> <span style="color: #993333; font-weight: bold;">REPLACE</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`c`</span><span style="color: #66cc66;">,</span> 0xE28098<span style="color: #66cc66;">,</span> <span style="color: #ff0000;">&quot;'&quot;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #993333; font-weight: bold;">UPDATE</span> <span style="color: #ff0000;">`t`</span> <span style="color: #993333; font-weight: bold;">SET</span> <span style="color: #ff0000;">`c`</span> <span style="color: #66cc66;">=</span> <span style="color: #993333; font-weight: bold;">REPLACE</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`c`</span><span style="color: #66cc66;">,</span> 0xE28099<span style="color: #66cc66;">,</span> <span style="color: #ff0000;">&quot;'&quot;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #993333; font-weight: bold;">UPDATE</span> <span style="color: #ff0000;">`t`</span> <span style="color: #993333; font-weight: bold;">SET</span> <span style="color: #ff0000;">`c`</span> <span style="color: #66cc66;">=</span> <span style="color: #993333; font-weight: bold;">REPLACE</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`c`</span><span style="color: #66cc66;">,</span> 0xE2809C<span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'&quot;'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #993333; font-weight: bold;">UPDATE</span> <span style="color: #ff0000;">`t`</span> <span style="color: #993333; font-weight: bold;">SET</span> <span style="color: #ff0000;">`c`</span> <span style="color: #66cc66;">=</span> <span style="color: #993333; font-weight: bold;">REPLACE</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`c`</span><span style="color: #66cc66;">,</span> 0xE2809D<span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'&quot;'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #993333; font-weight: bold;">UPDATE</span> <span style="color: #ff0000;">`t`</span> <span style="color: #993333; font-weight: bold;">SET</span> <span style="color: #ff0000;">`c`</span> <span style="color: #66cc66;">=</span> <span style="color: #993333; font-weight: bold;">REPLACE</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`c`</span><span style="color: #66cc66;">,</span> 0xE28093<span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'-'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #993333; font-weight: bold;">UPDATE</span> <span style="color: #ff0000;">`t`</span> <span style="color: #993333; font-weight: bold;">SET</span> <span style="color: #ff0000;">`c`</span> <span style="color: #66cc66;">=</span> <span style="color: #993333; font-weight: bold;">REPLACE</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`c`</span><span style="color: #66cc66;">,</span> 0xE28094<span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'--'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #993333; font-weight: bold;">UPDATE</span> <span style="color: #ff0000;">`t`</span> <span style="color: #993333; font-weight: bold;">SET</span> <span style="color: #ff0000;">`c`</span> <span style="color: #66cc66;">=</span> <span style="color: #993333; font-weight: bold;">REPLACE</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`c`</span><span style="color: #66cc66;">,</span> 0xE280A6<span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'...'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #808080; font-style: italic;"># Next, replace their Windows-1252 equivalents.</span>
<span style="color: #993333; font-weight: bold;">UPDATE</span> <span style="color: #ff0000;">`t`</span> <span style="color: #993333; font-weight: bold;">SET</span> <span style="color: #ff0000;">`c`</span> <span style="color: #66cc66;">=</span> <span style="color: #993333; font-weight: bold;">REPLACE</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`c`</span><span style="color: #66cc66;">,</span> char<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">145</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">&quot;'&quot;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #993333; font-weight: bold;">UPDATE</span> <span style="color: #ff0000;">`t`</span> <span style="color: #993333; font-weight: bold;">SET</span> <span style="color: #ff0000;">`c`</span> <span style="color: #66cc66;">=</span> <span style="color: #993333; font-weight: bold;">REPLACE</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`c`</span><span style="color: #66cc66;">,</span> char<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">146</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">&quot;'&quot;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #993333; font-weight: bold;">UPDATE</span> <span style="color: #ff0000;">`t`</span> <span style="color: #993333; font-weight: bold;">SET</span> <span style="color: #ff0000;">`c`</span> <span style="color: #66cc66;">=</span> <span style="color: #993333; font-weight: bold;">REPLACE</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`c`</span><span style="color: #66cc66;">,</span> char<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">147</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'&quot;'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #993333; font-weight: bold;">UPDATE</span> <span style="color: #ff0000;">`t`</span> <span style="color: #993333; font-weight: bold;">SET</span> <span style="color: #ff0000;">`c`</span> <span style="color: #66cc66;">=</span> <span style="color: #993333; font-weight: bold;">REPLACE</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`c`</span><span style="color: #66cc66;">,</span> char<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">148</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'&quot;'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #993333; font-weight: bold;">UPDATE</span> <span style="color: #ff0000;">`t`</span> <span style="color: #993333; font-weight: bold;">SET</span> <span style="color: #ff0000;">`c`</span> <span style="color: #66cc66;">=</span> <span style="color: #993333; font-weight: bold;">REPLACE</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`c`</span><span style="color: #66cc66;">,</span> char<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">150</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'-'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #993333; font-weight: bold;">UPDATE</span> <span style="color: #ff0000;">`t`</span> <span style="color: #993333; font-weight: bold;">SET</span> <span style="color: #ff0000;">`c`</span> <span style="color: #66cc66;">=</span> <span style="color: #993333; font-weight: bold;">REPLACE</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`c`</span><span style="color: #66cc66;">,</span> char<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">151</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'--'</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #993333; font-weight: bold;">UPDATE</span> <span style="color: #ff0000;">`t`</span> <span style="color: #993333; font-weight: bold;">SET</span> <span style="color: #ff0000;">`c`</span> <span style="color: #66cc66;">=</span> <span style="color: #993333; font-weight: bold;">REPLACE</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`c`</span><span style="color: #66cc66;">,</span> char<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">133</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'...'</span><span style="color: #66cc66;">&#41;</span>;</pre></div></div>
PHP:<br />


<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">// First, replace UTF-8 characters.</span>
<span style="color: #000088;">$text</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span>
 <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;<span style="color: #660099; font-weight: bold;">\xe2</span><span style="color: #660099; font-weight: bold;">\x80</span><span style="color: #660099; font-weight: bold;">\x98</span>&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;<span style="color: #660099; font-weight: bold;">\xe2</span><span style="color: #660099; font-weight: bold;">\x80</span><span style="color: #660099; font-weight: bold;">\x99</span>&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;<span style="color: #660099; font-weight: bold;">\xe2</span><span style="color: #660099; font-weight: bold;">\x80</span><span style="color: #660099; font-weight: bold;">\x9c</span>&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;<span style="color: #660099; font-weight: bold;">\xe2</span><span style="color: #660099; font-weight: bold;">\x80</span><span style="color: #660099; font-weight: bold;">\x9d</span>&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;<span style="color: #660099; font-weight: bold;">\xe2</span><span style="color: #660099; font-weight: bold;">\x80</span><span style="color: #660099; font-weight: bold;">\x93</span>&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;<span style="color: #660099; font-weight: bold;">\xe2</span><span style="color: #660099; font-weight: bold;">\x80</span><span style="color: #660099; font-weight: bold;">\x94</span>&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;<span style="color: #660099; font-weight: bold;">\xe2</span><span style="color: #660099; font-weight: bold;">\x80</span><span style="color: #660099; font-weight: bold;">\xa6</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
 <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;'&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;'&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'&quot;'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'&quot;'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'-'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'--'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'...'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
 <span style="color: #000088;">$text</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #666666; font-style: italic;">// Next, replace their Windows-1252 equivalents.</span>
 <span style="color: #000088;">$text</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span>
 <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">chr</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">145</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #990000;">chr</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">146</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #990000;">chr</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">147</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #990000;">chr</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">148</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #990000;">chr</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">150</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #990000;">chr</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">151</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span> <span style="color: #990000;">chr</span><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">133</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
 <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;'&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;'&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'&quot;'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'&quot;'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'-'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'--'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'...'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
 <span style="color: #000088;">$text</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>
Joomla!:<br  />
<a href='/pub/plg_StripSmartQuotes.zip'>Joomla! plugin for removing smart/curly quotes, em-dashes and ellipses.</a><br   />
<br />
<br />
Additionally, here's a table of character codes that you may find useful:<br />

<table border="0" cellpadding="2" cellspacing="0" style='width:100%;'>
<tr>
<th>Character</th>
<th>HTML Code</th>
<th>Windows</th>
<th>UTF-8</th>
<th>name</th>
</tr>
<tr>
<td>&lsquo;</td>
<td>&amp;lsquo;</td>
<td>145</td>
<td>E28098</td>
<td>left single curly quote</td>
</tr>
<tr>
<td>&rsquo;</td>
<td>&amp;rsquo;</td>
<td>146</td>
<td>E28099</td>
<td>right single curly quote</td>
</tr>
<tr>
<td>&ldquo;</td>
<td>&amp;ldquo;</td>
<td>147</td>
<td>E2809C</td>
<td>left double curly quote</td>
</tr>
<tr>
<td>&rdquo;</td>
<td>&amp;rdquo;</td>
<td>148</td>
<td>E2809D</td>
<td>right double curly quote</td>
</tr>
<tr>
<td>&ndash;</td>
<td>&amp;ndash;</td>
<td>150</td>
<td>E28093</td>
<td>en dash</td>
</tr>
<tr>
<td>&mdash;</td>
<td>&amp;mdash;</td>
<td>151</td>
<td>E28094</td>
<td>em dash</td>
</tr>
<tr>
<td>&hellip;</td>
<td>&amp;hellip;</td>
<td>133</td>
<td>E280A6</td>
<td>ellipsis</td>
</tr>
</table>
<br />
Further reading from Wikipedia:<br  />
<a href="http://en.wikipedia.org/wiki/UTF-8" target='_blank'>UTF-8</a><br   />
<br  />
<a href="http://en.wikipedia.org/wiki/ISO/IEC_8859-1" target='_blank'>ISO/IEC 8859-1</a><br   />
<br  />
<a href="http://en.wikipedia.org/wiki/Windows-1252" target='_blank'>Windows-1252</a>]]></content:encoded>
			<wfw:commentRss>http://www.toao.net/48-replacing-smart-quotes-and-em-dashes-in-mysql/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>
