Matjaz Gregoric
116abf1fc0
Modify error message when library with same org/code exists.
...
Users are unlikely to change their organization name.
2015-01-12 13:42:54 +03:00
Jonathan Piacenti
eabd6c8d27
Quality check and test fixes.
2015-01-12 13:41:03 +03:00
Jonathan Piacenti
c17ba15fbf
Made empty course url the 'home' url instead.
2015-01-12 13:41:02 +03:00
Braden MacDonald
325c36069a
Unrelated: fix two bugs when duplicating a LibraryContentModule
2015-01-12 13:41:02 +03:00
Braden MacDonald
7303966c13
Check permissions when updating LibraryContent blocks
2015-01-12 13:40:59 +03:00
Braden MacDonald
42ee0571e7
Read-only users get "Details" instead of "Edit" button, remove "Save" option
2015-01-12 13:40:55 +03:00
Braden MacDonald
93bb1f58cd
Basic UI for managing library users with limited editing functionality (shared with course code)
2015-01-12 13:37:59 +03:00
Braden MacDonald
c477bab6f4
Update the REST API course_team_handler to support library roles, fix bugs
2015-01-12 13:37:58 +03:00
Braden MacDonald
fefc70c405
Three levels of user permissions for content libraries:
...
Admin ("Instructor") - Can edit and assign permissions to other users
Normal ("Staff") - Can edit
User - Can view the library and use content from it but cannot edit it or its blocks.
2015-01-12 13:37:58 +03:00
Braden MacDonald
6f3b46c9df
Move code that uses the modulestore to an XBlock service
2015-01-12 13:37:57 +03:00
Braden MacDonald
d4e8242477
Friendly error message when library key is invalid
2015-01-12 13:37:56 +03:00
Jonathan Piacenti
074e4cfa22
Addressed further review notes for Library Pagination
2015-01-12 13:37:56 +03:00
Jonathan Piacenti
80c517ecd1
Addressed notes from reviewers on Library Pagination.
2015-01-12 13:37:55 +03:00
E. Kolpakov
ff1a08cbd5
Paging for LibraryView added with JS tests.
2015-01-12 13:37:55 +03:00
Jonathan Piacenti
058176144e
Removed the ability to add Discussion and advanced components to Content Libraries.
2015-01-12 13:37:55 +03:00
Braden MacDonald
3e0f08ebc2
Studio support for creating and editing libraries (PR 6046)
...
SOL-1, SOL-2, SOL-3
2015-01-12 13:37:50 +03:00
Nimisha Asthagiri
4b53f4df27
Studio video upload CSV download changes.
2015-01-09 20:48:48 -05:00
Greg Price
8d8ca83d94
Add download button to Studio video upload page
...
The button downloads the CSV data containing all video URLs.
2015-01-09 19:45:31 -05:00
Greg Price
4e1925129e
Add URL download endpoint for Studio video uploads
...
The endpoint returns an Excel-dialect CSV file for download.
2015-01-09 19:45:31 -05:00
Adam Palay
7837607ca9
only recusively delete modules if all their parents are marked for deletion (PLAT-333)
...
update '_delete_item' method for draft only modules and update delete_orphans management command
fix test_courseware which fails due to invalid future date
2015-01-05 14:54:17 -05:00
Fred Smith
251407d7d2
Merge pull request #6314 from edx/release
...
Release
2014-12-19 13:23:22 -05:00
Don Mitchell
d49c82f9bd
Add configuration to studio for asides
2014-12-18 14:43:22 -05:00
Don Mitchell
4360a78142
Studio render XBlockAside views
...
PLAT-280
2014-12-17 15:44:49 -05:00
Don Mitchell
de5e88561f
Make XmlModuleStore handle asides
...
PLAT-221
2014-12-17 13:51:10 -05:00
John Eskew
94ea35d3be
Export modulestore-stored asset metadata as XML to exported course.
...
Import asset metadata XML into modulestore.
Optimize importing many items of asset metadata by avoiding multiple
round-trips to MongoDB.
2014-12-16 15:42:38 -05:00
Greg Price
ee103659dc
Merge pull request #6257 from edx/mobile/video-pipeline-squashed
...
Add video upload feature to Studio
2014-12-15 15:18:52 -05:00
Greg Price
61cb51596d
Add front end for Studio video upload feature
...
Co-authored-by: Chris <crodriguez@edx.org >
Co-authored-by: Mark Hoeber <hoeber@edx.org >
2014-12-15 13:09:59 -05:00
Nimisha Asthagiri
0687a62a8f
Add back end for Studio video upload feature
...
This feature allows upload of video assets to S3. This requires that the
VIDEO_UPLOAD_PIPELINE setting be properly configured and that each
course be configured with a token issued by the media team for their
processing purposes (e.g. linking the video with a YouTube channel).
Co-authored-by: Greg Price <gprice@edx.org >
2014-12-15 13:09:59 -05:00
Adam Palay
5c1834b623
fix preview link generation for course reruns (PLAT-336)
2014-12-15 10:09:40 -05:00
Adam Palay
59343ed63f
fix preview link generation for course reruns (PLAT-336)
2014-12-15 09:21:38 -05:00
Calen Pennington
d919d2ae46
Teach LMS how to render XBlockAsides
...
[PLAT-217]
2014-12-13 08:26:28 -05:00
Calen Pennington
980f30c17f
Move lms.lib.xblock into lms.djangoapps.lms_xblock in preparation add database backed configuration to it
2014-12-12 21:45:21 -05:00
Christine Lytwynec
197f50b980
fix pep8 violation
2014-12-12 16:22:00 -05:00
David Baumgold
3bcf18dd59
Merge pull request #6153 from edx/db/update-pep8
...
Update pep8 to 1.5.7
2014-12-12 15:00:13 -05:00
David Baumgold
36e77c7463
Fixing pep8 issues
2014-12-11 13:04:49 -05:00
Jim
fb9320afc1
Limit Upload File Sizes to GridFS.
...
This commit puts a limit on the size of files that
course staff can upload to MongoDB. The limit is
enforced on the frontend in javascript as well
as backend via the /upload endpoint.
The limit is hard-coded in cms/envs/common.py and
may be changed according to the user's custom
needs.
If the user tries to upload a file that's too
large, an error message will pop up, with a
customizable url that pointing the user to an
external page with an alternate upload procedure.
This url is specified im cms/envs/common.py.
If not set, this url will not be displayed.
2014-12-09 13:30:45 -08:00
Andy Armstrong
2b0f959bd7
Merge pull request #5942 from edx/cohorted-courseware
...
Cohorted courseware
2014-12-08 14:38:30 -05:00
Don Mitchell
3e1e4a4b25
Merge pull request #6123 from mitocw/bdero/move-course-role-check-to-student
...
Moved has_course_access from CMS to student.auth (common)
2014-12-05 11:35:16 -05:00
Andy Armstrong
356b2335e9
Add base support for cohorted group configurations
...
TNL-649
2014-12-05 09:52:26 -05:00
Brandon DeRosier
046e295322
Change has_course_access definition and doc string
...
- has_course_access renamed to has_course_author_access for clarity
- Changed doc string to clearly state that it determines whether or not
a user has write access to a course
2014-12-02 22:08:58 -05:00
Brandon DeRosier
bdc64a7c70
Moved has_course_access from CMS to student.auth (common)
2014-12-02 19:36:38 -05:00
Sarina Canelake
520935209d
s/pylint: disable=W0402/pylint: disable=deprecated-module/
2014-12-01 11:22:12 -05:00
Sarina Canelake
13946fb844
s/pylint: disable=W0511/pylint: disable=fixme/
2014-12-01 11:22:12 -05:00
Sarina Canelake
5f723e8d3c
s/pylint: disable=W0703/pylint: disable=broad-except/
2014-12-01 11:22:11 -05:00
Sarina Canelake
f223ac8404
s/pylint: disable=W0401/pylint: disable=wildcard-import/
2014-12-01 11:22:11 -05:00
Sarina Canelake
c0556a7ef8
s/pylint: disable=W0613/pylint: disable=unused-argument/
2014-12-01 11:22:11 -05:00
Sarina Canelake
e0f1d3f3f3
s/pylint: disable=C0111/pylint: disable=missing-docstring/
2014-12-01 11:22:09 -05:00
zubair-arbi
9fd2b0013e
Merge pull request #6049 from Shrhawk/shr/bug/TNL-290-incorrect-message-duplicate-course
...
Modify error message
2014-11-26 19:03:52 +05:00
Syed Hassan Raza
50ee031151
Modify error message
2014-11-26 11:18:50 +05:00
Muhammad Ammar
6317347d3d
Merge pull request #5983 from edx/ammar/tnl-827
...
Remove ability to add new ORA 1 problems to courses
2014-11-25 19:23:12 +05:00