summaryrefslogtreecommitdiff
path: root/defaults/solr
diff options
context:
space:
mode:
authorreger <reger18@arcor.de>2017-06-16 00:12:09 +0200
committerreger <reger18@arcor.de>2017-06-16 00:12:09 +0200
commit9220ccbec7a7d6f2b81fecc6c0de565b098f7db7 (patch)
tree1bdac87a3bcdc0f02ae1ec0fa148cce5c51452a1 /defaults/solr
parent4be4bfbba61b02d60e0b7ac22663c5e7dacfb7a0 (diff)
remove reference to velocityresponsewriter in solrconfig.xml
it is not longer part of solr-core api http://lucene.apache.org/solr/6_6_0/index.html
Diffstat (limited to 'defaults/solr')
-rw-r--r--defaults/solr/solrconfig.xml41
1 files changed, 2 insertions, 39 deletions
diff --git a/defaults/solr/solrconfig.xml b/defaults/solr/solrconfig.xml
index f8e1d4cfb..21f531a05 100644
--- a/defaults/solr/solrconfig.xml
+++ b/defaults/solr/solrconfig.xml
@@ -738,7 +738,7 @@
<lst name="defaults">
<str name="echoParams">explicit</str>
<int name="rows">10</int>
- <str name="df">text</str>
+ <str name="df">text_t</str>
</lst>
<!-- In addition to defaults, "appends" params can be specified
to identify values which should be appended to the list of
@@ -804,37 +804,7 @@
</lst>
</requestHandler>
- <!-- A Robust Example
-
- This example SearchHandler declaration shows off usage of the
- SearchHandler with many defaults declared
-
- Note that multiple instances of the same Request Handler
- (SearchHandler) can be registered multiple times with different
- names (and different init parameters)
- -->
- <requestHandler name="/browse" class="solr.SearchHandler">
- <lst name="defaults">
- <str name="echoParams">explicit</str>
-
- <!-- VelocityResponseWriter settings -->
- <str name="wt">velocity</str>
- <str name="v.template">browse</str>
- <str name="v.layout">layout</str>
-
- <!-- Query settings -->
- <str name="defType">edismax</str>
- <str name="q.alt">*:*</str>
- <str name="rows">10</str>
- <str name="fl">*,score</str>
-
- <!-- Faceting defaults -->
- <str name="facet">on</str>
- <str name="facet.mincount">1</str>
- </lst>
- </requestHandler>
-
- <initParams path="/update/**,/query,/select,/tvrh,/elevate,/spell,/browse">
+ <initParams path="/update/**,/query,/select,/tvrh,/elevate,/spell">
<lst name="defaults">
<str name="df">text</str>
</lst>
@@ -1328,13 +1298,6 @@
-->
<str name="content-type">text/plain; charset=UTF-8</str>
</queryResponseWriter>
-
- <!--
- Custom response writers can be declared as needed...
- -->
- <queryResponseWriter name="velocity" class="solr.VelocityResponseWriter" startup="lazy">
- <str name="template.base.dir">${velocity.template.base.dir:}</str>
- </queryResponseWriter>
<!-- XSLT response writer transforms the XML output by any xslt file found
in Solr's conf/xslt directory. Changes to xslt files are checked for