- Apr 01, 2016
-
-
Jonathan Piacenti authored
-
- Mar 31, 2016
-
-
Sanford Student authored
-
Simon Chen authored
-
Diana Huang authored
Verified Track Cohorts through the admin interface.
-
Saleem Latif authored
-
- Mar 30, 2016
-
-
jsa authored
-
Andy Armstrong authored
This is a temporary workaround for code that needs access to these classes from the UI Toolkit but without using RequireJS.
-
J. Cliff Dyer authored
Available backends: * django-oauth-toolkit (DOT) * django-oauth2-provider (DOP) * Use provided client ID to select backend for * AccessToken requests * third party auth-token exchange * Create adapters to isolate library-dependent functionality * Handle django-oauth-toolkit tokens in edX DRF authenticator class MA-1998 MA-2000
-
J. Cliff Dyer authored
MA-1998 Install and configure django_oauth_toolkit to coexist with existing oauth libraries.
-
- Mar 29, 2016
-
-
Nimisha Asthagiri authored
MA-2152 MA-2153
-
- Mar 28, 2016
-
-
Zia Fazal authored
ziafazal: improvements need for multi-tenancy ziafazal: fixed broken tests ziafazal: no need to add setting in test.py ziafazal: added hostname validation ziafazal: changes after feedback from mattdrayer ziafazal: fixed branding and microsite broken tests ziafazal: make STATICFILES_DIRS to list ziafazal: added theme directory to mako lookup for tests ziafazal: added more protection in test_util saleem-latif: Enable SCSS Overrides for Comprehensive Theming saleem-latif: Incoporate feedback changes, Correct test failures, add tests and enable theming for django templates saleem-latif: Correct errors in python tests mattdrayer: Fix invalid release reference mattdrayer: Update django-wiki reference to latest release saleem-latif: Update Theme storages to work with Caching, Pipeline and collectstatic saleem-latif: Incorporate feedback changes mattdrayer: Pylint violation fix mattdrayer: Fix broken pavelib test
-
Peter Fogg authored
ECOM-3943
-
- Mar 25, 2016
-
-
Andy Armstrong authored
FEDX-121 The previous approach for handling NPM assets was to symlink them into the static directory. This appeared to cause trouble with the asset pipeline where the files in question were not installed and then old versions were picked up instead. This change instead copies NPM libraries to a new static directory so that the pipeline can consume them as with any other file. This new directory is added to .gitignore so that the files don't get accidentally checked in.
-
muzaffaryousaf authored
TNL-2444
-
- Mar 24, 2016
-
-
Toby Lawrence authored
-
Toby Lawrence authored
-
- Mar 23, 2016
-
-
Toby Lawrence authored
-
Toby Lawrence authored
Instead of attempting to derive the module portion of a RequireJS override strictly from the path to the JS file, we now use a dictionary where the module name must be explicitly specified. This allows us to compensate for files which do not follow a naming scheme that is compatible with RequireJS without having to normalize all files. This is extremely important when using third-party dependencies.
-
Ehtesham authored
HOSTNAME_MODULESTORE_DEFAULT_MAPPINGS,
-
- Mar 18, 2016
-
-
Renzo Lucioni authored
Resolves an issue preventing students in self-paced courses from seeing all available discussion modules. ECOM-3733.
-
- Mar 17, 2016
-
-
cahrens authored
This appears to be dead code.
-
- Mar 16, 2016
-
-
cahrens authored
-
Andy Armstrong authored
FEDX-105
-
Jesse Zoldak authored
This reverts commit 954dae58.
-
- Mar 14, 2016
-
-
Zia Fazal authored
ziafazal: improvements need for multi-tenancy ziafazal: fixed broken tests ziafazal: no need to add setting in test.py ziafazal: added hostname validation ziafazal: changes after feedback from mattdrayer ziafazal: fixed branding and microsite broken tests ziafazal: make STATICFILES_DIRS to list ziafazal: added theme directory to mako lookup for tests ziafazal: added more protection in test_util saleem-latif: Enable SCSS Overrides for Comprehensive Theming saleem-latif: Incoporate feedback changes, Correct test failures, add tests and enable theming for django templates saleem-latif: Correct errors in python tests mattdrayer: Fix invalid release reference mattdrayer: Update django-wiki reference to latest release
-
- Mar 11, 2016
-
-
Toby Lawrence authored
We had a mechanism to, at runtime, generate a RequireJS config that would override the base paths and, instead, use the hashed versions of assets for things that RequireJs was loading on demand. We've now moved that out of the coureware.html base template and into main.html so that more pages actually benefit from it. As well, we've added some of the heavy hitters for unhashed assets, namely moment.min.js, to these overrides which should allow better caching for end users. We'll be able to add more things to the override list in the future as they crop up.
-
- Mar 10, 2016
-
-
dylanrhodes authored
Conflicts: lms/djangoapps/instructor/tests/test_api.py lms/djangoapps/instructor/utils.py lms/djangoapps/instructor/views/api.py lms/djangoapps/instructor/views/api_urls.py lms/djangoapps/instructor/views/instructor_dashboard.py lms/djangoapps/instructor_task/api.py lms/djangoapps/instructor_task/tasks.py lms/djangoapps/instructor_task/tasks_helper.py lms/djangoapps/instructor_task/tests/test_api.py lms/djangoapps/instructor_task/tests/test_tasks.py lms/djangoapps/instructor_task/tests/test_tasks_helper.py lms/envs/aws.py lms/envs/common.py lms/static/coffee/src/instructor_dashboard/data_download.coffee lms/templates/instructor/instructor_dashboard_2/data_download.html
-
- Mar 09, 2016
-
-
erm0l0v authored
Move tests to one test class
-
- Mar 04, 2016
-
-
cahrens authored
TNL-4195
-
- Mar 03, 2016
-
-
Toby Lawrence authored
This is part of adding the ability to forcefully set headers through the middleware in addition to removing specific headers.
-
Dmitry Viskov authored
The problems render properly in IE 10 & 11 when using edX directly, or when opening LTI in a new tab. This is reproducible in Canvas and D2L
-
- Feb 29, 2016
-
-
Kevin Falcone authored
This abstract class contains most of the fields (aside from the id and foreign key to StudentModule that the subclasses need to manage). It also provides a get_history method that abstracts searching across multiple backends. Move router code to openedx/core We need to use it from cms and lms. Ensure aws_migrate can be used for migrating both the lms and cms. Handle queries directed to student_module_history vs default and the extra queries generated by Django 1.8 (SAVEPOINTS, etc). Additionally, flag testing classes as multi_db so that Django will flush the non-default database between unit tests. Further decouple the foreignkey relation between csm and csmhe When calling StudentModule().delete() Django will try to delete CSMHE objects, but naively does so in the database, not by consulting the database router. Instead, we disable django cascading deletes and listen for post_delete signals and clean up CSMHE by hand. Add feature flags for CSMHE One to turn it on/off so we can control the deploy. The other will control whether or not we read from two database tables or one when searching. Update tests to explicitly use this get_history method rather than looking directly into StudentModuleHistory or StudentModuleHistoryExtended. Inform lettuce to avoid the coursewarehistoryextended app Otherwise it fails when it can't find features/ in that app. Add Pg support, this is not tested automatically.
-
Calen Pennington authored
This is a clone (copy) of CSMH's declaration and methods with an added id of UnsignedBigInAutoField We should be able to delete the save_history code, but needs testing. Add error logging when capa failures happen Put StudentModuleHistory into its own database Bump out the primary key on CSMHE This gives us a gap to backfill as needed. Since the new table's pk is an unsigned bigint, even for people who don't consolidate CSMH into CSMHE, the lost rows are unlikely to matter. Remove StudentModuleHistory cleaner
-
- Feb 24, 2016
-
-
muhammad-ammar authored
TNL-3908
-
- Feb 19, 2016
-
-
zubair-arbi authored
-
- Feb 18, 2016
-
-
Nimisha Asthagiri authored
-
Nimisha Asthagiri authored
-
- Feb 12, 2016
-
-
jsa authored
ECOM-3638
-
- Feb 11, 2016
-
-
Andy Armstrong authored
The code isn't ready to start using AFontGarde from the Pattern Library yet, so I've reverted the code back to loading the copies from the vendor library.
-
- Feb 10, 2016
-
-
Peter Fogg authored
The previous logic was a convoluted way of doing the same thing, and has already led to one bug. Instead of hoping that the bugs are ironed out now and that future devs maintain this logic properly, let's just set a real cutoff date.
-