Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
cbed6628
Commit
cbed6628
authored
12 years ago
by
Calen Pennington
Browse files
Options
Downloads
Patches
Plain Diff
Fix pep8 and pylint errors
parent
36443163
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.pylintrc
+2
-1
2 additions, 1 deletion
.pylintrc
lms/djangoapps/courseware/model_data.py
+29
-3
29 additions, 3 deletions
lms/djangoapps/courseware/model_data.py
with
31 additions
and
4 deletions
.pylintrc
+
2
−
1
View file @
cbed6628
...
...
@@ -41,7 +41,8 @@ disable=
# R0902: Too many instance attributes
# R0903: Too few public methods (1/2)
# R0904: Too many public methods
W0141,W0142,R0201,R0901,R0902,R0903,R0904
# R0913: Too many arguments
W0141,W0142,R0201,R0901,R0902,R0903,R0904,R0913
[REPORTS]
...
...
This diff is collapsed.
Click to expand it.
lms/djangoapps/courseware/model_data.py
+
29
−
3
View file @
cbed6628
"""
Classes to provide the LMS runtime data storage to XBlocks
"""
import
json
from
collections
import
namedtuple
,
defaultdict
from
itertools
import
chain
...
...
@@ -14,10 +18,16 @@ from xblock.core import Scope
class
InvalidWriteError
(
Exception
):
pass
"""
Raised to indicate that writing to a particular key
in the KeyValueStore is disabled
"""
def
chunks
(
items
,
chunk_size
):
"""
Yields the values from items in chunks of size chunk_size
"""
items
=
list
(
items
)
return
(
items
[
i
:
i
+
chunk_size
]
for
i
in
xrange
(
0
,
len
(
items
),
chunk_size
))
...
...
@@ -67,6 +77,15 @@ class ModelDataCache(object):
"""
def
get_child_descriptors
(
descriptor
,
depth
,
descriptor_filter
):
"""
Return a list of all child descriptors down to the specified depth
that match the descriptor filter. Includes `descriptor`
descriptor: The parent to search inside
depth: The number of levels to descend, or None for infinite depth
descriptor_filter(descriptor): A function that returns True
if descriptor should be included in the results
"""
if
descriptor_filter
(
descriptor
):
descriptors
=
[
descriptor
]
else
:
...
...
@@ -168,6 +187,9 @@ class ModelDataCache(object):
return
scope_map
def
_cache_key_from_kvs_key
(
self
,
key
):
"""
Return the key used in the ModelDataCache for the specified KeyValueStore key
"""
if
key
.
scope
==
Scope
.
student_state
:
return
(
key
.
scope
,
key
.
block_scope_id
.
url
())
elif
key
.
scope
==
Scope
.
content
:
...
...
@@ -180,6 +202,10 @@ class ModelDataCache(object):
return
(
key
.
scope
,
key
.
field_name
)
def
_cache_key_from_field_object
(
self
,
scope
,
field_object
):
"""
Return the key used in the ModelDataCache for the specified scope and
field
"""
if
scope
==
Scope
.
student_state
:
return
(
scope
,
field_object
.
module_state_key
)
elif
scope
==
Scope
.
content
:
...
...
@@ -230,7 +256,7 @@ class ModelDataCache(object):
usage_id
=
'
%s-%s
'
%
(
self
.
course_id
,
key
.
block_scope_id
.
url
()),
)
elif
key
.
scope
==
Scope
.
student_preferences
:
field_object
,
_
=
XModuleStudentPrefsField
.
objects
.
get_or_create
(
field_object
,
_
=
XModuleStudentPrefsField
.
objects
.
get_or_create
(
field_name
=
key
.
field_name
,
module_type
=
key
.
block_scope_id
,
student
=
self
.
user
.
pk
,
...
...
@@ -276,6 +302,7 @@ class LmsKeyValueStore(KeyValueStore):
Scope
.
student_info
,
Scope
.
children
,
)
def
__init__
(
self
,
descriptor_model_data
,
model_data_cache
):
self
.
_descriptor_model_data
=
descriptor_model_data
self
.
_model_data_cache
=
model_data_cache
...
...
@@ -357,4 +384,3 @@ class LmsKeyValueStore(KeyValueStore):
LmsUsage
=
namedtuple
(
'
LmsUsage
'
,
'
id, def_id
'
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment