rjack-solr 3.6.0.0-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. data/History.rdoc +2 -0
  2. data/Manifest.txt +62 -0
  3. data/NOTICE.txt +7 -0
  4. data/README.rdoc +71 -0
  5. data/Rakefile +12 -0
  6. data/assembly.xml +20 -0
  7. data/bin/rjack-solr-fg +53 -0
  8. data/config/config.rb +9 -0
  9. data/init/rjack-solr +44 -0
  10. data/lib/rjack-solr.rb +30 -0
  11. data/lib/rjack-solr/base.rb +28 -0
  12. data/lib/rjack-solr/commons-fileupload-1.2.1.jar +0 -0
  13. data/lib/rjack-solr/commons-io-2.1.jar +0 -0
  14. data/lib/rjack-solr/commons-lang-2.6.jar +0 -0
  15. data/lib/rjack-solr/config.rb +24 -0
  16. data/lib/rjack-solr/server.rb +70 -0
  17. data/lib/rjack-solr/solr-core-3.6.0.jar +0 -0
  18. data/lib/rjack-solr/solr-solrj-3.6.0.jar +0 -0
  19. data/pom.xml +96 -0
  20. data/test/test_solr.rb +43 -0
  21. data/webapp/META-INF/LICENSE.txt +1166 -0
  22. data/webapp/META-INF/MANIFEST.MF +13 -0
  23. data/webapp/META-INF/NOTICE.txt +438 -0
  24. data/webapp/WEB-INF/web.xml +153 -0
  25. data/webapp/WEB-INF/weblogic.xml +12 -0
  26. data/webapp/admin/_info.jsp +120 -0
  27. data/webapp/admin/action.jsp +94 -0
  28. data/webapp/admin/analysis.jsp +496 -0
  29. data/webapp/admin/analysis.xsl +179 -0
  30. data/webapp/admin/dataimport.jsp +53 -0
  31. data/webapp/admin/debug.jsp +103 -0
  32. data/webapp/admin/distributiondump.jsp +160 -0
  33. data/webapp/admin/favicon.ico +0 -0
  34. data/webapp/admin/form.jsp +152 -0
  35. data/webapp/admin/get-file.jsp +72 -0
  36. data/webapp/admin/get-properties.jsp +24 -0
  37. data/webapp/admin/header.jsp +44 -0
  38. data/webapp/admin/index.jsp +162 -0
  39. data/webapp/admin/jquery-1.4.3.min.js +166 -0
  40. data/webapp/admin/meta.xsl +34 -0
  41. data/webapp/admin/ping.jsp +52 -0
  42. data/webapp/admin/ping.xsl +71 -0
  43. data/webapp/admin/raw-schema.jsp +38 -0
  44. data/webapp/admin/registry.jsp +107 -0
  45. data/webapp/admin/registry.xsl +321 -0
  46. data/webapp/admin/replication/header.jsp +89 -0
  47. data/webapp/admin/replication/index.jsp +378 -0
  48. data/webapp/admin/schema.jsp +690 -0
  49. data/webapp/admin/solr-admin.css +215 -0
  50. data/webapp/admin/solr_small.png +0 -0
  51. data/webapp/admin/stats.jsp +92 -0
  52. data/webapp/admin/stats.xsl +220 -0
  53. data/webapp/admin/tabular.xsl +141 -0
  54. data/webapp/admin/threaddump.jsp +110 -0
  55. data/webapp/admin/threaddump.xsl +103 -0
  56. data/webapp/favicon.ico +0 -0
  57. data/webapp/index.jsp +49 -0
  58. metadata +217 -0
@@ -0,0 +1,141 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!--
3
+ Licensed to the Apache Software Foundation (ASF) under one or more
4
+ contributor license agreements. See the NOTICE file distributed with
5
+ this work for additional information regarding copyright ownership.
6
+ The ASF licenses this file to You under the Apache License, Version 2.0
7
+ (the "License"); you may not use this file except in compliance with
8
+ the License. You may obtain a copy of the License at
9
+
10
+ http://www.apache.org/licenses/LICENSE-2.0
11
+
12
+ Unless required by applicable law or agreed to in writing, software
13
+ distributed under the License is distributed on an "AS IS" BASIS,
14
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ See the License for the specific language governing permissions and
16
+ limitations under the License.
17
+ -->
18
+ <!-- $Id: tabular.xsl 1075192 2011-02-28 00:50:09Z uschindler $ -->
19
+ <!-- $URL: https://svn.apache.org/repos/asf/lucene/dev/branches/branch_3x/solr/webapp/web/admin/tabular.xsl $ -->
20
+
21
+
22
+ <xsl:stylesheet
23
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
24
+ version="1.0">
25
+
26
+
27
+ <xsl:output
28
+ method="html"
29
+ encoding="utf-8"
30
+ media-type="text/html"
31
+ indent="yes"
32
+ doctype-public="-//W3C//DTD HTML 4.01//EN"
33
+ doctype-system="http://www.w3.org/TR/html4/strict.dtd" />
34
+
35
+
36
+ <xsl:template match="/">
37
+ <html>
38
+ <head>
39
+ <link rel="stylesheet" type="text/css" href="solr-admin.css"></link>
40
+ <link rel="icon" href="favicon.ico" type="image/ico"></link>
41
+ <link rel="shortcut icon" href="favicon.ico" type="image/ico"></link>
42
+ <title>Solr Search Results</title>
43
+ </head>
44
+ <body>
45
+ <a href=".">
46
+ <img border="0" align="right" height="78" width="142" src="solr_small.png" alt="Apache Solr">
47
+ </img>
48
+ </a>
49
+ <h1>Solr Search Results</h1>
50
+ <br clear="all" />
51
+ <xsl:apply-templates/>
52
+ <br /><br />
53
+ <a href=".">Return to Admin Page</a>
54
+ </body>
55
+ </html>
56
+ </xsl:template>
57
+
58
+
59
+ <xsl:template match="responseHeader">
60
+ <table name="responseHeader">
61
+ <xsl:apply-templates/>
62
+ </table>
63
+ </xsl:template>
64
+
65
+
66
+ <xsl:template match="status">
67
+ <tr>
68
+ <td name="responseHeader"><strong>Status:&#xa0;</strong></td>
69
+ <td><xsl:value-of select="."></xsl:value-of></td>
70
+ </tr>
71
+ </xsl:template>
72
+
73
+
74
+ <xsl:template match="numFields">
75
+ <tr>
76
+ <td name="responseHeader"><strong>Number of Fields:&#xa0;</strong></td>
77
+ <td><xsl:value-of select="."></xsl:value-of></td>
78
+ </tr>
79
+ </xsl:template>
80
+
81
+
82
+ <xsl:template match="numRecords">
83
+ <tr>
84
+ <td name="responseHeader"><strong>Records Returned:&#xa0;</strong></td>
85
+ <td><xsl:value-of select="."></xsl:value-of></td>
86
+ </tr>
87
+ </xsl:template>
88
+
89
+
90
+ <xsl:template match="numFound">
91
+ <tr>
92
+ <td name="responseHeader"><strong>Records Found:&#xa0;</strong></td>
93
+ <td><xsl:value-of select="."></xsl:value-of></td>
94
+ </tr>
95
+ </xsl:template>
96
+
97
+
98
+ <xsl:template match="QTime">
99
+ <tr>
100
+ <td name="responseHeader"><strong>Query time:&#xa0;</strong></td>
101
+ <td><xsl:value-of select="."></xsl:value-of>(ms)</td>
102
+ </tr>
103
+ </xsl:template>
104
+
105
+ <!-- YCS.. match everything. How to match only what is not
106
+ matched above???
107
+ -->
108
+ <xsl:template match="responseHeader/*">
109
+ <tr>
110
+ <td name="responseHeader"><strong><xsl:value-of select="name(.)"></xsl:value-of>:&#xa0;</strong></td>
111
+ <td><xsl:value-of select="."></xsl:value-of></td>
112
+ </tr>
113
+ </xsl:template>
114
+
115
+ <xsl:template match="responseBody">
116
+ <br></br><br></br>
117
+ <table border="2">
118
+
119
+ <!-- table headers -->
120
+ <tr>
121
+ <xsl:for-each select="record[1]/field">
122
+ <th><xsl:value-of select="name"></xsl:value-of></th>
123
+ </xsl:for-each>
124
+ </tr>
125
+
126
+ <!-- table rows -->
127
+ <xsl:for-each select="record">
128
+ <tr>
129
+ <xsl:for-each select="field">
130
+ <td><xsl:value-of select="value"></xsl:value-of>&#xa0;</td>
131
+ </xsl:for-each>
132
+ </tr>
133
+ </xsl:for-each>
134
+
135
+ </table>
136
+
137
+
138
+ </xsl:template>
139
+
140
+
141
+ </xsl:stylesheet>
@@ -0,0 +1,110 @@
1
+ <%@ page contentType="text/xml; charset=utf-8" pageEncoding="UTF-8" language="java" %>
2
+ <%--
3
+ Licensed to the Apache Software Foundation (ASF) under one or more
4
+ contributor license agreements. See the NOTICE file distributed with
5
+ this work for additional information regarding copyright ownership.
6
+ The ASF licenses this file to You under the Apache License, Version 2.0
7
+ (the "License"); you may not use this file except in compliance with
8
+ the License. You may obtain a copy of the License at
9
+
10
+ http://www.apache.org/licenses/LICENSE-2.0
11
+
12
+ Unless required by applicable law or agreed to in writing, software
13
+ distributed under the License is distributed on an "AS IS" BASIS,
14
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ See the License for the specific language governing permissions and
16
+ limitations under the License.
17
+ --%>
18
+ <%@ page import="org.apache.solr.core.SolrCore,
19
+ java.lang.management.ManagementFactory,
20
+ java.lang.management.ThreadMXBean,
21
+ java.lang.management.ThreadInfo,
22
+ java.io.IOException,
23
+ org.apache.solr.common.util.XML"%>
24
+ <%@include file="_info.jsp" %>
25
+
26
+
27
+ <?xml-stylesheet type="text/xsl" href="threaddump.xsl"?>
28
+ <%!
29
+ static ThreadMXBean tmbean = ManagementFactory.getThreadMXBean();
30
+ %>
31
+ <solr>
32
+ <core><%= collectionName %></core>
33
+ <system>
34
+ <jvm>
35
+ <version><%=System.getProperty("java.vm.version")%></version>
36
+ <name><%=System.getProperty("java.vm.name")%></name>
37
+ </jvm>
38
+ <threadCount>
39
+ <current><%=tmbean.getThreadCount()%></current>
40
+ <peak><%=tmbean.getPeakThreadCount()%></peak>
41
+ <daemon><%=tmbean.getDaemonThreadCount()%></daemon>
42
+ </threadCount>
43
+ <%
44
+ long[] tids;
45
+ ThreadInfo[] tinfos;
46
+ tids = tmbean.findMonitorDeadlockedThreads();
47
+ if (tids != null) {
48
+ out.println(" <deadlocks>");
49
+ tinfos = tmbean.getThreadInfo(tids, Integer.MAX_VALUE);
50
+ for (ThreadInfo ti : tinfos) {
51
+ printThreadInfo(ti, out);
52
+ }
53
+ out.println(" </deadlocks>");
54
+ }
55
+ %>
56
+ <%
57
+ tids = tmbean.getAllThreadIds();
58
+ tinfos = tmbean.getThreadInfo(tids, Integer.MAX_VALUE);
59
+ out.println(" <threadDump>");
60
+ for (ThreadInfo ti : tinfos) {
61
+ printThreadInfo(ti, out);
62
+ }
63
+ out.println(" </threadDump>");
64
+ %>
65
+ </system>
66
+ </solr>
67
+
68
+ <%!
69
+ static void printThreadInfo(ThreadInfo ti, JspWriter out) throws IOException {
70
+ long tid = ti.getThreadId();
71
+ out.println(" <thread>");
72
+ out.println(" <id>" + tid + "</id>");
73
+ out.print(" <name>");
74
+ XML.escapeCharData(ti.getThreadName(), out);
75
+ out.println("</name>");
76
+ out.println(" <state>" + ti.getThreadState() + "</state>");
77
+ if (ti.getLockName() != null) {
78
+ out.println(" <lock>" + ti.getLockName() + "</lock>");
79
+ }
80
+ if (ti.isSuspended()) {
81
+ out.println(" <suspended/>");
82
+ }
83
+ if (ti.isInNative()) {
84
+ out.println(" <inNative/>");
85
+ }
86
+ if (tmbean.isThreadCpuTimeSupported()) {
87
+ out.println(" <cpuTime>" + formatNanos(tmbean.getThreadCpuTime(tid)) + "</cpuTime>");
88
+ out.println(" <userTime>" + formatNanos(tmbean.getThreadUserTime(tid)) + "</userTime>");
89
+ }
90
+
91
+ if (ti.getLockOwnerName() != null) {
92
+ out.println(" <owner>");
93
+ out.println(" <name>" + ti.getLockOwnerName() + "</name>");
94
+ out.println(" <id>" + ti.getLockOwnerId() + "</id>");
95
+ out.println(" </owner>");
96
+ }
97
+ out.println(" <stackTrace>");
98
+ for (StackTraceElement ste : ti.getStackTrace()) {
99
+ out.print(" <line>");
100
+ XML.escapeCharData("at " + ste.toString(), out);
101
+ out.println(" </line>");
102
+ }
103
+ out.println(" </stackTrace>");
104
+ out.println(" </thread>");
105
+ }
106
+
107
+ static String formatNanos(long ns) {
108
+ return String.format("%.4fms", ns / (double) 1000000);
109
+ }
110
+ %>
@@ -0,0 +1,103 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!--
3
+ Licensed to the Apache Software Foundation (ASF) under one or more
4
+ contributor license agreements. See the NOTICE file distributed with
5
+ this work for additional information regarding copyright ownership.
6
+ The ASF licenses this file to You under the Apache License, Version 2.0
7
+ (the "License"); you may not use this file except in compliance with
8
+ the License. You may obtain a copy of the License at
9
+
10
+ http://www.apache.org/licenses/LICENSE-2.0
11
+
12
+ Unless required by applicable law or agreed to in writing, software
13
+ distributed under the License is distributed on an "AS IS" BASIS,
14
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ See the License for the specific language governing permissions and
16
+ limitations under the License.
17
+ -->
18
+ <!-- $Id$ -->
19
+ <!-- $URL$ -->
20
+
21
+ <xsl:stylesheet
22
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
23
+ version="1.0">
24
+
25
+ <xsl:output
26
+ method="html"
27
+ indent="yes"
28
+ encoding="utf-8"
29
+ media-type="text/html"
30
+ doctype-public="-//W3C//DTD HTML 4.01//EN"
31
+ doctype-system="http://www.w3.org/TR/html4/strict.dtd" />
32
+
33
+ <xsl:template match="/">
34
+ <html>
35
+ <head>
36
+ <link rel="stylesheet" type="text/css" href="solr-admin.css"></link>
37
+ <link rel="icon" href="favicon.ico" type="image/ico"></link>
38
+ <link rel="shortcut icon" href="favicon.ico" type="image/ico"></link>
39
+ <title>Solr Info</title>
40
+ </head>
41
+ <body>
42
+ <a href=".">
43
+ <img border="0" align="right" height="78" width="142" src="solr_small.png" alt="Apache Solr"/>
44
+ </a>
45
+ <h1>Solr Admin (<xsl:value-of select="solr/meta/collection" />)</h1>
46
+ <h2>Thread Dump</h2>
47
+ <div style="margin-top: 1em;">
48
+ <table>
49
+ <xsl:apply-templates/>
50
+ </table>
51
+ <a href=".">Return to Admin Page</a>
52
+ </div>
53
+ </body>
54
+ </html>
55
+ </xsl:template>
56
+
57
+ <xsl:include href="meta.xsl"/>
58
+
59
+ <xsl:template match="solr/system/jvm">
60
+ <tr>
61
+ <td><xsl:value-of select="name"/> <xsl:value-of select="version"/></td>
62
+ </tr>
63
+ </xsl:template>
64
+
65
+ <xsl:template match="solr/system/threadCount">
66
+ <tr>
67
+ <td>
68
+ Thread Count:
69
+ current=<xsl:value-of select="current"/>,
70
+ peak=<xsl:value-of select="peak"/>,
71
+ daemon=<xsl:value-of select="daemon"/></td>
72
+ </tr>
73
+ </xsl:template>
74
+
75
+ <xsl:template match="solr/system/threadDump">
76
+ <div>Full Thread Dump:</div>
77
+ <xsl:for-each select="thread">
78
+ <!-- OG: TODO: add suspended/native conditionals -->
79
+ <tr>
80
+ <td style="margin-left: 1em; font-weight: bold;">
81
+ '<xsl:value-of select="name"/>'
82
+ Id=<xsl:value-of select="id"/>,
83
+ <xsl:value-of select="state"/>
84
+ on lock=<xsl:value-of select="lock"/>,
85
+ total cpu time=<xsl:value-of select="cpuTime"/>
86
+ user time=<xsl:value-of select="userTime"/>
87
+ </td>
88
+ </tr>
89
+ <xsl:apply-templates select="stackTrace"/>
90
+ </xsl:for-each>
91
+ </xsl:template>
92
+
93
+ <xsl:template match="stackTrace">
94
+ <tr>
95
+ <td style="margin-left: 1em;">
96
+ <xsl:for-each select="line">
97
+ <xsl:value-of select="."/><br/>
98
+ </xsl:for-each>
99
+ </td>
100
+ </tr>
101
+ </xsl:template>
102
+
103
+ </xsl:stylesheet>
Binary file
data/webapp/index.jsp ADDED
@@ -0,0 +1,49 @@
1
+ <%@ page import="org.apache.solr.core.SolrCore" %>
2
+ <%@ page import="java.util.Collection" %>
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
+ <html>
21
+ <head>
22
+ <link rel="stylesheet" type="text/css" href="solr-admin.css">
23
+ <link rel="icon" href="favicon.ico" type="image/ico"></link>
24
+ <link rel="shortcut icon" href="favicon.ico" type="image/ico"></link>
25
+ <title>Welcome to Solr</title>
26
+ </head>
27
+
28
+ <body>
29
+ <h1>Welcome to Solr!</h1>
30
+ <a href="."><img border="0" align="right" height="78" width="142" src="admin/solr_small.png" alt="Solr"/></a>
31
+
32
+ <%
33
+ org.apache.solr.core.CoreContainer cores = (org.apache.solr.core.CoreContainer)request.getAttribute("org.apache.solr.CoreContainer");
34
+ Collection<SolrCore> solrCores = cores.getCores();
35
+ if( cores != null
36
+ && solrCores.size() > 0 // HACK! check that we have valid names...
37
+ && solrCores.iterator().next().getName().length() != 0 ) {
38
+ for( org.apache.solr.core.SolrCore core : cores.getCores() ) {
39
+ String coreName = core.getName();
40
+ if("".equals(coreName) ) coreName =".";
41
+ %>
42
+ <a href="<%= coreName %>/admin/">Admin <%= core.getName() %></a>
43
+ <br/>
44
+ <% }} else { %>
45
+ <a href="admin/">Solr Admin</a>
46
+ <% } %>
47
+
48
+ </body>
49
+ </html>
metadata ADDED
@@ -0,0 +1,217 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rjack-solr
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 3.6.0.0
6
+ platform: java
7
+ authors:
8
+ - David Kellum
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2012-07-17 00:00:00 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rjack-commons-codec
17
+ version_requirements: &id001 !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ~>
21
+ - !ruby/object:Gem::Version
22
+ version: 1.6.0
23
+ requirement: *id001
24
+ prerelease: false
25
+ type: :runtime
26
+ - !ruby/object:Gem::Dependency
27
+ name: rjack-lucene
28
+ version_requirements: &id002 !ruby/object:Gem::Requirement
29
+ none: false
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: 3.6.0
34
+ requirement: *id002
35
+ prerelease: false
36
+ type: :runtime
37
+ - !ruby/object:Gem::Dependency
38
+ name: rjack-jetty
39
+ version_requirements: &id003 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ~>
43
+ - !ruby/object:Gem::Version
44
+ version: 7.6.4
45
+ requirement: *id003
46
+ prerelease: false
47
+ type: :runtime
48
+ - !ruby/object:Gem::Dependency
49
+ name: rjack-jetty-jsp
50
+ version_requirements: &id004 !ruby/object:Gem::Requirement
51
+ none: false
52
+ requirements:
53
+ - - ~>
54
+ - !ruby/object:Gem::Version
55
+ version: 7.6.4
56
+ requirement: *id004
57
+ prerelease: false
58
+ type: :runtime
59
+ - !ruby/object:Gem::Dependency
60
+ name: rjack-httpclient-3
61
+ version_requirements: &id005 !ruby/object:Gem::Requirement
62
+ none: false
63
+ requirements:
64
+ - - ~>
65
+ - !ruby/object:Gem::Version
66
+ version: 3.1.6
67
+ requirement: *id005
68
+ prerelease: false
69
+ type: :runtime
70
+ - !ruby/object:Gem::Dependency
71
+ name: hooker
72
+ version_requirements: &id006 !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ~>
76
+ - !ruby/object:Gem::Version
77
+ version: 1.0.0
78
+ requirement: *id006
79
+ prerelease: false
80
+ type: :runtime
81
+ - !ruby/object:Gem::Dependency
82
+ name: rjack-logback
83
+ version_requirements: &id007 !ruby/object:Gem::Requirement
84
+ none: false
85
+ requirements:
86
+ - - ~>
87
+ - !ruby/object:Gem::Version
88
+ version: "1.2"
89
+ requirement: *id007
90
+ prerelease: false
91
+ type: :runtime
92
+ - !ruby/object:Gem::Dependency
93
+ name: minitest
94
+ version_requirements: &id008 !ruby/object:Gem::Requirement
95
+ none: false
96
+ requirements:
97
+ - - ~>
98
+ - !ruby/object:Gem::Version
99
+ version: "2.2"
100
+ requirement: *id008
101
+ prerelease: false
102
+ type: :development
103
+ - !ruby/object:Gem::Dependency
104
+ name: rjack-tarpit
105
+ version_requirements: &id009 !ruby/object:Gem::Requirement
106
+ none: false
107
+ requirements:
108
+ - - ~>
109
+ - !ruby/object:Gem::Version
110
+ version: "2.0"
111
+ requirement: *id009
112
+ prerelease: false
113
+ type: :development
114
+ description:
115
+ email:
116
+ - dek-oss@gravitext.com
117
+ executables:
118
+ - rjack-solr-fg
119
+ extensions: []
120
+
121
+ extra_rdoc_files:
122
+ - History.rdoc
123
+ - README.rdoc
124
+ files:
125
+ - History.rdoc
126
+ - Manifest.txt
127
+ - NOTICE.txt
128
+ - README.rdoc
129
+ - Rakefile
130
+ - assembly.xml
131
+ - pom.xml
132
+ - bin/rjack-solr-fg
133
+ - config/config.rb
134
+ - init/rjack-solr
135
+ - lib/rjack-solr/base.rb
136
+ - lib/rjack-solr.rb
137
+ - lib/rjack-solr/config.rb
138
+ - lib/rjack-solr/server.rb
139
+ - test/test_solr.rb
140
+ - webapp/META-INF/LICENSE.txt
141
+ - webapp/META-INF/MANIFEST.MF
142
+ - webapp/META-INF/NOTICE.txt
143
+ - webapp/WEB-INF/web.xml
144
+ - webapp/WEB-INF/weblogic.xml
145
+ - webapp/admin/_info.jsp
146
+ - webapp/admin/action.jsp
147
+ - webapp/admin/analysis.jsp
148
+ - webapp/admin/analysis.xsl
149
+ - webapp/admin/dataimport.jsp
150
+ - webapp/admin/debug.jsp
151
+ - webapp/admin/distributiondump.jsp
152
+ - webapp/admin/favicon.ico
153
+ - webapp/admin/form.jsp
154
+ - webapp/admin/get-file.jsp
155
+ - webapp/admin/get-properties.jsp
156
+ - webapp/admin/header.jsp
157
+ - webapp/admin/index.jsp
158
+ - webapp/admin/jquery-1.4.3.min.js
159
+ - webapp/admin/meta.xsl
160
+ - webapp/admin/ping.jsp
161
+ - webapp/admin/ping.xsl
162
+ - webapp/admin/raw-schema.jsp
163
+ - webapp/admin/registry.jsp
164
+ - webapp/admin/registry.xsl
165
+ - webapp/admin/replication/header.jsp
166
+ - webapp/admin/replication/index.jsp
167
+ - webapp/admin/schema.jsp
168
+ - webapp/admin/solr-admin.css
169
+ - webapp/admin/solr_small.png
170
+ - webapp/admin/stats.jsp
171
+ - webapp/admin/stats.xsl
172
+ - webapp/admin/tabular.xsl
173
+ - webapp/admin/threaddump.jsp
174
+ - webapp/admin/threaddump.xsl
175
+ - webapp/favicon.ico
176
+ - webapp/index.jsp
177
+ - lib/rjack-solr/commons-fileupload-1.2.1.jar
178
+ - lib/rjack-solr/commons-io-2.1.jar
179
+ - lib/rjack-solr/commons-lang-2.6.jar
180
+ - lib/rjack-solr/solr-core-3.6.0.jar
181
+ - lib/rjack-solr/solr-solrj-3.6.0.jar
182
+ homepage: http://rjack.rubyforge.org/solr
183
+ licenses: []
184
+
185
+ post_install_message:
186
+ rdoc_options:
187
+ - --main
188
+ - README.rdoc
189
+ require_paths:
190
+ - lib
191
+ required_ruby_version: !ruby/object:Gem::Requirement
192
+ none: false
193
+ requirements:
194
+ - - ">="
195
+ - !ruby/object:Gem::Version
196
+ hash: 2
197
+ segments:
198
+ - 0
199
+ version: "0"
200
+ required_rubygems_version: !ruby/object:Gem::Requirement
201
+ none: false
202
+ requirements:
203
+ - - ">="
204
+ - !ruby/object:Gem::Version
205
+ hash: 2
206
+ segments:
207
+ - 0
208
+ version: "0"
209
+ requirements: []
210
+
211
+ rubyforge_project:
212
+ rubygems_version: 1.8.15
213
+ signing_key:
214
+ specification_version: 3
215
+ summary: A gem packaging of Solr.
216
+ test_files: []
217
+