Adam
98b8b68d40
Revert "Updated dashboard UI for empty list of courses and programs" ( #12166 )
2016-04-15 12:46:21 -04:00
Calen Pennington
33af47a72a
Merge pull request #11841 from CredoReference/copy_question_should_also_copy_tags
...
Duplicate item in Studio should also duplicate related xblock aside
2016-04-15 12:34:25 -04:00
wajeeha-khalid
014185eaba
Merge pull request #12145 from edx/jia/TNL-3818-refactor
...
refactored variable name
2016-04-15 16:07:32 +05:00
tasawernawaz
00d2d6d20d
Merge pull request #12153 from edx/tasawer/story/ecom-3201-handle-empty-list-of-courses-and-programs-updated
...
Updated dashboard UI for empty list of courses and programs
2016-04-15 13:08:24 +05:00
tasawernawaz
ba6ba40e2e
ECOM-3201
...
Updated dashboard UI for empty list of courses and programs
2016-04-15 06:50:03 +00:00
Renzo Lucioni
5bb0e90878
Merge pull request #12156 from edx/renzo/merge-release-into-master
...
Manually merge release into master
2016-04-15 00:47:54 -04:00
Andy Armstrong
60fab86f01
Reconcile double reverts
...
Resolves conflicts between reverts of pattern library test pages and multi-site comprehensive theming, and the re-introduction of pattern library test pages. Fixes a pipeline rendering test which relied on other tests updating assets. The test now ensures that static assets are available before running.
2016-04-14 23:28:55 -04:00
Akiva Leffert
a804d0e961
Merge pull request #12158 from edx/aleffert/formula-response-multi-device
...
Enable multi-device for FormulaResponse
2016-04-14 18:03:00 -04:00
clrux
0c9f9d4682
Merge pull request #11438 from edx/clrux/ac-329
...
AC-329 making closed-captions draggable
2016-04-14 17:20:36 -04:00
Akiva Leffert
9f5d46118d
Enable multi-device for FormulaResponse
...
We've already audited this for responsiveness. Just need to turn it on.
JIRA: https://openedx.atlassian.net/browse/MA-1809
2016-04-14 16:37:37 -04:00
Simon Chen
582debcd58
Merge pull request #12135 from edx/schen/ECOM-3195
...
ECOM-3195 Edit the navigation header on dashboard to expose program listing page
2016-04-14 15:51:19 -04:00
Chris Rodriguez
df5520bdf9
Video player: adding Dragabilly to closed captions
...
* tests for dragging
* icon location reference updates
* pattern library usage
2016-04-14 15:29:38 -04:00
Simon Chen
75951b5936
ECOM-3195 Edit the navigation header on dashboard to expose program listing page
2016-04-14 14:44:40 -04:00
Renzo Lucioni
affee69296
Manually merge release into master
2016-04-14 14:23:06 -04:00
tasawernawaz
e962a39ef7
Revert "ECOM-3201"
...
This reverts commit 628843f62c .
2016-04-14 14:23:41 +00:00
wajeeha-khalid
e020869089
refactored variable name
2016-04-14 16:42:57 +05:00
Tasawer
628843f62c
ECOM-3201
...
Updated dashboard UI for empty list of courses and programs
2016-04-14 10:48:21 +00:00
wajeeha-khalid
5b5fb2464d
TNL-3818: fixed recent activity mapping in thread-list sort for Forums Web
2016-04-13 17:47:31 +05:00
Omar Khan
6fc4b38ea0
Disallow free verified course modes
...
The verification workflow assumes that all verified courses will have a
price. Free verified course modes cause a 404 when the user attempts to
enroll or upgrade.
2016-04-12 18:06:16 -07:00
Ned Batchelder
537dd040c8
Merge pull request #12117 from edx/ned/fix-mako-encoding
...
Fix encoding of Django-called Mako files to be safe
2016-04-12 14:21:12 -04:00
Matt Drayer
9a362d9033
Merge pull request #12116 from edx/mattdrayer/rc2016-04-12/revert-theming
...
Revert "saleem-latif/WL-328: Multi-Site Comprehensive Theming"
2016-04-12 10:55:04 -04:00
Diana Huang
16ac76d00b
Merge pull request #12121 from edx/diana/revert-final-check
...
Revert "Make it impossible to click "final check" without selecting a…
2016-04-12 10:15:18 -04:00
Diana Huang
fa61c04894
Revert "Make it impossible to click "final check" without selecting a choice"
...
This reverts commit 4c83a2f0de .
2016-04-12 10:11:15 -04:00
Toby Lawrence
95fde6d527
Revert "[PERF-274] Add NewRelic instrumentation to contentserver."
...
This reverts commit 09586d8a37 .
2016-04-12 10:05:18 -04:00
Peter Fogg
7864ec1c2c
Merge pull request #12109 from edx/peter-fogg/course-home-a11y-test
...
Add a11y test for the course home page.
2016-04-12 10:04:28 -04:00
Matt Drayer
392ee7d258
Revert "saleem-latif/WL-328: Multi-Site Comprehensive Theming"
...
This reverts commit a796b56314 .
Conflicts:
lms/envs/common.py
openedx/core/djangoapps/theming/models.py
pavelib/assets.py
pavelib/paver_tests/test_assets.py
2016-04-12 08:22:14 -04:00
Simon Chen
498ab88794
Merge pull request #12044 from edx/schen/ECOM-3198
...
ECOM-3198 Add banner image to the program listing program cards
2016-04-11 16:00:03 -04:00
Simon Chen
149412d2c3
ECOM-3198 Add banner image to the program listing program cards
2016-04-11 14:58:33 -04:00
Peter Fogg
beb3c19722
Add a11y test for the course home page.
2016-04-11 14:28:06 -04:00
Ned Batchelder
4f9f87c192
Fix encoding of Django-called Mako files to be safe
...
The old code set the output-encoding to None, which means, I want
Unicode strings as output. This made Mako pass markupsafe objects to
"unicode()", which applied all the escaping. Then the result would be
given to Django, would would html-escape it again, resulting in
over-escaping.
By setting the output-encoding to utf8, we use filters.encode.utf8
instead, which is aware of Markupsafe, which avoids the over-escaping.
2016-04-11 14:00:15 -04:00
Nimisha Asthagiri
7d43e3994c
Fix sequence navigation issues for CCX courses
...
MA-2258
2016-04-11 11:46:12 -04:00
Andy Armstrong
fd3a87a2cf
Merge pull request #12102 from edx/andya/pattern-library-test-page-take-2
...
Introduce Pattern Library test pages (take two)
2016-04-11 10:28:25 -04:00
Ben Patterson
bf66cb767d
Merge pull request #12103 from edx/benp/assetindex-flaky
...
FEDX-88. Marking bok-choy test as flaky.
2016-04-11 07:32:16 -04:00
Andy Armstrong
9290c52b33
Introduce Pattern Library test pages (take two)
...
FEDX-93
These are developer only pages, so can not be seen in production
environment. On devstack, you can access these pages in LMS and
Studio at:
/template/ux/reference/pattern-library-test.html
This is the second attempt to enable the Pattern Library. The
first attempt broke Django Templates and didn't work correctly
with right-to-left styling.
2016-04-11 00:45:31 -04:00
Ben Patterson
61a3b07e99
FEDX-88. Marking bok-choy test as flaky.
2016-04-10 09:28:07 -04:00
Andy Armstrong
807fed392b
Merge pull request #12092 from edx/revert-uxpl-asset-changes-in-master
...
Revert "Introduce Pattern Library test pages"
2016-04-08 18:03:58 -04:00
Eric Fischer
08c3a13f5e
Merge pull request #11968 from edx/efischer/refactor_date_utils
...
Course Updates date validation
2016-04-08 15:23:00 -04:00
Ben Patterson
b6b0d7fd4d
Merge pull request #12016 from edx/muddasser/bokchoy/upload_tar_flakiness
...
Decreased the flakiness of upload_tar function
2016-04-08 14:41:15 -04:00
Brian Jacobel
4671970f86
Revert "Introduce Pattern Library test pages"
...
This reverts commit 845e3708f3 .
2016-04-08 14:25:41 -04:00
Brian Jacobel
36917398c0
Revert "Introduce Pattern Library test pages"
...
This reverts commit 845e3708f3 .
2016-04-08 11:41:04 -04:00
Eric Fischer
2735fdc2d4
Course Updates date validation
...
TNL-4115. Previously, course updates (which are intended to be posted with
dates, for sorting in the LMS) could be authored in studio with a valid
date, nothing, or a random string as the "date" for the update. As there
is no validation for this in studio, everything succeeded with no warning.
However, the LMS has problems parsing some of these values, and barfs when
loaded by learners.
The fix does two big things:
- gracefully handles invalid dates in LMS. These updates are now treated as
having a date of today, for sorting purposes.
- turns on validation in studio. Now, it is not only impossible to enter
invalid dates in studio, but notifications will draw the course author's
eye if any invalid updates were previously saved.
Test additions for this commit:
Adds:
- unit test for LMS parsing
- Jasmine test to confirm invalid dates cannot be set by the user
-also adds event to setAndValidate instead of using a global object
- fix for lettuce test
-It is no longer valid to enter the string "January 1, 2013" as this test
had been doing. Keyed-in entries must use MM/DD/YY format.
2016-04-08 11:37:40 -04:00
Ned Batchelder
2e1238b83e
Remove unused imports
2016-04-08 11:23:05 -04:00
Muddasser
7680d0b97a
Decreased the flakiness of upload_tar function
2016-04-08 12:20:13 +05:00
Nimisha Asthagiri
91f63af852
Fix sequence navigation issues for CCX courses
...
MA-2258
2016-04-07 18:41:10 -04:00
clrux
0571103bdb
Merge pull request #11369 from edx/clrux/ac-223
...
AC-223 updating transcript skip links
2016-04-07 13:23:02 -04:00
Adam
810a5a79d1
Merge pull request #12072 from edx/merge-release-into-master
...
Merge release into master
2016-04-07 13:16:18 -04:00
Chris Rodriguez
fbe6160461
LMS: updating transcript skip links
2016-04-07 12:18:08 -04:00
John Eskew
abba913bee
Merge pull request #12053 from mitocw/fix/aq/ccx_creating_issue
...
Fixed unable to created ccx issue
2016-04-07 12:09:40 -04:00
Adam Palay
76f0fb0fc2
Merge remote-tracking branch 'origin/release' into merge-release-into-master
2016-04-07 12:02:43 -04:00
Matt Drayer
c7552db4d5
Merge pull request #11987 from edx/asadiqbal08/xblock_translations
...
asadiqbal08/WL-388: Add ModuleI18nService for Descriptor System
2016-04-07 10:54:33 -04:00