Changes between Version 10 and Version 11 of SettingsPlugin


Ignore:
Timestamp:
Nov 13, 2015, 9:18:47 AM (8 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • SettingsPlugin

    v10 v11  
    2222  - option `remove` backups attachments into `$PROJECT_ENV/backup_unused_attachments.zip` and removes unused attachments; this could be useful when upgrading Trac from revision before `11036` to Trac revision after that.
    2323 
    24 Pattern can have wildcards (%).
     24Patterns can have wildcards (%).
    2525
    2626== Bugs/Feature Requests
     
    3030
    3131If you have any issues, create a
    32 [http://trac-hacks.org/newticket?component=SettingsPlugin&owner=framay new ticket].
     32[/newticket?component=SettingsPlugin new ticket].
    3333
    3434[[TicketQuery(component=SettingsPlugin&group=type,format=progress)]]
     
    3636== Download
    3737
    38 Download the zipped source from [download:settingsplugin here].
     38Download the zipped source from [export:settingsplugin here].
    3939
    4040Or download precompiled [raw-attachment:SettingsPlugin-0.5.a2-py2.6.egg python egg].
     
    4242== Source
    4343
    44 You can check out SettingsPlugin from [http://trac-hacks.org/svn/settingsplugin here] using Subversion, or [source:settingsplugin browse the source] with Trac.
     44You can check out SettingsPlugin from [/svn/settingsplugin here] using Subversion, or [source:settingsplugin browse the source] with Trac.
     45
     46== Installation
     47
     48General instructions on installing Trac plugins can be found on the [TracPlugins#InstallingaTracplugin TracPlugins] page.
    4549
    4650== Example
     
    5054# removes all components starting with component
    5155trac-admin </path/to/projenv> component removeall component%
     56
    5257# removes ALL (!) versions
    5358trac-admin </path/to/projenv> version removeall %
     59
    5460# overrides and creates all config entries from `company.ini`
    5561trac-admin </path/to/projenv> config setall company.ini
     62
    5663# replaces plugin TracAccountManager
    5764trac-admin </path/to/projenv> plugin replace TracAccountManager
     65
    5866# removes all plugins (and made a backup)
    59 # then copies all plugin of current directory into plugins-directory 
     67# then copies all plugins of the current directory into plugins-directory 
    6068trac-admin </path/to/projenv> plugin replaceall
    6169}}}