Parent: [6f66d9] (diff)

Child: [50b927] (diff)

Download this file

mimeconf    66 lines (59 with data), 2.6 kB

# @(#$Id: mimeconf,v 1.5 2005-03-25 09:40:28 dockes Exp $  (C) 2004 J.F.Dockes

# Recoll : associations of mime types to processing filters.
# There are different sections for decompression, 'interning' for indexing
# and preview, and external viewers

## 
# Decompression: these types need a first pass to create a temp file to
# work with. We use a script because uncompress utilities usually work in
# place, which is not suitable. 
#
# The %t parameter will be substituted to the name of a temporary directory
# by recoll. This directory is guaranteed empty when calling the filter
#
# The %f parameter will be substituted with the input file. 
#
# The script (ie: rcluncomp) must output the uncompressed file name on
# stdout. 
application/x-gzip  =  uncompress rcluncomp gunzip %f %t
application/x-gzip  =  uncompress rcluncomp gunzip %f %t
application/x-bzip2 =  uncompress rcluncomp bunzip2 %f %t

## 
# Filters for indexing and internal preview.
# The external (exec) filters  output the document in simple html format,
# have a look at the scripts.
[index]
text/plain = internal 
text/html  = internal 
text/x-mail = internal
message/rfc822 = internal

application/pdf = exec rclpdf
application/postscript = exec rclps
application/msword = exec rcldoc

application/vnd.sun.xml.calc = exec rclsoff
application/vnd.sun.xml.calc.template = exec rclsoff
application/vnd.sun.xml.draw = exec rclsoff
application/vnd.sun.xml.draw.template = exec rclsoff
application/vnd.sun.xml.impress = exec rclsoff
application/vnd.sun.xml.impress.template = exec rclsoff
application/vnd.sun.xml.math = exec rclsoff
application/vnd.sun.xml.writer = exec rclsoff
application/vnd.sun.xml.writer.global = exec rclsoff
application/vnd.sun.xml.writer.template = exec rclsoff

## 
# External viewers, launched when you double-click a result entry
[view]
text/plain = xemacs %f
text/html = firefox -remote "openFile(%u)"
application/pdf  = xpdf %f
application/postscript = gv %f
application/msword = openoffice-1.1.3-swriter %f
application/vnd.sun.xml.calc = openoffice-1.1.3 %f
application/vnd.sun.xml.calc.template = openoffice-1.1.3 %f
application/vnd.sun.xml.draw = openoffice-1.1.3 %f
application/vnd.sun.xml.draw.template = openoffice-1.1.3 %f
application/vnd.sun.xml.impress = openoffice-1.1.3 %f
application/vnd.sun.xml.impress.template = openoffice-1.1.3 %f
application/vnd.sun.xml.math = openoffice-1.1.3 %f
application/vnd.sun.xml.writer = openoffice-1.1.3 %f
application/vnd.sun.xml.writer.global = openoffice-1.1.3 %f
application/vnd.sun.xml.writer.template = openoffice-1.1.3 %f