Changes between Version 1 and Version 2 of SettingsPlugin


Ignore:
Timestamp:
Apr 20, 2011, 10:54:40 AM (13 years ago)
Author:
Franz
Comment:

replaced &lt; and &gt; with <>

Legend:

Unmodified
Added
Removed
Modified
  • SettingsPlugin

    v1 v2  
    1010Extends command `trac-admin` with some more commands:
    1111
    12  - `component removeall &lt;pattern&gt;`: Remove all components with a specific pattern
    13  - `milestone removeall &lt;pattern&gt;`: Remove all milestones with a specific pattern
    14  - `version removeall &lt;pattern&gt;`: Remove all versions with a specific pattern
    15  - `ticket_type removeall &lt;pattern&gt;`: Remove all ticket_types with a specific pattern
    16  - `priority removeall &lt;pattern&gt;`: Remove all priorities with a specific pattern
    17  - `config setall &lt;path/to/file&gt;`: Set all config options from file to `trac.ini`
     12 - `component removeall <pattern>`: Remove all components with a specific pattern
     13 - `milestone removeall <pattern>`: Remove all milestones with a specific pattern
     14 - `version removeall <pattern>`: Remove all versions with a specific pattern
     15 - `ticket_type removeall <pattern>;`: Remove all ticket_types with a specific pattern
     16 - `priority removeall <pattern>;`: Remove all priorities with a specific pattern
     17 - `config setall <path/to/file>`: Set all config options from file to `trac.ini`
    1818 
    1919Pattern can have wildcards (%).
     
    4040{{{
    4141# removes all components starting with component
    42 trac-admin &lt;/path/to/projenv&gt; component removeall component%
     42trac-admin </path/to/projenv> component removeall component%
    4343# removes ALL (!) versions
    44 trac-admin &lt;/path/to/projenv&gt; version removeall %
     44trac-admin </path/to/projenv> version removeall %
    4545# overrides and creates all config entries from `company.ini`
    46 trac-admin &lt;/path/to/projenv&gt; config setall company.ini
     46trac-admin </path/to/projenv> config setall company.ini
    4747}}}
    4848