Changes between Version 38 and Version 39 of TracTabPlugin


Ignore:
Timestamp:
Nov 13, 2015, 11:03:52 AM (8 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • TracTabPlugin

    v38 v39  
    55== Description
    66
    7 This plugin allows you to add a button to the main navigation bar and serve a page in the Trac template within an Iframe linking to the appropriate URL.  This will work for any number of URLs specified in the proper format.
     7This plugin allows you to add a button to the main navigation bar and serve a page in the Trac template within an Iframe linking to the appropriate URL. This will work for any number of URLs specified in the proper format.
    88
    99See also: MenusPlugin, NavAddPlugin.
     
    2121== Download
    2222
    23 Download the zipped source from [download:tractabplugin here].
     23Download the zipped source from [export:tractabplugin here].
    2424
    2525== Source
    2626
    27 You can check out TracTabPlugin from [http://trac-hacks.org/svn/tractabplugin here] using Subversion, or [source:tractabplugin browse the source] with Trac.
     27You can check out TracTabPlugin from [/svn/tractabplugin here] using Subversion, or [source:tractabplugin browse the source] with Trac.
    2828
    29 == Example
     29== Istallation
     30
     31General instructions on installing Trac plugins can be found on the [TracPlugins#InstallingaTracplugin TracPlugins] page.
     32
     33== Configuration
    3034
    3135The following trac.ini configuration will create 2 new tabs on the main navigation bar, one named ''Google'' and the other named ''Edgewall'', with the respective URLs and permissions, for example Google requires `WIKI_VIEW`, while Edgewall requires `TRAC_ADMIN`. The handlers for these items will be `/tractab/Google` and `/tractab/My%20Blog`:
     
    3337{{{#!ini
    3438[components]
    35 tractab.*=enabled
     39tractab.* = enabled
    3640
    3741[tractab]
     
    4145}}}
    4246
    43 '''Note''': The ''perms'' parameter is optional, but if left unspecified, it requires `TRAC_ADMIN` permissions to view the tabs.
     47'''Note''': The ''perms'' parameter is optional, but if left unspecified, it requires the `TRAC_ADMIN` permission to view the tabs.
    4448
    4549== Recent Changes