1. 24 Jan, 2014 1 commit
  2. 23 Jan, 2014 2 commits
  3. 22 Jan, 2014 3 commits
  4. 21 Jan, 2014 1 commit
  5. 15 Jan, 2014 2 commits
  6. 14 Jan, 2014 1 commit
  7. 10 Jan, 2014 1 commit
  8. 08 Jan, 2014 2 commits
  9. 07 Jan, 2014 1 commit
  10. 06 Jan, 2014 1 commit
    • Add pagination to Studio's Files and Uploads page · f9c45586
      These changes implement STUD-813. The commit consists of the
      following logical changes:
       - a REST API has been implemented for a course's assets
       - the page itself now fetches the assets client-side
       - the Backbone.Paginator library is used to support pagination
       - the AssetCollection has been refactored to extend
         Backbone.Paginator.requestPager so that it can be paged
       - an abstract PagingView class has been added to generalize
         the communication with a paging REST API
       - the AssetsView has been reimplemented to extend PagingView
       - two new child views have been added:
         - PagingHeader: the paging controls above the list of assets
         - PagingFooter: the paging controls below the assets
      Andy Armstrong committed
  11. 24 Dec, 2013 2 commits
  12. 20 Dec, 2013 1 commit
    • Fix (re-implement) answer distribution report generation. · 0565fbbf
      This restores functionality that has been broken since the introduction of
      XModuleDescriptor/XModule proxying (part of the XBlock transition). It generates
      a CSV of all answers for all content of type "problem" in a given course, with a
      row per (problem part, answer). The format is:
      
      url_name, display name, answer id, answer, count
      
      Example values:
        url_name = "7f1b1523a55848cd9f5c93eb8cbabcf7"
        display name = "Problem 1: Something Hard"
        answer id = i4x-JediAcdmy-LTSB304-problem-7f1b1523a55848cd9f5c93eb8cbabcf7_2_1
        answer = "Use the Force"
        count = 1138
      
      Since it only grabs things of type "problem", it will not return results for
      things like self/peer-assessments. Any Loncapa problem types will show up (so
      multiple choice, text input, numeric, etc.)
      
      Instead of crawling the course tree and instantiating the appropriate CapaModule
      objects to grab state, this version draws directly from StudentModule. This lets
      us skip a lot of processing and most importantly lets us generate the answer
      distribution without causing side-effects (since XBlocks auto-save state). It
      also lets us take advantage of a read-replica database if one is available, to
      minimize locking concerns.
      
      There are minor changes to the legacy dashboard around CSV charset encoding and
      a change to OptionResponseXMLFactory to make it more unicode friendly. Answer
      distribution output is now also sorted, to group together answers for the same
      content piece.
      
      Note that this does not introduce celery into the process. Answer distributions
      are still only available for small courses.
      
      This was originally created to fix [LMS-922], but it also addresses [LMS-811] and
      possibly other areas in the legacy dashboard where CSV downloads break due to
      character encoding issues.
      David Ormsbee committed
  13. 19 Dec, 2013 2 commits
  14. 18 Dec, 2013 1 commit
  15. 17 Dec, 2013 5 commits
  16. 16 Dec, 2013 1 commit
  17. 11 Dec, 2013 1 commit
  18. 09 Dec, 2013 2 commits
  19. 06 Dec, 2013 1 commit
  20. 05 Dec, 2013 2 commits
    • Change forum role granted to staff on enrollment · 88610cb8
      This applies to global staff (is_staff=True), not course staff.
      Previously, staff were granted the Moderator role but not the Student
      role upon enrolling in a course. If the Moderator role were later
      revoked, then the user would have no role and be unable to post in the
      forums, which is confusing for the user. edX staff indicated they would
      prefer to not automatically receive the Moderator role, so the Student
      role is granted instead. Note that staff will still be able to grant
      themselves Moderator privileges through the instructor dashboard if
      they wish.
      
      JIRA: FOR-338
      Greg Price committed
  21. 03 Dec, 2013 1 commit
  22. 02 Dec, 2013 2 commits
  23. 26 Nov, 2013 2 commits
  24. 25 Nov, 2013 2 commits