tracker r1759 - in branches/indexer-split: . filters/application
- From: mbiebl svn gnome org
- To: svn-commits-list gnome org
- Subject: tracker r1759 - in branches/indexer-split: . filters/application
- Date: Wed, 25 Jun 2008 00:26:23 +0000 (UTC)
Author: mbiebl
Date: Wed Jun 25 00:26:22 2008
New Revision: 1759
URL: http://svn.gnome.org/viewvc/tracker?rev=1759&view=rev
Log:
* filters/application/vnd.*: Use odt2txt instead of o3totxt. o3read
has been deprecated and superseded by odt2txt. See also
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=477311
* README: Add odt2txt to the list of recommended dpendencies.
Modified:
branches/indexer-split/ChangeLog
branches/indexer-split/README
branches/indexer-split/filters/application/vnd.oasis.opendocument.presentation-template_filter
branches/indexer-split/filters/application/vnd.oasis.opendocument.presentation_filter
branches/indexer-split/filters/application/vnd.oasis.opendocument.spreadsheet-template_filter
branches/indexer-split/filters/application/vnd.oasis.opendocument.spreadsheet_filter
branches/indexer-split/filters/application/vnd.oasis.opendocument.text-template_filter
branches/indexer-split/filters/application/vnd.oasis.opendocument.text_filter
branches/indexer-split/filters/application/vnd.stardivision.writer_filter
branches/indexer-split/filters/application/vnd.sun.xml.calc.template_filter
branches/indexer-split/filters/application/vnd.sun.xml.calc_filter
branches/indexer-split/filters/application/vnd.sun.xml.draw_filter
branches/indexer-split/filters/application/vnd.sun.xml.impress.template_filter
branches/indexer-split/filters/application/vnd.sun.xml.impress_filter
branches/indexer-split/filters/application/vnd.sun.xml.writer.template_filter
branches/indexer-split/filters/application/vnd.sun.xml.writer_filter
Modified: branches/indexer-split/README
==============================================================================
--- branches/indexer-split/README (original)
+++ branches/indexer-split/README Wed Jun 25 00:26:22 2008
@@ -167,6 +167,7 @@
* w3m
* wv 1.0.2
* poppler (pdftotext)
+ * odt2txt 0.4 (indexing OpenOffice/ODF documents)
* libvorbis
* libpng
* libexif
Modified: branches/indexer-split/filters/application/vnd.oasis.opendocument.presentation-template_filter
==============================================================================
--- branches/indexer-split/filters/application/vnd.oasis.opendocument.presentation-template_filter (original)
+++ branches/indexer-split/filters/application/vnd.oasis.opendocument.presentation-template_filter Wed Jun 25 00:26:22 2008
@@ -1,3 +1,3 @@
#!/bin/sh
-nice -n19 unzip -p "$1" content.xml | o3totxt
+nice -n19 odt2txt "$1"
Modified: branches/indexer-split/filters/application/vnd.oasis.opendocument.presentation_filter
==============================================================================
--- branches/indexer-split/filters/application/vnd.oasis.opendocument.presentation_filter (original)
+++ branches/indexer-split/filters/application/vnd.oasis.opendocument.presentation_filter Wed Jun 25 00:26:22 2008
@@ -1,3 +1,3 @@
#!/bin/sh
-nice -n19 unzip -p "$1" content.xml | o3totxt
+nice -n19 odt2txt "$1"
Modified: branches/indexer-split/filters/application/vnd.oasis.opendocument.spreadsheet-template_filter
==============================================================================
--- branches/indexer-split/filters/application/vnd.oasis.opendocument.spreadsheet-template_filter (original)
+++ branches/indexer-split/filters/application/vnd.oasis.opendocument.spreadsheet-template_filter Wed Jun 25 00:26:22 2008
@@ -1,3 +1,3 @@
#!/bin/sh
-nice -n19 unzip -p "$1" content.xml | o3totxt
+nice -n19 odt2txt "$1"
Modified: branches/indexer-split/filters/application/vnd.oasis.opendocument.spreadsheet_filter
==============================================================================
--- branches/indexer-split/filters/application/vnd.oasis.opendocument.spreadsheet_filter (original)
+++ branches/indexer-split/filters/application/vnd.oasis.opendocument.spreadsheet_filter Wed Jun 25 00:26:22 2008
@@ -1,3 +1,3 @@
#!/bin/sh
-nice -n19 unzip -p "$1" content.xml | o3totxt
+nice -n19 odt2txt "$1"
Modified: branches/indexer-split/filters/application/vnd.oasis.opendocument.text-template_filter
==============================================================================
--- branches/indexer-split/filters/application/vnd.oasis.opendocument.text-template_filter (original)
+++ branches/indexer-split/filters/application/vnd.oasis.opendocument.text-template_filter Wed Jun 25 00:26:22 2008
@@ -1,3 +1,3 @@
#!/bin/sh
-nice -n19 unzip -p "$1" content.xml | o3totxt
+nice -n19 odt2txt "$1"
Modified: branches/indexer-split/filters/application/vnd.oasis.opendocument.text_filter
==============================================================================
--- branches/indexer-split/filters/application/vnd.oasis.opendocument.text_filter (original)
+++ branches/indexer-split/filters/application/vnd.oasis.opendocument.text_filter Wed Jun 25 00:26:22 2008
@@ -1,3 +1,3 @@
#!/bin/sh
-nice -n19 unzip -p "$1" content.xml | o3totxt
+nice -n19 odt2txt "$1"
Modified: branches/indexer-split/filters/application/vnd.stardivision.writer_filter
==============================================================================
--- branches/indexer-split/filters/application/vnd.stardivision.writer_filter (original)
+++ branches/indexer-split/filters/application/vnd.stardivision.writer_filter Wed Jun 25 00:26:22 2008
@@ -1,3 +1,3 @@
#!/bin/sh
-nice -n19 unzip -p "$1" content.xml | o3totxt
+nice -n19 odt2txt "$1"
Modified: branches/indexer-split/filters/application/vnd.sun.xml.calc.template_filter
==============================================================================
--- branches/indexer-split/filters/application/vnd.sun.xml.calc.template_filter (original)
+++ branches/indexer-split/filters/application/vnd.sun.xml.calc.template_filter Wed Jun 25 00:26:22 2008
@@ -1,3 +1,3 @@
#!/bin/sh
-nice -n19 unzip -p "$1" content.xml | o3totxt
+nice -n19 odt2txt "$1"
Modified: branches/indexer-split/filters/application/vnd.sun.xml.calc_filter
==============================================================================
--- branches/indexer-split/filters/application/vnd.sun.xml.calc_filter (original)
+++ branches/indexer-split/filters/application/vnd.sun.xml.calc_filter Wed Jun 25 00:26:22 2008
@@ -1,3 +1,3 @@
#!/bin/sh
-nice -n19 unzip -p "$1" content.xml | o3totxt
+nice -n19 odt2txt "$1"
Modified: branches/indexer-split/filters/application/vnd.sun.xml.draw_filter
==============================================================================
--- branches/indexer-split/filters/application/vnd.sun.xml.draw_filter (original)
+++ branches/indexer-split/filters/application/vnd.sun.xml.draw_filter Wed Jun 25 00:26:22 2008
@@ -1,3 +1,3 @@
#!/bin/sh
-nice -n19 unzip -p "$1" content.xml | o3totxt
+nice -n19 odt2txt "$1"
Modified: branches/indexer-split/filters/application/vnd.sun.xml.impress.template_filter
==============================================================================
--- branches/indexer-split/filters/application/vnd.sun.xml.impress.template_filter (original)
+++ branches/indexer-split/filters/application/vnd.sun.xml.impress.template_filter Wed Jun 25 00:26:22 2008
@@ -1,3 +1,3 @@
#!/bin/sh
-nice -n19 unzip -p "$1" content.xml | o3totxt
+nice -n19 odt2txt "$1"
Modified: branches/indexer-split/filters/application/vnd.sun.xml.impress_filter
==============================================================================
--- branches/indexer-split/filters/application/vnd.sun.xml.impress_filter (original)
+++ branches/indexer-split/filters/application/vnd.sun.xml.impress_filter Wed Jun 25 00:26:22 2008
@@ -1,3 +1,3 @@
#!/bin/sh
-nice -n19 unzip -p "$1" content.xml | o3totxt
+nice -n19 odt2txt "$1"
Modified: branches/indexer-split/filters/application/vnd.sun.xml.writer.template_filter
==============================================================================
--- branches/indexer-split/filters/application/vnd.sun.xml.writer.template_filter (original)
+++ branches/indexer-split/filters/application/vnd.sun.xml.writer.template_filter Wed Jun 25 00:26:22 2008
@@ -1,3 +1,3 @@
#!/bin/sh
-nice -n19 unzip -p "$1" content.xml | o3totxt
+nice -n19 odt2txt "$1"
Modified: branches/indexer-split/filters/application/vnd.sun.xml.writer_filter
==============================================================================
--- branches/indexer-split/filters/application/vnd.sun.xml.writer_filter (original)
+++ branches/indexer-split/filters/application/vnd.sun.xml.writer_filter Wed Jun 25 00:26:22 2008
@@ -1,3 +1,3 @@
#!/bin/sh
-nice -n19 unzip -p "$1" content.xml | o3totxt
+nice -n19 odt2txt "$1"
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]