SOLR-2190: slashdot sample: xpath not match

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1026823 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Koji Sekiguchi 2010-10-24 15:29:39 +00:00
parent 5150971448
commit f3a9836468
3 changed files with 16 additions and 20 deletions

View File

@ -528,7 +528,9 @@ Bug Fixes
* SOLR-1794: Dataimport of CLOB fields fails when getCharacterStream() is
defined in a superclass. (Gunnar Gauslaa Bergem via rmuir)
* SOLR-2173 Suggester should always rebuild Lookup data if Lookup.load fails. (ab)
* SOLR-2173: Suggester should always rebuild Lookup data if Lookup.load fails. (ab)
* SOLR-2190: change xpath from RSS 0.9 to 1.0 in slashdot sample. (koji)
Other Changes
----------------------

View File

@ -5,22 +5,17 @@
pk="link"
url="http://rss.slashdot.org/Slashdot/slashdot"
processor="XPathEntityProcessor"
forEach="/RDF/channel | /RDF/item"
forEach="/rss/channel/item"
transformer="DateFormatTransformer">
<field column="source" xpath="/RDF/channel/title" commonField="true" />
<field column="source-link" xpath="/RDF/channel/link" commonField="true" />
<field column="subject" xpath="/RDF/channel/subject" commonField="true" />
<field column="title" xpath="/RDF/item/title" />
<field column="link" xpath="/RDF/item/link" />
<field column="description" xpath="/RDF/item/description" />
<field column="creator" xpath="/RDF/item/creator" />
<field column="item-subject" xpath="/RDF/item/subject" />
<field column="date" xpath="/RDF/item/date" dateTimeFormat="yyyy-MM-dd'T'hh:mm:ss" />
<field column="slash-department" xpath="/RDF/item/department" />
<field column="slash-section" xpath="/RDF/item/section" />
<field column="slash-comments" xpath="/RDF/item/comments" />
<field column="title" xpath="/rss/channel/item/title" />
<field column="link" xpath="/rss/channel/item/link" />
<field column="description" xpath="/rss/channel/item/description" />
<field column="creator" xpath="/rss/channel/item/creator" />
<field column="item-subject" xpath="/rss/channel/item/subject" />
<field column="date" xpath="/rss/channel/item/date" dateTimeFormat="yyyy-MM-dd'T'hh:mm:ss" />
<field column="slash-department" xpath="/rss/channel/item/department" />
<field column="slash-section" xpath="/rss/channel/item/section" />
</entity>
</document>
</dataConfig>

View File

@ -294,11 +294,10 @@
<field name="link" type="string" indexed="true" stored="true" />
<field name="description" type="html" indexed="true" stored="true" />
<field name="creator" type="string" indexed="false" stored="true" />
<field name="item-subject" type="string" indexed="true" stored="false" />
<field name="date" type="date" indexed="true" stored="false" />
<field name="slash-department" type="string" indexed="true" stored="false" />
<field name="slash-section" type="string" indexed="true" stored="false" />
<field name="slash-comments" type="sint" indexed="true" stored="true" />
<field name="item-subject" type="string" indexed="true" stored="true" />
<field name="date" type="date" indexed="true" stored="true" />
<field name="slash-department" type="string" indexed="true" stored="true" />
<field name="slash-section" type="string" indexed="true" stored="true" />
<field name="all_text" type="text" indexed="true" stored="false" multiValued="true" />
<copyField source="source" dest="all_text" />