243 lines
6.6 KiB
Python
243 lines
6.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
# pylint: disable=invalid-name
|
|
# pylint: disable=redefined-builtin
|
|
# pylint: disable=protected-access
|
|
# pylint: disable=unused-argument
|
|
|
|
import os
|
|
from path import Path as path
|
|
import sys
|
|
import mock
|
|
|
|
MOCK_MODULES = [
|
|
'lxml',
|
|
'requests',
|
|
'xblock',
|
|
'xblock.fields',
|
|
'xblock.fragment',
|
|
'webob',
|
|
'webob.multidict',
|
|
'xblock.core',
|
|
'xblock.runtime',
|
|
'sortedcontainers',
|
|
'contracts',
|
|
'xblock.plugin',
|
|
'opaque_keys.edx.asides',
|
|
'dogstats_wrapper',
|
|
'fs',
|
|
'fs.errors',
|
|
'edxmako',
|
|
'edxmako.shortcuts',
|
|
'crum',
|
|
'opaque_keys.edx.locator',
|
|
'ipware',
|
|
'ipware.ip',
|
|
'pygeoip',
|
|
'ipaddr',
|
|
'django_countries',
|
|
'django_countries.fields',
|
|
'opaque_keys',
|
|
'opaque_keys.edx',
|
|
'opaque_keys.edx.keys',
|
|
'opaque_keys.edx.locations',
|
|
'courseware',
|
|
'courseware.access',
|
|
'courseware.model_data',
|
|
'courseware.module_render',
|
|
'courseware.views.views',
|
|
'util.request',
|
|
'eventtracking',
|
|
'xmodule',
|
|
'xmodule.exceptions',
|
|
'xmodule.modulestore',
|
|
'xmodule.modulestore.exceptions',
|
|
'xmodule.modulestore.django',
|
|
'xmodule.fields',
|
|
'courseware.models',
|
|
'milestones',
|
|
'milestones.api',
|
|
'milestones.models',
|
|
'milestones.exceptions',
|
|
'ratelimitbackend',
|
|
'analytics',
|
|
'courseware.courses',
|
|
'django.contrib.staticfiles',
|
|
'django.contrib.staticfiles.storage',
|
|
'xmodule.contentstore',
|
|
'xmodule.contentstore.content',
|
|
'xblock.exceptions',
|
|
'xmodule.seq_module',
|
|
'xmodule.vertical_module',
|
|
'xmodule.x_module',
|
|
'nltk',
|
|
'ratelimitbackend',
|
|
'ratelimitbackend.exceptions',
|
|
'social',
|
|
'social.apps',
|
|
'social.apps.django_app',
|
|
'social.backends',
|
|
'mako',
|
|
'mako.exceptions',
|
|
'boto',
|
|
'boto.exception',
|
|
'PIL',
|
|
'reportlab',
|
|
'reportlab.lib',
|
|
'pdfgen',
|
|
'pdfgen.canvas',
|
|
'reportlab.pdfgen',
|
|
'reportlab.pdfgen.canvas',
|
|
'reportlab.lib.pagesizes',
|
|
'reportlab.lib.units',
|
|
'reportlab.lib.styles',
|
|
'reportlab.platypus',
|
|
'reportlab.platypus.tables',
|
|
'boto.s3',
|
|
'boto.s3.connection',
|
|
'boto.s3.key',
|
|
'Crypto',
|
|
'Crypto.Cipher',
|
|
'Crypto.PublicKey',
|
|
'openid',
|
|
'openid.store',
|
|
'openid.store.interface',
|
|
'external_auth.views',
|
|
'mail_utils',
|
|
'ratelimitbackend.backends',
|
|
'social.apps.django_app.default',
|
|
'social.exceptions',
|
|
'social.pipeline',
|
|
'xmodule.error_module',
|
|
'accounts.api',
|
|
'modulestore.mongo.base',
|
|
'xmodule.modulestore.mongo',
|
|
'xmodule.modulestore.mongo.base',
|
|
'edxval',
|
|
'edxval.api',
|
|
'certificates',
|
|
'certificates.models',
|
|
'certificates.models.GeneratedCertificate',
|
|
'shoppingcart',
|
|
'shopppingcart.models',
|
|
'shopppingcart.api',
|
|
'api',
|
|
'student',
|
|
'student.views',
|
|
'student.forms',
|
|
'student.models',
|
|
'celery',
|
|
'celery.task',
|
|
'student.roles',
|
|
'embargo.models',
|
|
'xmodule.vertical_block',
|
|
'xmodule.course_module',
|
|
'user_api.accounts.api',
|
|
'user_api.accounts.serializers',
|
|
'edx_rest_api_client',
|
|
'edx_rest_api_client.client',
|
|
'edx_rest_api_client.exceptions',
|
|
'student.auth',
|
|
'ccx_keys',
|
|
'ccx_keys.locator',
|
|
'user_api.preferences.api',
|
|
'rest_framework_oauth.authentication',
|
|
'certificates.api',
|
|
'courseware.date_summary',
|
|
'rest_framework_jwt',
|
|
'rest_framework_jwt.authentication',
|
|
'microsite_configuration',
|
|
'xmodule.assetstore',
|
|
'xmodule.assetstore.assetmgr',
|
|
'xmodule.assetstore.assetmgr.AssetManager',
|
|
'xmodule.contentstore.django',
|
|
'piexif',
|
|
'provider',
|
|
'provider.oauth2',
|
|
'oauth2_provider',
|
|
'celery.signals',
|
|
'edx_rest_framework_extensions',
|
|
'edx_rest_framework_extensions.authentication',
|
|
]
|
|
|
|
for mod_name in MOCK_MODULES:
|
|
sys.modules[mod_name] = mock.Mock()
|
|
|
|
if "DJANGO_SETTINGS_MODULE" not in os.environ:
|
|
docs_path = os.getcwd()
|
|
mezzanine_path_parts = (docs_path, "..")
|
|
sys.path.insert(0, docs_path)
|
|
sys.path.insert(0, os.path.realpath(os.path.join(*mezzanine_path_parts)))
|
|
os.environ["DJANGO_SETTINGS_MODULE"] = "docs_settings"
|
|
# Django 1.7's setup is required before touching translated strings.
|
|
import django
|
|
try:
|
|
django.setup()
|
|
except AttributeError: # < 1.7
|
|
pass
|
|
|
|
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
|
|
|
|
sys.path.append('../../../../')
|
|
os.environ['DJANGO_SETTINGS_MODULE'] = 'lms.envs.dev'
|
|
#os.environ.setdefault("DJANGO_SETTINGS_MODULE", "lms.envs.dev")
|
|
|
|
from docs.shared.conf import *
|
|
|
|
|
|
# Add any paths that contain templates here, relative to this directory.
|
|
#templates_path.append('source/_templates')
|
|
|
|
|
|
# Add any paths that contain custom static files (such as style sheets) here,
|
|
# relative to this directory. They are copied after the builtin static files,
|
|
# so a file named "default.css" will overwrite the builtin "default.css".
|
|
#html_static_path.append('source/_static')
|
|
|
|
if not on_rtd: # only import and set the theme if we're building docs locally
|
|
import sphinx_rtd_theme
|
|
html_theme = 'sphinx_rtd_theme'
|
|
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
|
|
|
|
|
|
# If extensions (or modules to document with autodoc) are in another directory,
|
|
# 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.
|
|
root = path('../../../..').abspath()
|
|
sys.path.insert(0, root)
|
|
sys.path.append(root / "common/lib/xmodule")
|
|
sys.path.append(root / "common/djangoapps")
|
|
sys.path.append(root / "lms/djangoapps")
|
|
sys.path.append(root / "lms/envs")
|
|
sys.path.append(root / "openedx/core/djangoapps")
|
|
|
|
sys.path.insert(
|
|
0,
|
|
os.path.abspath(
|
|
os.path.normpath(
|
|
os.path.dirname(__file__) + '/../../../'
|
|
)
|
|
)
|
|
)
|
|
sys.path.append('.')
|
|
|
|
# django configuration - careful here
|
|
if on_rtd:
|
|
os.environ['DJANGO_SETTINGS_MODULE'] = 'lms'
|
|
else:
|
|
os.environ['DJANGO_SETTINGS_MODULE'] = 'lms'
|
|
|
|
|
|
# -- General configuration -----------------------------------------------------
|
|
|
|
# Add any Sphinx extension module names here, as strings. They can be extensions
|
|
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
|
|
extensions = [
|
|
'sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.intersphinx',
|
|
'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.pngmath',
|
|
'sphinx.ext.mathjax', 'sphinx.ext.viewcode', 'sphinxcontrib.napoleon']
|
|
|
|
project = u'Open edX Platform APIs'
|
|
copyright = u'2016, edX Inc. and licensed under a Creative Commons Attribution-ShareAlike 4.0 International License unless otherwise specified'
|
|
|
|
exclude_patterns = ['build', 'links.rst']
|