Andy Armstrong
356b2335e9
Add base support for cohorted group configurations
...
TNL-649
2014-12-05 09:52:26 -05:00
Waheed Ahmed
2bea9b4b65
Fixed plus sign icon for overall grade range add button.
...
TNL-890
2014-12-05 12:16:11 +05:00
polesye
b6d8291996
TNL-772: Fix course time settings.
2014-11-20 14:56:12 +02:00
David Baumgold
e00424a091
Moved Studio images from img/ directory to images/ directory
...
OPEN-304
2014-11-12 17:19:23 -05:00
Greg Price
dec9e41d1b
Merge pull request #5853 from edx/gprice/fix-complementary
...
Fix spelling of complementary role
2014-11-12 14:36:35 -05:00
cahrens
ddc0015cdf
Clarify types of Python values.
2014-11-10 13:42:11 -05:00
cahrens
c550963fb9
Set up validation_messages so that it goes through the RequireJS optimizer.
2014-11-10 13:13:44 -05:00
Mark Hoeber
831453c531
Merge pull request #5817 from edx/markhoeber-1138
...
Export Template Update with Caution
2014-11-07 09:39:03 -05:00
Mark Hoeber
5015aa5515
Export Template Update with Caution
2014-11-07 09:38:27 -05:00
Christina Roberts
fd587b976c
Merge pull request #5710 from edx/christina/general-component-errors
...
Support validation messages for any xblock (on container page).
2014-11-06 16:47:49 -05:00
cahrens
08ce09bde7
Display validation messages for any xblock on the container page.
...
TNL-683
2014-11-06 15:48:55 -05:00
David Baumgold
cfaa9dd588
Rename Studio logo
...
OPEN-301
2014-11-06 09:34:17 -05:00
Greg Price
067e270a84
Fix spelling of complementary role
2014-11-05 15:48:51 -05:00
David Baumgold
688d4c968a
Merge pull request #4806 from edx/talbs/studio-stylesweep-unused
...
Studio: Removing older/deprecated style rules
2014-11-03 13:36:05 -05:00
Daniel Friedman
355a3b45ad
Merge pull request #5764 from edx/dan-f/highlight-active-unit-in-outline
...
Highlight active unit in studio container page's outline
2014-10-30 13:13:34 -04:00
Brian Talbot
ee368e8740
Studio: cleaning up/removing unused sass
...
* removing unused font-family-centric Sass variables
* removing unused graphic images and Sass references
* clean up of style removal fallout
2014-10-30 12:07:52 -04:00
Daniel Friedman
3b3b3dcd9e
Show current unit in unit outline.
...
TNL-291
2014-10-30 11:08:49 -04:00
Waheed Ahmed
41d2fa1a5e
Fixed upload button on high level source editing popup.
...
TNL-222
2014-10-28 13:02:57 +05:00
polesye
83fbdc2ac4
TNL-481: Add RequireJS Optimizer.
2014-10-20 17:33:21 +03:00
Frances Botsford
c92f52e0bd
cleanup and response to PR review
2014-10-17 13:51:43 -04:00
Frances Botsford
e255ac1f29
Initial pass at LMS and Studio RTL
2014-10-17 13:51:42 -04:00
David Baumgold
eba03512d5
Replace course status message
2014-10-15 11:35:56 -04:00
David Baumgold
0f07bad3ed
Some strings were missing i18n calls
2014-10-15 11:35:56 -04:00
Brian Talbot
0a633eaf09
Studio: resolving post-course rerun outline UI alert icon display issue
...
UX-1054
2014-10-14 14:09:15 -04:00
John Eskew
5e3e366147
Remove unused jQuery code. - LMS-11481
2014-10-07 15:02:18 -04:00
Oleg Marshev
f020d1c584
Show date and time on Schedules and Details in UTC (TNL-85).
2014-10-03 11:17:00 +03:00
Calen Pennington
183e04106a
Merge pull request #5392 from cpennington/escape-course-ids-in-html
...
Properly escape CourseKeys and UsageKeys in html templates
2014-10-01 12:32:54 -04:00
Calen Pennington
77a04daa07
Properly escape CourseKeys and UsageKeys in html templates
...
[LMS-11372]
[LMS-11370]
2014-10-01 10:26:52 -04:00
Mark Hoeber
1f4ae3fb2b
Updated help link and content of container page
2014-09-19 15:10:35 -04:00
Mark Hoeber
77311e03c9
Updated Files & Uploads template help
...
To include size warning of 10 MB. Also updated styling on existing learn more
links
2014-09-15 20:14:33 -04:00
zubair-arbi
fc7d491cdc
show upload progress on import course view + display last import status on import page load
...
STUD-2017
2014-09-08 17:51:51 +05:00
Brian Talbot
dfbcd76885
Studio: resolves layout issues with icons in system feedback UI
2014-09-04 11:07:54 -04:00
Brian Talbot
335298c8e3
Studio: adding in usage note to UX reference templates
2014-08-28 15:37:48 -04:00
Sarina Canelake
d233570c48
Remove i18n from ux reference templates
2014-08-28 15:37:48 -04:00
Nimisha Asthagiri
dfe23f9c68
Merge pull request #4991 from edx/split/spell-dismiss
...
LMS-11298 Course reruns spelling correction
2014-08-27 11:39:33 -04:00
Nimisha Asthagiri
4081f48885
LMS-11298 Course reruns spelling correction
2014-08-27 10:26:30 -04:00
Se Won Jang
11d260910f
Implemented Validation for Course Advanced Setting
...
This commit adds validation for course advanced settings. Currently when course
administrators make invalid changes in the Settings/Advanced Settings tab,
they're not notified through a new modal window of the list of invalid settings
changes.
* Extending CourseMetadata
- Previously, we only had update_from_json method in CourseMetadata.py,
and it was only validating one field every POST request.
- Now we have validate_and_update_from_json method that encapsulates the
functionality of update_from_json into a validation call
- To avoid discrepancy of validation standards between modules, validation
uses the from_json method implemented to each field in xblock.
* Different Response in advanced settings ajax requests
- After receiving a POST ajax request, course.py calls
validate_and_update_from_json, and sends a json object of either:
1) valid course metadata model
2) error objects
* Error Messages shown in validation-error-modal
- error objects passed through ajax are shown in a separate modal.
2014-08-26 11:24:38 -07:00
Alexander Kryklia
095b07275e
Unflag Group Configurations, Render only existing children in staff view of split_test.
2014-08-22 16:43:54 -04:00
Ben McMorran
b875a42971
Merge pull request #4938 from edx/benmcmorran/reword-rerun-note
...
Reword course rerun notification
2014-08-22 16:07:04 -04:00
Sarina Canelake
e57a1551c3
Make Studio and LMS register pages use the same language
2014-08-22 14:23:07 -04:00
Ben McMorran
9cb87cfd61
Reword course rerun notification
2014-08-22 11:35:03 -04:00
Waheed Ahmed
f686e7d0b9
Passed cls=EdxJSONEncoder on json.dumps to fix save, edit and import.
...
STUD-2096
2014-08-22 12:23:46 +05:00
Andy Armstrong
3ac3a3152a
Merge pull request #4913 from edx/andya/handle-component-errors
...
Fix Studio to gracefully handle xblock JavaScript errors
2014-08-21 18:20:16 -04:00
Andy Armstrong
d451c3e91d
Fix Studio to gracefully handle xblock JavaScript errors
...
TNL-46
I've changed Studio to catch JavaScript errors when rendering xblocks, log the error, but to then continue as normal. This means that the user is still able to interact with the xblock to delete, duplicate etc. This seems reasonable as the xblock is only rendered as a WYSIWYG representation so if it isn't fully interactive that shouldn't be a big problem.
2014-08-21 17:31:19 -04:00
Ben McMorran
d38bd2ea95
Reword rerun notification
2014-08-21 14:11:43 -04:00
Ben McMorran
bb90c30767
Make refresh clickable while courses are processing
2014-08-21 12:11:30 -04:00
Ben McMorran
4e41a42c76
Rename unsucceeded to in_process
2014-08-21 12:11:28 -04:00
Ben McMorran
d943204199
Fix i18n on course outline and show error message for long names
2014-08-21 12:11:28 -04:00
Ben McMorran
46932ee0f9
Replace data-test-course and data-test-unsucceeded with data-course-key
2014-08-21 12:11:26 -04:00
Brian Talbot
aa799a1736
Studio: syncing up markup/styling for other 'learn more' external help links
2014-08-21 12:11:26 -04:00