Changes between Version 16 and Version 17 of TracTabPlugin


Ignore:
Timestamp:
Jul 27, 2009, 8:07:16 PM (15 years ago)
Author:
Ryan J Ollos
Comment:

Whitespace clarification

Legend:

Unmodified
Added
Removed
Modified
  • TracTabPlugin

    v16 v17  
    33== Description ==
    44
    5 Adds a button to the mainmenu and serves a page in the trac template that has an Iframe linking to the appropriate URL.  This will work for any number of URLs specified in the following format.
     5Adds a button to the main navigation bar and serves a page in the Trac template with an Iframe linking to the appropriate URL.  This will work for any number of URLs specified in the proper format.
    66
    7 The following trac.ini configuration will create 2 new tabs on the main navigation bar, one named ''Google'' and the other named ''My Blog'', with the respective URLs and requiring the permissions specified (e.g. Google requires WIKI_VIEW while !MyBlog requires TRAC_ADMIN).
     7The following trac.ini configuration will create 2 new tabs on the main navigation bar, one named ''Google'' and the other named ''My Blog'', with the respective URLs and permissions (e.g. Google requires WIKI_VIEW while !MyBlog requires TRAC_ADMIN).
    88
    99{{{
     
    1313[tractab]
    1414names=Google,My Blog
    15 urls=http://www.google.com, http://blogs.acceleration.net/russ
    16 perms=WIKI_VIEW, TRAC_ADMIN
     15urls=http://www.google.com,http://blogs.acceleration.net/russ
     16perms=WIKI_VIEW,TRAC_ADMIN
    1717}}}
    1818
    19 NB:The perms config is optional, but if left unspecified, it requires TRAC_ADMIN permissions to view the tabs.
    20 
     19 * Note: The ''perms'' parameter is optional, but if left unspecified, it requires TRAC_ADMIN permissions to view the tabs.
     20 * Note: The parameter lists are sensitive to whitespace.  No whitespace should exist between comma separated entries, although an entry can contain whitespace (e.g. ''My Blog'').
    2121
    2222== Bugs/Feature Requests ==