Edgewall Software

Changes between Version 3 and Version 4 of InterWiki


Ignore:
Timestamp:
Jan 28, 2006, 5:33:11 PM (18 years ago)
Author:
Christian Boos
Comment:

Clarify the explanation for the #1414 feature

Legend:

Unmodified
Added
Removed
Modified
  • InterWiki

    v3 v4  
    11= Support for InterWiki links =
    22
    3 ''This is a proposal for implementing #40 and #1414''
    4 ''It's candidate for integration in the trunk, after the 0.9 release (see #2041)''
     3''(since [milestone:0.10])''
    54
    65== Definition ==
     
    2625[http://www.usemod.com/cgi-bin/mb.pl?InterMapTxt MeatBall:InterMapTxt].
    2726
    28 An addition to traditional InterWiki links, where the target
     27In addition to traditional InterWiki links, where the target
    2928is simply ''appended'' to the URL,
    3029Trac supports parametric InterWiki URLs:
    3130identifiers `$1`, `$2`, ... in the URL
    32 will be replaced by corresponding arguments from a list
    33 made up from the page specification split by the ":" token.
     31will be replaced by corresponding arguments.
     32The argument list is formed by splitting the page identifier
     33using the ":" separator.
    3434
    3535== Examples ==
     
    4747----
    4848{{{
    49 PEP     http://www.python.org/peps/pep-$1.html                                       # Python Enhancement Proposal
    50 TracML  http://thread.gmane.org/gmane.comp.version-control.subversion.trac.general/  # Trac Mailing List
     49PEP     http://www.python.org/peps/pep-$1.html                                       # Python Enhancement Proposal $1
     50TracML  http://thread.gmane.org/gmane.comp.version-control.subversion.trac.general/$1  # Message $1 in Trac Mailing List
    5151
    5252...
     
    6565 * {{{TracML:4346}}} should be rendered as
    6666   [http://thread.gmane.org/gmane.comp.version-control.subversion.trac.general/4346 TracML:4346]
    67    and the ''title'' for that link would be "4346 in Trac Mailing List"
    68    (idea: I should allow positional parameters in the comment as well)
     67   and the ''title'' for that link would be "Message 4346 in Trac Mailing List"