Commit Graph

231 Commits

Author SHA1 Message Date
Yonik Seeley 37816d294d work around jetty compilation issue of analysis.jsp
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@543659 13f79535-47bb-0310-9956-ffa450edef68
2007-06-01 23:32:56 +00:00
Ryan McKinley 7e7b3f765b SOLR-249 -- oh my, missing the "throw" for SolrException!
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@542963 13f79535-47bb-0310-9956-ffa450edef68
2007-05-30 22:44:42 +00:00
Ryan McKinley e3dd7faecf SOLR-249 -- depreating new SolrException( int ... ) in favor of new SolrException( enum ...
This also refactors all calls to new SolrException()

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@542679 13f79535-47bb-0310-9956-ffa450edef68
2007-05-29 22:28:21 +00:00
Yonik Seeley d45042208b add ASF license
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@542653 13f79535-47bb-0310-9956-ffa450edef68
2007-05-29 21:11:35 +00:00
Ryan McKinley ca0dedf563 SOLR-231 -- use UTF-8 encoding unless something else is specified.
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@537024 13f79535-47bb-0310-9956-ffa450edef68
2007-05-10 22:38:10 +00:00
Ryan McKinley d6f65b926a SOLR-214 -- override getReader() explicitly. subclass called instance variables, not getContentType()
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@536048 13f79535-47bb-0310-9956-ffa450edef68
2007-05-08 04:23:07 +00:00
Ryan McKinley c3df2607b0 SOLR-214 - use the charset encoded in the contentType to decode the posted text. Even though they are supposed to, some containers do not obey this specification.
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@536019 13f79535-47bb-0310-9956-ffa450edef68
2007-05-07 23:35:55 +00:00
Ryan McKinley 17444901b3 related to SOLR-203 and rev:535580. Some servlet containers (including resin) use an empty string as the getServletPath() if you are on the webapp root:
http://localhost:8983/solr

others (jetty) redirect to:
 http://localhost:8983/solr/

This makes sure it is a real path before trying to match a request handler.



git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@535897 13f79535-47bb-0310-9956-ffa450edef68
2007-05-07 15:18:32 +00:00
Ryan McKinley d75a031c5e fixing a request parsing bug. When posting "application/x-www-form-urlencoded" and including a charset, application/x-www-form-urlencoded; charset=utf-8, the parser would treat the body as raw content.
This includes tests to repeat the error.

It also adds easymock.jar to lib, and excludes it from distribution.

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@535548 13f79535-47bb-0310-9956-ffa450edef68
2007-05-05 17:14:22 +00:00
Ryan McKinley 9ecad14adf SOLR-212 java.util.logging.config.file must be set before getInstanceDir()
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@534664 13f79535-47bb-0310-9956-ffa450edef68
2007-05-03 00:23:44 +00:00
Chris M. Hostetter 80c14dd19f fixing javadoc escaping issue which triggered this bug...
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=5082928



git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@534179 13f79535-47bb-0310-9956-ffa450edef68
2007-05-01 18:16:08 +00:00
Ryan McKinley 3d133d1f92 minor security fix. This makes sure you can't call paths that start with "/" from /select
This way, if you register a handler with "/path" and use path based authentication, you can not sneak into it using:

 http://localhost:8983/solr/select/?qt=/update&stream.body=...

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@533978 13f79535-47bb-0310-9956-ffa450edef68
2007-05-01 09:02:08 +00:00
Ryan McKinley 25a185b7da SOLR-204: Make it possible for the request dispatcher to handle /select. This offers uniform error handling for /update and /select.
This change will affect anyone who has added "enableRemoteStreaming" to their solrconfig.xml since solr1.1

Where you had:
<requestParsers enableRemoteStreaming="false" multipartUploadLimitInKB="2048" /> 

You now need:
<requestDispatcher handleSelect="true" >
  <requestParsers enableRemoteStreaming="false" multipartUploadLimitInKB="2048" />
</requestDispatcher>



git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@533558 13f79535-47bb-0310-9956-ffa450edef68
2007-04-29 20:47:23 +00:00
Ryan McKinley 82dffa7446 SOLR-212 - Adding DirectSolrConnection.java this give you a text interfave to solr without HTTP
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@533538 13f79535-47bb-0310-9956-ffa450edef68
2007-04-29 18:09:30 +00:00
Ryan McKinley 615e30f16e SOLR-179 -- Initalization collects any errors and displays them rather then continuing. this feature is configurable in solrconfig.xml
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@532912 13f79535-47bb-0310-9956-ffa450edef68
2007-04-26 23:37:44 +00:00
Yonik Seeley 55ee8f2305 fix queryString parsing to handle UTF8 (percent encoded): SOLR-202
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@524524 13f79535-47bb-0310-9956-ffa450edef68
2007-04-01 03:43:42 +00:00
Yonik Seeley 18dc9d98e4 stream.contentType, stream.file: SOLR-197
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@523774 13f79535-47bb-0310-9956-ffa450edef68
2007-03-29 17:28:31 +00:00
Yonik Seeley 52d00cda6a fix display of multiple tokens at same position: SOLR-168
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@513152 13f79535-47bb-0310-9956-ffa450edef68
2007-03-01 05:46:34 +00:00
Chris M. Hostetter 919a3881d0 SOLR-173 - fix for 'too many open files' - close requests at end of SolrDispatchFilter, and only get Searcher in response writers if it's actually needed.
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@511970 13f79535-47bb-0310-9956-ffa450edef68
2007-02-26 19:42:21 +00:00
Chris M. Hostetter cacf143d65 SOLR-166 - JNDI solr.home code refactoring
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@509406 13f79535-47bb-0310-9956-ffa450edef68
2007-02-20 01:38:26 +00:00
Yonik Seeley 28d75b04bc make solr more easily embeddable: SOLR-149
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@508859 13f79535-47bb-0310-9956-ffa450edef68
2007-02-18 03:33:13 +00:00
Chris M. Hostetter 3c603b2aea SOLR-104 - Support for Update Plugins: giving RequestHandlers access to ContentStreams, new URL structure allowing for more RESTful URLs, common baseclass for RequestHandlers, refactoring existing XML based updates into a RequestHandler
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@501174 13f79535-47bb-0310-9956-ffa450edef68
2007-01-29 20:33:21 +00:00
Erik Hatcher 85e54f0043 Update link to Solrs home page (thanks Ryan)
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@498883 13f79535-47bb-0310-9956-ffa450edef68
2007-01-23 01:16:22 +00:00
Erik Hatcher 06813501ba Add an index page to Solrs webapp, based on a new users experience of expecting something here. IANAWD (i am not a web designer) so just raw page linking to the admin site for now
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@497083 13f79535-47bb-0310-9956-ffa450edef68
2007-01-17 17:06:44 +00:00
Mike Klaas f0edf7f848 Moved creation of reqeust and response out of the try/finally block. I don't see any way for
them to throw an exception, and it is bad form to reference a variable created in the try in 
the finally block (fortifysoftware issue)

 --This line, and those below, will be ignored--

M    src/webapp/src/org/apache/solr/servlet/SolrServlet.java


git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@488778 13f79535-47bb-0310-9956-ffa450edef68
2006-12-19 19:31:26 +00:00
Chris M. Hostetter 6c995edfc2 SOLR-74 - user input wasn't being HTML escaped when echoed back on the page
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@487773 13f79535-47bb-0310-9956-ffa450edef68
2006-12-16 08:38:09 +00:00
Yonik Seeley 94aa557d88 reverting analysis.jsp changes from SOLR-58
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@487639 13f79535-47bb-0310-9956-ffa450edef68
2006-12-15 19:53:39 +00:00
Yonik Seeley e03b4e564d add missing ASL header
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@487434 13f79535-47bb-0310-9956-ffa450edef68
2006-12-15 02:37:49 +00:00
Bertrand Delacretaz 17dee73e4e SOLR-59, copy request parameters to Solr's response
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@487199 13f79535-47bb-0310-9956-ffa450edef68
2006-12-14 13:03:40 +00:00
Chris M. Hostetter c86a81b90e when i added the version numbers to the Info page, I created some new temp variables in _info.jsp (assuming the numbers might be useful on other pages as well) that wound up conflicting with a temp variable already in use in distribution.jsp ... this commit cleans up _info.jsp so that only variables we want to bleed into the other JSPs do so.
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@486907 13f79535-47bb-0310-9956-ffa450edef68
2006-12-14 00:30:34 +00:00
Chris M. Hostetter b2fcbed95b SOLR-70 - better parsing of pingQuery ... it's still not a very clean syntax, but at least it's now possible to have any pingQuery you want and it will acctaully respect multiple query params
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@486904 13f79535-47bb-0310-9956-ffa450edef68
2006-12-14 00:15:45 +00:00
Otis Gospodnetic 88b053e2cb - SOLR-58: make admin pages return XML and transform them to HTML using XSL
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@486373 13f79535-47bb-0310-9956-ffa450edef68
2006-12-12 22:24:47 +00:00
Chris M. Hostetter d06948412d per suggestion on solr-user, added a mime-mapping for .xsl files to the web.xml so that the mime-type will be set correctly even if the servlet container doesn't have one configured. used application/xslt+xml instead of application/xml based on W3C XSLT recommendation since 2003/May ... tested in Firefox2 and IE6
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@485856 13f79535-47bb-0310-9956-ffa450edef68
2006-12-11 20:30:02 +00:00
Chris M. Hostetter db54dcf890 war now contains the solr jar, instead of the direct class files ... this also allows us to display the MANIFEST.MF version info on registry.jsp (it can't read from the WAR's manifest for some reason)
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@483872 13f79535-47bb-0310-9956-ffa450edef68
2006-12-08 08:01:51 +00:00
Chris M. Hostetter 840875e7d9 escape defaultQuery so it's safe to display in HTML forms
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@481121 13f79535-47bb-0310-9956-ffa450edef68
2006-12-01 00:52:35 +00:00
Chris M. Hostetter eb897e53d0 cleaning up the forms on index.jsp and form.jsp ... main motivation was to get rid of hte stylesheet param since it's pretty much worthless, but i also wanted to try and make the only options displayed on form.jsp things that were general enough to apply to any combination of request handler / response writer pair that comes out of the box ... i deliberatley didn't include all of the highlight and facet params however, because I wasworred that would make the page too cluttered.
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@481116 13f79535-47bb-0310-9956-ffa450edef68
2006-12-01 00:16:46 +00:00
Yonik Seeley 0546616464 ASF license headers
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@473134 13f79535-47bb-0310-9956-ffa450edef68
2006-11-09 23:13:58 +00:00
Yonik Seeley a84079798d new license header
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@472574 13f79535-47bb-0310-9956-ffa450edef68
2006-11-08 18:25:52 +00:00
William Au afe77428f2 solr-48 - added javascript to catch empty query
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@447831 13f79535-47bb-0310-9956-ffa450edef68
2006-09-19 12:33:34 +00:00
Mike Klaas a094b2bdbc Patch for SOLR-37 (highlighting param changes and new features)
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@439428 13f79535-47bb-0310-9956-ffa450edef68
2006-09-01 19:22:47 +00:00
Yonik Seeley 07b2a866ac SolrParams: SOLR-43
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@434136 13f79535-47bb-0310-9956-ffa450edef68
2006-08-23 19:34:57 +00:00
Yonik Seeley e6f9c04807 fix conflicting mime-types
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@423628 13f79535-47bb-0310-9956-ffa450edef68
2006-07-19 21:58:23 +00:00
Yonik Seeley 70c8fc4b46 declare admin-pages to return UTF-8, add space in content-type strings: SOLR-35
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@423562 13f79535-47bb-0310-9956-ffa450edef68
2006-07-19 18:48:16 +00:00
Yonik Seeley 5f8d60640f set svn:eol-style native
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@423263 13f79535-47bb-0310-9956-ffa450edef68
2006-07-18 21:52:05 +00:00
Yonik Seeley bf363aafc7 get content-type from request writer
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@421669 13f79535-47bb-0310-9956-ffa450edef68
2006-07-13 17:22:21 +00:00
William Au 20711a9227 improved admin stylesheet for IE - SOLR-6
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@420815 13f79535-47bb-0310-9956-ffa450edef68
2006-07-11 12:20:46 +00:00
Yonik Seeley 4ce2a2d2a2 remove web.external.xml external XML entity
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@410893 13f79535-47bb-0310-9956-ffa450edef68
2006-06-01 17:27:48 +00:00
Chris M. Hostetter 2d04fecca2 Support for customizing the QueryResponseWriter per request - SOLR-16
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@409560 13f79535-47bb-0310-9956-ffa450edef68
2006-05-26 05:44:02 +00:00
Yonik Seeley 1a66aa3853 enable multiple solr webapps with JNDI config
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@408501 13f79535-47bb-0310-9956-ffa450edef68
2006-05-21 21:55:12 +00:00
William Au 47f1cb72ca updated for jetty downgrade
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@406962 13f79535-47bb-0310-9956-ffa450edef68
2006-05-16 14:57:38 +00:00
Chris M. Hostetter 865e9ab8b2 fixed NPE on log level changing when helthcheck isn't in use
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@400225 13f79535-47bb-0310-9956-ffa450edef68
2006-05-06 02:12:13 +00:00
William Au c187d2b6a9 added logging link
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@399035 13f79535-47bb-0310-9956-ffa450edef68
2006-05-02 20:19:00 +00:00
William Au 930b828b4d first working version
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@399034 13f79535-47bb-0310-9956-ffa450edef68
2006-05-02 20:18:38 +00:00
William Au c1e12c5a89 first working version
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@398983 13f79535-47bb-0310-9956-ffa450edef68
2006-05-02 17:44:15 +00:00
William Au 89f1018ef7 allowed inclusion of customized content into first table
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@398981 13f79535-47bb-0310-9956-ffa450edef68
2006-05-02 17:42:28 +00:00
William Au 7ae4a26c56 added query arg optional for getting optional content
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@398977 13f79535-47bb-0310-9956-ffa450edef68
2006-05-02 17:40:14 +00:00
William Au 6945bc6dc9 adjust size of Solr logo;added enable/disable link;add javascript var for hostname
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@398975 13f79535-47bb-0310-9956-ffa450edef68
2006-05-02 17:39:22 +00:00
William Au e16e400afb first working version
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@398974 13f79535-47bb-0310-9956-ffa450edef68
2006-05-02 17:38:11 +00:00
William Au 580baa8964 adjusted size of Solr logo
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@398971 13f79535-47bb-0310-9956-ffa450edef68
2006-05-02 17:28:19 +00:00
Erik Hatcher 8ac675d682 Add getParams to SolrQueryRequest to allow support for multiple same-named parameters in the same way the servlet request allows
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@396247 13f79535-47bb-0310-9956-ffa450edef68
2006-04-23 09:58:24 +00:00
Yonik Seeley 9c9604b8a7 handle null returned by parameter map val for servlet args
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@395379 13f79535-47bb-0310-9956-ffa450edef68
2006-04-19 20:05:06 +00:00
Yonik Seeley ed514af83b update changelog
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@395040 13f79535-47bb-0310-9956-ffa450edef68
2006-04-18 21:09:38 +00:00
Yonik Seeley 26ead39774 add resin version to web.xml comment
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@394977 13f79535-47bb-0310-9956-ffa450edef68
2006-04-18 16:08:24 +00:00
Erik Hatcher 861222dc75 correct typo in comment
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@393368 13f79535-47bb-0310-9956-ffa450edef68
2006-04-12 02:17:40 +00:00
Yonik Seeley 64047e0b46 refactor /update to separate servlet, allow post of query to /select
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@392311 13f79535-47bb-0310-9956-ffa450edef68
2006-04-07 15:20:12 +00:00
Yonik Seeley 80fbf57064 solar->solr, remove unused vars, switch to svn keywords
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@382663 13f79535-47bb-0310-9956-ffa450edef68
2006-03-03 05:19:37 +00:00
Yonik Seeley f606d78b19 expand svn:keywords for text file, change registry to use svn keywords
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@382610 13f79535-47bb-0310-9956-ffa450edef68
2006-03-03 01:43:03 +00:00
Yonik Seeley 63b402d2b3 make web.xml more standard, comment out resin fixes, SOLR->Solr, remove solar-status
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@382528 13f79535-47bb-0310-9956-ffa450edef68
2006-03-02 22:02:18 +00:00
Yonik Seeley 4785c328e2 remove resin references from distribution page
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@381689 13f79535-47bb-0310-9956-ffa450edef68
2006-02-28 16:21:23 +00:00
Yonik Seeley c03c23bc41 default to latest XML output version, remove legacy getnumfound option
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@380251 13f79535-47bb-0310-9956-ffa450edef68
2006-02-23 22:31:00 +00:00
Yonik Seeley 5685d5ee1c remove unneeded solar-status
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@380231 13f79535-47bb-0310-9956-ffa450edef68
2006-02-23 21:35:34 +00:00
Yonik Seeley 2e67b64db8 remove non-portable threaddump code
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@380227 13f79535-47bb-0310-9956-ffa450edef68
2006-02-23 21:19:23 +00:00
William Au 8837b42d16 updated logo to match web site - Solr
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@380185 13f79535-47bb-0310-9956-ffa450edef68
2006-02-23 18:19:10 +00:00
William Au 0d550d2a6c added missing import for Date
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@380184 13f79535-47bb-0310-9956-ffa450edef68
2006-02-23 18:18:38 +00:00
Yonik Seeley ff90d5f2d6 chaos => slightly less than chaos. pulled out some common stuff into header.jsp, made healthcheck configurable, changed server start time to SolrCore creation time, removed some more CNET links
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@379696 13f79535-47bb-0310-9956-ffa450edef68
2006-02-22 05:53:23 +00:00
Yonik Seeley ba78c4fc55 change some CNET URLs to apache solr URLS, remove some unused links, fix href="" to href="."
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@377856 13f79535-47bb-0310-9956-ffa450edef68
2006-02-14 22:04:26 +00:00
Yonik Seeley d87b93c1c5 make URLs relative
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@377810 13f79535-47bb-0310-9956-ffa450edef68
2006-02-14 19:36:06 +00:00
Yonik Seeley d4ae734c63 fix getting solrconfig.xml
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@377004 13f79535-47bb-0310-9956-ffa450edef68
2006-02-11 17:17:33 +00:00
Yonik Seeley 6928aa5513 remove empy import causing JSP compile err
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@376437 13f79535-47bb-0310-9956-ffa450edef68
2006-02-09 21:12:45 +00:00
Yonik Seeley 773ec8344b look for config files in ./conf and the main index in ./data/index by default
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@375449 13f79535-47bb-0310-9956-ffa450edef68
2006-02-07 02:58:55 +00:00
Yonik Seeley 148b4dbc92 initial version
git-svn-id: https://svn.apache.org/repos/asf/incubator/solr/trunk@372455 13f79535-47bb-0310-9956-ffa450edef68
2006-01-26 05:37:29 +00:00