- 08 Mar, 2016 1 commit
-
-
ECOM-2947
Waheed Ahmed committed
-
- 03 Feb, 2016 1 commit
-
-
- 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
-
- 22 Jan, 2016 1 commit
-
-
Zia Fazal committed
-
- 08 Dec, 2015 1 commit
-
-
David Baumgold committed
-
- 07 Dec, 2015 2 commits
-
-
Rather than Mako block hack
David Baumgold committed -
Rather than Mako block hack
David Baumgold committed
-
- 25 Nov, 2015 1 commit
-
-
ECOM-2972
Peter Fogg committed
-
- 10 Nov, 2015 1 commit
-
-
Please note that this is a squshed commit and the work of: Symbolist, macdiesel, nedbat, doctoryes, muzaffaryousaf and muhammad-ammar
Usman Khalid committed
-
- 04 Nov, 2015 1 commit
-
-
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
-
- 07 Oct, 2015 1 commit
-
-
Diana Huang committed
-
- 07 Sep, 2015 1 commit
-
-
ECOM-2044
zubair-arbi committed
-
- 04 Sep, 2015 2 commits
-
-
William Ono committed
-
PR #8930
William Ono committed
-
- 31 Aug, 2015 1 commit
-
-
ECOM-1017
Tasawer committed
-
- 07 Aug, 2015 1 commit
-
-
TNL-2945
cahrens committed
-
- 31 Jul, 2015 1 commit
-
-
Sarina Canelake committed
-
- 13 Jul, 2015 1 commit
-
-
Sarina Canelake committed
-
- 26 Jun, 2015 5 commits
-
-
Braden MacDonald committed
-
Braden MacDonald committed
-
Braden MacDonald committed
-
Braden MacDonald committed
-
Braden MacDonald committed
-
- 22 Jun, 2015 1 commit
-
-
Renzo Lucioni committed
-
- 19 Jun, 2015 1 commit
-
-
Braden MacDonald committed
-
- 06 Jun, 2015 1 commit
-
-
Sarina Canelake committed
-
- 15 May, 2015 2 commits
-
-
Adding the pyuca to support sorting in differnet languages. TNL-2047
muzaffaryousaf committed -
Fixing the pencil icon issue. TNL-2047
muzaffaryousaf committed
-
- 17 Apr, 2015 3 commits
-
-
TNL-1862
muhammad-ammar committed -
TNL-1535
Usman Khalid committed -
TNL-1499
Usman Khalid committed
-
- 25 Mar, 2015 1 commit
-
-
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
-
- 17 Mar, 2015 2 commits
-
-
Ned Batchelder committed
-
TNL-1493 See https://openedx.atlassian.net/wiki/display/TNL/User+API for details
Andy Armstrong committed
-
- 13 Mar, 2015 1 commit
-
-
Awais committed
-
- 26 Feb, 2015 1 commit
-
-
cahrens committed
-
- 23 Feb, 2015 2 commits
- 11 Feb, 2015 1 commit
-
-
Users who are blocked from enrolling in a course due to an embargo are redirected to the blocked message page after authentication completes.
Will Daly committed
-
- 04 Feb, 2015 1 commit
-
-
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
-
- 30 Jan, 2015 1 commit
-
-
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
-