2018-01-16 06:58:15 +01:00
|
|
|
import inspect
|
|
|
|
import importlib
|
|
|
|
import os.path
|
|
|
|
|
|
|
|
from werkzeug import urls
|
|
|
|
|
2017-10-27 08:04:41 +02:00
|
|
|
from flectra.tools import pycompat
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
"""
|
2018-03-30 13:42:41 +02:00
|
|
|
* adds gitlab_link(mode) context variable: provides URL (in relevant mode) of
|
2018-01-16 06:58:15 +01:00
|
|
|
current document on github
|
|
|
|
* if sphinx.ext.linkcode is enabled, automatically generates github linkcode
|
|
|
|
links (by setting config.linkcode_resolve)
|
|
|
|
|
|
|
|
Settings
|
|
|
|
========
|
|
|
|
|
2018-03-30 13:42:41 +02:00
|
|
|
* ``gitlab_user``, username/organisation under which the project lives
|
|
|
|
* ``gitlab_project``, name of the project on gitlab
|
|
|
|
* (optional) ``version``, gitlab branch to link to (default: master)
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
Notes
|
|
|
|
=====
|
|
|
|
|
|
|
|
* provided ``linkcode_resolve`` only supports Python domain
|
2018-03-30 13:42:41 +02:00
|
|
|
* generates https gitlab links
|
2018-02-12 08:55:56 +01:00
|
|
|
* explicitly imports ``flectra``, so useless for anyone else
|
2018-01-16 06:58:15 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
def setup(app):
|
2018-03-30 13:42:41 +02:00
|
|
|
app.add_config_value('gitlab_user', None, 'env')
|
|
|
|
app.add_config_value('gitlab_project', None, 'env')
|
2018-01-16 06:58:15 +01:00
|
|
|
app.connect('html-page-context', add_doc_link)
|
|
|
|
|
|
|
|
def linkcode_resolve(domain, info):
|
2018-03-30 13:42:41 +02:00
|
|
|
""" Resolves provided object to corresponding gitlab URL
|
2018-01-16 06:58:15 +01:00
|
|
|
"""
|
|
|
|
# TODO: js?
|
|
|
|
if domain != 'py':
|
|
|
|
return None
|
2018-03-30 13:42:41 +02:00
|
|
|
if not (app.config.gitlab_user and app.config.gitlab_project):
|
2018-01-16 06:58:15 +01:00
|
|
|
return None
|
|
|
|
|
|
|
|
module, fullname = info['module'], info['fullname']
|
|
|
|
# TODO: attributes/properties don't have modules, maybe try to look
|
|
|
|
# them up based on their cached host object?
|
|
|
|
if not module:
|
|
|
|
return None
|
|
|
|
|
|
|
|
obj = importlib.import_module(module)
|
|
|
|
for item in fullname.split('.'):
|
|
|
|
obj = getattr(obj, item, None)
|
|
|
|
|
|
|
|
if obj is None:
|
|
|
|
return None
|
|
|
|
|
|
|
|
# get original from decorated methods
|
|
|
|
try: obj = getattr(obj, '_orig')
|
|
|
|
except AttributeError: pass
|
|
|
|
|
|
|
|
try:
|
|
|
|
obj_source_path = inspect.getsourcefile(obj)
|
|
|
|
_, line = inspect.getsourcelines(obj)
|
|
|
|
except (TypeError, IOError):
|
|
|
|
# obj doesn't have a module, or something
|
|
|
|
return None
|
|
|
|
|
2018-02-12 08:55:56 +01:00
|
|
|
import flectra
|
2018-01-16 06:58:15 +01:00
|
|
|
# FIXME: make finding project root project-independent
|
2018-02-12 08:55:56 +01:00
|
|
|
project_root = os.path.join(os.path.dirname(flectra.__file__), '..')
|
2018-03-30 13:42:41 +02:00
|
|
|
return make_gitlab_link(
|
2018-01-16 06:58:15 +01:00
|
|
|
app,
|
|
|
|
os.path.relpath(obj_source_path, project_root),
|
|
|
|
line)
|
|
|
|
app.config.linkcode_resolve = linkcode_resolve
|
|
|
|
|
2018-03-30 13:42:41 +02:00
|
|
|
def make_gitlab_link(app, path, line=None, mode="blob"):
|
2018-01-16 06:58:15 +01:00
|
|
|
config = app.config
|
|
|
|
|
|
|
|
urlpath = "/{user}/{project}/{mode}/{branch}/{path}".format(
|
2018-03-30 13:42:41 +02:00
|
|
|
user=config.gitlab_user,
|
|
|
|
project=config.gitlab_project,
|
2018-01-16 06:58:15 +01:00
|
|
|
branch=config.version or 'master',
|
|
|
|
path=path,
|
|
|
|
mode=mode,
|
|
|
|
)
|
|
|
|
return urls.url_unparse((
|
|
|
|
'https',
|
2018-03-14 10:18:18 +01:00
|
|
|
'gitlab.com',
|
2018-01-16 06:58:15 +01:00
|
|
|
urlpath,
|
|
|
|
'',
|
|
|
|
'' if line is None else 'L%d' % line
|
|
|
|
))
|
|
|
|
|
|
|
|
def add_doc_link(app, pagename, templatename, context, doctree):
|
2018-03-30 13:42:41 +02:00
|
|
|
""" Add gitlab_link function linking to the current page on gitlab """
|
|
|
|
if not app.config.gitlab_user and app.config.gitlab_project:
|
2018-01-16 06:58:15 +01:00
|
|
|
return
|
|
|
|
|
|
|
|
# FIXME: find other way to recover current document's source suffix
|
|
|
|
# in Sphinx 1.3 it's possible to have mutliple source suffixes and that
|
|
|
|
# may be useful in the future
|
|
|
|
source_suffix = app.config.source_suffix
|
|
|
|
source_suffix = source_suffix if isinstance(source_suffix, pycompat.string_types) else source_suffix[0]
|
|
|
|
# can't use functools.partial because 3rd positional is line not mode
|
2018-03-30 13:42:41 +02:00
|
|
|
context['github_link'] = lambda mode='edit': make_gitlab_link(
|
2018-01-16 06:58:15 +01:00
|
|
|
app, 'doc/%s%s' % (pagename, source_suffix), mode=mode)
|