aboutsummaryrefslogtreecommitdiff
path: root/solr-8.1.1/example/example-DIH/solr/tika/conf/tika-data-config.xml
diff options
context:
space:
mode:
authorkimdahey <claire_kim1@brown.edu>2020-01-16 11:31:41 -0500
committerkimdahey <claire_kim1@brown.edu>2020-01-16 11:31:41 -0500
commit6be0e19ed0bd13f3796f542affa5a2e52674650c (patch)
tree1be222ea9341ecd8020fad3149035fa650a8a07f /solr-8.1.1/example/example-DIH/solr/tika/conf/tika-data-config.xml
parent5cde81d8c6b4dcd8d0796f8669b668763957f395 (diff)
parente410cde0e430553002d4e1a2f64364b57b65fdbc (diff)
merged w master
Diffstat (limited to 'solr-8.1.1/example/example-DIH/solr/tika/conf/tika-data-config.xml')
-rw-r--r--solr-8.1.1/example/example-DIH/solr/tika/conf/tika-data-config.xml26
1 files changed, 0 insertions, 26 deletions
diff --git a/solr-8.1.1/example/example-DIH/solr/tika/conf/tika-data-config.xml b/solr-8.1.1/example/example-DIH/solr/tika/conf/tika-data-config.xml
deleted file mode 100644
index 5286fc418..000000000
--- a/solr-8.1.1/example/example-DIH/solr/tika/conf/tika-data-config.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<dataConfig>
- <dataSource type="BinFileDataSource"/>
- <document>
- <entity name="file" processor="FileListEntityProcessor" dataSource="null"
- baseDir="${solr.install.dir}/example/exampledocs" fileName=".*pdf"
- rootEntity="false">
-
- <field column="file" name="id"/>
-
- <entity name="pdf" processor="TikaEntityProcessor"
- url="${file.fileAbsolutePath}" format="text">
-
- <field column="Author" name="author" meta="true"/>
- <!-- in the original PDF, the Author meta-field name is upper-cased,
- but in Solr schema it is lower-cased
- -->
-
- <field column="title" name="title" meta="true"/>
- <field column="dc:format" name="format" meta="true"/>
-
- <field column="text" name="text"/>
-
- </entity>
- </entity>
- </document>
-</dataConfig>