Changes between Version 11 and Version 12 of TracBasicMacro


Ignore:
Timestamp:
Jan 16, 2016, 6:20:54 AM (8 years ago)
Author:
figaro
Comment:

Cosmetic changes, tagged with pypi

Legend:

Unmodified
Added
Removed
Modified
  • TracBasicMacro

    v11 v12  
    3434== Source
    3535
    36 You can check out TracBasicMacro from [http://bitbucket.org/olemis/trac-basic-macros its Bitbucket repository] using '''Mercurial'''. Currently it is not possible to [source:tracbasicmacro browse the source] with Trac.
     36You can check out TracBasicMacro from its [http://bitbucket.org/olemis/trac-basic-macros Bitbucket repository] using '''Mercurial'''.
    3737
    3838== Example
    3939
    40 Install the plugin and enable [TracBasicMacro TracBasicMacros] plugin by inserting the following lines in [TracIni trac.ini].
     40Install the plugin and enable [TracBasicMacro TracBasicMacros] plugin by inserting the following lines in your [TracIni trac.ini] file:
    4141
    4242{{{#!ini
     
    5151 - `[[ConfigOption(olemis, simelo, type=text)]]` displays the specified text.
    5252 - `[[ConfigOption(timeline, default_daysback, type=int)]]` displays default number of days displayed in the `Timeline`, in days. Integers are displayed like this `30`.
    53  - `[[ConfigOption(trac, metanav, type=list)]]` Display a list of ''metanav'' options. Output looks like this:
     53 - `[[ConfigOption(trac, metanav, type=list)]]` displays a list of ''metanav'' options and looks like this:
    5454   - login
    5555   - search
    5656   - help
    57  - `[[ConfigOption(trac, permission_store, type=extension)]]` display the component responsible of storing user permissions.
    58  - `[[ConfigOption(trac, permission_policies, type=extension_list)]]` display active permission policies.
    59  - `[[ConfigOption(trac, permission_policies, type=extension_list, include_missing=true)]]` display all permission policies, active first.
     57 - `[[ConfigOption(trac, permission_store, type=extension)]]` displays the component responsible of storing user permissions.
     58 - `[[ConfigOption(trac, permission_policies, type=extension_list)]]` displays active permission policies.
     59 - `[[ConfigOption(trac, permission_policies, type=extension_list, include_missing=true)]]` displays all permission policies, active first.
    6060
    61 For up-to-date documentation consult `TracMacros` page in your local environment.
     61For the latest documentation consult `TracMacros` page in your local environment.
    6262
    6363'''Important:''' Administrator must specify permissions (i.e. permission names) needed to view a particular configuration option by adding entries under `config-perm` section in [TracIni trac.ini]. Option names will be of the form `section.option`, `section.*` or `*` to make reference respectively to a particular option, all options in a section, or any option. For instance, the following configuration:
     
    7373
    7474 - `[[WikiHistory]]` lists versions of current wiki page (or `WikiStart` if wiki text inserted elsewhere e.g. in a ticket's comment).
    75  - `[[WikiHistory(,4)]]` lists versions of current wiki page (or `WikiStart` if wiki text inserted elsewhere e.g. in a ticket's comment) up to version 4.
     75 - `[[WikiHistory(,4)]]` lists versions of current wiki page (or `WikiStart` if wiki text is inserted elsewhere e.g. in a ticket's comment) up to version 4.
    7676 - `[[WikiHistory(TracGuide,cols=time:version:author)]]` lists versions of `TracGuide` wiki page but hides user comments.
    7777 - `[[WikiHistory(,cols=time:comment)]]` lists versions of current wiki page (or `WikiStart` if wiki text inserted elsewhere e.g. in a ticket's comment). Only shows modification time and user comment.