CSC/ECE 517 Spring 2015 E1529 GLDS: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
(Scope)
Line 18: Line 18:
==Scope==
==Scope==
The new system should be capable of
The new system should be capable of
*If one task is added to the delayed job queue, the asychronous Email should be updated or deleted automatically.
*If one task is added to the delayed job queue, the asychronous Email should be updated or deleted automatically.
*Add UI to visualize for the task in delayed job queue, instructors should be able to view tasks related to the assignments they have created.
*Add UI to visualize for the task in delayed job queue, instructors should be able to view tasks related to the assignments they have created.
*Keep log of the scheduled tasks when they are scheduled and done, record events in the same log as project [https://github.com/expertiza/expertiza/pull/462 E​1478].
*Keep log of the scheduled tasks when they are scheduled and done, record events in the same log as project [https://github.com/expertiza/expertiza/pull/462 E​1478].
Line 25: Line 25:
**instructors are able to schedule a specific time to send Emails to all the assignment participants who are still not in any team to find or form one.  
**instructors are able to schedule a specific time to send Emails to all the assignment participants who are still not in any team to find or form one.  
**(new) instructor should be able to schedule a time to drop all the topics which are held by 1 person teams.
**(new) instructor should be able to schedule a time to drop all the topics which are held by 1 person teams.
==Problem Description==
==Problem Description==



Revision as of 19:14, 31 March 2015

E1529. Extend the Email notification feature to scheduled tasks

Overview

Introduction to Expertiza

Expertiza is a web application developed by Ruby on Rails framework. It serves as a peer review system for professors and students at NC State and some other colleges and universities<ref>Expertiza. Github</ref>. Students can submit different assignments and peer-review reusable learning objects (articles, code, web sites, etc). It is also a powerful tool for professor to manage courses and assignments and so on. The latest "Rails 4" branch of Expertiza, although combined with various enhancements from the past two years, is seriously broken, from data migration to key feature implementation. Part of the reason has been the design strategy and code changes by various teams.

Email notification feature to scheduled tasks

This is a feature that has already been partially implemented in Expertiza E1451 implemented both sychronous and asychoronous mailers. Sychronous Emails refer to the Emails sent immediatly after an event (e.g. when student receive a peer-review). Asychoronous Email we implemented by the Gem "delayed job” and when a task (asychronous Email) is added to the delayed queue, a count-down number of minutes needs to be specified.
Our team aim to extend this project. This wiki page documents the changes our team has made and provided a guideline for future development and enhancement.

Documentation

E1451. ​Create Mailers for All Email Messages github wiki report (Merged in E1483)

Scope

The new system should be capable of

  • If one task is added to the delayed job queue, the asychronous Email should be updated or deleted automatically.
  • Add UI to visualize for the task in delayed job queue, instructors should be able to view tasks related to the assignments they have created.
  • Keep log of the scheduled tasks when they are scheduled and done, record events in the same log as project E​1478.
  • [optional] support more scheduled task:
    • instructors are able to schedule the time to drop all the outstanding reviews (reviews which has not been started)
    • instructors are able to schedule a specific time to send Emails to all the assignment participants who are still not in any team to find or form one.
    • (new) instructor should be able to schedule a time to drop all the topics which are held by 1 person teams.

Problem Description

System Design

References

<references/>