Paul Prescod posted the following, cool XSLT hack to FoRK. It uses Google’s XML interface to list in which Mozilla directories a query subject appears.
<?xml version="1.0"?>
<html xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xsl:version="1.0">
<ul>
<xsl:for-each
select="document('http://www.google.com/xml?q=whump.com')//CAT/GN">
<li>
<xsl:value-of select="."/>
</li>
</xsl:for-each>
</ul>
</html>
Possibly Related posts (machine generated):