1. 20 Aug, 2015 1 commit
    • In-course reverification access control · ec28a75f
      * Automatically create user partitions on course publish for each ICRV checkpoint.
      * Disable partitions for ICRV checkpoints that have been deleted.
      * Skip partitions that have been disabled when checking access.
      * Add verification access control UI to visibility settings.
      * Add verification access control UI to sequential and vertical settings.
      * Add partition scheme for verification partition groups.
      * Cache information used by verification partition scheme and invalidate the cache on update.
      * Add location parameter to UserPartition so the partition scheme can find the associated checkpoint.
      * Refactor GroupConfiguration to allow multiple user partitions.
      * Add special messaging to ICRV for students in the honor track.
      
      Authors: Zubair Arbi, Awais Qureshi, Aamir Khan, Will Daly
      zubair-arbi committed
  2. 06 Jul, 2015 1 commit
  3. 29 Jun, 2015 1 commit
  4. 02 Jun, 2015 1 commit
  5. 17 Mar, 2015 1 commit
  6. 09 Feb, 2015 3 commits
  7. 04 Feb, 2015 2 commits
    • Better support specifying of modulestore configuration in test cases · b353ed2e
      The existing pattern of using `override_settings(MODULESTORE=...)` prevented
      us from having more than one layer of subclassing in modulestore tests.
      
      In a structure like:
      
          @override_settings(MODULESTORE=store_a)
          class BaseTestCase(ModuleStoreTestCase):
              def setUp(self):
                  # use store
      
          @override_settings(MODULESTORE=store_b)
          class ChildTestCase(BaseTestCase):
              def setUp(self):
                  # use store
      
      In this case, the store actions performed in `BaseTestCase` on behalf of
      `ChildTestCase` would still use `store_a`, even though the `ChildTestCase`
      had specified to use `store_b`. This is because the `override_settings`
      decorator would be the innermost wrapper around the `BaseTestCase.setUp` method,
      no matter what `ChildTestCase` does.
      
      To remedy this, we move the call to `override_settings` into the
      `ModuleStoreTestCase.setUp` method, and use a cleanup to remove the override.
      Subclasses can just defined the `MODULESTORE` class attribute to specify which
      modulestore to use _for the entire `setUp` chain_.
      
      [PLAT-419]
      Calen Pennington committed
  8. 15 Jan, 2015 1 commit
  9. 10 Nov, 2014 1 commit
  10. 29 Sep, 2014 1 commit
  11. 16 Aug, 2014 1 commit
  12. 08 Aug, 2014 2 commits
  13. 07 Aug, 2014 2 commits
  14. 14 Jul, 2014 1 commit
  15. 10 Jul, 2014 1 commit
  16. 27 Jun, 2014 1 commit
  17. 29 May, 2014 1 commit
  18. 07 May, 2014 1 commit
    • Make course ids and usage ids opaque to LMS and Studio [partial commit] · 0d88379e
      This commit adds all of cms.
      
      These keys are now objects with a limited interface, and the particular
      internal representation is managed by the data storage layer (the
      modulestore).
      
      For the LMS, there should be no outward-facing changes to the system.
      The keys are, for now, a change to internal representation only. For
      Studio, the new serialized form of the keys is used in urls, to allow
      for further migration in the future.
      
      Co-Author: Andy Armstrong <andya@edx.org>
      Co-Author: Christina Roberts <christina@edx.org>
      Co-Author: David Baumgold <db@edx.org>
      Co-Author: Diana Huang <dkh@edx.org>
      Co-Author: Don Mitchell <dmitchell@edx.org>
      Co-Author: Julia Hansbrough <julia@edx.org>
      Co-Author: Nimisha Asthagiri <nasthagiri@edx.org>
      Co-Author: Sarina Canelake <sarina@edx.org>
      
      [LMS-2370]
      Calen Pennington committed
  19. 22 Jan, 2014 2 commits
  20. 11 Dec, 2013 1 commit
  21. 03 Dec, 2013 1 commit
  22. 22 Oct, 2013 1 commit
  23. 21 Aug, 2013 1 commit
    • Allow course image uploads in the settings page. · e4302e62
      Authors can upload an image (or choose an existing one) from the
      settings page, using the in-context uploader from PDF
      textbooks. Includes tests for backwards compatibility with XML courses
      -- they used a magic filename (images/course_image.jpg) which is
      mapped to a location in the Mongo contentstore.
      
      Still needs some UX work, though the backend plumbing is there.
      Peter Fogg committed
  24. 14 Aug, 2013 1 commit
  25. 13 Aug, 2013 1 commit
  26. 29 Jul, 2013 1 commit
  27. 06 Jun, 2013 4 commits
  28. 03 Jun, 2013 2 commits
  29. 23 May, 2013 1 commit
  30. 13 May, 2013 1 commit