<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Akrabat_Config (4th Go!)</title>
	<atom:link href="http://akrabat.com/2006/04/10/akrabat_config-four/feed/" rel="self" type="application/rss+xml" />
	<link>http://akrabat.com/2006/04/10/akrabat_config-four/</link>
	<description>Developing PHP and XUL Software in the Real World</description>
	<pubDate>Thu, 28 Aug 2008 14:41:51 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Matthew Delmarter</title>
		<link>http://akrabat.com/2006/04/10/akrabat_config-four/#comment-146</link>
		<dc:creator>Matthew Delmarter</dc:creator>
		<pubDate>Wed, 19 Apr 2006 19:31:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.akrabat.com/2006/04/10/akrabat_config-four/#comment-146</guid>
		<description>It would be great to be able to add new entries, edit and delete existing settings etc via PHP somehow. Any thoughts Rob?</description>
		<content:encoded><![CDATA[<p>It would be great to be able to add new entries, edit and delete existing settings etc via PHP somehow. Any thoughts Rob?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob...</title>
		<link>http://akrabat.com/2006/04/10/akrabat_config-four/#comment-123</link>
		<dc:creator>Rob...</dc:creator>
		<pubDate>Tue, 11 Apr 2006 18:39:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.akrabat.com/2006/04/10/akrabat_config-four/#comment-123</guid>
		<description>Doesn't seem to work completely though :(

Look at the 32 in the test function testReadOnly()

            $config-&gt;test = '32?;


Nearly sure that the second quote is not a '</description>
		<content:encoded><![CDATA[<p>Doesn't seem to work completely though :(</p>
<p>Look at the 32 in the test function testReadOnly()</p>
<p>            $config->test = '32?;</p>
<p>Nearly sure that the second quote is not a '</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob...</title>
		<link>http://akrabat.com/2006/04/10/akrabat_config-four/#comment-122</link>
		<dc:creator>Rob...</dc:creator>
		<pubDate>Tue, 11 Apr 2006 18:28:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.akrabat.com/2006/04/10/akrabat_config-four/#comment-122</guid>
		<description>Hi Matthew!

I'm using a modified version of your Visual.Syntax plugin already. Seems that I commented out the line:

add_filter('the_content', 'strip_smart_quotes');

whilst testing and forgot to reinstate it...

Excellent work btw!</description>
		<content:encoded><![CDATA[<p>Hi Matthew!</p>
<p>I'm using a modified version of your Visual.Syntax plugin already. Seems that I commented out the line:</p>
<p>add_filter('the_content', 'strip_smart_quotes');</p>
<p>whilst testing and forgot to reinstate it&#8230;</p>
<p>Excellent work btw!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew Delmarter</title>
		<link>http://akrabat.com/2006/04/10/akrabat_config-four/#comment-121</link>
		<dc:creator>Matthew Delmarter</dc:creator>
		<pubDate>Tue, 11 Apr 2006 16:50:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.akrabat.com/2006/04/10/akrabat_config-four/#comment-121</guid>
		<description>Ahh - make that "Visual.Syntax" Plugin :)</description>
		<content:encoded><![CDATA[<p>Ahh - make that "Visual.Syntax" Plugin :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthew Delmarter</title>
		<link>http://akrabat.com/2006/04/10/akrabat_config-four/#comment-120</link>
		<dc:creator>Matthew Delmarter</dc:creator>
		<pubDate>Tue, 11 Apr 2006 16:48:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.akrabat.com/2006/04/10/akrabat_config-four/#comment-120</guid>
		<description>Hey Rob,

The following code should fix your quotes problem in Wordpress:

[code]
add_filter('the_content', 'strip_smart_quotes');

function strip_smart_quotes($data) 
{
    $data = str_replace(array("&#8216;", "&#8217;"), "'",$data);
    $data = str_replace(array("&#8221;", "&#8220;"), '"', $data);
    $data = str_replace("&#8243;", '"', $data);
    $data = str_replace("&#8242;", "'", $data);
    return $data;
}
[/code]

This is a direct copy from my Wisual.Syntax plugin so should work fine for you. 

BTW - thanks for your work on the config class, it is coming along nicely...

Matthew</description>
		<content:encoded><![CDATA[<p>Hey Rob,</p>
<p>The following code should fix your quotes problem in Wordpress:</p>
<p>[code]<br />
add_filter('the_content', 'strip_smart_quotes');</p>
<p>function strip_smart_quotes($data)<br />
{<br />
    $data = str_replace(array("'", "'"), "'",$data);<br />
    $data = str_replace(array(""", """), '"', $data);<br />
    $data = str_replace(""", '"', $data);<br />
    $data = str_replace("'", "'", $data);<br />
    return $data;<br />
}<br />
[/code]</p>
<p>This is a direct copy from my Wisual.Syntax plugin so should work fine for you. </p>
<p>BTW - thanks for your work on the config class, it is coming along nicely&#8230;</p>
<p>Matthew</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob...</title>
		<link>http://akrabat.com/2006/04/10/akrabat_config-four/#comment-113</link>
		<dc:creator>Rob...</dc:creator>
		<pubDate>Mon, 10 Apr 2006 18:45:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.akrabat.com/2006/04/10/akrabat_config-four/#comment-113</guid>
		<description>Yeah - I noticed that... will have to find and fix it!</description>
		<content:encoded><![CDATA[<p>Yeah - I noticed that&#8230; will have to find and fix it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nico Edtinger</title>
		<link>http://akrabat.com/2006/04/10/akrabat_config-four/#comment-110</link>
		<dc:creator>Nico Edtinger</dc:creator>
		<pubDate>Mon, 10 Apr 2006 16:31:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.akrabat.com/2006/04/10/akrabat_config-four/#comment-110</guid>
		<description>"one more thing" ;) I tried to copy&#38;paste the code from here, but all the quotation marks were wrong. Seems like WordPress tries to make them pretty.</description>
		<content:encoded><![CDATA[<p>"one more thing" ;) I tried to copy&amp;paste the code from here, but all the quotation marks were wrong. Seems like WordPress tries to make them pretty.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
