|
59 | 59 | # netCDF4 docs |
60 | 60 | netcdf4_docs = "https://unidata.github.io/netcdf4-python/netCDF4/index.html" |
61 | 61 |
|
| 62 | +# ITER docs |
| 63 | +iter_projects = "https://git.iter.org/projects/" |
| 64 | +imas_site = urljoin(iter_projects, "IMAS/") |
| 65 | +imex_site = urljoin(iter_projects, "IMEX/") |
| 66 | +al_cython_url = urljoin(imas_site, "repos/al-cython/") |
| 67 | +al_python_hli_url = urljoin(imas_site, "repos/al-python/") |
| 68 | +al_python_lib_url = urljoin(imas_site, "repos/al-python-lib/") |
| 69 | +issue_url = jira_url = "https://jira.iter.org/browse/" |
| 70 | + |
62 | 71 | # Configuration of sphinx.ext.extlinks |
63 | 72 | # See https://www.sphinx-doc.org/en/master/usage/extensions/extlinks.html |
64 | 73 | # unique name: (base URL, label prefix) |
65 | 74 | extlinks = { |
66 | 75 | "src": (blob_url + "%s", f"{src_group}/{src_project}/"), |
67 | | - "issue": (issue_url + "%s", "#"), |
| 76 | + "issue": (issue_url + "%s", None), |
68 | 77 | "merge": (mr_url + "%s", "!"), |
69 | 78 | "jintrac": (jintrac_sphinx + "%s", "jintrac pages "), |
70 | 79 | "netcdf4": (netcdf4_docs + "%s", "netcdf4 "), |
| 80 | + "al_cython": (al_cython_url + "%s", "al_cython "), |
| 81 | + "al_hli": (al_python_hli_url + "%s", "al_hli"), |
| 82 | + "al_lib": (al_python_lib_url + "%s", "al_lib"), |
| 83 | + "pypa": ("https://packaging.python.org/%s", None), |
71 | 84 | } |
72 | 85 |
|
73 | 86 | full_version = V(imaspy.__version__) |
|
343 | 356 | "matplotlib": ("https://matplotlib.org", None), |
344 | 357 | "xarray": ("http://xarray.pydata.org/en/stable/", None), |
345 | 358 | "dask": ("https://docs.dask.org/en/latest", None), |
| 359 | + "cython": ("https://cython.readthedocs.io/", None), |
| 360 | + "gitpython": ("https://gitpython.readthedocs.io/en/stable", None), |
346 | 361 | # "netcdf4": ("https://unidata.github.io/netcdf4-python/", None), # netcdf4 does not have an intersphinx mapping |
347 | 362 | # "jintrac": ("https://users.euro-fusion.org/pages/data-cmg/wiki/", None) Behind password, so cannot link there |
348 | 363 | } |
|
0 commit comments