Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bilby
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
lscsoft
bilby
Commits
fb2aa9ff
Commit
fb2aa9ff
authored
2 years ago
by
Colm Talbot
Browse files
Options
Downloads
Patches
Plain Diff
DOCS: add links to actual code in docs
parent
0a34f862
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1221
DOCS: add links to actual code in docs
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/conf.py
+65
-1
65 additions, 1 deletion
docs/conf.py
with
65 additions
and
1 deletion
docs/conf.py
+
65
−
1
View file @
fb2aa9ff
...
...
@@ -16,11 +16,38 @@
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
import
importlib
import
inspect
import
os
import
subprocess
import
sys
import
bilby
sys
.
path
.
insert
(
0
,
os
.
path
.
abspath
(
'
../
'
))
def
git_revision_hash
():
try
:
return
subprocess
.
check_output
([
'
git
'
,
'
rev-parse
'
,
'
HEAD
'
]).
decode
(
'
ascii
'
).
strip
()
except
subprocess
.
CalledProcessError
:
return
"
master
"
def
git_upstream_url
():
try
:
url
=
subprocess
.
check_output
([
"
git
"
,
"
config
"
,
"
--get
"
,
"
remote.origin.url
"
])
url
=
url
.
decode
(
"
ascii
"
).
strip
().
rstrip
(
"
.git
"
)
if
"
@
"
in
url
:
url
=
url
.
split
(
"
@
"
)[
-
1
].
replace
(
"
:
"
,
"
/
"
)
if
url
[:
5
]
!=
"
https
"
:
url
=
f
"
https://
{
url
}
"
except
subprocess
.
CalledProcessError
:
url
=
"
https://git.ligo.org/lscsoft/bilby
"
return
url
GITHASH
=
git_revision_hash
()
GITURL
=
git_upstream_url
()
# -- General configuration ------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here.
...
...
@@ -38,7 +65,7 @@ extensions = [
'
sphinx.ext.autosummary
'
,
'
sphinx.ext.autosectionlabel
'
,
'
sphinx_tabs.tabs
'
,
"
sphinx.ext.
view
code
"
,
"
sphinx.ext.
link
code
"
,
]
autosummary_generate
=
True
...
...
@@ -183,3 +210,40 @@ numpydoc_show_class_members = False
# nbsphinx options
nbsphinx_execute
=
"
never
"
def
linkcode_resolve
(
domain
,
info
):
"""
Adapted from https://github.com/aaugustin/websockets/blob/8e1628a14e0dd2ca98871c7500484b5d42d16b67/docs/conf.py
"""
if
domain
!=
'
py
'
:
return
None
if
not
info
[
'
module
'
]:
return
None
try
:
mod
=
importlib
.
import_module
(
info
[
"
module
"
])
if
"
.
"
in
info
[
"
fullname
"
]:
objname
,
attrname
=
info
[
"
fullname
"
].
split
(
"
.
"
)
obj
=
getattr
(
mod
,
objname
)
try
:
# object is a method of a class
obj
=
getattr
(
obj
,
attrname
)
except
AttributeError
:
# object is an attribute of a class
return
None
else
:
obj
=
getattr
(
mod
,
info
[
"
fullname
"
])
try
:
file
=
inspect
.
getsourcefile
(
obj
)
lines
=
inspect
.
getsourcelines
(
obj
)
except
TypeError
:
# e.g. object is a typing.Union
return
None
file
=
f
"
{
project
}
/
{
''
.
join
(
file
.
split
(
f
'
{
project
}
/
'
)[1
:
])
}
"
start
,
end
=
lines
[
1
],
lines
[
1
]
+
len
(
lines
[
0
])
-
1
except
Exception
:
return
return
f
"
{
GITURL
}
/-/tree/
{
GITHASH
}
/
{
file
}
#L
{
start
}
-L
{
end
}
"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment