<?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: Identify External Links</title>
	<atom:link href="http://txfx.net/wordpress-plugins/identify-external-links/feed/" rel="self" type="application/rss+xml" />
	<link>http://txfx.net</link>
	<description>Mark Jaquith&#039;s blog about capitalism, freedom, WordPress, the web, and personal topics</description>
	<lastBuildDate>Wed, 02 May 2012 07:17:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4-beta4-20838</generator>
	<item>
		<title>By: Bloghissimo</title>
		<link>http://txfx.net/wordpress-plugins/identify-external-links/comment-page-2/#comment-753749</link>
		<dc:creator>Bloghissimo</dc:creator>
		<pubDate>Wed, 29 Sep 2010 15:30:36 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/identify-external-links/#comment-753749</guid>
		<description>Thank you for the plugin!!! ;)</description>
		<content:encoded><![CDATA[<p>Thank you for the plugin!!! <img src='http://s.txfx.net/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sebastian Oxide</title>
		<link>http://txfx.net/wordpress-plugins/identify-external-links/comment-page-2/#comment-753113</link>
		<dc:creator>Sebastian Oxide</dc:creator>
		<pubDate>Tue, 08 Jun 2010 12:37:05 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/identify-external-links/#comment-753113</guid>
		<description>Great Plugin!

For anyone who has issues with the target=&quot;_blank&quot; not being added to links, try removing the &lt;img tags.</description>
		<content:encoded><![CDATA[<p>Great Plugin!</p>
<p>For anyone who has issues with the target=&#8221;_blank&#8221; not being added to links, try removing the &lt;img tags.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://txfx.net/wordpress-plugins/identify-external-links/comment-page-2/#comment-753038</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Sat, 22 May 2010 21:54:01 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/identify-external-links/#comment-753038</guid>
		<description>why should somebody use this software? what is this doing?</description>
		<content:encoded><![CDATA[<p>why should somebody use this software? what is this doing?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: livio</title>
		<link>http://txfx.net/wordpress-plugins/identify-external-links/comment-page-2/#comment-752942</link>
		<dc:creator>livio</dc:creator>
		<pubDate>Thu, 29 Apr 2010 09:55:02 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/identify-external-links/#comment-752942</guid>
		<description>Thanks for plugin. I have added a title attribute to code so link is more accessible.</description>
		<content:encoded><![CDATA[<p>Thanks for plugin. I have added a title attribute to code so link is more accessible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Link esterni &#124; biroblu</title>
		<link>http://txfx.net/wordpress-plugins/identify-external-links/comment-page-2/#comment-752941</link>
		<dc:creator>Link esterni &#124; biroblu</dc:creator>
		<pubDate>Thu, 29 Apr 2010 09:36:23 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/identify-external-links/#comment-752941</guid>
		<description>[...] questo motivo ho aggiunto al backend Wordpress di Biroblu un plugin, Identify External Links, che individua i link che puntano a siti esterni e li dota di una classe CSS. Inoltre, ho aggiunto [...]</description>
		<content:encoded><![CDATA[<p>[...] questo motivo ho aggiunto al backend WordPress di Biroblu un plugin, Identify External Links, che individua i link che puntano a siti esterni e li dota di una classe CSS. Inoltre, ho aggiunto [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sebastian</title>
		<link>http://txfx.net/wordpress-plugins/identify-external-links/comment-page-2/#comment-752937</link>
		<dc:creator>Sebastian</dc:creator>
		<pubDate>Thu, 29 Apr 2010 02:01:20 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/identify-external-links/#comment-752937</guid>
		<description>Hi there,

thank you for your plugin. I use it in all my wordpress projects. 

Today I extended it a little.
Why? Because I wanted to open external links in a new window but in a &#039;XTHML 1.0 Strict&#039; compliant way, what means I had to use JS.

I took your PHP-file and add rel=&quot;external&quot; on line 42.
Than I included a tiny JavaScript in my page. It looks like this. 

function externalLinks() {  
 if (!document.getElementsByTagName) return;  
 var anchors = document.getElementsByTagName(&quot;a&quot;);  
 for (var i=0; i&lt;anchors.length; i++) {  
   var anchor = anchors[i];  
   if (anchor.getAttribute(&quot;href&quot;) &amp;&amp;  
       anchor.getAttribute(&quot;rel&quot;) == &quot;external&quot;)  
     anchor.target = &quot;_blank&quot;;  
 }  
}  

addEvent(window, &#039;load&#039;, externalLinks);

(Source: http://articles.sitepoint.com/article/standards-compliant-world)

That&#039;s it! Now every external link will be opened in a new window. (In case that JS is activated.)

Best regards from Bali.</description>
		<content:encoded><![CDATA[<p>Hi there,</p>
<p>thank you for your plugin. I use it in all my wordpress projects. </p>
<p>Today I extended it a little.<br />
Why? Because I wanted to open external links in a new window but in a &#8216;XTHML 1.0 Strict&#8217; compliant way, what means I had to use JS.</p>
<p>I took your PHP-file and add rel=&#8221;external&#8221; on line 42.<br />
Than I included a tiny JavaScript in my page. It looks like this. </p>
<p>function externalLinks() {<br />
 if (!document.getElementsByTagName) return;<br />
 var anchors = document.getElementsByTagName(&#8220;a&#8221;);<br />
 for (var i=0; i&lt;anchors.length; i++) {<br />
   var anchor = anchors[i];<br />
   if (anchor.getAttribute(&quot;href&quot;) &amp;&amp;<br />
       anchor.getAttribute(&quot;rel&quot;) == &quot;external&quot;)<br />
     anchor.target = &quot;_blank&quot;;<br />
 }<br />
}  </p>
<p>addEvent(window, &#039;load&#039;, externalLinks);</p>
<p>(Source: <a href="http://articles.sitepoint.com/article/standards-compliant-world" rel="nofollow">http://articles.sitepoint.com/article/standards-compliant-world</a>)</p>
<p>That&#039;s it! Now every external link will be opened in a new window. (In case that JS is activated.)</p>
<p>Best regards from Bali.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: thomas</title>
		<link>http://txfx.net/wordpress-plugins/identify-external-links/comment-page-2/#comment-752931</link>
		<dc:creator>thomas</dc:creator>
		<pubDate>Wed, 28 Apr 2010 10:06:11 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/identify-external-links/#comment-752931</guid>
		<description>Hi, 
thank you for your Plugin. I&#039;ve made a REDAXO-Template of it based on verison: 1.2. It works very fine. 

Look at: http://www.redaxo.de/168-0-templatedetails.html?template_id=91</description>
		<content:encoded><![CDATA[<p>Hi,<br />
thank you for your Plugin. I&#8217;ve made a REDAXO-Template of it based on verison: 1.2. It works very fine. </p>
<p>Look at: <a href="http://www.redaxo.de/168-0-templatedetails.html?template_id=91" rel="nofollow">http://www.redaxo.de/168-0-templatedetails.html?template_id=91</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: memey</title>
		<link>http://txfx.net/wordpress-plugins/identify-external-links/comment-page-2/#comment-752917</link>
		<dc:creator>memey</dc:creator>
		<pubDate>Tue, 27 Apr 2010 11:34:21 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/identify-external-links/#comment-752917</guid>
		<description>Plugin could not be activated because it triggered a fatal error.</description>
		<content:encoded><![CDATA[<p>Plugin could not be activated because it triggered a fatal error.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: memey</title>
		<link>http://txfx.net/wordpress-plugins/identify-external-links/comment-page-2/#comment-752916</link>
		<dc:creator>memey</dc:creator>
		<pubDate>Tue, 27 Apr 2010 11:19:05 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/identify-external-links/#comment-752916</guid>
		<description>thanks 4 this plugin</description>
		<content:encoded><![CDATA[<p>thanks 4 this plugin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: director</title>
		<link>http://txfx.net/wordpress-plugins/identify-external-links/comment-page-2/#comment-751596</link>
		<dc:creator>director</dc:creator>
		<pubDate>Sat, 23 Jan 2010 22:01:08 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/identify-external-links/#comment-751596</guid>
		<description>thanks a lot for your plugin :=)</description>
		<content:encoded><![CDATA[<p>thanks a lot for your plugin :=)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: telefon dinleme</title>
		<link>http://txfx.net/wordpress-plugins/identify-external-links/comment-page-2/#comment-748070</link>
		<dc:creator>telefon dinleme</dc:creator>
		<pubDate>Sat, 12 Dec 2009 18:22:35 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/identify-external-links/#comment-748070</guid>
		<description>Very interesting. I may buy it too.....</description>
		<content:encoded><![CDATA[<p>Very interesting. I may buy it too&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lorand</title>
		<link>http://txfx.net/wordpress-plugins/identify-external-links/comment-page-2/#comment-720203</link>
		<dc:creator>Lorand</dc:creator>
		<pubDate>Sat, 11 Apr 2009 04:02:26 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/identify-external-links/#comment-720203</guid>
		<description>Hello, don&#039;t work on Wordpress 2.7.1 :(</description>
		<content:encoded><![CDATA[<p>Hello, don&#8217;t work on WordPress 2.7.1 <img src='http://s.txfx.net/wordpress/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wordpress Plugins used on Magazine Style Site &#124; Moral Fibre</title>
		<link>http://txfx.net/wordpress-plugins/identify-external-links/comment-page-2/#comment-685903</link>
		<dc:creator>Wordpress Plugins used on Magazine Style Site &#124; Moral Fibre</dc:creator>
		<pubDate>Fri, 27 Feb 2009 09:45:43 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/identify-external-links/#comment-685903</guid>
		<description>[...] similar) Added top 1000 sites from Quantcast.com. This plugin is based on Wikipedia nofollow and Identify External Links. By Lazar Kovacevic.&#8221; Yup another one of those plugins which is best left described by the [...]</description>
		<content:encoded><![CDATA[<p>[...] similar) Added top 1000 sites from Quantcast.com. This plugin is based on Wikipedia nofollow and Identify External Links. By Lazar Kovacevic.&#8221; Yup another one of those plugins which is best left described by the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hacha</title>
		<link>http://txfx.net/wordpress-plugins/identify-external-links/comment-page-2/#comment-670202</link>
		<dc:creator>hacha</dc:creator>
		<pubDate>Fri, 02 Jan 2009 23:23:07 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/identify-external-links/#comment-670202</guid>
		<description>I just tried your plugin at both of my wordpress blogs: &lt;a href=&quot;http://kruddy.com&quot; rel=&quot;nofollow&quot;&gt;scums&lt;/a&gt; and &lt;a href=&quot;http://turdshot.com&quot; rel=&quot;nofollow&quot;&gt;turds&lt;/a&gt;, thats really what they are called. And I cannot seem to get it to work. Can you be a little bit more specific about the line of code to use in the stylesheet? Or is there another way to make it autorun? thanks. Hacha</description>
		<content:encoded><![CDATA[<p>I just tried your plugin at both of my wordpress blogs: <a href="http://kruddy.com" rel="nofollow">scums</a> and <a href="http://turdshot.com" rel="nofollow">turds</a>, thats really what they are called. And I cannot seem to get it to work. Can you be a little bit more specific about the line of code to use in the stylesheet? Or is there another way to make it autorun? thanks. Hacha</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Upekshapriya</title>
		<link>http://txfx.net/wordpress-plugins/identify-external-links/comment-page-2/#comment-669916</link>
		<dc:creator>Upekshapriya</dc:creator>
		<pubDate>Wed, 31 Dec 2008 01:31:18 +0000</pubDate>
		<guid isPermaLink="false">http://txfx.net/code/wordpress/identify-external-links/#comment-669916</guid>
		<description>I&#039;ll try again:

&lt;pre&gt;	$pattern = &#039;/&lt;a&gt;(.*?)/i&#039;;&lt;/a&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>I&#8217;ll try again:</p>
<pre>	$pattern = '/<a>(.*?)/i';</a></pre>
]]></content:encoded>
	</item>
</channel>
</rss>
