<?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: Clickable links in Twitter html/js badge</title>
	<atom:link href="http://www.soccio.it/michelinux/2007/11/09/clickable-links-in-twitter-htmljs-badge/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.soccio.it/michelinux/2007/11/09/clickable-links-in-twitter-htmljs-badge/</link>
	<description>ready to go beyond?</description>
	<lastBuildDate>Mon, 30 Aug 2010 20:01:20 +0200</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Nitesh</title>
		<link>http://www.soccio.it/michelinux/2007/11/09/clickable-links-in-twitter-htmljs-badge/comment-page-1/#comment-704</link>
		<dc:creator>Nitesh</dc:creator>
		<pubDate>Sun, 25 Apr 2010 13:09:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.soccio.it/michelinux/2007/11/09/clickable-links-in-twitter-htmljs-badge/#comment-704</guid>
		<description>Thanks for this code!!...

BTW  @Alan link : http://asusoda.com/js/soccio-twitter-blogger.js

is broken....Please fix it.</description>
		<content:encoded><![CDATA[<p>Thanks for this code!!&#8230;</p>
<p>BTW  @Alan link : <a href="http://asusoda.com/js/soccio-twitter-blogger.js" rel="nofollow">http://asusoda.com/js/soccio-twitter-blogger.js</a></p>
<p>is broken&#8230;.Please fix it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Edgar</title>
		<link>http://www.soccio.it/michelinux/2007/11/09/clickable-links-in-twitter-htmljs-badge/comment-page-1/#comment-608</link>
		<dc:creator>Edgar</dc:creator>
		<pubDate>Sat, 05 Dec 2009 19:01:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.soccio.it/michelinux/2007/11/09/clickable-links-in-twitter-htmljs-badge/#comment-608</guid>
		<description>Has anybody found a way to alternate the color of the list items?  

@jameez, I added the # trick.  Beautiful.</description>
		<content:encoded><![CDATA[<p>Has anybody found a way to alternate the color of the list items?  </p>
<p>@jameez, I added the # trick.  Beautiful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tyson</title>
		<link>http://www.soccio.it/michelinux/2007/11/09/clickable-links-in-twitter-htmljs-badge/comment-page-1/#comment-481</link>
		<dc:creator>tyson</dc:creator>
		<pubDate>Tue, 03 Mar 2009 21:44:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.soccio.it/michelinux/2007/11/09/clickable-links-in-twitter-htmljs-badge/#comment-481</guid>
		<description>I am trying to remove all @ tweets from my twitter blog.  I followed what you told Allesio to do on August 25th, but It just removed the linking function.  Do you know of a way to make the whole @tweet disappear from my badge?  BTW thankyou for your information</description>
		<content:encoded><![CDATA[<p>I am trying to remove all @ tweets from my twitter blog.  I followed what you told Allesio to do on August 25th, but It just removed the linking function.  Do you know of a way to make the whole @tweet disappear from my badge?  BTW thankyou for your information</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jameez</title>
		<link>http://www.soccio.it/michelinux/2007/11/09/clickable-links-in-twitter-htmljs-badge/comment-page-1/#comment-480</link>
		<dc:creator>jameez</dc:creator>
		<pubDate>Tue, 03 Mar 2009 15:45:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.soccio.it/michelinux/2007/11/09/clickable-links-in-twitter-htmljs-badge/#comment-480</guid>
		<description>sorry, forgot the code tags

&lt;code&gt;
var hashregular = /\B#([_a-z0-9]+)/ig;
&lt;/code&gt;

&lt;code&gt;
posttext = posttext.replace(hashregular, &#039;#&lt;a href=&quot;http://search.twitter.com/search?q=%23$1&quot; rel=&quot;nofollow&quot;&gt;$1&lt;/a&gt;&#039;);
&lt;/code&gt;

enjoy!</description>
		<content:encoded><![CDATA[<p>sorry, forgot the code tags</p>
<p><code><br />
var hashregular = /\B#([_a-z0-9]+)/ig;<br />
</code></p>
<p><code><br />
posttext = posttext.replace(hashregular, '#<a href="http://search.twitter.com/search?q=%23$1" rel="nofollow">$1</a>');<br />
</code></p>
<p>enjoy!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jameez</title>
		<link>http://www.soccio.it/michelinux/2007/11/09/clickable-links-in-twitter-htmljs-badge/comment-page-1/#comment-479</link>
		<dc:creator>jameez</dc:creator>
		<pubDate>Tue, 03 Mar 2009 15:40:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.soccio.it/michelinux/2007/11/09/clickable-links-in-twitter-htmljs-badge/#comment-479</guid>
		<description>this is indeed an EXCELLENT post! it proved to be very helpful as i learnt how to customize the look and feel of my twitter feed. i thank you. 
however, while i was playing around with it. i noticed you havent added any functionalities to detect hash tags.
figured it wasnt much different from the @ tags, so ive added in these two lines which allows for a search on any hash tag found.

var hashregular = /\B#([_a-z0-9]+)/ig;
posttext = posttext.replace(hashregular, &#039;#&lt;a href=&quot;http://search.twitter.com/search?q=%23$1&quot; rel=&quot;nofollow&quot;&gt;$1&lt;/a&gt;&#039;);


now its perfect!</description>
		<content:encoded><![CDATA[<p>this is indeed an EXCELLENT post! it proved to be very helpful as i learnt how to customize the look and feel of my twitter feed. i thank you.<br />
however, while i was playing around with it. i noticed you havent added any functionalities to detect hash tags.<br />
figured it wasnt much different from the @ tags, so ive added in these two lines which allows for a search on any hash tag found.</p>
<p>var hashregular = /\B#([_a-z0-9]+)/ig;<br />
posttext = posttext.replace(hashregular, &#8216;#<a href="http://search.twitter.com/search?q=%23$1" rel="nofollow">$1</a>&#8216;);</p>
<p>now its perfect!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: michele</title>
		<link>http://www.soccio.it/michelinux/2007/11/09/clickable-links-in-twitter-htmljs-badge/comment-page-1/#comment-334</link>
		<dc:creator>michele</dc:creator>
		<pubDate>Tue, 21 Oct 2008 15:24:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.soccio.it/michelinux/2007/11/09/clickable-links-in-twitter-htmljs-badge/#comment-334</guid>
		<description>@Dan Wood,
I contacted the other author of the script. I will contact you again after we decide. Thanks for your interest.</description>
		<content:encoded><![CDATA[<p>@Dan Wood,<br />
I contacted the other author of the script. I will contact you again after we decide. Thanks for your interest.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: michele</title>
		<link>http://www.soccio.it/michelinux/2007/11/09/clickable-links-in-twitter-htmljs-badge/comment-page-1/#comment-333</link>
		<dc:creator>michele</dc:creator>
		<pubDate>Tue, 21 Oct 2008 15:15:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.soccio.it/michelinux/2007/11/09/clickable-links-in-twitter-htmljs-badge/#comment-333</guid>
		<description>@rpber
since this script gets the lines from your account it is not so easy to make it display also the answers you get.
I will try to modify it, but I cannot promise anything.</description>
		<content:encoded><![CDATA[<p>@rpber<br />
since this script gets the lines from your account it is not so easy to make it display also the answers you get.<br />
I will try to modify it, but I cannot promise anything.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Wood</title>
		<link>http://www.soccio.it/michelinux/2007/11/09/clickable-links-in-twitter-htmljs-badge/comment-page-1/#comment-332</link>
		<dc:creator>Dan Wood</dc:creator>
		<pubDate>Tue, 21 Oct 2008 14:52:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.soccio.it/michelinux/2007/11/09/clickable-links-in-twitter-htmljs-badge/#comment-332</guid>
		<description>Can you make the permissions clear about redistributing this code?  Can it be put into a commercial application for instance?  We&#039;d like to adapt it if at all possible....</description>
		<content:encoded><![CDATA[<p>Can you make the permissions clear about redistributing this code?  Can it be put into a commercial application for instance?  We&#8217;d like to adapt it if at all possible&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rpber</title>
		<link>http://www.soccio.it/michelinux/2007/11/09/clickable-links-in-twitter-htmljs-badge/comment-page-1/#comment-325</link>
		<dc:creator>rpber</dc:creator>
		<pubDate>Sun, 28 Sep 2008 21:59:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.soccio.it/michelinux/2007/11/09/clickable-links-in-twitter-htmljs-badge/#comment-325</guid>
		<description>hi michelle-great code! quick question- does your version also display all @replies directed to me in addition to my updates? if not, how could i do that so that both show up? 

also, being pretty html illiterate how would i &quot;host&quot; or copy this code directly into the html code offered by twitter (other than removing the link to the .js obviously)? Thanks!</description>
		<content:encoded><![CDATA[<p>hi michelle-great code! quick question- does your version also display all @replies directed to me in addition to my updates? if not, how could i do that so that both show up? </p>
<p>also, being pretty html illiterate how would i &#8220;host&#8221; or copy this code directly into the html code offered by twitter (other than removing the link to the .js obviously)? Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: manastojones</title>
		<link>http://www.soccio.it/michelinux/2007/11/09/clickable-links-in-twitter-htmljs-badge/comment-page-1/#comment-310</link>
		<dc:creator>manastojones</dc:creator>
		<pubDate>Fri, 19 Sep 2008 16:40:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.soccio.it/michelinux/2007/11/09/clickable-links-in-twitter-htmljs-badge/#comment-310</guid>
		<description>works like a charm... gunna download it.</description>
		<content:encoded><![CDATA[<p>works like a charm&#8230; gunna download it.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
