This commit is contained in:
parent
6763485d20
commit
ed3a472f62
13
src/INSTALL
13
src/INSTALL
@ -699,24 +699,23 @@ More documentation can be found in the doc/ directory or at http://www.recoll.or
|
|||||||
* In $RECOLL_CONFDIR/mimemap (typically ~/.recoll/mimemap), add the
|
* In $RECOLL_CONFDIR/mimemap (typically ~/.recoll/mimemap), add the
|
||||||
following line:
|
following line:
|
||||||
|
|
||||||
application/x-blobapp = .blob
|
.blob = application/x-blobapp
|
||||||
|
|
||||||
|
|
||||||
Note that the mime type is made up here, and you could call it
|
Note that the mime type is made up here, and you could call it
|
||||||
diesel/oil just the same.
|
diesel/oil just the same.
|
||||||
|
|
||||||
* In $RECOLL_CONFDIR/mimeview under the [view] section:
|
* In $RECOLL_CONFDIR/mimeview under the [view] section, add:
|
||||||
|
|
||||||
application/x-blobapp = blobviewer %f
|
application/x-blobapp = blobviewer %f
|
||||||
|
|
||||||
|
|
||||||
We are supposing that blobviewer wants a file name parameter here, you
|
We are supposing that blobviewer wants a file name parameter here, you
|
||||||
would use %u if it liked URLs better.
|
would use %u if it liked URLs better.
|
||||||
|
|
||||||
If you just wanted to change the application used by Recoll to display a
|
If you just wanted to change the application used by Recoll to display a
|
||||||
mime type which it already knows, you would just need to edit mimeview.
|
mime type which it already knows, you would just need to edit mimeview.
|
||||||
The entries you add in your personal file override those in the central
|
The entries you add in your personal file override those in the central
|
||||||
configuration, which you do not need to alter
|
configuration, which you do not need to alter. mimeview can also be
|
||||||
|
modified from the Gui.
|
||||||
|
|
||||||
7.4.5.2. Adding indexing support for a new file type
|
7.4.5.2. Adding indexing support for a new file type
|
||||||
|
|
||||||
@ -731,7 +730,6 @@ More documentation can be found in the doc/ directory or at http://www.recoll.or
|
|||||||
|
|
||||||
application/x-blobapp = exec rclblob
|
application/x-blobapp = exec rclblob
|
||||||
|
|
||||||
|
|
||||||
* Under the [icons] section, you should choose an icon to be displayed
|
* Under the [icons] section, you should choose an icon to be displayed
|
||||||
for the files inside the result lists. Icons are normally 64x64 pixels
|
for the files inside the result lists. Icons are normally 64x64 pixels
|
||||||
PNG files which live in /usr/[local/]share/recoll/images.
|
PNG files which live in /usr/[local/]share/recoll/images.
|
||||||
@ -742,7 +740,8 @@ More documentation can be found in the doc/ directory or at http://www.recoll.or
|
|||||||
|
|
||||||
The rclblob filter should be an executable program or script which exists
|
The rclblob filter should be an executable program or script which exists
|
||||||
inside /usr/[local/]share/recoll/filters. It will be given a file name as
|
inside /usr/[local/]share/recoll/filters. It will be given a file name as
|
||||||
argument and should output the text contents on the standard output.
|
argument and should output the text or html contents on the standard
|
||||||
|
output.
|
||||||
|
|
||||||
The filter programming section describes in more detail how to write a
|
The filter programming section describes in more detail how to write a
|
||||||
filter.
|
filter.
|
||||||
|
|||||||
13
src/README
13
src/README
@ -2627,24 +2627,23 @@ More documentation can be found in the doc/ directory or at http://www.recoll.or
|
|||||||
* In $RECOLL_CONFDIR/mimemap (typically ~/.recoll/mimemap), add the
|
* In $RECOLL_CONFDIR/mimemap (typically ~/.recoll/mimemap), add the
|
||||||
following line:
|
following line:
|
||||||
|
|
||||||
application/x-blobapp = .blob
|
.blob = application/x-blobapp
|
||||||
|
|
||||||
|
|
||||||
Note that the mime type is made up here, and you could call it
|
Note that the mime type is made up here, and you could call it
|
||||||
diesel/oil just the same.
|
diesel/oil just the same.
|
||||||
|
|
||||||
* In $RECOLL_CONFDIR/mimeview under the [view] section:
|
* In $RECOLL_CONFDIR/mimeview under the [view] section, add:
|
||||||
|
|
||||||
application/x-blobapp = blobviewer %f
|
application/x-blobapp = blobviewer %f
|
||||||
|
|
||||||
|
|
||||||
We are supposing that blobviewer wants a file name parameter here, you
|
We are supposing that blobviewer wants a file name parameter here, you
|
||||||
would use %u if it liked URLs better.
|
would use %u if it liked URLs better.
|
||||||
|
|
||||||
If you just wanted to change the application used by Recoll to display a
|
If you just wanted to change the application used by Recoll to display a
|
||||||
mime type which it already knows, you would just need to edit mimeview.
|
mime type which it already knows, you would just need to edit mimeview.
|
||||||
The entries you add in your personal file override those in the central
|
The entries you add in your personal file override those in the central
|
||||||
configuration, which you do not need to alter
|
configuration, which you do not need to alter. mimeview can also be
|
||||||
|
modified from the Gui.
|
||||||
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
@ -2661,7 +2660,6 @@ More documentation can be found in the doc/ directory or at http://www.recoll.or
|
|||||||
|
|
||||||
application/x-blobapp = exec rclblob
|
application/x-blobapp = exec rclblob
|
||||||
|
|
||||||
|
|
||||||
* Under the [icons] section, you should choose an icon to be displayed
|
* Under the [icons] section, you should choose an icon to be displayed
|
||||||
for the files inside the result lists. Icons are normally 64x64 pixels
|
for the files inside the result lists. Icons are normally 64x64 pixels
|
||||||
PNG files which live in /usr/[local/]share/recoll/images.
|
PNG files which live in /usr/[local/]share/recoll/images.
|
||||||
@ -2672,7 +2670,8 @@ More documentation can be found in the doc/ directory or at http://www.recoll.or
|
|||||||
|
|
||||||
The rclblob filter should be an executable program or script which exists
|
The rclblob filter should be an executable program or script which exists
|
||||||
inside /usr/[local/]share/recoll/filters. It will be given a file name as
|
inside /usr/[local/]share/recoll/filters. It will be given a file name as
|
||||||
argument and should output the text contents on the standard output.
|
argument and should output the text or html contents on the standard
|
||||||
|
output.
|
||||||
|
|
||||||
The filter programming section describes in more detail how to write a
|
The filter programming section describes in more detail how to write a
|
||||||
filter.
|
filter.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user