1. 23 Apr, 2015 1 commit
  2. 22 Apr, 2015 1 commit
  3. 17 Apr, 2015 1 commit
  4. 10 Apr, 2015 2 commits
  5. 07 Apr, 2015 1 commit
  6. 02 Apr, 2015 1 commit
  7. 20 Mar, 2015 1 commit
  8. 17 Mar, 2015 2 commits
  9. 14 Mar, 2015 3 commits
  10. 13 Mar, 2015 1 commit
  11. 12 Mar, 2015 1 commit
  12. 09 Mar, 2015 1 commit
  13. 06 Mar, 2015 1 commit
  14. 05 Mar, 2015 2 commits
  15. 02 Mar, 2015 1 commit
  16. 27 Feb, 2015 1 commit
  17. 23 Feb, 2015 1 commit
  18. 10 Feb, 2015 1 commit
    • Country Access: block enrollment · e609f982
      Block users from enrolling in a course if the user
      is blocked by country access rules.
      
      1) Enrollment via the login/registration page.
      2) Enrollment from the marketing iframe (via student.views.change_enrollment)
      3) Enrollment using 100% redeem codes.
      4) Enrollment via upgrade.
      
      This does NOT cover enrollment through third party authentication,
      which is sufficiently complex to deserve its own commit.
      Will Daly committed
  19. 08 Feb, 2015 1 commit
  20. 04 Feb, 2015 3 commits
    • Better support specifying of modulestore configuration in test cases · b353ed2e
      The existing pattern of using `override_settings(MODULESTORE=...)` prevented
      us from having more than one layer of subclassing in modulestore tests.
      
      In a structure like:
      
          @override_settings(MODULESTORE=store_a)
          class BaseTestCase(ModuleStoreTestCase):
              def setUp(self):
                  # use store
      
          @override_settings(MODULESTORE=store_b)
          class ChildTestCase(BaseTestCase):
              def setUp(self):
                  # use store
      
      In this case, the store actions performed in `BaseTestCase` on behalf of
      `ChildTestCase` would still use `store_a`, even though the `ChildTestCase`
      had specified to use `store_b`. This is because the `override_settings`
      decorator would be the innermost wrapper around the `BaseTestCase.setUp` method,
      no matter what `ChildTestCase` does.
      
      To remedy this, we move the call to `override_settings` into the
      `ModuleStoreTestCase.setUp` method, and use a cleanup to remove the override.
      Subclasses can just defined the `MODULESTORE` class attribute to specify which
      modulestore to use _for the entire `setUp` chain_.
      
      [PLAT-419]
      Calen Pennington committed
  21. 29 Jan, 2015 1 commit
  22. 20 Jan, 2015 3 commits
  23. 31 Dec, 2014 3 commits
  24. 30 Dec, 2014 2 commits
  25. 22 Dec, 2014 2 commits
  26. 19 Dec, 2014 1 commit
  27. 18 Dec, 2014 1 commit