CSC/ECE 517 Fall 2017/E1785 OSS project Beige: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
Line 16: Line 16:


=='''Solutions Implemented and Delivered'''==
=='''Solutions Implemented and Delivered'''==
**1.We get the hyperlink information of the submission.
1.We get the hyperlink information of the submission.
**2.Then comparing the hyperlink we get to the github format link.
2.Then comparing the hyperlink we get to the github format link.
**3.USing OAuth token to access the github repositpry and get the newest committing time.
3.USing OAuth token to access the github repositpry and get the newest committing time.


=='''Automated Testing using RSPEC'''==
=='''Automated Testing using RSPEC'''==

Revision as of 00:57, 28 October 2017

E1785.UI features related to revision time

This page provides a description of the Expertiza based OSS project.

About Expertiza

Expertiza is an open source project based on Ruby on Rails framework. Expertiza allows the instructor to create new assignments and customize new or existing assignments. It also allows the instructor to create a list of topics the students can sign up for. Students can form teams in Expertiza to work on various projects and assignments. Students can also peer review other students' submissions. Expertiza supports submission across various document types, including the URLs and wiki pages.

Problem Statement

  • The following problems need to be handled in this project:
    • The reviewer need to know which submission is the latest one so they could choose the right one to review in the next round.
    • The delay of the comfirm email to the reviewer about their submissions' revision.

Files modified in Current Project

  • dominant files were modified for the project:
    • add a method in model response to get a timestamp from github.
    • modifying corresponding part in the student_review/responses.html.erb to show the update information.

ResponseModel

This modle is responsible for students' review work of their peers.Specificly,the model is responsible for the review page which could show all the submissions of participants and reviewer could make their review for every submissions. What we do in this model is achiveing some functions and making coressponding changes to help the review page shows which submission was upgraded and the exactly time of the upgrade about the submission so that reviewer could know which submissions are updated since he/she submitted the review when the second review cycle starts.

Solutions Implemented and Delivered

1.We get the hyperlink information of the submission. 2.Then comparing the hyperlink we get to the github format link. 3.USing OAuth token to access the github repositpry and get the newest committing time.

Automated Testing using RSPEC

Testing from UI

References