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
b48d08b2
Commit
b48d08b2
authored
12 years ago
by
Calen Pennington
Browse files
Options
Downloads
Patches
Plain Diff
Minor changes from pull request 170
parent
28007b28
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
common/lib/xmodule/xmodule/modulestore/mongo.py
+5
-4
5 additions, 4 deletions
common/lib/xmodule/xmodule/modulestore/mongo.py
with
5 additions
and
4 deletions
common/lib/xmodule/xmodule/modulestore/mongo.py
+
5
−
4
View file @
b48d08b2
...
...
@@ -23,7 +23,7 @@ class CachingDescriptorSystem(MakoDescriptorSystem):
def
__init__
(
self
,
modulestore
,
module_data
,
default_class
,
resources_fs
,
render_template
):
"""
modulestore: the module store that can be used to retrieve additional modules
module_data: a mapping
of
Location -> json that was cached from the underlying modulestore
module_data: a
dict
mapping Location -> json that was cached from the underlying modulestore
default_class: The default_class to use when loading an XModuleDescriptor from the module_data
resources_fs: a filesystem, as per MakoDescriptorSystem
render_template: a function for rendering templates, as per MakoDescriptorSystem
...
...
@@ -42,15 +42,15 @@ class CachingDescriptorSystem(MakoDescriptorSystem):
return
XModuleDescriptor
.
load_from_json
(
json_data
,
self
,
self
.
default_class
)
def
location_to_query
(
loc
):
def
location_to_query
(
loc
ation
):
"""
Takes a Location and returns a SON object that will query for that location.
Fields in loc that are None are ignored in the query
Fields in loc
ation
that are None are ignored in the query
"""
query
=
SON
()
# Location dict is ordered by specificity, and SON
# will preserve that order for queries
for
key
,
val
in
Location
(
loc
).
dict
().
iteritems
():
for
key
,
val
in
Location
(
loc
ation
).
dict
().
iteritems
():
if
val
is
not
None
:
query
[
'
_id.{key}
'
.
format
(
key
=
key
)]
=
val
...
...
@@ -106,6 +106,7 @@ class MongoModuleStore(ModuleStore):
to_process
=
list
(
self
.
collection
.
find
({
'
_id
'
:
{
'
$in
'
:
[
Location
(
child
).
dict
()
for
child
in
children
]}}))
else
:
to_process
=
[]
# If depth is None, then we just recurse until we hit all the descendents
if
depth
is
not
None
:
depth
-=
1
...
...
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