<?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/"
xmlns:series="http://unfoldingneurons.com/"
> <channel><title>Comments on: Implementing String.Tweetify in&#160;MooTools</title> <atom:link href="http://davidwalsh.name/tweetify/feed" rel="self" type="application/rss+xml" /><link>http://davidwalsh.name/tweetify</link> <description>Legendary scribbles about JavaScript, HTML5, AJAX, PHP, CSS, and ∞.</description> <lastBuildDate>Thu, 24 May 2012 07:05:27 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <item><title>By: Abby Torrendon</title><link>http://davidwalsh.name/tweetify#comment-19235</link> <dc:creator>Abby Torrendon</dc:creator> <pubDate>Fri, 06 Aug 2010 19:49:35 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=3490#comment-19235</guid> <description>By the way, I&#039;m currently using MooTools 1.2, but the code won&#039;t mess  up if I&#039;m using the old version, right?</description> <content:encoded><![CDATA[<p>By the way, I&#8217;m currently using MooTools 1.2, but the code won&#8217;t mess  up if I&#8217;m using the old version, right?</p> ]]></content:encoded> </item> <item><title>By: Abby Torrendon</title><link>http://davidwalsh.name/tweetify#comment-19234</link> <dc:creator>Abby Torrendon</dc:creator> <pubDate>Fri, 06 Aug 2010 19:47:02 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=3490#comment-19234</guid> <description>Hi, I just want to make a request, could you make a blank demo page of this code? I was trying to figure the codes out (kinda newbie in MooTools) and I would like to add this to my school project (my prof wants us to make a sample portfolio site). Thanks in advance.</description> <content:encoded><![CDATA[<p>Hi, I just want to make a request, could you make a blank demo page of this code? I was trying to figure the codes out (kinda newbie in MooTools) and I would like to add this to my school project (my prof wants us to make a sample portfolio site). Thanks in advance.</p> ]]></content:encoded> </item> <item><title>By: Hamza</title><link>http://davidwalsh.name/tweetify#comment-14573</link> <dc:creator>Hamza</dc:creator> <pubDate>Wed, 16 Dec 2009 21:23:48 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=3490#comment-14573</guid> <description>nice trick , yesterday i was making a twitter widget profile using mootools and i got my self confused on how to make tweets wel-formatted on mootools ??
this wat u used beforevar status = twitters[i].text.replace(/((https?&#124;s?ftp&#124;ssh)\:\/\/[^&quot;\s\]*[^.,;&#039;&quot;&gt;\:\s\\)\]\!])/g, function(url) {
return &#039;&lt;a href=&quot;&#039;+url+&#039;&quot; rel=&quot;nofollow&quot;&gt;&#039;+url+&#039;&lt;/a&gt;&#039;;
}).replace(/\B@([_a-z0-9]+)/ig, function(reply) {
return  reply.charAt(0)+&#039;&lt;a href=&quot;http://twitter.com/&#039;+reply.substring(1)+&#039;&quot; rel=&quot;nofollow&quot;&gt;&#039;+reply.substring(1)+&#039;&lt;/a&gt;&#039;;
});Thanks.</description> <content:encoded><![CDATA[<p>nice trick , yesterday i was making a twitter widget profile using mootools and i got my self confused on how to make tweets wel-formatted on mootools ??<br
/> this wat u used before</p><p>var status = twitters[i].text.replace(/((https?|s?ftp|ssh)\:\/\/[^"\s\]*[^.,;'"&gt;\:\s\\)\]\!])/g, function(url) {<br
/> return &#8216;<a
href="'+url+'" rel="nofollow">&#8216;+url+&#8217;</a>&#8216;;<br
/> }).replace(/\B@([_a-z0-9]+)/ig, function(reply) {<br
/> return  reply.charAt(0)+&#8217;<a
href="http://twitter.com/'+reply.substring(1)+'" rel="nofollow">&#8216;+reply.substring(1)+&#8217;</a>&#8216;;<br
/> });</p><p>Thanks.</p> ]]></content:encoded> </item> <item><title>By: Wim</title><link>http://davidwalsh.name/tweetify#comment-11777</link> <dc:creator>Wim</dc:creator> <pubDate>Tue, 08 Sep 2009 14:51:21 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=3490#comment-11777</guid> <description>Good article but it would be smarter to prototype the javascript String object like Ororok said. Then you don&#039;t need any extra javascript framework.</description> <content:encoded><![CDATA[<p>Good article but it would be smarter to prototype the javascript String object like Ororok said. Then you don&#8217;t need any extra javascript framework.</p> ]]></content:encoded> </item> <item><title>By: derschreckliche</title><link>http://davidwalsh.name/tweetify#comment-11771</link> <dc:creator>derschreckliche</dc:creator> <pubDate>Mon, 07 Sep 2009 22:49:28 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=3490#comment-11771</guid> <description>Sorry for double posting - had to change the one line:
(too much copy paste - forgot to put a &quot;!&quot; instead of &quot;#&quot; and killed the &quot;%23&quot;)
this works correct:
String.implement({
dentify: function(server) {
return this.replace(/(https?:\/\/\S+)/gi,’&lt;a href=&quot;”$1″&quot; rel=&quot;nofollow&quot;&gt;$1&lt;/a&gt;’
).replace(/(^&#124;\s)@(\w+)/g,
‘$1&lt;a href=&quot;”‘+server+’/$2″&quot; rel=&quot;nofollow&quot;&gt;@$2&lt;/a&gt;’
).replace(/(^&#124;\s)#(\w+)/g,
‘$1&lt;a href=&quot;”‘+server+&quot; rel=&quot;nofollow&quot;&gt;#$2&lt;/a&gt;’
).replace(/(^&#124;\s)!(\w+)/g,
‘$1&lt;a href=&quot;”‘+server+&quot; rel=&quot;nofollow&quot;&gt;!$2&lt;/a&gt;’);
}
});</description> <content:encoded><![CDATA[<p>Sorry for double posting &#8211; had to change the one line:<br
/> (too much copy paste &#8211; forgot to put a &#8220;!&#8221; instead of &#8220;#&#8221; and killed the &#8220;%23&#8243;)<br
/> this works correct:<br
/> String.implement({<br
/> dentify: function(server) {<br
/> return this.replace(/(https?:\/\/\S+)/gi,’<a
href="”$1″" rel="nofollow">$1</a>’<br
/> ).replace(/(^|\s)@(\w+)/g,<br
/> ‘$1<a
href="”‘+server+’/$2″" rel="nofollow">@$2</a>’<br
/> ).replace(/(^|\s)#(\w+)/g,<br
/> ‘$1<a
href="”‘+server+" rel="nofollow">#$2</a>’<br
/> ).replace(/(^|\s)!(\w+)/g,<br
/> ‘$1<a
href="”‘+server+" rel="nofollow">!$2</a>’);<br
/> }<br
/> });</p> ]]></content:encoded> </item> <item><title>By: derschreckliche</title><link>http://davidwalsh.name/tweetify#comment-11770</link> <dc:creator>derschreckliche</dc:creator> <pubDate>Mon, 07 Sep 2009 22:31:12 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=3490#comment-11770</guid> <description>Here is dentify for using with identi.ca and other laconica / statusnet servers:String.implement({
dentify: function(server) {
return this.replace(/(https?:\/\/\S+)/gi,&#039;&lt;a href=&quot;$1&quot;&gt;$1&lt;/a&gt;&#039;
).replace(/(^&#124;\s)@(\w+)/g,
&#039;$1&lt;a href=&quot;&#039;+server+&#039;/$2&quot;&gt;@$2&lt;/a&gt;&#039;
).replace(/(^&#124;\s)#(\w+)/g,
&#039;$1&lt;a href=&quot;&#039;+server+
&#039;/search/notice?q=%23$2&amp;search=Search&quot;&gt;#$2&lt;/a&gt;&#039;
).replace(/(^&#124;\s)!(\w+)/g,
&#039;$1&lt;a href=&quot;&#039;+server+
&#039;/search/group?q=%23$2&amp;search=Search&quot;&gt;#$2&lt;/a&gt;&#039;);
}
});You will have to give it a &quot;server&quot; string like &quot;http://identi.ca&quot;.I used it for &lt;a href=&quot;http://derschreckliche.1on.de/archives/27-Mootools-Identi.ca-and-Twitter-widget.html&quot; rel=&quot;nofollow&quot;&gt;my identi.ca / twitter widget&lt;/a&gt;Big THX again for this useful thing!</description> <content:encoded><![CDATA[<p>Here is dentify for using with identi.ca and other laconica / statusnet servers:</p><p>String.implement({<br
/> dentify: function(server) {<br
/> return this.replace(/(https?:\/\/\S+)/gi,&#8217;&lt;a href=&#8221;$1&#8243;&gt;$1&lt;/a&gt;&#8217;<br
/> ).replace(/(^|\s)@(\w+)/g,<br
/> &#8216;$1&lt;a href=&#8221;&#8216;+server+&#8217;/$2&#8243;&gt;@$2&lt;/a&gt;&#8217;<br
/> ).replace(/(^|\s)#(\w+)/g,<br
/> &#8216;$1&lt;a href=&#8221;&#8216;+server+<br
/> &#8216;/search/notice?q=%23$2&amp;search=Search&#8221;&gt;#$2&lt;/a&gt;&#8217;<br
/> ).replace(/(^|\s)!(\w+)/g,<br
/> &#8216;$1&lt;a href=&#8221;&#8216;+server+<br
/> &#8216;/search/group?q=%23$2&amp;search=Search&#8221;&gt;#$2&lt;/a&gt;&#8217;);<br
/> }<br
/> });</p><p>You will have to give it a &#8220;server&#8221; string like &#8220;http://identi.ca&#8221;.</p><p>I used it for <a
href="http://derschreckliche.1on.de/archives/27-Mootools-Identi.ca-and-Twitter-widget.html" rel="nofollow">my identi.ca / twitter widget</a></p><p>Big THX again for this useful thing!</p> ]]></content:encoded> </item> <item><title>By: Sean Hood</title><link>http://davidwalsh.name/tweetify#comment-11689</link> <dc:creator>Sean Hood</dc:creator> <pubDate>Wed, 02 Sep 2009 22:21:10 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=3490#comment-11689</guid> <description>Ive recreated this in jQuery http://sublimeorange.com/jquery/tweetify/</description> <content:encoded><![CDATA[<p>Ive recreated this in jQuery <a
href="http://sublimeorange.com/jquery/tweetify/" rel="nofollow">http://sublimeorange.com/jquery/tweetify/</a></p> ]]></content:encoded> </item> <item><title>By: derschreckliche</title><link>http://davidwalsh.name/tweetify#comment-11678</link> <dc:creator>derschreckliche</dc:creator> <pubDate>Wed, 02 Sep 2009 21:12:41 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=3490#comment-11678</guid> <description>Nice thing - could be useful for a javascript &quot;tweet this&quot; button implementation.</description> <content:encoded><![CDATA[<p>Nice thing &#8211; could be useful for a javascript &#8220;tweet this&#8221; button implementation.</p> ]]></content:encoded> </item> <item><title>By: David Walsh</title><link>http://davidwalsh.name/tweetify#comment-11674</link> <dc:creator>David Walsh</dc:creator> <pubDate>Wed, 02 Sep 2009 15:21:14 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=3490#comment-11674</guid> <description>&lt;p&gt;@Sean:  jQuery doesn&#039;t lend itself as well to this.  I started creating a jQuery version and got frustrated and gave up.  I may try again.&lt;/p&gt;&lt;p&gt;@Darkimmortal:  Myth.  Definitely a myth.&lt;/p&gt;</description> <content:encoded><![CDATA[<p>@Sean:  jQuery doesn&#8217;t lend itself as well to this.  I started creating a jQuery version and got frustrated and gave up.  I may try again.</p><p>@Darkimmortal:  Myth.  Definitely a myth.</p> ]]></content:encoded> </item> <item><title>By: Darkimmortal</title><link>http://davidwalsh.name/tweetify#comment-11673</link> <dc:creator>Darkimmortal</dc:creator> <pubDate>Wed, 02 Sep 2009 15:15:25 +0000</pubDate> <guid
isPermaLink="false">http://davidwalsh.name/?p=3490#comment-11673</guid> <description>Doesn&#039;t extending native objects in Javascript screw things up?Or is that another myth?</description> <content:encoded><![CDATA[<p>Doesn&#8217;t extending native objects in Javascript screw things up?</p><p>Or is that another myth?</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 1/7 queries in 0.009 seconds using disk: basic
Object Caching 804/805 objects using disk: basic

Served from: davidwalsh.name @ 2012-05-24 02:32:52 -->
