Changes between Version 20 and Version 21 of IniGetMacro


Ignore:
Timestamp:
Nov 9, 2015, 11:24:49 AM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • IniGetMacro

    v20 v21  
    99The IniGetMacro package consists of two macros. The first, `IniGet`, returns as plain text the value of a [http://trac-hacks.org/wiki/TracIni trac.ini] configuration option. The `trac.ini` file is a simple flat-file database of sections and option/value pairs:
    1010
    11 {{{
    12 #!ini
     11{{{#!ini
    1312[section]
    1413name = value
     
    1918The second macro in the package is `Welcome`, and it returns a level 1 heading element in the following format:
    2019
    21 {{{
     20{{{#!html
    2221<h1 id="welcome">Welcome to the project.name Project</h1>
    2322}}}
     
    3130Existing bugs and feature requests for IniGetMacro are [report:9?COMPONENT=IniGetMacro here].
    3231
    33 If you have any issues, create a [http://trac-hacks.org/newticket?component=IniGetMacro&owner=dwclifton new ticket].
     32If you have any issues, create a [/newticket?component=IniGetMacro new ticket].
    3433
    3534[[TicketQuery(component=IniGetMacro,group=type,format=progress)]]
     
    3736== Download
    3837
    39 Download the zipped source from [download:inigetmacro here].
     38Download the zipped source from [export:inigetmacro here].
    4039
    4140== Source
    4241
    43 You can check out IniGetMacro from [http://trac-hacks.org/svn/inigetmacro here] using Subversion, or [source:inigetmacro browse the source] with Trac.
     42You can check out IniGetMacro from [/svn/inigetmacro here] using Subversion, or [source:inigetmacro browse the source] with Trac.
    4443
    4544== Installation
     
    4746Install this plugin using setup.py and copying the egg to the plugins directory:
    4847
    49 {{{
    50 #!sh
     48{{{#!sh
    5149python setup.py bdist_egg
    5250cp dist/*.egg /trac/env/Project/plugins
     
    5553Enable the macros in `/trac/env/Project/conf/trac.ini`:
    5654 
    57 {{{
    58 #!ini
     55{{{#!ini
    5956[components]
    6057iniget.* = enabled