Commit 999343d6 by David Ormsbee

Merge pull request #618 from MITx/feature/victor/hide-progress-tab

Feature/victor/hide progress tab
parents bce4e0f1 f926925c
...@@ -242,6 +242,13 @@ class CourseDescriptor(SequenceDescriptor): ...@@ -242,6 +242,13 @@ class CourseDescriptor(SequenceDescriptor):
return self.metadata.get('discussion_link', None) return self.metadata.get('discussion_link', None)
@property @property
def hide_progress_tab(self):
"""TODO: same as above, intended to let internal CS50 hide the progress tab
until we get grade integration set up."""
# Explicit comparison to True because we always want to return a bool.
return self.metadata.get('hide_progress_tab') == True
@property
def title(self): def title(self):
return self.display_name return self.display_name
......
...@@ -236,6 +236,10 @@ class ImportTestCase(unittest.TestCase): ...@@ -236,6 +236,10 @@ class ImportTestCase(unittest.TestCase):
# Also check that the grading policy loaded # Also check that the grading policy loaded
self.assertEqual(two_toys.grade_cutoffs['C'], 0.5999) self.assertEqual(two_toys.grade_cutoffs['C'], 0.5999)
# Also check that keys from policy are run through the
# appropriate attribute maps -- 'graded' should be True, not 'true'
self.assertEqual(toy.metadata['graded'], True)
def test_definition_loading(self): def test_definition_loading(self):
"""When two courses share the same org and course name and """When two courses share the same org and course name and
......
...@@ -96,10 +96,14 @@ class XmlDescriptor(XModuleDescriptor): ...@@ -96,10 +96,14 @@ class XmlDescriptor(XModuleDescriptor):
# A dictionary mapping xml attribute names AttrMaps that describe how # A dictionary mapping xml attribute names AttrMaps that describe how
# to import and export them # to import and export them
# Allow json to specify either the string "true", or the bool True. The string is preferred.
to_bool = lambda val: val == 'true' or val == True
from_bool = lambda val: str(val).lower()
bool_map = AttrMap(to_bool, from_bool)
xml_attribute_map = { xml_attribute_map = {
# type conversion: want True/False in python, "true"/"false" in xml # type conversion: want True/False in python, "true"/"false" in xml
'graded': AttrMap(lambda val: val == 'true', 'graded': bool_map,
lambda val: str(val).lower()), 'hide_progress_tab': bool_map,
} }
...@@ -232,6 +236,16 @@ class XmlDescriptor(XModuleDescriptor): ...@@ -232,6 +236,16 @@ class XmlDescriptor(XModuleDescriptor):
@classmethod @classmethod
def apply_policy(cls, metadata, policy):
"""
Add the keys in policy to metadata, after processing them
through the attrmap. Updates the metadata dict in place.
"""
for attr in policy:
attr_map = cls.xml_attribute_map.get(attr, AttrMap())
metadata[attr] = attr_map.from_xml(policy[attr])
@classmethod
def from_xml(cls, xml_data, system, org=None, course=None): def from_xml(cls, xml_data, system, org=None, course=None):
""" """
Creates an instance of this descriptor from the supplied xml_data. Creates an instance of this descriptor from the supplied xml_data.
...@@ -279,7 +293,7 @@ class XmlDescriptor(XModuleDescriptor): ...@@ -279,7 +293,7 @@ class XmlDescriptor(XModuleDescriptor):
# Set/override any metadata specified by policy # Set/override any metadata specified by policy
k = policy_key(location) k = policy_key(location)
if k in system.policy: if k in system.policy:
metadata.update(system.policy[k]) cls.apply_policy(metadata, system.policy[k])
return cls( return cls(
system, system,
......
...@@ -2,7 +2,8 @@ ...@@ -2,7 +2,8 @@
"course/2012_Fall": { "course/2012_Fall": {
"graceperiod": "2 days 5 hours 59 minutes 59 seconds", "graceperiod": "2 days 5 hours 59 minutes 59 seconds",
"start": "2015-07-17T12:00", "start": "2015-07-17T12:00",
"display_name": "Toy Course" "display_name": "Toy Course",
"graded": "true"
}, },
"chapter/Overview": { "chapter/Overview": {
"display_name": "Overview" "display_name": "Overview"
......
...@@ -48,7 +48,7 @@ def url_class(url): ...@@ -48,7 +48,7 @@ def url_class(url):
% if settings.WIKI_ENABLED: % if settings.WIKI_ENABLED:
<li class="wiki"><a href="${reverse('course_wiki', args=[course.id])}" class="${url_class('wiki')}">Wiki</a></li> <li class="wiki"><a href="${reverse('course_wiki', args=[course.id])}" class="${url_class('wiki')}">Wiki</a></li>
% endif % endif
% if user.is_authenticated(): % if user.is_authenticated() and not course.hide_progress_tab:
<li class="profile"><a href="${reverse('progress', args=[course.id])}" class="${url_class('progress')}">Progress</a></li> <li class="profile"><a href="${reverse('progress', args=[course.id])}" class="${url_class('progress')}">Progress</a></li>
% endif % endif
% if staff_access: % if staff_access:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment