pure cosmetics

This commit is contained in:
Jean-Francois Dockes 2010-07-04 19:22:26 +02:00
parent 4c75864fd6
commit 097bc578be
25 changed files with 4 additions and 65 deletions

View File

@ -17,7 +17,6 @@
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#================================================================ #================================================================
# rcldjvu
# Extract text from a djvu file by executing djvused and djvutxt # Extract text from a djvu file by executing djvused and djvutxt
# #
# We use djvused to extract a possible title, djvutxt for the text # We use djvused to extract a possible title, djvutxt for the text

View File

@ -6,7 +6,6 @@
# Copyright (C) 2003-2004 Mikio Hirabayashi # Copyright (C) 2003-2004 Mikio Hirabayashi
#================================================================ #================================================================
#================================================================ #================================================================
# rcldoc
# Extract text from an msword file by executing either antiword # Extract text from an msword file by executing either antiword
# (or wvware maybe if we need it one day) # (or wvware maybe if we need it one day)
# #

View File

@ -17,7 +17,6 @@
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# #
# rcldvi
# Extract text from a dvi file by either executing dvitops and rclps # Extract text from a dvi file by either executing dvitops and rclps
# or using catdvi. dvitops has given better results during tests, and is # or using catdvi. dvitops has given better results during tests, and is
# chosen first if available, but the dvitops/rclps combination is much # chosen first if available, but the dvitops/rclps combination is much
@ -29,10 +28,6 @@ progname="rcldvi"
filetype=dvi filetype=dvi
#RECFILTCOMMONCODE #RECFILTCOMMONCODE
############################################################################## ##############################################################################
# !! Leave the previous line unmodified!! Code imported from the # !! Leave the previous line unmodified!! Code imported from the

View File

@ -1,7 +1,6 @@
#!/bin/sh #!/bin/sh
# @(#$Id: rclopxml,v 1.3 2008-10-08 08:27:34 dockes Exp $ (C) 2004 J.F.Dockes # @(#$Id: rclopxml,v 1.3 2008-10-08 08:27:34 dockes Exp $ (C) 2004 J.F.Dockes
#================================================================ #================================================================
# rclfb2
# Extract text from an fb2 ebook (xml) # Extract text from an fb2 ebook (xml)
#================================================================ #================================================================

View File

@ -1,7 +1,6 @@
#!/bin/sh #!/bin/sh
# @(#$Id: rclflac,v 1.2 2008-10-09 09:21:38 dockes Exp $ (C) 2007 J.F.Dockes # @(#$Id: rclflac,v 1.2 2008-10-09 09:21:38 dockes Exp $ (C) 2007 J.F.Dockes
#================================================================ #================================================================
# rclflac
# Handle flac audio files for recoll. # Handle flac audio files for recoll.
#================================================================ #================================================================
# set variables # set variables

View File

@ -6,12 +6,10 @@
# Copyright (C) 2003-2004 Mikio Hirabayashi # Copyright (C) 2003-2004 Mikio Hirabayashi
#================================================================ #================================================================
#================================================================ #================================================================
# rclgaim
# Extract text and other information from gaim logs # Extract text and other information from gaim logs
# #
#================================================================ #================================================================
# set variables # set variables
LANG=C ; export LANG LANG=C ; export LANG
LC_ALL=C ; export LC_ALL LC_ALL=C ; export LC_ALL
@ -19,9 +17,6 @@ progname="rclgaim"
filetype="gaim log" filetype="gaim log"
#RECFILTCOMMONCODE #RECFILTCOMMONCODE
############################################################################## ##############################################################################
# !! Leave the previous line unmodified!! Code imported from the # !! Leave the previous line unmodified!! Code imported from the

View File

@ -1,8 +1,7 @@
#!/bin/sh #!/bin/sh
# @(#$Id: rclid3,v 1.4 2008-10-09 09:21:38 dockes Exp $ (C) 2004 J.F.Dockes # @(#$Id: rclid3,v 1.4 2008-10-09 09:21:38 dockes Exp $ (C) 2004 J.F.Dockes
#================================================================ #================================================================
# rclid3 # Extract mp3 tag information using id3info
# Handle audio files for recoll. This uses id3info to extract tags
#================================================================ #================================================================
# set variables # set variables
LANG=C ; export LANG LANG=C ; export LANG

View File

@ -18,7 +18,7 @@
###################################################### ######################################################
# #
# rclimg: extract image tags with exiftool and convert the data to html for # Extract image tags with exiftool and convert the data to html for
# recoll indexing. # recoll indexing.
# #

View File

@ -6,9 +6,7 @@
# Copyright (C) 2003-2004 Mikio Hirabayashi # Copyright (C) 2003-2004 Mikio Hirabayashi
#================================================================ #================================================================
#================================================================ #================================================================
# rclkword
# Extract text from a kword file # Extract text from a kword file
#
#================================================================ #================================================================
# set variables # set variables
@ -18,8 +16,6 @@ progname="rclkwd"
filetype=kword filetype=kword
#RECFILTCOMMONCODE #RECFILTCOMMONCODE
############################################################################## ##############################################################################
# !! Leave the previous line unmodified!! Code imported from the # !! Leave the previous line unmodified!! Code imported from the

View File

@ -6,7 +6,6 @@
# Copyright (C) 2003-2004 Mikio Hirabayashi # Copyright (C) 2003-2004 Mikio Hirabayashi
#================================================================ #================================================================
#================================================================ #================================================================
# rcllyx
# Convert a lyx file to recoll HTML. # Convert a lyx file to recoll HTML.
# #
# We use lyx --export. It was suggested to use untex, but it doesn't give # We use lyx --export. It was suggested to use untex, but it doesn't give

View File

@ -6,24 +6,18 @@
# Copyright (C) 2003-2004 Mikio Hirabayashi # Copyright (C) 2003-2004 Mikio Hirabayashi
#================================================================ #================================================================
#================================================================ #================================================================
# rclman
# Process a manual page with groff and output html # Process a manual page with groff and output html
# We'd like to use -Thtml, but this doesn't seem to be always available. # We'd like to use -Thtml, but this doesn't seem to be always available.
# So we use -Tutf8 and postprocess this to remove the ^H overstriking # So we use -Tutf8 and postprocess this to remove the ^H overstriking
# #
#================================================================ #================================================================
# set variables # set variables
LANG=C ; export LANG LANG=C ; export LANG
LC_ALL=C ; export LC_ALL LC_ALL=C ; export LC_ALL
progname="rclman" progname="rclman"
filetype=man filetype=man
#RECFILTCOMMONCODE #RECFILTCOMMONCODE
############################################################################## ##############################################################################
# !! Leave the previous line unmodified!! Code imported from the # !! Leave the previous line unmodified!! Code imported from the

View File

@ -1,7 +1,6 @@
#!/bin/sh #!/bin/sh
# @(#$Id: rclogg,v 1.2 2008-10-08 08:27:34 dockes Exp $ (C) 2007 J.F.Dockes # @(#$Id: rclogg,v 1.2 2008-10-08 08:27:34 dockes Exp $ (C) 2007 J.F.Dockes
#================================================================ #================================================================
# rclogg
# Handle ogg audio files for recoll. # Handle ogg audio files for recoll.
#================================================================ #================================================================
# set variables # set variables
@ -11,7 +10,6 @@ progname="rclogg"
filetype=ogg filetype=ogg
#RECFILTCOMMONCODE #RECFILTCOMMONCODE
############################################################################## ##############################################################################
# !! Leave the previous line unmodified!! Code imported from the # !! Leave the previous line unmodified!! Code imported from the

View File

@ -1,7 +1,6 @@
#!/bin/sh #!/bin/sh
# @(#$Id: rclopxml,v 1.3 2008-10-08 08:27:34 dockes Exp $ (C) 2004 J.F.Dockes # @(#$Id: rclopxml,v 1.3 2008-10-08 08:27:34 dockes Exp $ (C) 2004 J.F.Dockes
#================================================================ #================================================================
# rcldocx
# Extract text from an openxml msword file (will be extended for spreadsheets) # Extract text from an openxml msword file (will be extended for spreadsheets)
# TODO: Also process docProps/core.xml for attributes, and word/endnotes.xml # TODO: Also process docProps/core.xml for attributes, and word/endnotes.xml
#================================================================ #================================================================

View File

@ -6,7 +6,6 @@
# Copyright (C) 2003-2004 Mikio Hirabayashi # Copyright (C) 2003-2004 Mikio Hirabayashi
#================================================================ #================================================================
#================================================================ #================================================================
# rclpdf
# Convert a pdf file to HTML. # Convert a pdf file to HTML.
# #
# We use pdftotxt from the xpdf package. This does not perfect results as # We use pdftotxt from the xpdf package. This does not perfect results as
@ -23,7 +22,6 @@
# not, I did not check) should be replaced with f and i characters as this # not, I did not check) should be replaced with f and i characters as this
# is what will get searched for. # is what will get searched for.
# Comment the following if you get better results without # Comment the following if you get better results without
optionraw=-raw optionraw=-raw
@ -34,9 +32,6 @@ progname="rclpdf"
filetype=pdf filetype=pdf
#RECFILTCOMMONCODE #RECFILTCOMMONCODE
############################################################################## ##############################################################################
# !! Leave the previous line unmodified!! Code imported from the # !! Leave the previous line unmodified!! Code imported from the

View File

@ -16,7 +16,6 @@
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#================================================================ #================================================================
# rclppt
# Handle powerpoint files for recoll. # Handle powerpoint files for recoll.
# Uses catppt from the catdoc utilities # Uses catppt from the catdoc utilities
# (http://ftp.45.free.net/~vitus/software/catdoc/) # (http://ftp.45.free.net/~vitus/software/catdoc/)
@ -24,6 +23,7 @@
# Design" ou "format par defaut" instead and only. # Design" ou "format par defaut" instead and only.
# #
#================================================================ #================================================================
# set variables # set variables
LANG=C ; export LANG LANG=C ; export LANG
LC_ALL=C ; export LC_ALL LC_ALL=C ; export LC_ALL
@ -31,9 +31,6 @@ progname="rclppt"
filetype=powerpoint filetype=powerpoint
#RECFILTCOMMONCODE #RECFILTCOMMONCODE
############################################################################## ##############################################################################
# !! Leave the previous line unmodified!! Code imported from the # !! Leave the previous line unmodified!! Code imported from the

View File

@ -6,7 +6,6 @@
# Copyright (C) 2003-2004 Mikio Hirabayashi # Copyright (C) 2003-2004 Mikio Hirabayashi
#================================================================ #================================================================
#================================================================ #================================================================
# rclps
# Extract text from a postscript file by executing pstotext or ps2ascii. # Extract text from a postscript file by executing pstotext or ps2ascii.
# #
# The default is to use pstotext which can deal with accents, but in a # The default is to use pstotext which can deal with accents, but in a
@ -17,7 +16,6 @@
# #
#================================================================ #================================================================
# set variables # set variables
LANG=C ; export LANG LANG=C ; export LANG
LC_ALL=C ; export LC_ALL LC_ALL=C ; export LC_ALL
@ -27,10 +25,6 @@ decoder=pstotext
filetype=postscript filetype=postscript
#RECFILTCOMMONCODE #RECFILTCOMMONCODE
############################################################################## ##############################################################################
# !! Leave the previous line unmodified!! Code imported from the # !! Leave the previous line unmodified!! Code imported from the

View File

@ -6,22 +6,16 @@
# Copyright (C) 2003-2004 Mikio Hirabayashi # Copyright (C) 2003-2004 Mikio Hirabayashi
#================================================================ #================================================================
#================================================================ #================================================================
# rclgaim
# Extract text and other information from gaim logs # Extract text and other information from gaim logs
# #
#================================================================ #================================================================
# set variables # set variables
LANG=C ; export LANG LANG=C ; export LANG
LC_ALL=C ; export LC_ALL LC_ALL=C ; export LC_ALL
progname="rclpurple" progname="rclpurple"
filetype="purple/pidgin log" filetype="purple/pidgin log"
#RECFILTCOMMONCODE #RECFILTCOMMONCODE
############################################################################## ##############################################################################
# !! Leave the previous line unmodified!! Code imported from the # !! Leave the previous line unmodified!! Code imported from the

View File

@ -2,7 +2,6 @@
# @(#$Id: rclrtf,v 1.5 2007-06-08 13:51:09 dockes Exp $ (C) 2004 J.F.Dockes # @(#$Id: rclrtf,v 1.5 2007-06-08 13:51:09 dockes Exp $ (C) 2004 J.F.Dockes
# Some inspiration from estraier # Some inspiration from estraier
#================================================================ #================================================================
# rclrtf
# convert rtf to html, by executing the unrtf program: # convert rtf to html, by executing the unrtf program:
# http://www.gnu.org/software/unrtf/unrtf.html # http://www.gnu.org/software/unrtf/unrtf.html
#================================================================ #================================================================
@ -13,10 +12,6 @@ LC_ALL=C ; export LC_ALL
progname="rclrtl" progname="rclrtl"
filetype=rtf filetype=rtf
#RECFILTCOMMONCODE #RECFILTCOMMONCODE
############################################################################## ##############################################################################
# !! Leave the previous line unmodified!! Code imported from the # !! Leave the previous line unmodified!! Code imported from the

View File

@ -6,7 +6,6 @@
# Copyright (C) 2003-2004 Mikio Hirabayashi # Copyright (C) 2003-2004 Mikio Hirabayashi
#================================================================ #================================================================
#================================================================ #================================================================
# rclscribus
# Convert a scribus file to recoll HTML. This only handles the newer .sla # Convert a scribus file to recoll HTML. This only handles the newer .sla
# files until I can have a look at an older .scd. # files until I can have a look at an older .scd.
# #

View File

@ -6,7 +6,6 @@
# Copyright (C) 2003-2004 Mikio Hirabayashi # Copyright (C) 2003-2004 Mikio Hirabayashi
#================================================================ #================================================================
#================================================================ #================================================================
# rclsiduxman
# Strip the menu part from sidux manual pages to improve search precision # Strip the menu part from sidux manual pages to improve search precision
#================================================================ #================================================================

View File

@ -6,7 +6,6 @@
# Copyright (C) 2003-2004 Mikio Hirabayashi # Copyright (C) 2003-2004 Mikio Hirabayashi
#================================================================ #================================================================
#================================================================ #================================================================
# rclsoff
# Extract text from an openoffice/soffice file # Extract text from an openoffice/soffice file
# #
#================================================================ #================================================================
@ -84,7 +83,7 @@ umask 77
# !! Leave the following line unmodified ! # !! Leave the following line unmodified !
#ENDRECFILTCOMMONCODE #ENDRECFILTCOMMONCODE
checkcmds xsltproc checkcmds xsltproc unzip
# We need a temporary directory # We need a temporary directory
if test z"$RECOLL_TMPDIR" != z; then if test z"$RECOLL_TMPDIR" != z; then

View File

@ -1,7 +1,6 @@
#!/bin/sh #!/bin/sh
# @(#$Id: rcltex,v 1.2 2007-11-09 15:56:14 dockes Exp $ (C) 2004 J.F.Dockes # @(#$Id: rcltex,v 1.2 2007-11-09 15:56:14 dockes Exp $ (C) 2004 J.F.Dockes
#================================================================ #================================================================
# rcltex
# Translate TeX files for recoll. Uses either untex or detex to translate to html # Translate TeX files for recoll. Uses either untex or detex to translate to html
#================================================================ #================================================================
# set variables # set variables

View File

@ -6,7 +6,6 @@
# Copyright (C) 2003-2004 Mikio Hirabayashi # Copyright (C) 2003-2004 Mikio Hirabayashi
#================================================================ #================================================================
#================================================================ #================================================================
# rcltext
# Wrap generic text (ie: program text) in html # Wrap generic text (ie: program text) in html
# Assumes ascii or iso-8859-1 # Assumes ascii or iso-8859-1
#================================================================ #================================================================

View File

@ -2,7 +2,6 @@
# @(#$Id: rclwpd,v 1.1 2007-08-26 13:34:59 dockes Exp $ (C) 2004 J.F.Dockes # @(#$Id: rclwpd,v 1.1 2007-08-26 13:34:59 dockes Exp $ (C) 2004 J.F.Dockes
# Some inspiration from estraier # Some inspiration from estraier
#================================================================ #================================================================
# rclwpd
# convert wordperfect documents to html, by executing the wpd2html program: # convert wordperfect documents to html, by executing the wpd2html program:
# http://libwpd.sourceforge.net/download.html # http://libwpd.sourceforge.net/download.html
#================================================================ #================================================================

View File

@ -16,7 +16,6 @@
# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#================================================================ #================================================================
# rclppt
# Handle excel files for recoll. # Handle excel files for recoll.
# Uses xls2csv from the catdoc utilities # Uses xls2csv from the catdoc utilities
# (http://ftp.45.free.net/~vitus/software/catdoc/) # (http://ftp.45.free.net/~vitus/software/catdoc/)