Changes between Version 17 and Version 18 of TracMyPagePlugin


Ignore:
Timestamp:
Jun 8, 2015, 1:49:47 PM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes, gender-neutrality

Legend:

Unmodified
Added
Removed
Modified
  • TracMyPagePlugin

    v17 v18  
    11[[PageOutline(2-5,Contents,pullout)]]
    2 = Navigation bar tab for user personal page =
    32
    4 == Description ==
     3= Navigation bar tab for user personal page
     4
     5== Description
    56
    67Adds a navigation bar tab for 'My Page', a wiki page whose name is expanded from a template and your user ID.
     
    1011'''Fork:''' I have made a small [https://github.com/trac-hacks/trac-mypage fork on GitHub] with some improvements/fixes. Feel free to [https://github.com/trac-hacks/trac-mypage/issues suggest new]. Install with `pip install TracMyPagePlugin`.
    1112
    12 == Example ==
     13=== Nota Bene
    1314
    14 {{{
    15 #!ini
     15 * To see the My Page tab, a user must be logged in and have the `MYPAGE_VIEW` permission. To make My Page available to all users, grant MYPAGE_VIEW to the ''authenticated'' subject in Admin/Permissions.
     16 * This plugin does not introduce new components into the Trac environment; it is simply based on HTTP redirects. It does not create wiki pages on demand. Unless an administrator creates wiki pages for users, My Page pages will not exist the first time users click the tab. A first-time user will get a 'Describe u/admiralnelson here.' page instead. The user will need to click ''Create this page'' to initialize it, so the `WIKI_CREATE` permission is needed. This meets my needs, but automatic My Page creation would be a good feature to add.
     17
     18== Bugs/Feature Requests
     19
     20Existing bugs and feature requests for TracMyPagePlugin are
     21[report:9?COMPONENT=TracMyPagePlugin here].
     22
     23If you have any issues, create a
     24[/newticket?component=TracMyPagePlugin new ticket].
     25
     26[[TicketQuery(component=TracMyPagePlugin&group=type,format=progress)]]
     27
     28== Download
     29
     30Download the zipped source from [download:tracmypageplugin here].
     31
     32== Source
     33
     34You can check out TracMyPagePlugin from [http://trac-hacks.org/svn/tracmypageplugin here] using Subversion, or [source:tracmypageplugin browse the source] with Trac.
     35
     36== Example
     37
     38The following is an example of a configuration to be added to your `trac.ini` file:
     39{{{#!ini
    1640[components]
    1741mypageplugin.* = enabled
     
    2145}}}
    2246
    23 This causes the 'My Page' tab for http://trac.example.com/ to yield a redirect to http://trac.example.com/wiki/u/admiralnelson when the user 'admiralnelson' is logged in and has the MYPAGE_VIEW permission.
    24 
    25 == Nota Bene ==
    26 
    27  * To see the My Page tab, a user must be logged in and have the MYPAGE_VIEW permission.  To make My Page available to all users, grant MYPAGE_VIEW to the ''authenticated'' subject in Admin/Permissions.
    28  * This plugin does not introduce new components into the Trac environment; it is simply based on HTTP redirects.  It does not create wiki pages on demand.  Unless an administrator creates wiki pages for users, My Page pages will not exist the first time users click the tab.  A first-time user will get a 'Describe u/admiralnelson here.' page instead.  He will need to click ''Create this page'' to initialize it, so he will need WIKI_CREATE permission.  This meets my needs, but automatic My Page creation would be a good feature to add.
    29 
    30 == Bugs/Feature Requests ==
    31 
    32 Existing bugs and feature requests for TracMyPagePlugin are
    33 [report:9?COMPONENT=TracMyPagePlugin here].
    34 
    35 If you have any issues, create a
    36 [http://trac-hacks.org/newticket?component=TracMyPagePlugin&owner=dgc new ticket].
    37 
    38 == Download ==
    39 
    40 Download the zipped source from [download:tracmypageplugin here].
    41 
    42 == Source ==
    43 
    44 You can check out TracMyPagePlugin from [http://trac-hacks.org/svn/tracmypageplugin here] using Subversion, or [source:tracmypageplugin browse the source] with Trac.
     47This causes the 'My Page' tab for http://trac.example.com/ to yield a redirect to http://trac.example.com/wiki/u/admiralnelson when the user 'admiralnelson' is logged in and has the `MYPAGE_VIEW` permission.
    4548
    4649== Recent Changes ==