1. 02 Jul, 2015 1 commit
  2. 19 Jun, 2015 1 commit
  3. 06 Jun, 2015 1 commit
  4. 30 Apr, 2015 1 commit
  5. 17 Mar, 2015 2 commits
  6. 04 Feb, 2015 1 commit
    • 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
  7. 30 Jan, 2015 1 commit
    • Make logistration generally available if feature flag is active · a8bed5ce
      Makes logistration available at /login and /register as well as /accounts/login/ and /accounts/register/. In addition:
      
      - Adds support for redirect URLs in third party auth for combined login/registration page
      - Adds support for external auth on the combined login/registration page
      - Removes old login and registration acceptance tests
      - Adds deprecation warnings to old login and register views
      - Moves third party auth util to student_account
      - Adds exception for microsites (theming)
      Renzo Lucioni committed
  8. 14 Jan, 2015 1 commit
  9. 05 Dec, 2014 1 commit
  10. 04 Dec, 2014 1 commit
  11. 02 Dec, 2014 2 commits
  12. 01 Dec, 2014 3 commits
  13. 10 Nov, 2014 1 commit
  14. 15 Oct, 2014 1 commit
  15. 14 Oct, 2014 1 commit
  16. 02 Oct, 2014 2 commits
  17. 12 Sep, 2014 1 commit
  18. 03 Sep, 2014 1 commit
  19. 15 Aug, 2014 1 commit
  20. 06 Aug, 2014 1 commit
  21. 17 Jul, 2014 1 commit
  22. 16 Jul, 2014 1 commit
  23. 14 Jul, 2014 1 commit
    • Refactor split migrator · 63965891
      LMS-2936
      
      Also, a bunch of ancillary cleanups.
      
      Conflicts:
      	common/lib/xmodule/xmodule/modulestore/tests/test_publish.py
      
      Conflicts:
      	cms/djangoapps/contentstore/management/commands/migrate_to_split.py
      	cms/djangoapps/contentstore/management/commands/tests/test_rollback_split_course.py
      	common/lib/xmodule/xmodule/modulestore/__init__.py
      	common/lib/xmodule/xmodule/modulestore/mixed.py
      	common/lib/xmodule/xmodule/modulestore/mongo/draft.py
      	common/lib/xmodule/xmodule/modulestore/split_migrator.py
      	common/lib/xmodule/xmodule/modulestore/split_mongo/split.py
      	common/lib/xmodule/xmodule/modulestore/tests/test_split_migrator.py
      	common/lib/xmodule/xmodule/modulestore/tests/test_split_w_old_mongo.py
      Don Mitchell committed
  24. 10 Jul, 2014 2 commits
  25. 26 Jun, 2014 1 commit
  26. 09 Jun, 2014 1 commit
  27. 30 May, 2014 1 commit
  28. 29 May, 2014 1 commit
  29. 19 May, 2014 1 commit
  30. 13 May, 2014 1 commit
  31. 12 May, 2014 3 commits
  32. 09 May, 2014 1 commit