Changes between Version 3 and Version 4 of TracLinks


Ignore:
Timestamp:
Mar 16, 2019, 5:26:46 PM (5 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracLinks

    v3 v4  
    2828 Milestones :: `milestone:1.0`
    2929 Attachment :: `attachment:example.tgz` (for current page attachment), `attachment:attachment.1073.diff:ticket:944` (absolute path)
    30  Changesets :: `r1`, `[1]`, `changeset:1` or (restricted) `[1/trunk]`, `changeset:1/trunk`
     30 Changesets :: `r1`, `[1]`, `changeset:1` or (restricted) `[1/trunk]`, `changeset:1/trunk`, `[1/repository]`
    3131 Revision log :: `r1:3`, `[1:3]` or `log:@1:3`, `log:trunk@1:3`, `[2:5/trunk]`
    3232 Diffs :: `diff:@1:3`, `diff:plugins/0.12/mercurial-plugin@9128:9953`,
     
    4343 Milestones :: milestone:1.0
    4444 Attachment :: attachment:example.tgz (for current page attachment), attachment:attachment.1073.diff:ticket:944 (absolute path)
    45  Changesets :: r1, [1], changeset:1 or (restricted) [1/trunk], changeset:1/trunk
     45 Changesets :: r1, [1], changeset:1 or (restricted) [1/trunk], changeset:1/trunk, [1/repository]
    4646 Revision log :: r1:3, [1:3] or log:@1:3, log:trunk@1:3, [2:5/trunk]
    4747 Diffs :: diff:@1:3, diff:plugins/0.12/mercurial-plugin@9128:9953,
     
    110110=== Relative links ===
    111111
    112 To create a link to a specific anchor in a page, use '#':
    113 {{{
    114  [#Relativelinks relative links] or [[#Relativelinks|relative links]]
    115 }}}
    116 Displays:
    117   [#Relativelinks relative links] or [[#Relativelinks|relative links]]
    118 
    119 Hint: when you move your mouse over the title of a section, a '¶' character will be displayed. This is a link to that specific section and you can use this to copy the `#...` part inside a relative link to an anchor.
    120 
    121112To create a link to a [trac:SubWiki SubWiki]-page just use a '/':
    122113{{{
     
    150141''(Changed in 0.11)'' Note that in Trac 0.10, using e.g. `[../newticket]`  may have worked for linking to the `/newticket` top-level URL, but since 0.11, such a link will stay in the wiki namespace and therefore link to a sibling page.
    151142See [#Server-relativelinks] for the new syntax.
     143
     144=== Link anchors ===
     145
     146To create a link to a specific anchor in a page, use '#':
     147{{{
     148 [#Linkanchors Link anchors] or [[#Linkanchors|Link anchors]]
     149}}}
     150  [#Linkanchors Link anchors] or [[#Linkanchors|Link anchors]]
     151
     152Hint: when you move your mouse over the title of a section, a '¶' character will be displayed. This is a link to that specific section and you can use this to copy the `#...` part inside a relative link to an anchor.
     153
     154To create a link to the first or last occurrence of a term on a page, use a ''pseudo anchor'' starting with '#/' or '#?':
     155{{{
     156 [#/Milestone first occurrence of Milestone] or
     157 [#?Milestone last occurrence of Milestone]
     158}}}
     159 [#/Milestone first occurrence of Milestone] or
     160 [#?Milestone last occurrence of Milestone]
     161This will also highlight all other matches on the linked page. By default only case sensitive matches are considered. To include case insensitive matches append '/i':
     162{{{
     163 [#/Milestone/i first occurrence of Milestone or milestone] or
     164 [#?Milestone/i last occurrence of Milestone or milestone]
     165}}}
     166 [#/Milestone/i first occurrence of Milestone or milestone] or
     167 [#?Milestone/i last occurrence of Milestone or milestone]
     168
     169''(since Trac 1.0)''
     170
     171Such anchors can be very useful for linking to specific lines in a file in the source browser:
     172{{{
     173 [trac:source:tags/trac-0.12/trac/wiki/api.py#L127 Line 127] or
     174 [trac:source:tags/trac-0.12/trac/ticket/roadmap.py#L47 Line 47]
     175}}}
     176 [trac:source:tags/trac-0.12/trac/wiki/api.py#L127 Line 127] or
     177 [trac:source:tags/trac-0.12/trac/ticket/roadmap.py#L47 Line 47]
     178(Hint: The line numbers displayed in the source browser are links to anchors on the respective lines.)
     179
     180Since such links become outdated when the file changes, it can be useful to link using a '#/' pseudo anchor instead:
     181{{{
     182 [trac:source:trunk/trac/wiki/api.py#/IWikiSyntaxProvider IWikiSyntaxProvider] or
     183 [trac:source:trunk/trac/env.py#/ISystemInfoProvider ISystemInfoProvider]
     184}}}
     185 [trac:source:trunk/trac/wiki/api.py#/IWikiSyntaxProvider IWikiSyntaxProvider] or
     186 [trac:source:trunk/trac/env.py#/ISystemInfoProvider ISystemInfoProvider]
    152187
    153188=== InterWiki links ===
     
    281316=== timeline: links ===
    282317
    283 Links to the timeline can be created by specifying a date in the ISO:8601 format. The date can be optionally followed by a time specification. The time is interpreted as being UTC time, but alternatively you can specify your local time, followed by your timezone if you don't want to compute the UTC time.
     318Links to the timeline can be created by specifying a date in the ISO:8601 format. The date can be optionally followed by a time specification. The time is interpreted as being UTC time, but if you don't want to compute the UTC time, you can specify a local time followed by your timezone offset relative to UTC.
    284319
    285320Examples:
     
    288323 - `timeline:2008-01-29T15:48Z`
    289324 - `timeline:2008-01-29T16:48+01`
     325 - `timeline:2008-01-29T16:48+0100`
     326 - `timeline:2008-01-29T16:48+01:00`
    290327
    291328''(since Trac 0.11)''
     
    315352 - `source:/tag/0.10@head#L10`
    316353
    317 Finally, one can also highlight an arbitrary set of lines:
    318  - `source:/some/file@123:10-20,100,103#L99` - highlight lines 10 to 20, and lines 100 and 103.
    319    ''(since 0.11)''
     354Finally, one can also highlight an arbitrary set of lines ''(since 0.11)'':
     355 - `source:/some/file@123:10-20,100,103#L99` - highlight lines 10 to 20, and lines 100 and 103, and target line 99
     356 - or without version number (the `@` is still needed): `source:/some/file@:10-20,100,103#L99`. Version can be omitted when the path is pointing to a source file that will no longer change (like `source:/tags/...`), otherwise it's better to specify which lines of //which version// of the file you're talking about
    320357
    321358Note that in presence of multiple repositories, the name of the repository is simply integrated in the path you specify for `source:` (e.g. `source:reponame/trunk/README`). ''(since 0.12)''