source: sandbox/expresso-solr/solr/example/example-DIH/solr/db/conf/xslt/example_rss.xsl @ 7588

Revision 7588, 2.2 KB checked in by adir, 11 years ago (diff)

Ticket #000 - Adicionando a integracao de buscas com Solr na base a ser isnerida na comunidade

Line 
1<?xml version='1.0' encoding='UTF-8'?>
2
3<!--
4 * Licensed to the Apache Software Foundation (ASF) under one or more
5 * contributor license agreements.  See the NOTICE file distributed with
6 * this work for additional information regarding copyright ownership.
7 * The ASF licenses this file to You under the Apache License, Version 2.0
8 * (the "License"); you may not use this file except in compliance with
9 * the License.  You may obtain a copy of the License at
10 *
11 *     http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 -->
19
20<!--
21  Simple transform of Solr query results to RSS
22 -->
23
24<xsl:stylesheet version='1.0'
25    xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>
26
27  <xsl:output method="xml" encoding="utf-8" />
28  <xsl:template match='/'>
29    <rss version="2.0">
30       <channel>
31         <title>Example Solr RSS 2.0 Feed</title>
32         <link>http://localhost:8983/solr</link>
33         <description>
34          This has been formatted by the sample "example_rss.xsl" transform -
35          use your own XSLT to get a nicer RSS feed.
36         </description>
37         <language>en-us</language>
38         <docs>http://localhost:8983/solr</docs>
39         <xsl:apply-templates select="response/result/doc"/>
40       </channel>
41    </rss>
42  </xsl:template>
43 
44  <!-- search results xslt -->
45  <xsl:template match="doc">
46    <xsl:variable name="id" select="str[@name='id']"/>
47    <xsl:variable name="timestamp" select="date[@name='timestamp']"/>
48    <item>
49      <title><xsl:value-of select="str[@name='name']"/></title>
50      <link>
51        http://localhost:8983/solr/select?q=id:<xsl:value-of select="$id"/>
52      </link>
53      <description>
54        <xsl:value-of select="arr[@name='features']"/>
55      </description>
56      <pubDate><xsl:value-of select="$timestamp"/></pubDate>
57      <guid>
58        http://localhost:8983/solr/select?q=id:<xsl:value-of select="$id"/>
59      </guid>
60    </item>
61  </xsl:template>
62</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.