1. 17 Apr, 2015 3 commits
  2. 20 Mar, 2015 1 commit
  3. 17 Mar, 2015 1 commit
  4. 05 Mar, 2015 1 commit
  5. 02 Mar, 2015 1 commit
  6. 26 Feb, 2015 1 commit
  7. 23 Feb, 2015 1 commit
  8. 11 Feb, 2015 1 commit
  9. 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
  10. 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
  11. 09 Jan, 2015 1 commit
  12. 06 Jan, 2015 1 commit
  13. 22 Dec, 2014 1 commit
  14. 13 Dec, 2014 1 commit
  15. 10 Dec, 2014 2 commits
  16. 08 Dec, 2014 1 commit
  17. 05 Dec, 2014 1 commit
  18. 04 Dec, 2014 1 commit
  19. 03 Dec, 2014 1 commit
  20. 01 Dec, 2014 3 commits
  21. 26 Nov, 2014 1 commit
  22. 12 Nov, 2014 2 commits
  23. 05 Nov, 2014 1 commit
  24. 28 Oct, 2014 1 commit
  25. 27 Oct, 2014 1 commit
  26. 24 Oct, 2014 2 commits
  27. 22 Oct, 2014 1 commit
    • Integrate third party auth into the combined login/registration page. · 9e9dec1d
      Change third party auth login failure code to a 401, to detect authentication
      success with no linked account.
      
      If already authenticated, redirect immediately to the dashboard.
      
      Use "Location" header correctly for 302 redirects from student views.
      
      Add utility functions for simulating a running third-party auth pipeline.
      
      Add a utility function for checking whether third party auth is enabled.
      
      Respect default values sent by the server
      Will Daly committed
  28. 20 Oct, 2014 1 commit
  29. 25 Sep, 2014 1 commit
  30. 24 Sep, 2014 3 commits
  31. 17 Sep, 2014 1 commit