<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.1.2" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: XFN Anyone?</title>
	<link>http://blog.possumism.net/2007/04/05/xfn-anyone/</link>
	<description>Why? Because possum.kicks-ass</description>
	<pubDate>Fri, 18 May 2012 06:56:20 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.2</generator>

	<item>
		<title>By: Possum</title>
		<link>http://blog.possumism.net/2007/04/05/xfn-anyone/#comment-3077</link>
		<author>Possum</author>
		<pubDate>Mon, 09 Apr 2007 04:36:44 +0000</pubDate>
		<guid>http://blog.possumism.net/2007/04/05/xfn-anyone/#comment-3077</guid>
					<description>I've hacked up a poorly written &lt;a href="http://possumism.net/xfn.cgi"&gt;proof of concept&lt;/a&gt; in CGI/Perl (&lt;a href="http://possumism.net/xfn.txt"&gt;source&lt;/a&gt;).  Now someone implement it in XUL :)</description>
		<content:encoded><![CDATA[<p>I&#8217;ve hacked up a poorly written <a href="http://possumism.net/xfn.cgi">proof of concept</a> in CGI/Perl (<a href="http://possumism.net/xfn.txt">source</a>).  Now someone implement it in XUL <img src='http://blog.possumism.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: possum.kicks-ass.org &#187; Blog Archive &#187; Hoppy Easter</title>
		<link>http://blog.possumism.net/2007/04/05/xfn-anyone/#comment-3078</link>
		<author>possum.kicks-ass.org &#187; Blog Archive &#187; Hoppy Easter</author>
		<pubDate>Mon, 09 Apr 2007 05:00:41 +0000</pubDate>
		<guid>http://blog.possumism.net/2007/04/05/xfn-anyone/#comment-3078</guid>
					<description>[...] possum.kicks-ass.org Why? Because possum.kicks-ass             &#171; XFN Anyone? [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] possum.kicks-ass.org Why? Because possum.kicks-ass             &laquo; XFN Anyone? [&#8230;]</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Possum</title>
		<link>http://blog.possumism.net/2007/04/05/xfn-anyone/#comment-3156</link>
		<author>Possum</author>
		<pubDate>Tue, 10 Apr 2007 05:25:06 +0000</pubDate>
		<guid>http://blog.possumism.net/2007/04/05/xfn-anyone/#comment-3156</guid>
					<description>Looks like the &lt;a href="http://blog.codeeg.com/tails-firefox-extension-03/"&gt;Tails&lt;/a&gt; extension does something &lt;em&gt;similar&lt;/em&gt;, with microformats, and perhaps a "Tails script" can handle XFN.

Not &lt;em&gt;exactly&lt;/em&gt; what I had in mind, but it's on the right path :)</description>
		<content:encoded><![CDATA[<p>Looks like the <a href="http://blog.codeeg.com/tails-firefox-extension-03/">Tails</a> extension does something <em>similar</em>, with microformats, and perhaps a &#8220;Tails script&#8221; can handle XFN.</p>
<p>Not <em>exactly</em> what I had in mind, but it&#8217;s on the right path <img src='http://blog.possumism.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Possum</title>
		<link>http://blog.possumism.net/2007/04/05/xfn-anyone/#comment-3244</link>
		<author>Possum</author>
		<pubDate>Wed, 11 Apr 2007 05:33:19 +0000</pubDate>
		<guid>http://blog.possumism.net/2007/04/05/xfn-anyone/#comment-3244</guid>
					<description>Hmm... I found something &lt;em&gt;really&lt;/em&gt; close to what I was looking for.  It's a &lt;a href="http://google.com/search?q=greasemonkey"&gt;Greasemonkey&lt;/a&gt; script called &lt;a href="http://userscripts.org/scripts/source/880"&gt;XFN Viewer&lt;/a&gt;.  This implementation causes a CSS-styled &#60;div&#62; to appear at the bottom of the screen (without modification).  Some caveats are that it doesn't detect 'rel="me"' (the XFN &lt;em&gt;identity&lt;/em&gt; idea) and it doesn't detect reciprocal links.  Also, it kinda breaks unless you edit the scripts.  Here are some screenshots:

&lt;p align="center"&gt;
&lt;a href="http://images.possumism.net/v/screenshots/possumkicks-ass-xfn-greasemonkey.png.html?g2_imageViewsIndex=1"&gt;&lt;img src="http://images.possumism.net/d/318-2/possumkicks-ass-xfn-greasemonkey.png" alt="possum.kicks-ass.org + XFN Viewer" /&gt;&lt;/a&gt; &lt;a href="http://images.possumism.net/v/screenshots/photojunkie-xfn-greasemonkey.png.html?g2_imageViewsIndex=1"&gt;&lt;img src="http://images.possumism.net/d/321-2/photojunkie-xfn-greasemonkey.png" alt="photojunkie.ca + XFN Viewer" /&gt;&lt;/a&gt;
&lt;/p&gt;

Since the javascript in the script simply writes an extra &#60;div&#62; into the page, complete with CSS styling, it's easy to add two lines to the script to prevent an issue like you see on &lt;a href="http://photojunkie.ca"&gt;photojunkie &lt;/a&gt;.  The two lines you should add are:

'  height: 15%;' +

'  overflow: auto;' +

Change the "15%" to whatever you think is reasonable.  These lines should be added to the section "'#xfnviewer-div-0 {'+".  With this fix, the result comes to something like this (notice the XFN div is now small, and scrollable):

&lt;p align='center'&gt;
&lt;a href="http://images.possumism.net/v/screenshots/photojunkie-xfn-greasemonkey-fixed.png.html?g2_imageViewsIndex=1"&gt;&lt;img src="http://images.possumism.net/d/324-2/photojunkie-xfn-greasemonkey-fixed.png" alt="Photojunkie with fixes" /&gt;&lt;/a&gt;&lt;/p&gt;

Anyway, it's a nice script, and on the right track.  But IMO, it would be nice to see something that uses XUL (to display in, i.e., a sidebar) and one that detects reciprocal links.

By the way, if you use this script, and you want it to detect 'rel="me"' simply add "me" to the pipe-separated list named XFNRegex.</description>
		<content:encoded><![CDATA[<p>Hmm&#8230; I found something <em>really</em> close to what I was looking for.  It&#8217;s a <a href="http://google.com/search?q=greasemonkey">Greasemonkey</a> script called <a href="http://userscripts.org/scripts/source/880">XFN Viewer</a>.  This implementation causes a CSS-styled &lt;div&gt; to appear at the bottom of the screen (without modification).  Some caveats are that it doesn&#8217;t detect &#8216;rel=&#8221;me&#8221;&#8216; (the XFN <em>identity</em> idea) and it doesn&#8217;t detect reciprocal links.  Also, it kinda breaks unless you edit the scripts.  Here are some screenshots:</p>
<p align="center">
<a href="http://images.possumism.net/v/screenshots/possumkicks-ass-xfn-greasemonkey.png.html?g2_imageViewsIndex=1"><img src="http://images.possumism.net/d/318-2/possumkicks-ass-xfn-greasemonkey.png" alt="possum.kicks-ass.org + XFN Viewer" /></a> <a href="http://images.possumism.net/v/screenshots/photojunkie-xfn-greasemonkey.png.html?g2_imageViewsIndex=1"><img src="http://images.possumism.net/d/321-2/photojunkie-xfn-greasemonkey.png" alt="photojunkie.ca + XFN Viewer" /></a>
</p>
<p>Since the javascript in the script simply writes an extra &lt;div&gt; into the page, complete with CSS styling, it&#8217;s easy to add two lines to the script to prevent an issue like you see on <a href="http://photojunkie.ca">photojunkie </a>.  The two lines you should add are:</p>
<p>&#8216;  height: 15%;&#8217; +</p>
<p>&#8216;  overflow: auto;&#8217; +</p>
<p>Change the &#8220;15%&#8221; to whatever you think is reasonable.  These lines should be added to the section &#8220;&#8216;#xfnviewer-div-0 {&#8217;+&#8221;.  With this fix, the result comes to something like this (notice the XFN div is now small, and scrollable):</p>
<p align='center'>
<a href="http://images.possumism.net/v/screenshots/photojunkie-xfn-greasemonkey-fixed.png.html?g2_imageViewsIndex=1"><img src="http://images.possumism.net/d/324-2/photojunkie-xfn-greasemonkey-fixed.png" alt="Photojunkie with fixes" /></a></p>
<p>Anyway, it&#8217;s a nice script, and on the right track.  But IMO, it would be nice to see something that uses XUL (to display in, i.e., a sidebar) and one that detects reciprocal links.</p>
<p>By the way, if you use this script, and you want it to detect &#8216;rel=&#8221;me&#8221;&#8216; simply add &#8220;me&#8221; to the pipe-separated list named XFNRegex.</p>
]]></content:encoded>
				</item>
</channel>
</rss>

