1. 08 Mar, 2016 1 commit
  2. 03 Feb, 2016 1 commit
    • Refactor and improve js_utils helpers · f555ffd5
      - Rename escape_json_dumps to dump_js_escaped_json
      - Rename escape_js_string to js_escaped_string
      - Update js_escaped_string to output empty string for None
      - Introduce dump_html_escaped_json
      - Move dump_js_escaped_json after the pipe as new best practice
      - Introduce additional uses of helpers
      - Introduce new djangolib directory and move js_utils
      Robert Raposa committed
  3. 22 Jan, 2016 1 commit
  4. 08 Dec, 2015 1 commit
  5. 07 Dec, 2015 2 commits
  6. 25 Nov, 2015 1 commit
  7. 10 Nov, 2015 1 commit
  8. 04 Nov, 2015 1 commit
    • Add json escaping to Studio · 3682fac8
      Make escaping for json simpler and more consistent in Mako templates
      - add escape_json_dumps to escape and json.dumps
      - add escape_js_str to escape javascript string
      - refactor Studio to use escape_json_dumps in Mako templates
      
      TNL-2646: Escape json.dumps
      Robert Raposa committed
  9. 07 Oct, 2015 1 commit
  10. 07 Sep, 2015 1 commit
  11. 04 Sep, 2015 2 commits
  12. 31 Aug, 2015 1 commit
  13. 07 Aug, 2015 1 commit
  14. 31 Jul, 2015 1 commit
  15. 13 Jul, 2015 1 commit
  16. 26 Jun, 2015 5 commits
  17. 22 Jun, 2015 1 commit
  18. 19 Jun, 2015 1 commit
  19. 06 Jun, 2015 1 commit
  20. 15 May, 2015 2 commits
  21. 17 Apr, 2015 3 commits
  22. 25 Mar, 2015 1 commit
    • Login/Registration page can skip track selection. · 735b4009
      Add querystring param "course_mode" to the login/registration
      page so the user can skip track selection.
      
      This supports upcoming changes to the course details page
      that allow the user to choose the track when clicking
      "enroll", which will replace the functionality of the track
      selection page.
      Will Daly committed
  23. 17 Mar, 2015 2 commits
  24. 13 Mar, 2015 1 commit
  25. 26 Feb, 2015 1 commit
  26. 23 Feb, 2015 2 commits
  27. 11 Feb, 2015 1 commit
  28. 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
  29. 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