Changes between Version 7 and Version 8 of SearchAllPlugin


Ignore:
Timestamp:
Oct 4, 2017, 1:37:39 PM (7 years ago)
Author:
figaro
Comment:

Moved example to description

Legend:

Unmodified
Added
Removed
Modified
  • SearchAllPlugin

    v7 v8  
    11[[PageOutline(2-5,Contents,pullout)]]
    22
    3 = Trac Search All Projects Plugin
     3= Search in all Trac projects
    44
    55== Description
    66
    7 This plugin provides a new search option to search in all the projects in the current multi-project environment.
     7This plugin provides functionality to search within all the projects in a multi-project environment setup.
     8
     9This plugin will work in a multi-project environment, as it will search all projects in the environment folder. For example, you can use it by having a multi-project environment, where one project is the ''master'' project, and has SearchAllPlugin enabled.
     10
     11By default, the search will be performed within all projects.
     12
     13You can also limit the search to certain projects, by adding the projects to your `trac.ini` file:
     14
     15{{{#!ini
     16[searchall]
     17include_projects = project1, project2, project3
     18}}}
     19
     20This will search only in projects ''project1'', ''project2'' and ''project3''.
     21
     22Or you can exclude projects from the search as follows:
     23
     24{{{#!ini
     25[searchall]
     26exclude_projects = project1, project2
     27}}}
     28
     29This will search in all projects '''except''' ''project1'' and ''project2''.
    830
    931== Bugs/Feature Requests
     
    2749== Installation
    2850
     51General instructions on installing Trac plugins can be found on the [TracPlugins#InstallingaTracplugin TracPlugins] page.
     52
    2953To enable the plugin, add the following line to the ''components'' section in your `trac.ini` file:
    3054{{{#!ini
     
    3761A new checkbox '''Search All Projects''' will appear in the Search page.
    3862
    39 == Example
    40 
    41 This plugin will work in a multi-project environment, as it will search all projects in the environment folder. For example, you can use it by having a multi-project environment, where one project is the ''master'' project, and has SearchAllPlugin enabled.
    42 
    43 You can also limit search to a list of projects, adding to `trac.ini`:
    44 
    45 {{{#!ini
    46 [searchall]
    47 include_projects=project1, project2, project3
    48 }}}
    49 
    50 This will search only in projects ''project1'', ''project2'' and ''project3''. If this option is not set, it will default to search in all projects.
    51 
    52 Or you can exclude projects from the search with:
    53 
    54 {{{#!ini
    55 [searchall]
    56 exclude_projects=project1, project2
    57 }}}
    58 
    59 This will search in all projects '''except''' ''project1'' and ''project2''.
    60 
    6163== Recent Changes
    6264