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
6b5125c4
Commit
6b5125c4
authored
Nov 13, 2012
by
Victor Shnayder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix typos, logger configs
parent
c2bf0689
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
common/lib/xmodule/xmodule/seq_module.py
+1
-1
lms/djangoapps/courseware/tabs.py
+1
-1
lms/djangoapps/instructor/views.py
+1
-1
lms/urls.py
+1
-1
No files found.
common/lib/xmodule/xmodule/seq_module.py
View file @
6b5125c4
...
@@ -10,7 +10,7 @@ from xmodule.progress import Progress
...
@@ -10,7 +10,7 @@ from xmodule.progress import Progress
from
xmodule.exceptions
import
NotFoundError
from
xmodule.exceptions
import
NotFoundError
from
pkg_resources
import
resource_string
from
pkg_resources
import
resource_string
log
=
logging
.
getLogger
(
"mitx.common.lib.seq_module"
)
log
=
logging
.
getLogger
(
__name__
)
# HACK: This shouldn't be hard-coded to two types
# HACK: This shouldn't be hard-coded to two types
# OBSOLETE: This obsoletes 'type'
# OBSOLETE: This obsoletes 'type'
...
...
lms/djangoapps/courseware/tabs.py
View file @
6b5125c4
...
@@ -36,7 +36,7 @@ CourseTab = namedtuple('CourseTab', 'name link is_active')
...
@@ -36,7 +36,7 @@ CourseTab = namedtuple('CourseTab', 'name link is_active')
# wrong. (e.g. "is there a 'name' field?). Validators can assume
# wrong. (e.g. "is there a 'name' field?). Validators can assume
# that the type field is valid.
# that the type field is valid.
#
#
# - a function that takes a config, a user, and a course, an
d
active_page and
# - a function that takes a config, a user, and a course, an active_page and
# return a list of CourseTabs. (e.g. "return a CourseTab with specified
# return a list of CourseTabs. (e.g. "return a CourseTab with specified
# name, link to courseware, and is_active=True/False"). The function can
# name, link to courseware, and is_active=True/False"). The function can
# assume that it is only called with configs of the appropriate type that
# assume that it is only called with configs of the appropriate type that
...
...
lms/djangoapps/instructor/views.py
View file @
6b5125c4
...
@@ -27,7 +27,7 @@ from xmodule.modulestore.exceptions import InvalidLocationError, ItemNotFoundErr
...
@@ -27,7 +27,7 @@ from xmodule.modulestore.exceptions import InvalidLocationError, ItemNotFoundErr
from
xmodule.modulestore.search
import
path_to_location
from
xmodule.modulestore.search
import
path_to_location
import
track.views
import
track.views
log
=
logging
.
getLogger
(
"mitx.courseware"
)
log
=
logging
.
getLogger
(
__name__
)
template_imports
=
{
'urllib'
:
urllib
}
template_imports
=
{
'urllib'
:
urllib
}
...
...
lms/urls.py
View file @
6b5125c4
...
@@ -161,7 +161,7 @@ if settings.COURSEWARE_ENABLED:
...
@@ -161,7 +161,7 @@ if settings.COURSEWARE_ENABLED:
# input types system so that previews can be context-specific.
# input types system so that previews can be context-specific.
# Unfortunately, we don't have time to think through the right way to do
# Unfortunately, we don't have time to think through the right way to do
# that (and implement it), and it's not a terrible thing to provide a
# that (and implement it), and it's not a terrible thing to provide a
# generic chemica
n
-equation rendering service.
# generic chemica
l
-equation rendering service.
url
(
r'^preview/chemcalc'
,
'courseware.module_render.preview_chemcalc'
,
url
(
r'^preview/chemcalc'
,
'courseware.module_render.preview_chemcalc'
,
name
=
'preview_chemcalc'
),
name
=
'preview_chemcalc'
),
...
...
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