gitextract_eg1fqg4g/ ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── build.gradle ├── dev-tools/ │ ├── email_template.html │ ├── email_template.txt │ ├── release.py │ ├── tests.policy │ └── upload-s3.py ├── licenses/ │ ├── bcmail-jdk15on-1.52.jar.sha1 │ ├── bcmail-jdk15on-LICENSE.txt │ ├── bcmail-jdk15on-NOTICE.txt │ ├── bcpkix-jdk15on-1.52.jar.sha1 │ ├── bcpkix-jdk15on-LICENSE.txt │ ├── bcpkix-jdk15on-NOTICE.txt │ ├── bcprov-jdk15on-1.52.jar.sha1 │ ├── bcprov-jdk15on-LICENSE.txt │ ├── bcprov-jdk15on-NOTICE.txt │ ├── commons-codec-1.9.jar.sha1 │ ├── commons-codec-LICENSE.txt │ ├── commons-codec-NOTICE.txt │ ├── commons-compress-1.10.jar.sha1 │ ├── commons-compress-LICENSE.txt │ ├── commons-compress-NOTICE.txt │ ├── commons-io-2.4.jar.sha1 │ ├── commons-io-LICENSE.txt │ ├── commons-io-NOTICE.txt │ ├── commons-logging-1.1.1.jar.sha1 │ ├── commons-logging-LICENSE.txt │ ├── commons-logging-NOTICE.txt │ ├── fontbox-1.8.10.jar.sha1 │ ├── fontbox-LICENSE.txt │ ├── fontbox-NOTICE.txt │ ├── jempbox-1.8.10.jar.sha1 │ ├── jempbox-LICENSE.txt │ ├── jempbox-NOTICE.txt │ ├── juniversalchardet-1.0.3.jar.sha1 │ ├── juniversalchardet-LICENSE.txt │ ├── juniversalchardet-NOTICE.txt │ ├── pdfbox-1.8.10.jar.sha1 │ ├── pdfbox-LICENSE.txt │ ├── pdfbox-NOTICE.txt │ ├── poi-3.13.jar.sha1 │ ├── poi-LICENSE.txt │ ├── poi-NOTICE.txt │ ├── poi-ooxml-3.13.jar.sha1 │ ├── poi-ooxml-LICENSE.txt │ ├── poi-ooxml-NOTICE.txt │ ├── poi-ooxml-schemas-3.13.jar.sha1 │ ├── poi-ooxml-schemas-LICENSE.txt │ ├── poi-ooxml-schemas-NOTICE.txt │ ├── poi-scratchpad-3.13.jar.sha1 │ ├── poi-scratchpad-LICENSE.txt │ ├── poi-scratchpad-NOTICE.txt │ ├── stax-api-1.0.1.jar.sha1 │ ├── stax-api-LICENSE.txt │ ├── stax-api-NOTICE.txt │ ├── tagsoup-1.2.1.jar.sha1 │ ├── tagsoup-LICENSE.txt │ ├── tagsoup-NOTICE.txt │ ├── tika-core-1.11.jar.sha1 │ ├── tika-core-LICENSE.txt │ ├── tika-core-NOTICE.txt │ ├── tika-parsers-1.11.jar.sha1 │ ├── tika-parsers-LICENSE.txt │ ├── tika-parsers-NOTICE.txt │ ├── xmlbeans-2.6.0.jar.sha1 │ ├── xmlbeans-LICENSE.txt │ └── xmlbeans-NOTICE.txt └── src/ ├── main/ │ ├── java/ │ │ └── org/ │ │ └── elasticsearch/ │ │ └── mapper/ │ │ └── attachments/ │ │ ├── AttachmentMapper.java │ │ ├── MapperAttachmentsPlugin.java │ │ └── TikaImpl.java │ └── plugin-metadata/ │ └── plugin-security.policy └── test/ ├── java/ │ └── org/ │ └── elasticsearch/ │ └── mapper/ │ └── attachments/ │ ├── AttachmentUnitTestCase.java │ ├── DateAttachmentMapperTests.java │ ├── EncryptedDocMapperTests.java │ ├── LanguageDetectionAttachmentMapperTests.java │ ├── MapperAttachmentsRestIT.java │ ├── MapperTestUtils.java │ ├── MetadataMapperTests.java │ ├── MultifieldAttachmentMapperTests.java │ ├── SimpleAttachmentMapperTests.java │ ├── StandaloneRunner.java │ ├── TikaDocTests.java │ ├── TikaImplTests.java │ └── VariousDocTests.java └── resources/ ├── org/ │ └── elasticsearch/ │ └── index/ │ └── mapper/ │ └── attachment/ │ └── test/ │ ├── sample-files/ │ │ ├── asciidoc.asciidoc │ │ ├── htmlWithEmptyDateMeta.html │ │ ├── htmlWithValidDateMeta.html │ │ ├── htmlWithoutDateMeta.html │ │ ├── issue-104.docx │ │ ├── testContentLength.txt │ │ ├── testXHTML.html │ │ ├── text-in-english.txt │ │ ├── text-in-french.txt │ │ └── text-in-nolang.txt │ ├── standalone/ │ │ └── standalone-mapping.json │ └── unit/ │ ├── date/ │ │ └── date-mapping.json │ ├── encrypted/ │ │ └── test-mapping.json │ ├── language/ │ │ └── language-mapping.json │ ├── metadata/ │ │ └── test-mapping.json │ ├── multifield/ │ │ └── multifield-mapping.json │ ├── simple/ │ │ ├── test-mapping-all-fields.json │ │ └── test-mapping.json │ └── various-doc/ │ └── test-mapping.json └── rest-api-spec/ └── test/ └── mapper_attachments/ ├── 00_basic.yaml ├── 10_index.yaml ├── 20_search.yaml ├── 30_mapping.yaml └── 40_highlight.yaml