Ticket #66680: fix_extlinks.patch

File fix_extlinks.patch, 1.4 KB (added by jmroot (Joshua Root), 21 months ago)
  • docs/users_guide/ghc_config.py.in

    old new  
    11extlinks = {
    2     'ghc-ticket': ('https://gitlab.haskell.org/ghc/ghc/issues/%s', '#'),
    3     'ghc-wiki': ('https://gitlab.haskell.org/ghc/ghc/wikis/%s', '#'),
     2    'ghc-ticket': ('https://gitlab.haskell.org/ghc/ghc/issues/%s', '#%s'),
     3    'ghc-wiki': ('https://gitlab.haskell.org/ghc/ghc/wikis/%s', '#%s'),
    44}
    55
    66libs_base_uri = '../libraries'
  • libraries/Cabal/doc/conf.py

    old new  
    2828
    2929# extlinks -- see http://www.sphinx-doc.org/en/stable/ext/extlinks.html
    3030extlinks = {
    31     'issue': ('https://github.com/haskell/cabal/issues/%s', '#'),
     31    'issue': ('https://github.com/haskell/cabal/issues/%s', '#%s'),
    3232
    33     'ghc-wiki': ('https://gitlab.haskell.org/ghc/ghc/-/wikis/%s', ''),
    34     'ghc-ticket': ('https://gitlab.haskell.org/ghc/ghc/-/issues/%s', 'GHC #'),
     33    'ghc-wiki': ('https://gitlab.haskell.org/ghc/ghc/-/wikis/%s', None),
     34    'ghc-ticket': ('https://gitlab.haskell.org/ghc/ghc/-/issues/%s', 'GHC #%s'),
    3535
    36     'hackage-pkg': ('http://hackage.haskell.org/package/%s', ''),
     36    'hackage-pkg': ('http://hackage.haskell.org/package/%s', None),
    3737}
    3838
    3939# General information about the project.