Squirrel18
4f12be0894
Files changed by modernize and new gitignore type file.
2018-06-25 17:27:51 -05:00
Troy Sankey
3172000aba
[edxnotes] use the correct url and update the API params
...
This is really two separate things:
1. Fix the notes retirement endpoint to generate the correct notes API
url "/api/v1/annotations/" rather than the nonexistent "/api/v1/".
2. Update the API params to use "user" rather than "user_id". This
depends on another PR in edx/edx-notes-api to make the corresponding
change on the API side. This is required because "user" is the
hard-coded key that the permissions class uses to check the JWT token
user.
2018-06-08 15:36:47 -04:00
Eric Fischer
247bb50ed2
s/django.core.urlresolvers/django.urls/g
...
Django 1.10 deprecation fix for Hackathon XIX
Addresses PLAT-1397
2018-06-05 13:59:09 -04:00
Troy Sankey
5227b4ee7b
use anonymous user ID when calling the edxnotes retirement endpoint
2018-06-01 13:26:37 -04:00
Troy Sankey
d33cf1d231
Notes retirement endpoint should require trailing slash
...
This is because we already require trailing slashes on most of the rest
of the retirement endpoints, which are called via slumber which appends
the trailing slash by default.
2018-06-01 11:10:45 -04:00
Troy Sankey
b2f4762dc4
Add API endpoint for retiring a user from EdxNotes (edx-notes-api)
...
This also creates an appropriate course-agnostic location for notes
APIs, under /api/edxnotes/v1/.
2018-05-30 12:46:07 -04:00
Eric Fischer
e18448e27d
Silence deprecation warnings
...
https://docs.djangoproject.com/en/1.11/releases/1.10/#using-user-is-authenticated-and-user-is-anonymous-as-methods
2018-05-02 10:03:50 -04:00
Gregory Martin
93c211a0b6
Add Notes Delete User API endpoint
2018-04-23 15:45:26 -04:00
Jeremy Bowman
5289c7e828
PLAT-1915 Stop using deprecated BaseException.message
2018-01-31 17:22:01 -05:00
John Eskew
f5a83d5d6c
Fix URLs that generate warnings in Django 1.10.
2017-12-05 16:46:33 -05:00
Ned Batchelder
e23e3a0486
Fix a number of unused-import pylint violations
2017-11-21 19:57:06 -05:00
Clinton Blackburn
3a005c492f
Disabled anonymous access for tabs that require enrollment
2017-11-14 08:00:16 -05:00
Clinton Blackburn
f1f5a7ddb3
Disabled edx-notes for anonymous users
2017-11-08 15:41:02 -05:00
bmedx
11a4030767
LMS urls cleanup for Django 1.11
...
- Remove usage of django.urls.patterns
- Change urls tuples to lists
- Make all string view names callables
- This is the second of several urls updates for LMS; a work in progress
2017-11-06 16:06:00 -05:00
John Eskew
040f5cc9c4
Move edxnotes model import down into method.
2017-10-05 11:12:53 -04:00
Jeff LaJoie
1c90220462
EDUCATOR-434: Extends Course Outline Unit settings to allow Group Access configuration
2017-07-19 14:17:38 -04:00
Andy Armstrong
79acb5c5be
Reorder LMS imports using isort
2017-06-11 21:48:06 -04:00
Andy Armstrong
da1ac4664e
Implement common redirect logic for all course tabs
...
LEARNER-76
2017-04-12 16:05:32 -04:00
Calen Pennington
bc20a37c2b
Simplify how shards are selected in CI
2016-08-03 16:23:02 -04:00
Renzo Lucioni
f6d7371dd1
Unify JWT generation code
...
These changes unify four different approaches to JWT creation, moving the core of the AccessTokenView to a general-purpose JwtBuilder class. This utility class defaults to using the system's JWT configuration, but it will allow overriding of the signing key and audience claim to support those clients which still require this. Part of ECOM-4566.
2016-07-07 16:38:39 -04:00
Nimisha Asthagiri
c6954902e3
Create courseware/views folder
2016-05-03 09:02:45 -04:00
Ben Patterson
b9558a90f1
Create a 3rd explicit shard for unit tests.
...
More accurately, this creates a 4th shard because the
last shard is always the default.
2016-04-28 10:09:32 -04:00
Ned Batchelder
2e1238b83e
Remove unused imports
2016-04-08 11:23:05 -04:00
J. Cliff Dyer
88fef8b2a4
Use renamed edx_oauth2_provider throughout.
...
MA-1998 Install and configure django_oauth_toolkit to coexist with
existing oauth libraries.
2016-03-30 14:21:17 +00:00
muzaffaryousaf
1ecba9a954
Setting request timeouts for edx notes.
...
TNL-2444
2016-03-25 16:26:35 +05:00
muzaffaryousaf
d43f33db31
Properly escape mixed content. text + html.
...
TNL-4243
2016-03-14 19:52:58 +05:00
muzaffaryousaf
b095651655
Escape html/js with other bug fixes .
...
TNL-4164
2016-03-08 18:07:52 +05:00
muhammad-ammar
d226b55b04
don't catch exception to raise http500
...
TNL-4043
2016-02-24 11:03:17 +05:00
muzaffaryousaf
ee637c58ea
Set notes page size to 25
...
TNL-4108
2016-02-24 11:03:17 +05:00
muhammad-ammar
ea89d2eea4
hide notes tab if feature flag is disabled or harvard notes enabled
...
TNL-2816
2016-02-24 11:03:16 +05:00
muhammad-ammar
ce57700d68
hide paging footer when only one page
2016-02-24 11:03:15 +05:00
muzaffaryousaf
bfa2ea5bd8
Remove sanitization from python & adding it to the templates.
...
TNL-4012
2016-02-24 11:03:15 +05:00
muhammad-ammar
13b14e0a60
Paginate edxnotes frontend
...
TNL-3908
2016-02-24 11:03:14 +05:00
muhammad-ammar
e2333214b1
paginate edxnotes views
...
TNL-3840
2016-02-24 11:03:14 +05:00
Robert Raposa
5e69224c32
Deprecate escaping in display_name_with_default
...
- Remove escaping in display_name_with_default
- Move escaped version to deprecated display_name_with_default_escaped
- Does not include any other changes to remove double-escaping
Thanks to agaylard who initiated this work:
https://github.com/edx/edx-platform/pull/10756
TNL-3425
2015-12-22 11:52:04 -05:00
Ned Batchelder
43ac38aa87
Add autospec to all mocks
2015-12-09 09:44:22 -05:00
Renzo Lucioni
70d57327eb
Add Programs tab to Studio
...
Extends the Programs ConfigurationModel, cleans up Programs-related utilities and corresponding tests, and corrects caching. Uses the Programs API to list programs within Studio. ECOM-2769.
2015-11-25 14:56:50 -05:00
Ned Batchelder
f5d0f3ff55
Remove useless pylint suppressions
2015-11-22 07:41:19 -05:00
zubair-arbi
7f96474d01
basic programs api setup and dashboard integration
...
ECOM-2578
2015-10-29 20:07:51 +05:00
Diana Huang
e6cbff47b7
Switch tabs to use ugettext_noop for titles.
2015-06-23 11:08:41 -04:00
Carlos de la Guardia
d56303dd0f
Only enable the OverrideFieldData when there are active overrides on a course.
2015-06-17 15:26:10 -04:00
Diana Huang
7461a2fd37
Refactor and merge CourseViewType and CourseTab.
...
TNL-2321
2015-06-08 15:18:39 -04:00
Daniel Friedman
58c3c0c2d7
Expose EDXNOTES_PUBLIC_API/EDXNOTES_INTERNAL_API
2015-06-03 12:09:45 -04:00
Diana Huang
dae137feaa
Convert all tabs to the new plugin framework.
2015-06-02 15:05:16 -04:00
Andy Armstrong
94e1c42314
Add extensible course view types for edX platform
2015-06-02 13:12:40 -04:00
Ben McMorran
f425027134
Merge pull request #8048 from edx/benmcmorran/search-tags
...
Enable HTML in note tags and support highlighting
2015-06-01 09:37:23 -04:00
Ben McMorran
6d2464a3ea
fixup! Enable HTML in note tags and support highlighting
2015-05-29 21:00:56 +00:00
cahrens
0c7af25c79
Update student notes eventing for tags.
...
TNL-2172
2015-05-19 13:14:10 -04:00
Ben McMorran
6ed752e5de
Enable HTML in note tags and support highlighting
2015-05-14 17:04:42 +00:00
Ned Batchelder
7d799e34f3
Remove unused imports
2015-03-17 07:10:31 -04:00