Changes between Version 22 and Version 23 of SearchAttachmentsPlugin


Ignore:
Timestamp:
Aug 13, 2015, 4:34:46 PM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • SearchAttachmentsPlugin

    v22 v23  
    1 = SEAT plugin: SEarch wiki and ticket ATtachments =
    21[[PageOutline(2-5,Contents,pullout)]]
     2
     3= SEAT plugin: SEarch wiki and ticket ATtachments
    34
    45== Description
    56
    67This plugin allows text integral search in wiki and ticket attachments, including proprietary file formats such as .pdf, .doc, .ppt, etc.
    7 The SEAT plugin has the following features:
    8  * new '''Attachments''' source to the search page
    9  * an excerpt of the matching documents is presented in the result page
    10  * any format is supported as long as there is a command line tool for plain text conversion (filter command)
     8
     9Key features:
     10 * New '''Attachments''' source to the search page.
     11 * An excerpt of the matching documents is presented in the result page.
     12 * Any format is supported as long as there is a command line tool for plain text conversion (filter command).
    1113
    1214== Bugs/Feature Requests
     
    1416Existing bugs and feature requests for SearchAttachmentsPlugin are [query:status!=closed&component=SearchAttachmentsPlugin&order=priority here].
    1517
    16 If you have any issues, create a [/newticket?component=SearchAttachmentsPlugin&owner=deltroo new ticket].
     18If you have any issues, create a [/newticket?component=SearchAttachmentsPlugin new ticket].
    1719
    1820[[TicketQuery(component=SearchAttachmentsPlugin,group=type,format=progress)]]
    1921
    20 == Download and Source
     22== Download
    2123
    22 Download the [download:searchattachmentsplugin zipped source], check out [/svn/searchattachmentsplugin using Subversion], or [source:searchattachmentsplugin browse the source] with Trac.
     24Download the [download:searchattachmentsplugin zipped source].
    2325
    24 == Installation
     26== Source
     27
     28Check out [/svn/searchattachmentsplugin using Subversion], or [source:searchattachmentsplugin browse the source] with Trac.
     29
     30== Installation
     31
    2532  * Install swish-e, http://swish-e.org/, the open source system for indexing documents.
    2633
     
    8996    '''Comment''': On Trac 0.11.4 that should probably be /path/to/your/env/'''attachments'''/index.
    9097
    91   * Configure trac.ini:
     98  * Configure your `trac.ini` file as follows:
    9299 {{{#!ini
    93100[components]
     
    112119    '''Comment''': Changed config section to `[attachment]` which is what's actually used in the sources (not [attachment'''s''']). This should also be corrected in the plugin's README.
    113120
    114   There is no need to declare a filter command for .txt or .text. Text files are handled
    115   natively. To index a new non-text format, just add a `filter.*` entry using the appropriate
    116   command line tool for this format.
     121  There is no need to declare a filter command for .txt or .text. Text files are handled natively. To index a new non-text format, just add a `filter.*` entry using the appropriate command line tool for this format.
    117122 {{{
    118123filter.EXTENSION = path_to_EXTENSION_to_text_command -infile "%s" -outfile "%s"