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
dff5772c
Commit
dff5772c
authored
Nov 08, 2014
by
stv
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix PEP8: E121 continuation line indentation
is not a multiple of four
parent
ec74398d
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
31 additions
and
9 deletions
+31
-9
common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/conf.py
+7
-2
common/test/acceptance/tests/studio/test_studio_with_ora_component.py
+8
-2
docs/shared/conf.py
+16
-5
lms/djangoapps/courseware/views.py
+0
-0
No files found.
common/static/js/vendor/mathjax-MathJax-c9db6ac/docs/source/conf.py
View file @
dff5772c
...
...
@@ -176,8 +176,13 @@ htmlhelp_basename = 'MathJaxdoc'
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents
=
[
(
'index'
,
'MathJax.tex'
,
u'MathJax Documentation'
,
u'Davide Cervone, Casey Stark, Robert Miner, Paul Topping'
,
'manual'
),
(
'index'
,
'MathJax.tex'
,
u'MathJax Documentation'
,
u'Davide Cervone, Casey Stark, Robert Miner, Paul Topping'
,
'manual'
,
),
]
# The name of an image file (relative to this directory) to place at the top of
...
...
common/test/acceptance/tests/studio/test_studio_with_ora_component.py
View file @
dff5772c
...
...
@@ -33,8 +33,14 @@ class ORAComponentTest(StudioCourseTest):
XBlockFixtureDesc
(
'chapter'
,
'Test Section'
)
.
add_children
(
XBlockFixtureDesc
(
'sequential'
,
'Test Subsection'
)
.
add_children
(
XBlockFixtureDesc
(
'vertical'
,
'Test Unit'
)
.
add_children
(
XBlockFixtureDesc
(
'combinedopenended'
,
"Peer Problem"
,
data
=
load_data_str
(
'ora_peer_problem.xml'
),
metadata
=
{
'graded'
:
True
}),
XBlockFixtureDesc
(
'combinedopenended'
,
"Peer Problem"
,
data
=
load_data_str
(
'ora_peer_problem.xml'
),
metadata
=
{
'graded'
:
True
,
},
),
XBlockFixtureDesc
(
'peergrading'
,
'Peer Module'
),
)
)
...
...
docs/shared/conf.py
View file @
dff5772c
...
...
@@ -209,8 +209,13 @@ latex_elements = {
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents
=
[
(
'index'
,
'getting_started.tex'
,
u'edX Studio Documentation'
,
u'EdX Doc Team'
,
'manual'
),
(
'index'
,
'getting_started.tex'
,
u'edX Studio Documentation'
,
u'EdX Doc Team'
,
'manual'
,
),
]
# The name of an image file (relative to this directory) to place at the top of
...
...
@@ -253,9 +258,15 @@ man_pages = [
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents
=
[
(
'index'
,
'getting_started'
,
u'getting_started Documentation'
,
u'EdX Doc Team'
,
'getting_started'
,
'One line description of project.'
,
'Miscellaneous'
),
(
'index'
,
'getting_started'
,
u'getting_started Documentation'
,
u'EdX Doc Team'
,
'getting_started'
,
'One line description of project.'
,
'Miscellaneous'
,
),
]
# Documents to append as an appendix to all manuals.
...
...
lms/djangoapps/courseware/views.py
View file @
dff5772c
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