You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2011/05/30 23:46:21 UTC

svn commit: r1129392 - in /lucene/dev/branches/branch_3x/solr/example: example-DIH/solr/db/conf/ example-DIH/solr/mail/conf/ example-DIH/solr/rss/conf/ example-DIH/solr/tika/conf/ multicore/core0/conf/ multicore/core1/conf/ solr/conf/

Author: rmuir
Date: Mon May 30 21:46:21 2011
New Revision: 1129392

URL: http://svn.apache.org/viewvc?rev=1129392&view=rev
Log:
SOLR-2557: ensure example configuration files have the correct luceneMatchVersion

Modified:
    lucene/dev/branches/branch_3x/solr/example/example-DIH/solr/db/conf/solrconfig.xml
    lucene/dev/branches/branch_3x/solr/example/example-DIH/solr/mail/conf/solrconfig.xml
    lucene/dev/branches/branch_3x/solr/example/example-DIH/solr/rss/conf/solrconfig.xml
    lucene/dev/branches/branch_3x/solr/example/example-DIH/solr/tika/conf/solrconfig.xml
    lucene/dev/branches/branch_3x/solr/example/multicore/core0/conf/solrconfig.xml
    lucene/dev/branches/branch_3x/solr/example/multicore/core1/conf/solrconfig.xml
    lucene/dev/branches/branch_3x/solr/example/solr/conf/solrconfig.xml

Modified: lucene/dev/branches/branch_3x/solr/example/example-DIH/solr/db/conf/solrconfig.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/solr/example/example-DIH/solr/db/conf/solrconfig.xml?rev=1129392&r1=1129391&r2=1129392&view=diff
==============================================================================
--- lucene/dev/branches/branch_3x/solr/example/example-DIH/solr/db/conf/solrconfig.xml (original)
+++ lucene/dev/branches/branch_3x/solr/example/example-DIH/solr/db/conf/solrconfig.xml Mon May 30 21:46:21 2011
@@ -18,6 +18,8 @@
 
 <config>
 
+  <luceneMatchVersion>LUCENE_33</luceneMatchVersion>
+
   <jmx />
 
   <!-- Set this to 'false' if you want solr to continue working after it has 

Modified: lucene/dev/branches/branch_3x/solr/example/example-DIH/solr/mail/conf/solrconfig.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/solr/example/example-DIH/solr/mail/conf/solrconfig.xml?rev=1129392&r1=1129391&r2=1129392&view=diff
==============================================================================
--- lucene/dev/branches/branch_3x/solr/example/example-DIH/solr/mail/conf/solrconfig.xml (original)
+++ lucene/dev/branches/branch_3x/solr/example/example-DIH/solr/mail/conf/solrconfig.xml Mon May 30 21:46:21 2011
@@ -17,6 +17,9 @@
 -->
 
 <config>
+
+  <luceneMatchVersion>LUCENE_33</luceneMatchVersion>
+
   <!-- Set this to 'false' if you want solr to continue working after it has
        encountered an severe configuration error.  In a production environment,
        you may want solr to keep working even if one handler is mis-configured.

Modified: lucene/dev/branches/branch_3x/solr/example/example-DIH/solr/rss/conf/solrconfig.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/solr/example/example-DIH/solr/rss/conf/solrconfig.xml?rev=1129392&r1=1129391&r2=1129392&view=diff
==============================================================================
--- lucene/dev/branches/branch_3x/solr/example/example-DIH/solr/rss/conf/solrconfig.xml (original)
+++ lucene/dev/branches/branch_3x/solr/example/example-DIH/solr/rss/conf/solrconfig.xml Mon May 30 21:46:21 2011
@@ -18,6 +18,8 @@
 
 <config>
 
+  <luceneMatchVersion>LUCENE_33</luceneMatchVersion>
+
   <jmx />
 
   <!-- Set this to 'false' if you want solr to continue working after it has 

Modified: lucene/dev/branches/branch_3x/solr/example/example-DIH/solr/tika/conf/solrconfig.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/solr/example/example-DIH/solr/tika/conf/solrconfig.xml?rev=1129392&r1=1129391&r2=1129392&view=diff
==============================================================================
--- lucene/dev/branches/branch_3x/solr/example/example-DIH/solr/tika/conf/solrconfig.xml (original)
+++ lucene/dev/branches/branch_3x/solr/example/example-DIH/solr/tika/conf/solrconfig.xml Mon May 30 21:46:21 2011
@@ -17,6 +17,9 @@
 -->
 
 <config>
+
+  <luceneMatchVersion>LUCENE_33</luceneMatchVersion>
+
   <!-- Set this to 'false' if you want solr to continue working after it has 
        encountered an severe configuration error.  In a production environment, 
        you may want solr to keep working even if one handler is mis-configured.

Modified: lucene/dev/branches/branch_3x/solr/example/multicore/core0/conf/solrconfig.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/solr/example/multicore/core0/conf/solrconfig.xml?rev=1129392&r1=1129391&r2=1129392&view=diff
==============================================================================
--- lucene/dev/branches/branch_3x/solr/example/multicore/core0/conf/solrconfig.xml (original)
+++ lucene/dev/branches/branch_3x/solr/example/multicore/core0/conf/solrconfig.xml Mon May 30 21:46:21 2011
@@ -21,7 +21,7 @@
  It is *not* a good example to work from. 
 -->
 <config>
-  <luceneMatchVersion>LUCENE_31</luceneMatchVersion>
+  <luceneMatchVersion>LUCENE_33</luceneMatchVersion>
   <!--  The DirectoryFactory to use for indexes.
         solr.StandardDirectoryFactory, the default, is filesystem based.
         solr.RAMDirectoryFactory is memory based, not persistent, and doesn't work with replication. -->

Modified: lucene/dev/branches/branch_3x/solr/example/multicore/core1/conf/solrconfig.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/solr/example/multicore/core1/conf/solrconfig.xml?rev=1129392&r1=1129391&r2=1129392&view=diff
==============================================================================
--- lucene/dev/branches/branch_3x/solr/example/multicore/core1/conf/solrconfig.xml (original)
+++ lucene/dev/branches/branch_3x/solr/example/multicore/core1/conf/solrconfig.xml Mon May 30 21:46:21 2011
@@ -21,7 +21,7 @@
  It is *not* a good example to work from. 
 -->
 <config>
-  <luceneMatchVersion>LUCENE_31</luceneMatchVersion>
+  <luceneMatchVersion>LUCENE_33</luceneMatchVersion>
   <!--  The DirectoryFactory to use for indexes.
         solr.StandardDirectoryFactory, the default, is filesystem based.
         solr.RAMDirectoryFactory is memory based, not persistent, and doesn't work with replication. -->

Modified: lucene/dev/branches/branch_3x/solr/example/solr/conf/solrconfig.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/solr/example/solr/conf/solrconfig.xml?rev=1129392&r1=1129391&r2=1129392&view=diff
==============================================================================
--- lucene/dev/branches/branch_3x/solr/example/solr/conf/solrconfig.xml (original)
+++ lucene/dev/branches/branch_3x/solr/example/solr/conf/solrconfig.xml Mon May 30 21:46:21 2011
@@ -47,7 +47,7 @@
        that you fully re-index after changing this setting as it can
        affect both how text is indexed and queried.
     -->
-  <luceneMatchVersion>LUCENE_31</luceneMatchVersion>
+  <luceneMatchVersion>LUCENE_33</luceneMatchVersion>
 
   <!-- lib directives can be used to instruct Solr to load an Jars
        identified and use them to resolve any "plugins" specified in