~slub.team/goobi-indexserver/3.x

« back to all changes in this revision

Viewing changes to solr/core/src/test-files/solr/conf/xslt/xsl-update-handler-test.xsl

  • Committer: Sebastian Meyer
  • Date: 2012-08-03 09:12:40 UTC
  • Revision ID: sebastian.meyer@slub-dresden.de-20120803091240-x6861b0vabq1xror
Remove Lucene and Solr source code and add patches instead
Fix Bug #985487: Auto-suggestion for the search interface

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
 
22
 
 
23
 
XSL transform used to test the XSLTUpdateRequestHandler.
24
 
Transforms a test XML into standard Solr <add><doc/></add> format.
25
 
 
26
 
 -->
27
 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
28
 
  <xsl:template match="/">
29
 
    <add>
30
 
      <xsl:apply-templates select="/random/document"/>
31
 
    </add>
32
 
  </xsl:template>
33
 
 
34
 
  <xsl:template match="document">
35
 
    <doc boost="5.5">
36
 
      <xsl:apply-templates select="*"/>
37
 
    </doc>
38
 
  </xsl:template>
39
 
 
40
 
  <xsl:template match="node">
41
 
    <field name="{@name}">
42
 
      <xsl:if test="@enhance!=''">
43
 
        <xsl:attribute name="boost"><xsl:value-of select="@enhance"/></xsl:attribute>
44
 
      </xsl:if>
45
 
      <xsl:value-of select="@value"/>
46
 
    </field>
47
 
  </xsl:template>
48
 
 
49
 
</xsl:stylesheet>