Sep
14
Filed Under (Search, Tips and Tricks, XSLT) by Andy Diericks on 25-04-2007

To get the results of a search in XML format, for example, to see the properties that are returned, copy/paste the following code in the "Search Core Result" XSLT window.

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/">
<xmp><xsl:copy-of select="*"/></xmp>
</xsl:template>
</xsl:stylesheet>
 
Ok, that’s over blogged, but always useful ;-)


Post a comment
Name: 
Email: 
URL: 
Comments: