Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
79b1bffd
Commit
79b1bffd
authored
Jul 16, 2013
by
Julian Arni
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix breakage from dir renaming
parent
f3d87383
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
4 deletions
+13
-4
docs/developers/Makefile
+2
-2
docs/developers/conf.py
+11
-2
No files found.
docs/developers/Makefile
View file @
79b1bffd
...
@@ -10,9 +10,9 @@ BUILDDIR = build
...
@@ -10,9 +10,9 @@ BUILDDIR = build
# Internal variables.
# Internal variables.
PAPEROPT_a4
=
-D
latex_paper_size
=
a4
PAPEROPT_a4
=
-D
latex_paper_size
=
a4
PAPEROPT_letter
=
-D
latex_paper_size
=
letter
PAPEROPT_letter
=
-D
latex_paper_size
=
letter
ALLSPHINXOPTS
=
-d
$(BUILDDIR)
/doctrees
$
(
PAPEROPT_
$(PAPER)
)
$(SPHINXOPTS)
.
ALLSPHINXOPTS
=
-d
$(BUILDDIR)
/doctrees
-c
.
$
(
PAPEROPT_
$(PAPER)
)
$(SPHINXOPTS)
source
# the i18n builder cannot share the environment and doctrees with the others
# the i18n builder cannot share the environment and doctrees with the others
I18NSPHINXOPTS
=
$
(
PAPEROPT_
$(PAPER)
)
$(SPHINXOPTS)
.
I18NSPHINXOPTS
=
$
(
PAPEROPT_
$(PAPER)
)
$(SPHINXOPTS)
source
.PHONY
:
help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext
.PHONY
:
help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest gettext
...
...
docs/developers/conf.py
View file @
79b1bffd
...
@@ -26,8 +26,17 @@ import os
...
@@ -26,8 +26,17 @@ import os
# If extensions (or modules to document with autodoc) are in another directory,
# 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
# 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.
# documentation root, use os.path.abspath to make it absolute, like shown here.
# sys.path.insert(0, os.path.abspath('.'))
sys
.
path
.
insert
(
0
,
os
.
path
.
abspath
(
'.'
))
sys
.
path
.
insert
(
0
,
os
.
path
.
abspath
(
'../..'
))
# mitx folder
root
=
os
.
path
.
abspath
(
'../../..'
)
sys
.
path
.
append
(
root
)
sys
.
path
.
append
(
os
.
path
.
join
(
root
,
"common/djangoapps"
))
sys
.
path
.
append
(
os
.
path
.
join
(
root
,
"common/lib"
))
sys
.
path
.
append
(
os
.
path
.
join
(
root
,
"common/lib/sandbox-packages"
))
sys
.
path
.
append
(
os
.
path
.
join
(
root
,
"lms/djangoapps"
))
sys
.
path
.
append
(
os
.
path
.
join
(
root
,
"lms/lib"
))
sys
.
path
.
append
(
os
.
path
.
join
(
root
,
"cms/djangoapps"
))
sys
.
path
.
append
(
os
.
path
.
join
(
root
,
"cms/lib"
))
# django configuration - careful here
# django configuration - careful here
os
.
environ
[
'DJANGO_SETTINGS_MODULE'
]
=
'lms.envs.test'
os
.
environ
[
'DJANGO_SETTINGS_MODULE'
]
=
'lms.envs.test'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment