Documentation: Rename link macros
authorKarl Hasselström <kha@treskal.com>
Fri, 13 Mar 2009 03:14:42 +0000 (04:14 +0100)
committerKarl Hasselström <kha@treskal.com>
Fri, 13 Mar 2009 03:14:42 +0000 (04:14 +0100)
commit760a7cfc29f0645056b04e4d6f7c63cb46b4d384
treeb589a84b2d4d6d655f9f36d76d71267fa87f0a5a
parent5be197e92f347cd5ffac84442daa030262c6ffbe
Documentation: Rename link macros

They can no longer end with "link", as explained in commit 5162e697 by
Dan McGee <dpmcgee@gmail.com> in the git repository:

    Documentation: rename gitlink macro to linkgit

    Between AsciiDoc 8.2.2 and 8.2.3, the following change was made to the stock
    Asciidoc configuration:

    @@ -149,7 +153,10 @@
     # Inline macros.
     # Backslash prefix required for escape processing.
     # (?s) re flag for line spanning.
    -(?su)[\\]?(?P<name>\w(\w|-)*?):(?P<target>\S*?)(\[(?P<attrlist>.*?)\])=
    +
    +# Explicit so they can be nested.
    +(?su)[\\]?(?P<name>(http|https|ftp|file|mailto|callto|image|link)):(?P<target>\S*?)(\[(?P<attrlist>.*?)\])=
    +
     # Anchor: [[[id]]]. Bibliographic anchor.
     (?su)[\\]?\[\[\[(?P<attrlist>[\w][\w-]*?)\]\]\]=anchor3
     # Anchor: [[id,xreflabel]]

    This default regex now matches explicit values, and unfortunately in this
    case gitlink was being matched by just 'link', causing the wrong inline
    macro template to be applied. By renaming the macro, we can avoid being
    matched by the wrong regex.

Signed-off-by: Karl Hasselström <kha@treskal.com>
Documentation/asciidoc.conf
Documentation/stg.txt
Documentation/tutorial.txt
stgit/commands/__init__.py
stgit/commands/branch.py
stgit/commands/clone.py
stgit/commands/new.py
stgit/commands/sink.py