aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2012-12-11 18:26:30 +0100
committerTrygve Laugstøl <trygvis@inamo.no>2012-12-11 18:26:30 +0100
commit17f6eaadeb91057cb37309271c0b6e79439f64aa (patch)
tree06d41bafd9aca824b8df7f4716e4a7c37db32f64 /src/test
parent91fbd12e13e16c4b163803e37ac24a0d1629d82d (diff)
downloadesper-testing-17f6eaadeb91057cb37309271c0b6e79439f64aa.tar.gz
esper-testing-17f6eaadeb91057cb37309271c0b6e79439f64aa.tar.bz2
esper-testing-17f6eaadeb91057cb37309271c0b6e79439f64aa.tar.xz
esper-testing-17f6eaadeb91057cb37309271c0b6e79439f64aa.zip
o Starting to parse out commit info from the Jenkins build too.
Diffstat (limited to 'src/test')
-rwxr-xr-xsrc/test/java/io/trygvis/esper/testing/jenkins/JenkinsBuildXmlTest.java62
-rwxr-xr-xsrc/test/resources/jenkins/build/build-with-git-commits.xml12
-rwxr-xr-xsrc/test/resources/jenkins/build/build-with-subversion-commits.xml2
3 files changed, 76 insertions, 0 deletions
diff --git a/src/test/java/io/trygvis/esper/testing/jenkins/JenkinsBuildXmlTest.java b/src/test/java/io/trygvis/esper/testing/jenkins/JenkinsBuildXmlTest.java
new file mode 100755
index 0000000..75d7326
--- /dev/null
+++ b/src/test/java/io/trygvis/esper/testing/jenkins/JenkinsBuildXmlTest.java
@@ -0,0 +1,62 @@
+package io.trygvis.esper.testing.jenkins;
+
+import java.io.IOException;
+import java.io.InputStream;
+import java.net.URI;
+
+import org.jdom2.Document;
+import org.joda.time.DateTime;
+import org.joda.time.LocalDateTime;
+import org.joda.time.chrono.ISOChronology;
+
+import fj.data.Option;
+import io.trygvis.esper.testing.util.XmlParser;
+import junit.framework.TestCase;
+
+import static org.joda.time.DateTimeZone.forOffsetHours;
+import static org.joda.time.DateTimeZone.forOffsetHoursMinutes;
+import static org.joda.time.chrono.ISOChronology.getInstance;
+
+public class JenkinsBuildXmlTest extends TestCase {
+ XmlParser parser = new XmlParser();
+ ISOChronology minus6 = getInstance(forOffsetHours(-6));
+ ISOChronology minus5 = getInstance(forOffsetHours(-5));
+ ISOChronology plus530 = getInstance(forOffsetHoursMinutes(5, 30));
+
+ public Option<Document> f(InputStream inputStream) {
+ return parser.parseDocument(inputStream);
+ }
+
+ public void testYo() throws IOException {
+ try (InputStream is = getClass().getResourceAsStream("/jenkins/build/build-with-git-commits.xml")) {
+ Option<JenkinsBuildXml> option = JenkinsBuildXml.parse(parser.parseDocument(is).some().getRootElement());
+
+ assertTrue(option.isSome());
+ JenkinsBuildXml build = option.some();
+
+ assertEquals(URI.create("http://ci.jruby.org/job/jruby-dist-master/1085/"), build.url);
+ assertEquals(1085, build.number);
+ assertTrue(build.result.isSome());
+ assertEquals(488824, build.duration);
+ assertTrue(build.changeSet.isSome());
+ JenkinsBuildXml.ChangeSetXml changeSet = build.changeSet.some();
+ assertTrue(changeSet.revision.isNone());
+ assertEquals(8, changeSet.items.size());
+
+ assertItem(changeSet.items.get(0), "df6d3e8773dff6cc727a6ca4d8eaa8b5f970138d", "Add missing jnr-enxio to NB project.", new DateTime(2012, 12, 5, 10, 40, 58, 0, minus6));
+ assertItem(changeSet.items.get(1), "54f6ce8c6e9a2c068c6b1bdfa096dcabb4e0ef1c", "Added description for vertexFor method", new DateTime(2012, 12, 5, 10, 56, 3, 0, plus530));
+ assertItem(changeSet.items.get(2), "b6edf4a29157ef5ecd4e050c79f9353200ed0daf", "Added spec for allData method of DirectedGraph.java", new DateTime(2012, 12, 5, 10, 56, 3, 0, plus530));
+ assertItem(changeSet.items.get(3), "9deef648a66d8fd4ed1b119419410b28492b87b4", "Added spec for removeEdge(Edge edge) method in DirectedGraph.java", new DateTime(2012, 12, 5, 11, 7, 34, 0, plus530));
+ assertItem(changeSet.items.get(4), "9a3eb797ce136349f3866fc2ae9b35be360fb3df", "Added spec for getInorderData method of DirectedGraph.java", new DateTime(2012, 12, 5, 11, 20, 17, 0, plus530));
+ assertItem(changeSet.items.get(5), "41b5de23dd2d7ccbc170252a43b8996316b93075", "No need to look up TZ here. In all cases leading up to here,", new DateTime(2012, 12, 6, 0, 5, 37, 0, minus5));
+ assertItem(changeSet.items.get(6), "def4c054ae82848c92b015a3267ace2c2cedd193", "Identify the correct JIRA ticket.", new DateTime(2012, 12, 6, 0, 8, 8, 0, minus5));
+ assertItem(changeSet.items.get(7), "82f12220d01c2c07398107fa5f5a2d50feb7c8c4", "As ugly as it might be, maintaining a map of exceptional time zone", new DateTime(2012, 12, 6, 0, 17, 26, 0, minus5));
+ }
+ }
+
+ private void assertItem(JenkinsBuildXml.ChangeSetItemXml item, String commitId, String msg, DateTime date) {
+ assertEquals(commitId, item.commitId);
+ assertEquals(msg, item.msg);
+ assertEquals(date.toDateTime(item.date.getZone()), item.date);
+ }
+}
diff --git a/src/test/resources/jenkins/build/build-with-git-commits.xml b/src/test/resources/jenkins/build/build-with-git-commits.xml
new file mode 100755
index 0000000..e04113d
--- /dev/null
+++ b/src/test/resources/jenkins/build/build-with-git-commits.xml
@@ -0,0 +1,12 @@
+<!-- http://ci.jruby.org/job/jruby-dist-master/1085/api/xml -->
+<freeStyleBuild><action><cause><shortDescription>Started by timer</shortDescription></cause></action><action><buildsByBranchName><originmaster><buildNumber>1085</buildNumber><revision><SHA1>82f12220d01c2c07398107fa5f5a2d50feb7c8c4</SHA1><branch><SHA1>82f12220d01c2c07398107fa5f5a2d50feb7c8c4</SHA1><name>origin/master</name></branch></revision></originmaster></buildsByBranchName><lastBuiltRevision><SHA1>82f12220d01c2c07398107fa5f5a2d50feb7c8c4</SHA1><branch><SHA1>82f12220d01c2c07398107fa5f5a2d50feb7c8c4</SHA1><name>origin/master</name></branch></lastBuiltRevision><remoteUrl>git://jruby.org/jruby.git</remoteUrl><scmName></scmName></action><action></action><action></action><building>false</building><duration>488824</duration><estimatedDuration>522747</estimatedDuration><fullDisplayName>jruby-dist-master #1085</fullDisplayName><id>2012-12-06_03-01-02</id><keepLog>false</keepLog><number>1085</number><result>SUCCESS</result><timestamp>1354791662000</timestamp><url>http://ci.jruby.org/job/jruby-dist-master/1085/</url><builtOn></builtOn><changeSet><item><affectedPath>nbproject/nbjdk.properties</affectedPath><affectedPath>nbproject/project.xml</affectedPath><commitId>df6d3e8773dff6cc727a6ca4d8eaa8b5f970138d</commitId><timestamp>1354732858000</timestamp><author><absoluteUrl>http://ci.jruby.org/user/Charles%20Oliver%20Nutter</absoluteUrl><fullName>Charles Oliver Nutter</fullName></author><comment>Add missing jnr-enxio to NB project.
+</comment><date>2012-12-05 10:40:58 -0600</date><id>df6d3e8773dff6cc727a6ca4d8eaa8b5f970138d</id><msg>Add missing jnr-enxio to NB project.</msg><path><editType>edit</editType><file>nbproject/nbjdk.properties</file></path><path><editType>edit</editType><file>nbproject/project.xml</file></path></item><item><affectedPath>src/org/jruby/ir/util/DirectedGraph.java</affectedPath><commitId>54f6ce8c6e9a2c068c6b1bdfa096dcabb4e0ef1c</commitId><timestamp>1354733763000</timestamp><author><absoluteUrl>http://ci.jruby.org/user/csonpatki</absoluteUrl><fullName>csonpatki</fullName></author><comment>Added description for vertexFor method
+</comment><date>2012-12-05 10:56:03 +0530</date><id>54f6ce8c6e9a2c068c6b1bdfa096dcabb4e0ef1c</id><msg>Added description for vertexFor method</msg><path><editType>edit</editType><file>src/org/jruby/ir/util/DirectedGraph.java</file></path></item><item><affectedPath>spec/ir/directed_graph/directed_graph_spec.rb</affectedPath><commitId>b6edf4a29157ef5ecd4e050c79f9353200ed0daf</commitId><timestamp>1354733763000</timestamp><author><absoluteUrl>http://ci.jruby.org/user/csonpatki</absoluteUrl><fullName>csonpatki</fullName></author><comment>Added spec for allData method of DirectedGraph.java
+</comment><date>2012-12-05 10:56:03 +0530</date><id>b6edf4a29157ef5ecd4e050c79f9353200ed0daf</id><msg>Added spec for allData method of DirectedGraph.java</msg><path><editType>edit</editType><file>spec/ir/directed_graph/directed_graph_spec.rb</file></path></item><item><affectedPath>spec/ir/directed_graph/directed_graph_spec.rb</affectedPath><commitId>9deef648a66d8fd4ed1b119419410b28492b87b4</commitId><timestamp>1354734454000</timestamp><author><absoluteUrl>http://ci.jruby.org/user/csonpatki</absoluteUrl><fullName>csonpatki</fullName></author><comment>Added spec for removeEdge(Edge edge) method in DirectedGraph.java
+</comment><date>2012-12-05 11:07:34 +0530</date><id>9deef648a66d8fd4ed1b119419410b28492b87b4</id><msg>Added spec for removeEdge(Edge edge) method in DirectedGraph.java</msg><path><editType>edit</editType><file>spec/ir/directed_graph/directed_graph_spec.rb</file></path></item><item><affectedPath>spec/ir/directed_graph/directed_graph_spec.rb</affectedPath><commitId>9a3eb797ce136349f3866fc2ae9b35be360fb3df</commitId><timestamp>1354735217000</timestamp><author><absoluteUrl>http://ci.jruby.org/user/csonpatki</absoluteUrl><fullName>csonpatki</fullName></author><comment>Added spec for getInorderData method of DirectedGraph.java
+</comment><date>2012-12-05 11:20:17 +0530</date><id>9a3eb797ce136349f3866fc2ae9b35be360fb3df</id><msg>Added spec for getInorderData method of DirectedGraph.java</msg><path><editType>edit</editType><file>spec/ir/directed_graph/directed_graph_spec.rb</file></path></item><item><affectedPath>src/org/jruby/RubyTime.java</affectedPath><commitId>41b5de23dd2d7ccbc170252a43b8996316b93075</commitId><timestamp>1354781137000</timestamp><author><absoluteUrl>http://ci.jruby.org/user/hasari</absoluteUrl><fullName>Hiro Asari</fullName></author><comment>No need to look up TZ here. In all cases leading up to here,
+we should rely on the String value passed to set up the Time object.
+</comment><date>2012-12-06 00:05:37 -0500</date><id>41b5de23dd2d7ccbc170252a43b8996316b93075</id><msg>No need to look up TZ here. In all cases leading up to here,</msg><path><editType>edit</editType><file>src/org/jruby/RubyTime.java</file></path></item><item><affectedPath>src/org/jruby/RubyTime.java</affectedPath><commitId>def4c054ae82848c92b015a3267ace2c2cedd193</commitId><timestamp>1354781288000</timestamp><author><absoluteUrl>http://ci.jruby.org/user/hasari</absoluteUrl><fullName>Hiro Asari</fullName></author><comment>Identify the correct JIRA ticket.
+</comment><date>2012-12-06 00:08:08 -0500</date><id>def4c054ae82848c92b015a3267ace2c2cedd193</id><msg>Identify the correct JIRA ticket.</msg><path><editType>edit</editType><file>src/org/jruby/RubyTime.java</file></path></item><item><affectedPath>src/org/jruby/RubyTime.java</affectedPath><commitId>82f12220d01c2c07398107fa5f5a2d50feb7c8c4</commitId><timestamp>1354781846000</timestamp><author><absoluteUrl>http://ci.jruby.org/user/hasari</absoluteUrl><fullName>Hiro Asari</fullName></author><comment>As ugly as it might be, maintaining a map of exceptional time zone
+values may be the best way to address #215.
+</comment><date>2012-12-06 00:17:26 -0500</date><id>82f12220d01c2c07398107fa5f5a2d50feb7c8c4</id><msg>As ugly as it might be, maintaining a map of exceptional time zone</msg><path><editType>edit</editType><file>src/org/jruby/RubyTime.java</file></path></item></changeSet><culprit><absoluteUrl>http://ci.jruby.org/user/Charles%20Oliver%20Nutter</absoluteUrl><fullName>Charles Oliver Nutter</fullName></culprit><culprit><absoluteUrl>http://ci.jruby.org/user/csonpatki</absoluteUrl><fullName>csonpatki</fullName></culprit><culprit><absoluteUrl>http://ci.jruby.org/user/hasari</absoluteUrl><fullName>Hiro Asari</fullName></culprit></freeStyleBuild>
diff --git a/src/test/resources/jenkins/build/build-with-subversion-commits.xml b/src/test/resources/jenkins/build/build-with-subversion-commits.xml
new file mode 100755
index 0000000..92fbbab
--- /dev/null
+++ b/src/test/resources/jenkins/build/build-with-subversion-commits.xml
@@ -0,0 +1,2 @@
+<!-- https://builds.apache.org/job/Lucene-Solr-Tests-4.x-Java6/1102/api/xml -->
+<freeStyleBuild><action><cause><shortDescription>Started by timer</shortDescription></cause></action><action></action><action></action><action></action><action><failCount>0</failCount><skipCount>39</skipCount><totalCount>4583</totalCount><urlName>testReport</urlName></action><action></action><artifact><displayPath>README.txt</displayPath><fileName>README.txt</fileName><relativePath>README.txt</relativePath></artifact><building>false</building><duration>1646526</duration><estimatedDuration>1466031</estimatedDuration><fullDisplayName>Lucene-Solr-Tests-4.x-Java6 #1102</fullDisplayName><id>2012-12-11_03-17-24</id><keepLog>false</keepLog><number>1102</number><result>SUCCESS</result><timestamp>1355195844624</timestamp><url>https://builds.apache.org/job/Lucene-Solr-Tests-4.x-Java6/1102/</url><builtOn>lucene</builtOn><changeSet><item><affectedPath></affectedPath><affectedPath>dev-tools</affectedPath><affectedPath>lucene</affectedPath><affectedPath>lucene/BUILD.txt</affectedPath><affectedPath>lucene/CHANGES.txt</affectedPath><affectedPath>lucene/JRE_VERSION_MIGRATION.txt</affectedPath><affectedPath>lucene/LICENSE.txt</affectedPath><affectedPath>lucene/MIGRATE.txt</affectedPath><affectedPath>lucene/NOTICE.txt</affectedPath><affectedPath>lucene/README.txt</affectedPath><affectedPath>lucene/SYSTEM_REQUIREMENTS.txt</affectedPath><affectedPath>lucene/analysis</affectedPath><affectedPath>lucene/analysis/icu/src/java/org/apache/lucene/collation/ICUCollationKeyFilterFactory.java</affectedPath><affectedPath>lucene/backwards</affectedPath><affectedPath>lucene/benchmark</affectedPath><affectedPath>lucene/build.xml</affectedPath><affectedPath>lucene/codecs</affectedPath><affectedPath>lucene/common-build.xml</affectedPath><affectedPath>lucene/core</affectedPath><affectedPath>lucene/core/src/test/org/apache/lucene/index/TestBackwardsCompatibility.java</affectedPath><affectedPath>lucene/core/src/test/org/apache/lucene/index/index.40.cfs.zip</affectedPath><affectedPath>lucene/core/src/test/org/apache/lucene/index/index.40.nocfs.zip</affectedPath><affectedPath>lucene/core/src/test/org/apache/lucene/index/index.40.optimized.cfs.zip</affectedPath><affectedPath>lucene/core/src/test/org/apache/lucene/index/index.40.optimized.nocfs.zip</affectedPath><affectedPath>lucene/demo</affectedPath><affectedPath>lucene/facet</affectedPath><affectedPath>lucene/grouping</affectedPath><affectedPath>lucene/highlighter</affectedPath><affectedPath>lucene/ivy-settings.xml</affectedPath><affectedPath>lucene/join</affectedPath><affectedPath>lucene/licenses</affectedPath><affectedPath>lucene/memory</affectedPath><affectedPath>lucene/misc</affectedPath><affectedPath>lucene/module-build.xml</affectedPath><affectedPath>lucene/queries</affectedPath><affectedPath>lucene/queryparser</affectedPath><affectedPath>lucene/sandbox</affectedPath><affectedPath>lucene/site</affectedPath><affectedPath>lucene/spatial</affectedPath><affectedPath>lucene/suggest</affectedPath><affectedPath>lucene/test-framework</affectedPath><affectedPath>lucene/tools</affectedPath><affectedPath>solr</affectedPath><affectedPath>solr/CHANGES.txt</affectedPath><affectedPath>solr/LICENSE.txt</affectedPath><affectedPath>solr/NOTICE.txt</affectedPath><affectedPath>solr/README.txt</affectedPath><affectedPath>solr/SYSTEM_REQUIREMENTS.txt</affectedPath><affectedPath>solr/build.xml</affectedPath><affectedPath>solr/cloud-dev</affectedPath><affectedPath>solr/common-build.xml</affectedPath><affectedPath>solr/contrib</affectedPath><affectedPath>solr/core</affectedPath><affectedPath>solr/core/src/java/org/apache/solr/schema/IndexSchema.java</affectedPath><affectedPath>solr/example</affectedPath><affectedPath>solr/licenses</affectedPath><affectedPath>solr/licenses/httpclient-LICENSE-ASL.txt</affectedPath><affectedPath>solr/licenses/httpclient-NOTICE.txt</affectedPath><affectedPath>solr/licenses/httpcore-LICENSE-ASL.txt</affectedPath><affectedPath>solr/licenses/httpcore-NOTICE.txt</affectedPath><affectedPath>solr/licenses/httpmime-LICENSE-ASL.txt</affectedPath><affectedPath>solr/licenses/httpmime-NOTICE.txt</affectedPath><affectedPath>solr/scripts</affectedPath><affectedPath>solr/site</affectedPath><affectedPath>solr/solrj</affectedPath><affectedPath>solr/test-framework</affectedPath><affectedPath>solr/testlogging.properties</affectedPath><affectedPath>solr/webapp</affectedPath><author><absoluteUrl>https://builds.apache.org/user/markrmiller</absoluteUrl><fullName>markrmiller</fullName></author><commitId>1419960</commitId><timestamp>-1</timestamp><date>2012-12-11T01:08:10.682365Z</date><msg>SOLR-2986: Add MoreLikeThis to warning about features that require uniqueKey. Also, change the warning to warn log level.</msg><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/dev-tools</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/BUILD.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/CHANGES.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/JRE_VERSION_MIGRATION.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/LICENSE.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/MIGRATE.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/NOTICE.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/README.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/SYSTEM_REQUIREMENTS.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/analysis</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/analysis/icu/src/java/org/apache/lucene/collation/ICUCollationKeyFilterFactory.java</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/backwards</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/benchmark</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/build.xml</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/codecs</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/common-build.xml</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/core</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/core/src/test/org/apache/lucene/index/TestBackwardsCompatibility.java</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/core/src/test/org/apache/lucene/index/index.40.cfs.zip</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/core/src/test/org/apache/lucene/index/index.40.nocfs.zip</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/core/src/test/org/apache/lucene/index/index.40.optimized.cfs.zip</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/core/src/test/org/apache/lucene/index/index.40.optimized.nocfs.zip</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/demo</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/facet</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/grouping</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/highlighter</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/ivy-settings.xml</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/join</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/licenses</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/memory</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/misc</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/module-build.xml</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/queries</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/queryparser</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/sandbox</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/site</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/spatial</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/suggest</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/test-framework</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/tools</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/CHANGES.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/LICENSE.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/NOTICE.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/README.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/SYSTEM_REQUIREMENTS.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/build.xml</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/cloud-dev</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/common-build.xml</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/contrib</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/core</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/core/src/java/org/apache/solr/schema/IndexSchema.java</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/example</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/licenses</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/licenses/httpclient-LICENSE-ASL.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/licenses/httpclient-NOTICE.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/licenses/httpcore-LICENSE-ASL.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/licenses/httpcore-NOTICE.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/licenses/httpmime-LICENSE-ASL.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/licenses/httpmime-NOTICE.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/scripts</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/site</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/solrj</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/test-framework</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/testlogging.properties</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/webapp</file></path><revision>1419960</revision><user>markrmiller</user></item><item><affectedPath></affectedPath><affectedPath>dev-tools</affectedPath><affectedPath>lucene</affectedPath><affectedPath>lucene/BUILD.txt</affectedPath><affectedPath>lucene/CHANGES.txt</affectedPath><affectedPath>lucene/JRE_VERSION_MIGRATION.txt</affectedPath><affectedPath>lucene/LICENSE.txt</affectedPath><affectedPath>lucene/MIGRATE.txt</affectedPath><affectedPath>lucene/NOTICE.txt</affectedPath><affectedPath>lucene/README.txt</affectedPath><affectedPath>lucene/SYSTEM_REQUIREMENTS.txt</affectedPath><affectedPath>lucene/analysis</affectedPath><affectedPath>lucene/analysis/icu/src/java/org/apache/lucene/collation/ICUCollationKeyFilterFactory.java</affectedPath><affectedPath>lucene/backwards</affectedPath><affectedPath>lucene/benchmark</affectedPath><affectedPath>lucene/build.xml</affectedPath><affectedPath>lucene/codecs</affectedPath><affectedPath>lucene/common-build.xml</affectedPath><affectedPath>lucene/core</affectedPath><affectedPath>lucene/core/src/test/org/apache/lucene/index/TestBackwardsCompatibility.java</affectedPath><affectedPath>lucene/core/src/test/org/apache/lucene/index/index.40.cfs.zip</affectedPath><affectedPath>lucene/core/src/test/org/apache/lucene/index/index.40.nocfs.zip</affectedPath><affectedPath>lucene/core/src/test/org/apache/lucene/index/index.40.optimized.cfs.zip</affectedPath><affectedPath>lucene/core/src/test/org/apache/lucene/index/index.40.optimized.nocfs.zip</affectedPath><affectedPath>lucene/demo</affectedPath><affectedPath>lucene/facet</affectedPath><affectedPath>lucene/grouping</affectedPath><affectedPath>lucene/highlighter</affectedPath><affectedPath>lucene/ivy-settings.xml</affectedPath><affectedPath>lucene/join</affectedPath><affectedPath>lucene/licenses</affectedPath><affectedPath>lucene/memory</affectedPath><affectedPath>lucene/misc</affectedPath><affectedPath>lucene/module-build.xml</affectedPath><affectedPath>lucene/queries</affectedPath><affectedPath>lucene/queryparser</affectedPath><affectedPath>lucene/sandbox</affectedPath><affectedPath>lucene/site</affectedPath><affectedPath>lucene/spatial</affectedPath><affectedPath>lucene/suggest</affectedPath><affectedPath>lucene/test-framework</affectedPath><affectedPath>lucene/tools</affectedPath><affectedPath>solr</affectedPath><affectedPath>solr/CHANGES.txt</affectedPath><affectedPath>solr/LICENSE.txt</affectedPath><affectedPath>solr/NOTICE.txt</affectedPath><affectedPath>solr/README.txt</affectedPath><affectedPath>solr/SYSTEM_REQUIREMENTS.txt</affectedPath><affectedPath>solr/build.xml</affectedPath><affectedPath>solr/cloud-dev</affectedPath><affectedPath>solr/common-build.xml</affectedPath><affectedPath>solr/contrib</affectedPath><affectedPath>solr/core</affectedPath><affectedPath>solr/core/src/java/org/apache/solr/handler/admin/CollectionsHandler.java</affectedPath><affectedPath>solr/example</affectedPath><affectedPath>solr/licenses</affectedPath><affectedPath>solr/licenses/httpclient-LICENSE-ASL.txt</affectedPath><affectedPath>solr/licenses/httpclient-NOTICE.txt</affectedPath><affectedPath>solr/licenses/httpcore-LICENSE-ASL.txt</affectedPath><affectedPath>solr/licenses/httpcore-NOTICE.txt</affectedPath><affectedPath>solr/licenses/httpmime-LICENSE-ASL.txt</affectedPath><affectedPath>solr/licenses/httpmime-NOTICE.txt</affectedPath><affectedPath>solr/scripts</affectedPath><affectedPath>solr/site</affectedPath><affectedPath>solr/solrj</affectedPath><affectedPath>solr/test-framework</affectedPath><affectedPath>solr/testlogging.properties</affectedPath><affectedPath>solr/webapp</affectedPath><author><absoluteUrl>https://builds.apache.org/user/markrmiller</absoluteUrl><fullName>markrmiller</fullName></author><commitId>1419953</commitId><timestamp>-1</timestamp><date>2012-12-11T00:56:19.684855Z</date><msg>SOLR-4071: Validate that name is pass to Collections API create, and behave the same way as on startup when collection.configName is not explicitly passed.</msg><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/dev-tools</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/BUILD.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/CHANGES.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/JRE_VERSION_MIGRATION.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/LICENSE.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/MIGRATE.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/NOTICE.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/README.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/SYSTEM_REQUIREMENTS.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/analysis</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/analysis/icu/src/java/org/apache/lucene/collation/ICUCollationKeyFilterFactory.java</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/backwards</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/benchmark</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/build.xml</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/codecs</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/common-build.xml</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/core</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/core/src/test/org/apache/lucene/index/TestBackwardsCompatibility.java</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/core/src/test/org/apache/lucene/index/index.40.cfs.zip</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/core/src/test/org/apache/lucene/index/index.40.nocfs.zip</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/core/src/test/org/apache/lucene/index/index.40.optimized.cfs.zip</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/core/src/test/org/apache/lucene/index/index.40.optimized.nocfs.zip</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/demo</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/facet</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/grouping</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/highlighter</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/ivy-settings.xml</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/join</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/licenses</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/memory</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/misc</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/module-build.xml</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/queries</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/queryparser</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/sandbox</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/site</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/spatial</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/suggest</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/test-framework</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/tools</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/CHANGES.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/LICENSE.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/NOTICE.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/README.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/SYSTEM_REQUIREMENTS.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/build.xml</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/cloud-dev</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/common-build.xml</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/contrib</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/core</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/core/src/java/org/apache/solr/handler/admin/CollectionsHandler.java</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/example</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/licenses</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/licenses/httpclient-LICENSE-ASL.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/licenses/httpclient-NOTICE.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/licenses/httpcore-LICENSE-ASL.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/licenses/httpcore-NOTICE.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/licenses/httpmime-LICENSE-ASL.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/licenses/httpmime-NOTICE.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/scripts</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/site</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/solrj</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/test-framework</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/testlogging.properties</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/webapp</file></path><revision>1419953</revision><user>markrmiller</user></item><item><affectedPath></affectedPath><affectedPath>dev-tools</affectedPath><affectedPath>lucene</affectedPath><affectedPath>lucene/BUILD.txt</affectedPath><affectedPath>lucene/CHANGES.txt</affectedPath><affectedPath>lucene/JRE_VERSION_MIGRATION.txt</affectedPath><affectedPath>lucene/LICENSE.txt</affectedPath><affectedPath>lucene/MIGRATE.txt</affectedPath><affectedPath>lucene/NOTICE.txt</affectedPath><affectedPath>lucene/README.txt</affectedPath><affectedPath>lucene/SYSTEM_REQUIREMENTS.txt</affectedPath><affectedPath>lucene/analysis</affectedPath><affectedPath>lucene/analysis/icu/src/java/org/apache/lucene/collation/ICUCollationKeyFilterFactory.java</affectedPath><affectedPath>lucene/backwards</affectedPath><affectedPath>lucene/benchmark</affectedPath><affectedPath>lucene/build.xml</affectedPath><affectedPath>lucene/codecs</affectedPath><affectedPath>lucene/common-build.xml</affectedPath><affectedPath>lucene/core</affectedPath><affectedPath>lucene/core/src/test/org/apache/lucene/index/TestBackwardsCompatibility.java</affectedPath><affectedPath>lucene/core/src/test/org/apache/lucene/index/index.40.cfs.zip</affectedPath><affectedPath>lucene/core/src/test/org/apache/lucene/index/index.40.nocfs.zip</affectedPath><affectedPath>lucene/core/src/test/org/apache/lucene/index/index.40.optimized.cfs.zip</affectedPath><affectedPath>lucene/core/src/test/org/apache/lucene/index/index.40.optimized.nocfs.zip</affectedPath><affectedPath>lucene/demo</affectedPath><affectedPath>lucene/facet</affectedPath><affectedPath>lucene/grouping</affectedPath><affectedPath>lucene/highlighter</affectedPath><affectedPath>lucene/ivy-settings.xml</affectedPath><affectedPath>lucene/join</affectedPath><affectedPath>lucene/licenses</affectedPath><affectedPath>lucene/memory</affectedPath><affectedPath>lucene/misc</affectedPath><affectedPath>lucene/module-build.xml</affectedPath><affectedPath>lucene/queries</affectedPath><affectedPath>lucene/queryparser</affectedPath><affectedPath>lucene/sandbox</affectedPath><affectedPath>lucene/site</affectedPath><affectedPath>lucene/spatial</affectedPath><affectedPath>lucene/suggest</affectedPath><affectedPath>lucene/test-framework</affectedPath><affectedPath>lucene/tools</affectedPath><affectedPath>solr</affectedPath><affectedPath>solr/CHANGES.txt</affectedPath><affectedPath>solr/LICENSE.txt</affectedPath><affectedPath>solr/NOTICE.txt</affectedPath><affectedPath>solr/README.txt</affectedPath><affectedPath>solr/SYSTEM_REQUIREMENTS.txt</affectedPath><affectedPath>solr/build.xml</affectedPath><affectedPath>solr/cloud-dev</affectedPath><affectedPath>solr/common-build.xml</affectedPath><affectedPath>solr/contrib</affectedPath><affectedPath>solr/core</affectedPath><affectedPath>solr/core/src/java/org/apache/solr/handler/admin/LukeRequestHandler.java</affectedPath><affectedPath>solr/core/src/java/org/apache/solr/search/SolrIndexSearcher.java</affectedPath><affectedPath>solr/example</affectedPath><affectedPath>solr/licenses</affectedPath><affectedPath>solr/licenses/httpclient-LICENSE-ASL.txt</affectedPath><affectedPath>solr/licenses/httpclient-NOTICE.txt</affectedPath><affectedPath>solr/licenses/httpcore-LICENSE-ASL.txt</affectedPath><affectedPath>solr/licenses/httpcore-NOTICE.txt</affectedPath><affectedPath>solr/licenses/httpmime-LICENSE-ASL.txt</affectedPath><affectedPath>solr/licenses/httpmime-NOTICE.txt</affectedPath><affectedPath>solr/scripts</affectedPath><affectedPath>solr/site</affectedPath><affectedPath>solr/solrj</affectedPath><affectedPath>solr/test-framework</affectedPath><affectedPath>solr/testlogging.properties</affectedPath><affectedPath>solr/webapp</affectedPath><affectedPath>solr/webapp/web/js/scripts/cores.js</affectedPath><affectedPath>solr/webapp/web/js/scripts/dashboard.js</affectedPath><affectedPath>solr/webapp/web/tpl/cores.html</affectedPath><affectedPath>solr/webapp/web/tpl/dashboard.html</affectedPath><author><absoluteUrl>https://builds.apache.org/user/markrmiller</absoluteUrl><fullName>markrmiller</fullName></author><commitId>1419940</commitId><timestamp>-1</timestamp><date>2012-12-11T00:10:12.700549Z</date><msg>SOLR-3948: Calculate/display deleted documents in admin interface.</msg><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/dev-tools</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/BUILD.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/CHANGES.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/JRE_VERSION_MIGRATION.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/LICENSE.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/MIGRATE.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/NOTICE.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/README.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/SYSTEM_REQUIREMENTS.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/analysis</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/analysis/icu/src/java/org/apache/lucene/collation/ICUCollationKeyFilterFactory.java</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/backwards</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/benchmark</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/build.xml</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/codecs</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/common-build.xml</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/core</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/core/src/test/org/apache/lucene/index/TestBackwardsCompatibility.java</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/core/src/test/org/apache/lucene/index/index.40.cfs.zip</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/core/src/test/org/apache/lucene/index/index.40.nocfs.zip</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/core/src/test/org/apache/lucene/index/index.40.optimized.cfs.zip</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/core/src/test/org/apache/lucene/index/index.40.optimized.nocfs.zip</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/demo</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/facet</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/grouping</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/highlighter</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/ivy-settings.xml</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/join</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/licenses</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/memory</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/misc</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/module-build.xml</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/queries</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/queryparser</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/sandbox</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/site</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/spatial</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/suggest</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/test-framework</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/lucene/tools</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/CHANGES.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/LICENSE.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/NOTICE.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/README.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/SYSTEM_REQUIREMENTS.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/build.xml</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/cloud-dev</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/common-build.xml</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/contrib</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/core</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/core/src/java/org/apache/solr/handler/admin/LukeRequestHandler.java</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/core/src/java/org/apache/solr/search/SolrIndexSearcher.java</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/example</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/licenses</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/licenses/httpclient-LICENSE-ASL.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/licenses/httpclient-NOTICE.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/licenses/httpcore-LICENSE-ASL.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/licenses/httpcore-NOTICE.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/licenses/httpmime-LICENSE-ASL.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/licenses/httpmime-NOTICE.txt</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/scripts</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/site</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/solrj</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/test-framework</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/testlogging.properties</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/webapp</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/webapp/web/js/scripts/cores.js</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/webapp/web/js/scripts/dashboard.js</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/webapp/web/tpl/cores.html</file></path><path><editType>edit</editType><file>/lucene/dev/branches/branch_4x/solr/webapp/web/tpl/dashboard.html</file></path><revision>1419940</revision><user>markrmiller</user></item><kind>svn</kind><revision><module>http://svn.apache.org/repos/asf/lucene/dev/branches/branch_4x</module><revision>1419960</revision></revision></changeSet><culprit><absoluteUrl>https://builds.apache.org/user/markrmiller</absoluteUrl><fullName>markrmiller</fullName></culprit></freeStyleBuild>