[Bps-public-commit] rt-extension-tika branch, master, updated. 5ddd7cf0d01b316a84d7d29c4028f5ca9e269269

Dave Goehrig dave at bestpractical.com
Wed Nov 16 12:28:43 EST 2016


The branch, master has been updated
       via  5ddd7cf0d01b316a84d7d29c4028f5ca9e269269 (commit)
       via  dce7204a0a92728ae53686e2c55a884c2abf9bd6 (commit)
      from  78c39ed44cd099770bacc964613dd9b6303b7bdb (commit)

Summary of changes:
 Makefile.PL              |  4 ++--
 lib/RT/Extension/Tika.pm | 22 ++++++++++++++++------
 2 files changed, 18 insertions(+), 8 deletions(-)

- Log -----------------------------------------------------------------
commit dce7204a0a92728ae53686e2c55a884c2abf9bd6
Author: Dave Goehrig <dave at bestpractical.com>
Date:   Wed Nov 16 12:25:49 2016 -0500

    adding restrictions

diff --git a/Makefile.PL b/Makefile.PL
index 0b2648a..55dcd3b 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -4,8 +4,8 @@ RTx     'rt-extension-tika';
 license 'gplv2';
 repository 'https://github.com/bestpractical/rt-extension-tika';
 
-requires_rt '4.0.0';
-rt_too_new '4.4.0';
+requires_rt '4.4.0';
+rt_too_new '4.6.0';
 
 sign;
 WriteAll;

commit 5ddd7cf0d01b316a84d7d29c4028f5ca9e269269
Author: Dave Goehrig <dave at bestpractical.com>
Date:   Wed Nov 16 12:26:28 2016 -0500

    fixing documentation

diff --git a/lib/RT/Extension/Tika.pm b/lib/RT/Extension/Tika.pm
index ac11623..62c525f 100644
--- a/lib/RT/Extension/Tika.pm
+++ b/lib/RT/Extension/Tika.pm
@@ -2,22 +2,32 @@ use strict;
 use warnings;
 package rt::extension::tika;
 
+use Apache::Tika;
+use LWP;
+
 our $VERSION = '0.01';
 
 =head1 NAME
 
-rt-extension-tika - [One line description of module's purpose here]
+rt-extension-tika - adds Apache Tika document conversion for full text search
 
 =head1 DESCRIPTION
 
-[Why would someone install this extension? What does it do? What problem
-does it solve?]
+RT has the option of providing full text search through the features of the 
+underlying database, but it can only search attachments that are in plain
+text and html.  If your organization uses typical office software, it will
+often be handy to add documents to a ticket in various office document formats.
+This module makes those document attachments searchable through the same
+full text search as the rest of your tickets.
 
-=head1 RT VERSION
+Apache Tika is a project that extracts plain text from various document formats
+for use in search engines.  This plugin requires running a tika-server process
+either on the same machine as RT or on another machine, to provide the text 
+extraction for the different supported document types.
 
-Works with RT [What versions of RT is this known to work with?]
+=head1 RT VERSION
 
-[Make sure to use requires_rt and rt_too_new in Makefile.PL]
+Works with RT 4.4.1.
 
 =head1 INSTALLATION
 

-----------------------------------------------------------------------


More information about the Bps-public-commit mailing list