1. 15 Apr, 2015 1 commit
  2. 14 Apr, 2015 11 commits
  3. 13 Apr, 2015 17 commits
  4. 12 Apr, 2015 1 commit
  5. 11 Apr, 2015 10 commits
    • Merge pull request #6636 from jazkarta/feature-pocs · 03c3bbb3
      MIT CCx (was Personal Online Courses)
      David Ormsbee committed
    • MIT: CCX. Code Quality Fixes · f9351ef8
      Remove duplicated course listings template code on the student dashboard.
      Carlos de la Guardia committed
    • MIT: CCX. Fixes for API changes that affect the binding of descriptors to student context. · 8ba74429
      fix for making sure all descriptor fields are always available for course descriptors despite module_class tricks
      
      add required fields to cache data for tests
      
      use a different strategy to mock up the get_children method
      cewing committed
    • MIT: CCX. Fixes for issues identified in code review · b315b4d7
      Switch to font awesome icons, to fix issue with toggling collapsible sections of the schedule in ccx coach dashboard
      
      Ensure access check takes place after descriptor is bound to the user, or field override checks will never happen
      Carlos de la Guardia committed
    • MIT: CCX. Code Quality fixes · 9ddee934
      add doc strings; fix pep8 warning
      address some minor issues brought up by the code review process
      Carlos de la Guardia committed
    • MIT: CCX. Fix issues identified in code review · b3da2a54
      Original Commit Messages:
      
      use edx's own get_parent method, rather than our own.
      
      add field to unique constraint to avoid MultipleObjectsReturned in case of multiple browser clicks on submit
      
      fix 0011 migration, inherit from TimeStampedField and add composite index (migration only)
      
      fix bug where adding an already registered user to a ccx would cause a crash due to an undefined variable
      
      add assertNumQueries tests to test modules where override field providers are used
      
      remove unnecessary teardown
      
      implement recommended style for checking empty list
      
      import utility methods rather than use duplicate code
      
      added comment explaining date conversion to string for json
      
      add logging for invalid users or emails when enrolling students
      
      add comment about xmodule user state
      
      avoid using get_or_create, which seems to be causing a race condition on schedule change save
      
      relocate badly placed edvent handlers to fix multiple submit problem
      Carlos de la Guardia committed
    • MIT: CCX. Use request thread local for access control decisions. · 34254246
      Use in tabs and other code to show or hide ccx coach tab depending on if the user has the coach role or not
      Carlos de la Guardia committed
    • MIT: CCX. Rename POC to CCX · 7f691e4a
      Final official name is Custom Courses for EdX (CCX), rename all code to remove previous name.
      
      Rename the FEATURE constant used to identify this feature
      
      Rename the middleware for the CCX change
      
      rename the constant used for storing the current poc id on the session.
      
      rename the _PocContext threading local
      
      rename the override provider in all places where it is referenced
      
      `PersonalOnlineCoursesOverrideProvider` -> `CustomCoursesForEdxOverrideProvider`
      
      generally rename symbols from overrides.py to replace `poc` with `ccx` where possible without changing model names or attributes
      
      rename more symbols from poc to ccx
      rename util functions from app utils module
      
      general symbol renaming poc -> ccx in views.py and related url changes
      
      Rename the coach role wherever it is used.
      
      reword poc_coach to ccx_coach
      
      UI rename
      
      replace POC with CCX globally
      
      template context variable renamed
      
      rename poc_ to ccx_ in urls and all related locations (views, js, scss etc)
      
      remove pocs migrations
      
      Final massive renaming, including models.  Re-built migration.
      
      cleaning up a few tailing references
      
      Fix reference typo in schedule template JS
      
      undo modifications made on the fly in test setup to ensure that our tests are properly isolated from the rest of the system tests.
      
      Fixes jazkarta/edx-platform#38
      
      Clean up some leftover strings and comments
      
      fixing more strings and comments in python files
      
      fix a naming error in the schedule tab that was causing problems in deleting courseware items.
      
      Fixes jazkarta/edx-platform#36
      
      updating tests and utility code to match changes in infrastructure from latest rebase
      cewing committed