Changes between Version 1 and Version 2 of WikiRestructuredTextLinks


Ignore:
Timestamp:
Apr 13, 2011, 7:02:24 PM (13 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiRestructuredTextLinks

    v1 v2  
    11= TracLinks in reStructuredText =
    22
    3 This document is for testing the ``..trac::`` directive. The page is written like
     3This document illustrates how to use the `:trac:` role in reStructuredText. The page is written like:
    44
    55{{{
    66{{{
    77#!rst
     8Examples:
    89
    9 Examples
    10 ...
    11 ...
     10 * Tickets: :trac:`#1` or :trac:`ticket:1`
     11 * Ticket comments: :trac:`comment:ticket:1:2`
     12 * Reports: :trac:`{1}` or :trac:`report:1`
     13 * Changesets: :trac:`r1`, :trac:`[1]` or :trac:`changeset:1`
     14 * Revision log: :trac:`r1:3`, :trac:`[1:3]` or :trac:`log:@1:3`, :trac:`log:trunk@1:3`
     15 * Diffs (since version 0.10): :trac:`diff:@20:30`, :trac:`diff:tags/trac-0.9.2/wiki-default//tags/trac-0.9.3/wiki-default` or :trac:`diff:trunk/trac@3538//sandbox/vc-refactoring/trac@3539`
     16 * Wiki pages: :trac:`CamelCase` or :trac:`wiki:CamelCase`
     17 * Milestones: :trac:`milestone:1.0`
     18 * Attachment: :trac:`attachment:ticket:944:attachment.1073.diff`
     19 * Files: :trac:`source:trunk/COPYING`
     20 * A specific file revision: :trac:`source:/trunk/COPYING@200`
     21 * A particular line of a specific file revision: :trac:`source:/trunk/COPYING@200#L25`
    1222
     23An explicit label can be specified, separated from the link by a space:
     24
     25 * See :trac:`#1 ticket 1` and the :trac:`source:trunk/COPYING license`.
    1326}}}
    1427}}}
    1528
     29Provided you have docutils installed, the above block will render as:
     30----
     31{{{
     32#!rst
     33Examples:
    1634
    17 This is a list of example uses of the ''trac'' directive, providing use of TracLinks in WikiRestructuredText.
     35 * Tickets: :trac:`#1` or :trac:`ticket:1`
     36 * Ticket comments: :trac:`comment:ticket:1:2`
     37 * Reports: :trac:`{1}` or :trac:`report:1`
     38 * Changesets: :trac:`r1`, :trac:`[1]` or :trac:`changeset:1`
     39 * Revision log: :trac:`r1:3`, :trac:`[1:3]` or :trac:`log:@1:3`, :trac:`log:trunk@1:3`
     40 * Diffs (since version 0.10): :trac:`diff:@20:30`, :trac:`diff:tags/trac-0.9.2/wiki-default//tags/trac-0.9.3/wiki-default` or :trac:`diff:trunk/trac@3538//sandbox/vc-refactoring/trac@3539`
     41 * Wiki pages: :trac:`CamelCase` or :trac:`wiki:CamelCase`
     42 * Milestones: :trac:`milestone:1.0`
     43 * Attachment: :trac:`attachment:ticket:944:attachment.1073.diff`
     44 * Files: :trac:`source:trunk/COPYING`
     45 * A specific file revision: :trac:`source:/trunk/COPYING@200`
     46 * A particular line of a specific file revision: :trac:`source:/trunk/COPYING@200#L25`
     47
     48An explicit label can be specified, separated from the link by a space:
     49
     50 * See :trac:`#1 ticket 1` and the :trac:`source:trunk/COPYING license`.
     51}}}
     52----
     53
     54Note also that any of the above could have been written using substitution references and the `trac::` directive:
     55{{{
     56{{{
     57#!rst
     58See |ticket123|.
     59
     60 .. |ticket123| trac:: ticket:123 this ticket
     61}}}
     62}}}
     63
     64This renders as:
     65----
    1866
    1967{{{
    2068#!rst
     69See |ticket123|.
    2170
    22 Examples
    23 --------
    24 
    25 trac role
    26 =========
    27 Syntax is \`link\`\:trac: or :trac:\`link\`, and could be put anywhere in the text. 'link' has the same format as explain for the ``.. trac::`` directive below.
    28 
    29 ``In the middle of my text `WikiFormatting`:trac: see!!!!``
    30    In the middle of my text `WikiFormatting`:trac: see!!!!
    31 
    32 or
    33 
    34 ``In the middle of my text :trac:`WikiFormatting` see!!!!``
    35    In the middle of my text :trac:`WikiFormatting` see!!!!
    36 
    37 
    38 wiki
    39 ====
    40 ``.. trac:: WikiFormatting``
    41         .. trac:: WikiFormatting
    42 
    43 ``.. trac:: wiki:WikiFormatting``
    44        .. trac:: wiki:WikiFormatting
    45 
    46 ``.. trac:: wiki:WikiFormatting WikiFormatting``
    47         .. trac:: wiki:WikiFormatting WikiFormatting
    48 
    49 ``.. trac:: wiki:WikiFormatting LinkText``
    50         .. trac:: wiki:WikiFormatting LinkText
    51 
    52 tickets
    53 =======
    54 
    55 ``.. trac:: #1``
    56         .. trac:: #1
    57 ``.. trac:: #1 ticket one``
    58         .. trac:: #1 ticket one
    59 ``.. trac:: ticket:1``
    60         .. trac:: ticket:1
    61 ``.. trac:: ticket:1 ticket one``
    62         .. trac:: ticket:1 ticket one
    63 
    64 reports
    65 =======
    66 
    67 ``.. trac:: {1}``
    68         .. trac:: {1}
    69 ``.. trac:: {1} report one``
    70         .. trac:: {1} report one
    71 ``.. trac:: report:1``
    72         .. trac:: report:1
    73 ``.. trac:: report:1 report one``
    74         .. trac:: report:1 report one
    75 
    76 changesets
    77 ==========
    78 
    79 ``.. trac:: [42]``
    80         .. trac:: [42]
    81 ``.. trac:: [42] changeset 42``
    82         .. trac:: [42] changeset 42
    83 ``.. trac:: changeset:42``
    84         .. trac:: changeset:42
    85 ``.. trac:: changeset:42 changeset 42``
    86         .. trac:: changeset:42 changeset 42
    87 ``.. trac:: foo``
    88         .. trac:: foo
    89 
    90 files
    91 =====
    92 
    93 ``.. trac:: browser:/trunk/trac``
    94         .. trac:: browser:/trunk/trac
    95 
    96 The leading ``/`` can be omitted...
    97 
    98 ``.. trac:: repos:trunk/trac trunk/trac``
    99         .. trac:: repos:trunk/trac trunk/trac
    100 ``.. trac:: source:trunk/trac Trac source code``
    101         .. trac:: source:trunk/trac Trac source code
    102 
    103 ``.. trac:: browser:trunk/README``
    104         .. trac:: browser:trunk/README
    105 ``.. trac:: repos:trunk/README trunk/README``
    106         .. trac:: repos:trunk/README trunk/README
    107 ``.. trac:: source:trunk/README README in trunk``
    108         .. trac:: source:trunk/README README in trunk
    109 
    110 Note that if ``hoo`` is a file, the link targets its revision log. In order to see the file's content, you need to specify the revision explicitely, like here:
    111 
    112 ``.. trac:: browser:/trunk/README#latest latest of trunk/README``
    113         .. trac:: browser:/trunk/README#latest latest of trunk/README
    114 ``.. trac:: repos:trunk/README#42 trunk/README in rev 42``
    115         .. trac:: repos:trunk/README#42 trunk/README in rev 42
     71 .. |ticket123| trac:: ticket:123 this ticket
    11672}}}
    11773
    11874----
    119 See also: WikiRestructuredTextLinks, TracLinks
     75See also: WikiRestructuredText, TracLinks