external_links.py 700 Bytes
Newer Older
1
2
3
"""Definition of external links that can be used in Sphinx as :<key>:`%s`"""

extlinks = {
4
5
6
7
8
9
    'simbricks-repo': ('https://github.com/simbricks/simbricks%s', 'README%s'),
    'gem5-fork': ('https://github.com/simbricks/gem5%s', None),
    'slack': (
        'https://join.slack.com/t/simbricks/shared_invite/zt-16y96155y-xspnVcm18EUkbUHDcSVonA%s',
        None
    ),
10
11
12
    'mod-orchestration': (
        'https://github.com/simbricks/simbricks/blob/main/experiments/simbricks/orchestration/%s',
        'orchestration/%s'
13
14
15
16
17
    ),
    'lib-simbricks': (
        'https://github.com/simbricks/simbricks/blob/f260bf16b0bd110c3f1d48b851688f27c3f38a53/lib/simbricks/%s',
        'lib/simbricks/%s'
    ),
18
}