I'd slap versions to those 2 XSL files to immediately answer "which version of Atom|RSS does this produce?"
Otis . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Simpy -- http://www.simpy.com/ - Tag - Search - Share ----- Original Message ---- From: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Sent: Thursday, May 24, 2007 3:06:31 PM Subject: svn commit: r541391 - in /lucene/solr/trunk: CHANGES.txt example/solr/conf/xslt/example_atom.xsl example/solr/conf/xslt/example_rss.xsl Author: hossman Date: Thu May 24 12:06:29 2007 New Revision: 541391 URL: http://svn.apache.org/viewvc?view=rev&rev=541391 Log: SOLR-208: example XSLTs for RSS and Atom Added: lucene/solr/trunk/example/solr/conf/xslt/example_atom.xsl (with props) lucene/solr/trunk/example/solr/conf/xslt/example_rss.xsl (with props) Modified: lucene/solr/trunk/CHANGES.txt Modified: lucene/solr/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/lucene/solr/trunk/CHANGES.txt?view=diff&rev=541391&r1=541390&r2=541391 ============================================================================== --- lucene/solr/trunk/CHANGES.txt (original) +++ lucene/solr/trunk/CHANGES.txt Thu May 24 12:06:29 2007 @@ -197,7 +197,12 @@ 33. SOLR-234: TrimFilter can update the Token's startOffset and endOffset if updateOffsets="true". By default the Token offsets are unchanged. (ryan) - + +34. SOLR-208: new example_rss.xsl and example_atom.xsl to provide more + examples for people about the Solr XML response format and how they + can transform it to suit different needs. + (Brian Whitman via hossman) + Changes in runtime behavior 1. Highlighting using DisMax will only pick up terms from the main user query, not boost or filter queries (klaas). Added: lucene/solr/trunk/example/solr/conf/xslt/example_atom.xsl URL: http://svn.apache.org/viewvc/lucene/solr/trunk/example/solr/conf/xslt/example_atom.xsl?view=auto&rev=541391 ============================================================================== --- lucene/solr/trunk/example/solr/conf/xslt/example_atom.xsl (added) +++ lucene/solr/trunk/example/solr/conf/xslt/example_atom.xsl Thu May 24 12:06:29 2007 @@ -0,0 +1,63 @@ +<?xml version='1.0' encoding='UTF-8'?> + +<!-- + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + --> + +<!-- + Simple transform of Solr query results to Atom + --> + +<xsl:stylesheet version='1.0' + xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> + + <xsl:output method="xml" encoding="utf-8" /> + + <xsl:template match='/'> + <xsl:variable name="query" select="response/[EMAIL PROTECTED]'responseHeader']/[EMAIL PROTECTED]'params']/[EMAIL PROTECTED]'q']"/> + <feed xmlns="http://www.w3.org/2005/Atom";> + <title>Example Solr Atom Feed</title> + <subtitle> + This has been formatted by the sample "example_atom.xsl" transform - + use your own XSLT to get a nicer Atom feed. + </subtitle> + <author> + <name>Apache Solr</name> + <email>[EMAIL PROTECTED]</email> + </author> + <link rel="self" type="application/atom+xml" + href="http://localhost:8983/solr/q={$query}&wt=xslt&tr=atom.xsl"/> + <updated> + <xsl:value-of select="response/result/doc[position()=1]/[EMAIL PROTECTED]'timestamp']"/> + </updated> + <id>tag:localhost,2007:example</id> + <xsl:apply-templates select="response/result/doc"/> + </feed> + </xsl:template> + + <!-- search results xslt --> + <xsl:template match="doc"> + <xsl:variable name="id" select="[EMAIL PROTECTED]'id']"/> + <entry> + <title><xsl:value-of select="[EMAIL PROTECTED]'name']"/></title> + <link href="http://localhost:8983/solr/select?q={$id}"/> + <id>tag:localhost,2007:<xsl:value-of select="$id"/></id> + <summary><xsl:value-of select="[EMAIL PROTECTED]'features']"/></summary> + <updated><xsl:value-of select="[EMAIL PROTECTED]'timestamp']"/></updated> + </entry> + </xsl:template> + +</xsl:stylesheet> Propchange: lucene/solr/trunk/example/solr/conf/xslt/example_atom.xsl ------------------------------------------------------------------------------ svn:eol-style = native Propchange: lucene/solr/trunk/example/solr/conf/xslt/example_atom.xsl ------------------------------------------------------------------------------ svn:keywords = Date Author Id Revision HeadURL Added: lucene/solr/trunk/example/solr/conf/xslt/example_rss.xsl URL: http://svn.apache.org/viewvc/lucene/solr/trunk/example/solr/conf/xslt/example_rss.xsl?view=auto&rev=541391 ============================================================================== --- lucene/solr/trunk/example/solr/conf/xslt/example_rss.xsl (added) +++ lucene/solr/trunk/example/solr/conf/xslt/example_rss.xsl Thu May 24 12:06:29 2007 @@ -0,0 +1,62 @@ +<?xml version='1.0' encoding='UTF-8'?> + +<!-- + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + --> + +<!-- + Simple transform of Solr query results to RSS + --> + +<xsl:stylesheet version='1.0' + xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> + + <xsl:output method="xml" encoding="utf-8" /> + <xsl:template match='/'> + <rss version="2.0"> + <channel> + <title>Example Solr RSS Feed</title> + <link>http://localhost:8983/solr</link> + <description> + This has been formatted by the sample "example_rss.xsl" transform - + use your own XSLT to get a nicer RSS feed. + </description> + <language>en-us</language> + <docs>http://localhost:8983/solr</docs> + <xsl:apply-templates select="response/result/doc"/> + </channel> + </rss> + </xsl:template> + + <!-- search results xslt --> + <xsl:template match="doc"> + <xsl:variable name="id" select="[EMAIL PROTECTED]'id']"/> + <xsl:variable name="timestamp" select="[EMAIL PROTECTED]'timestamp']"/> + <item> + <title><xsl:value-of select="[EMAIL PROTECTED]'name']"/></title> + <link> + http://localhost:8983/solr/select?q=id:<xsl:value-of select="$id"/> + </link> + <description> + <xsl:value-of select="[EMAIL PROTECTED]'features']"/> + </description> + <pubDate><xsl:value-of select="$timestamp"/></pubDate> + <guid> + http://localhost:8983/solr/select?q=id:<xsl:value-of select="$id"/> + </guid> + </item> + </xsl:template> +</xsl:stylesheet> Propchange: lucene/solr/trunk/example/solr/conf/xslt/example_rss.xsl ------------------------------------------------------------------------------ svn:eol-style = native Propchange: lucene/solr/trunk/example/solr/conf/xslt/example_rss.xsl ------------------------------------------------------------------------------ svn:keywords = Date Author Id Revision HeadURL