<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Simple Twitter Link</title>
	<atom:link href="http://www.artiss.co.uk/simple-twitter-link/feed" rel="self" type="application/rss+xml" />
	<link>http://www.artiss.co.uk</link>
	<description>This is my first visit to the Galaxy of Terror and I'd like it to be a pleasant one.</description>
	<lastBuildDate>Sun, 14 Mar 2010 14:01:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Top 10 Twitter Plugin for WordPress &#124; Mirza&#39;s Blog- All About Life.</title>
		<link>http://www.artiss.co.uk/simple-twitter-link/comment-page-1#comment-886</link>
		<dc:creator>Top 10 Twitter Plugin for WordPress &#124; Mirza&#39;s Blog- All About Life.</dc:creator>
		<pubDate>Tue, 05 Jan 2010 17:10:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.artiss.co.uk/?page_id=1254#comment-886</guid>
		<description>[...] Simple Twitter Link [...]</description>
		<content:encoded><![CDATA[<p>[...] Simple Twitter Link [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LJHarb</title>
		<link>http://www.artiss.co.uk/simple-twitter-link/comment-page-1#comment-775</link>
		<dc:creator>LJHarb</dc:creator>
		<pubDate>Wed, 07 Oct 2009 08:11:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.artiss.co.uk/?page_id=1254#comment-775</guid>
		<description>Sounds good - I&#039;m capable of adding in my own service. However, even if there is no options pane - if there was any way to extend the service list that didn&#039;t require modifying the plugin file that would be great. If I have to modify the file, every time there&#039;s an update it requires surgery on my part.

Personally I think it would be better to prefer curl, and fall back to file_get_contents if it isn&#039;t present. Also, it would probably be good to use `strtolower(ini_get(&#039;allow_url_fopen&#039;))===&#039;off&#039; to check if file_get_contents can&#039;t fetch urls, and if so (and curl&#039;s not available), skip the shortening altogether.</description>
		<content:encoded><![CDATA[<p>Sounds good &#8211; I&#8217;m capable of adding in my own service. However, even if there is no options pane &#8211; if there was any way to extend the service list that didn&#8217;t require modifying the plugin file that would be great. If I have to modify the file, every time there&#8217;s an update it requires surgery on my part.</p>
<p>Personally I think it would be better to prefer curl, and fall back to file_get_contents if it isn&#8217;t present. Also, it would probably be good to use `strtolower(ini_get(&#8216;allow_url_fopen&#8217;))===&#8217;off&#8217; to check if file_get_contents can&#8217;t fetch urls, and if so (and curl&#8217;s not available), skip the shortening altogether.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.artiss.co.uk/simple-twitter-link/comment-page-1#comment-774</link>
		<dc:creator>David</dc:creator>
		<pubDate>Wed, 07 Oct 2009 07:57:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.artiss.co.uk/?page_id=1254#comment-774</guid>
		<description>The %url% is a good one - this stemmed from the fact that the plugin originally just used the default URL shortening services and to change this I simply added an extra parameter. 

The only problem with modifying this would be backwards compatibility - I&#039;m working on a new version of the plugin, though, so I can look at this.

Re the curl idea - isn&#039;t there an additional problem in that curl may not be active on some peoples servers? Happy to add it though as a fallback to file_get_contents.

Options panel... no. My &quot;Simple&quot; range of plugins are designed to be just that, and that includes not providing option screens ;)</description>
		<content:encoded><![CDATA[<p>The %url% is a good one &#8211; this stemmed from the fact that the plugin originally just used the default URL shortening services and to change this I simply added an extra parameter. </p>
<p>The only problem with modifying this would be backwards compatibility &#8211; I&#8217;m working on a new version of the plugin, though, so I can look at this.</p>
<p>Re the curl idea &#8211; isn&#8217;t there an additional problem in that curl may not be active on some peoples servers? Happy to add it though as a fallback to file_get_contents.</p>
<p>Options panel&#8230; no. My &#8220;Simple&#8221; range of plugins are designed to be just that, and that includes not providing option screens <img src='http://www.artiss.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LJHarb</title>
		<link>http://www.artiss.co.uk/simple-twitter-link/comment-page-1#comment-772</link>
		<dc:creator>LJHarb</dc:creator>
		<pubDate>Tue, 06 Oct 2009 22:49:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.artiss.co.uk/?page_id=1254#comment-772</guid>
		<description>Why do you require %bit.ly% and %url% to both be present? %bit.ly% should simply replace that occurrence with the bitly url - and if multiple services are present, they should all replace with their respective services.

Also, using file_get_contents to get an external resource is a security risk, and it isn&#039;t enabled on many servers for that reason. You should use curl instead (or at least check if file_get_contents can get http resources and use curl in that case).

It would also be nice if there was a plugin options pane where I could add a shortening endpoint and service name/token so I can add my own services.

Thanks!</description>
		<content:encoded><![CDATA[<p>Why do you require %bit.ly% and %url% to both be present? %bit.ly% should simply replace that occurrence with the bitly url &#8211; and if multiple services are present, they should all replace with their respective services.</p>
<p>Also, using file_get_contents to get an external resource is a security risk, and it isn&#8217;t enabled on many servers for that reason. You should use curl instead (or at least check if file_get_contents can get http resources and use curl in that case).</p>
<p>It would also be nice if there was a plugin options pane where I could add a shortening endpoint and service name/token so I can add my own services.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Twitter Trackbacks for Simple Twitter Link WordPress Plugin &#124; Artiss.co.uk [artiss.co.uk] on Topsy.com</title>
		<link>http://www.artiss.co.uk/simple-twitter-link/comment-page-1#comment-722</link>
		<dc:creator>Twitter Trackbacks for Simple Twitter Link WordPress Plugin &#124; Artiss.co.uk [artiss.co.uk] on Topsy.com</dc:creator>
		<pubDate>Sat, 29 Aug 2009 19:40:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.artiss.co.uk/?page_id=1254#comment-722</guid>
		<description>[...] Simple Twitter Link WordPress Plugin &#124; Artiss.co.uk  www.artiss.co.uk/simple-twitter-link &#8211; view page &#8211; cached  Simple Twitter Link displays a link allowing Twitter users to update their status with a link back to your post or page. &#8212; From the page [...]</description>
		<content:encoded><![CDATA[<p>[...] Simple Twitter Link WordPress Plugin | Artiss.co.uk  <a href="http://www.artiss.co.uk/simple-twitter-link" rel="nofollow">http://www.artiss.co.uk/simple-twitter-link</a> &ndash; view page &ndash; cached  Simple Twitter Link displays a link allowing Twitter users to update their status with a link back to your post or page. &mdash; From the page [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.artiss.co.uk/simple-twitter-link/comment-page-1#comment-697</link>
		<dc:creator>David</dc:creator>
		<pubDate>Thu, 06 Aug 2009 11:16:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.artiss.co.uk/?page_id=1254#comment-697</guid>
		<description>Hi Jennifer, what version of WordPress do you have? Any recent version should work.

Please let me know the URL of your site, so that I can see what&#039;s happening. Also, please send me (use my contact form!) the code that you&#039;ve added to your site. With all that I should be able to get to the bottom of your problems.</description>
		<content:encoded><![CDATA[<p>Hi Jennifer, what version of WordPress do you have? Any recent version should work.</p>
<p>Please let me know the URL of your site, so that I can see what&#8217;s happening. Also, please send me (use my contact form!) the code that you&#8217;ve added to your site. With all that I should be able to get to the bottom of your problems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jennifer</title>
		<link>http://www.artiss.co.uk/simple-twitter-link/comment-page-1#comment-695</link>
		<dc:creator>Jennifer</dc:creator>
		<pubDate>Wed, 05 Aug 2009 22:58:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.artiss.co.uk/?page_id=1254#comment-695</guid>
		<description>I&#039;m not sure why this is not working for me.  It seems simple enough.  I have it installed and activated.  Do I need Wordpress version 2.8.3 for Simple Twitter Link 1.3 to work?  When I click the link, twitter opens up, the title is placed in the status update, but no url.  I copied and pasted code from this site.  Thanks so much for your help in advance.  Can&#039;t wait to use this awesome plugin!</description>
		<content:encoded><![CDATA[<p>I&#8217;m not sure why this is not working for me.  It seems simple enough.  I have it installed and activated.  Do I need Wordpress version 2.8.3 for Simple Twitter Link 1.3 to work?  When I click the link, twitter opens up, the title is placed in the status update, but no url.  I copied and pasted code from this site.  Thanks so much for your help in advance.  Can&#8217;t wait to use this awesome plugin!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.artiss.co.uk/simple-twitter-link/comment-page-1#comment-679</link>
		<dc:creator>David</dc:creator>
		<pubDate>Thu, 16 Jul 2009 07:15:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.artiss.co.uk/?page_id=1254#comment-679</guid>
		<description>Don&#039;t give up Sophia! I&#039;ve happily used the plugin myself with an image, so it shouldn&#039;t cause a problem. Can you send me the code you used, that didn&#039;t appear to work?</description>
		<content:encoded><![CDATA[<p>Don&#8217;t give up Sophia! I&#8217;ve happily used the plugin myself with an image, so it shouldn&#8217;t cause a problem. Can you send me the code you used, that didn&#8217;t appear to work?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sophia</title>
		<link>http://www.artiss.co.uk/simple-twitter-link/comment-page-1#comment-678</link>
		<dc:creator>Sophia</dc:creator>
		<pubDate>Wed, 15 Jul 2009 22:13:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.artiss.co.uk/?page_id=1254#comment-678</guid>
		<description>I installed your plugin Wordpress 2.8 and pasted the code into the bottom of my single post template. I replaced the text &quot;send to twitter&quot; with an image. It crashed the page - resulted in a blank page whenever I viewed a single post. I had to uninstall it. Too bad, it looked like just what I needed.</description>
		<content:encoded><![CDATA[<p>I installed your plugin Wordpress 2.8 and pasted the code into the bottom of my single post template. I replaced the text &#8220;send to twitter&#8221; with an image. It crashed the page &#8211; resulted in a blank page whenever I viewed a single post. I had to uninstall it. Too bad, it looked like just what I needed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Helgi Hrafn Halldórsson</title>
		<link>http://www.artiss.co.uk/simple-twitter-link/comment-page-1#comment-660</link>
		<dc:creator>Helgi Hrafn Halldórsson</dc:creator>
		<pubDate>Tue, 07 Jul 2009 19:03:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.artiss.co.uk/?page_id=1254#comment-660</guid>
		<description>I see that you use the $post variable inside the function. But you&#039;re missing to declare at the top of the function global $post; :P

The $post is empty if it is not mentioned to use the global $post variable.</description>
		<content:encoded><![CDATA[<p>I see that you use the $post variable inside the function. But you&#8217;re missing to declare at the top of the function global $post; <img src='http://www.artiss.co.uk/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>The $post is empty if it is not mentioned to use the global $post variable.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
