- 02 Oct, 2015 1 commit
-
-
Bill DeRusha committed
-
- 01 Oct, 2015 1 commit
-
-
Bill DeRusha committed
-
- 24 Sep, 2015 1 commit
-
-
Bill DeRusha committed
-
- 07 Sep, 2015 1 commit
-
-
Hide shopping cart menu only if request is coming from a micro site and requested page is from courseware.
Zia Fazal committed
-
- 02 Sep, 2015 1 commit
-
-
Shopping Cart menu should not be visible in case of while label site. added tests
Zia Fazal committed
-
- 28 Aug, 2015 1 commit
-
-
David Ormsbee committed
-
- 26 Aug, 2015 1 commit
-
-
These signals are caught by the Teams app and used to update `last_activity_at` on both teams and individual users. TNL-2497
Peter Fogg committed
-
- 17 Aug, 2015 2 commits
-
-
Peter Fogg committed
-
Peter Fogg committed
-
- 03 Aug, 2015 1 commit
-
-
Ned Batchelder committed
-
- 13 Jul, 2015 2 commits
-
-
Skipped 'print' statement violations, as print() is Py3k syntax.
Sarina Canelake committed -
Sarina Canelake committed
-
- 26 Jun, 2015 1 commit
-
-
Sarina Canelake committed
-
- 18 Jun, 2015 1 commit
-
-
Chris Dodge committed
-
- 16 Jun, 2015 2 commits
-
-
Afzal Wali committed
-
Added columns to the CC purchases report. (added Qty and Total Discount. Moved the Total Amount to the last index). Coupon code report.
Afzal Wali committed
-
- 03 Jun, 2015 1 commit
-
-
Muhammad Shoaib committed
-
- 02 Jun, 2015 1 commit
-
-
Removed the unused try/except block around filter().
Chris Dodge committed
-
- 22 May, 2015 1 commit
-
-
marjev committed
-
- 19 May, 2015 1 commit
-
-
MAYN-65 fixed the bug, removed the redemption table entry when the item is expired from the user cart fix quality issues
Muhammad Shoaib committed
-
- 02 May, 2015 1 commit
-
-
Clinton Blackburn committed
-
- 27 Apr, 2015 1 commit
-
-
XCOM-213 XCOM-214
jsa committed
-
- 09 Apr, 2015 2 commits
-
-
ECOM-653
zubair-arbi committed -
Stephen Sanchez committed
-
- 17 Mar, 2015 3 commits
-
-
Awais committed
-
Update edx-lint to the version that checks if tearDown uses super. Convert a number of tearDown methods into addCleanup. Remove some unneeded tearDown methods: no need to call patch.stopall if none of them were started with patch.start.
Ned Batchelder committed -
Ned Batchelder committed
-
- 13 Mar, 2015 1 commit
-
-
Awais committed
-
- 23 Feb, 2015 1 commit
-
-
The new "country access" implementation replaces the old implementation. Middleware and tests have been updated accordingly, but deprecated models are preserved for backwards compatibility.
Will Daly committed
-
- 10 Feb, 2015 1 commit
-
-
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
-
- 09 Feb, 2015 1 commit
-
-
Will Daly committed
-
- 08 Feb, 2015 1 commit
-
-
Show ordinary receipt unless the student is in the payment flow.
Will Daly committed
-
- 07 Feb, 2015 1 commit
-
-
Remove submission of verification attempt in shopping cart, since it's no longer needed with the new payment/verification flow.
Will Daly committed
-
- 06 Feb, 2015 1 commit
-
-
Wrap send email operation in try/except to avoid rolling back the transaction once a user has paid.
Will Daly committed
-
- 04 Feb, 2015 4 commits
-
-
Calen Pennington committed
-
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 -
Calen Pennington committed
-
Conflicts: lms/djangoapps/shoppingcart/views.py
Sarina Canelake committed
-
- 03 Feb, 2015 1 commit
-
-
ECOM-891: Allow tracking of invoice transactions. Authors: Awais Qureshi and Aamir Khan
Awais Qureshi committed
-
- 29 Jan, 2015 1 commit
-
-
stephensanchez committed
-