Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 18 Next »

Status

  • Work Begun: 06/19/2006
  • Percent Complete: 85%

Requirements

  1. The Course Management Final Grading system must accept .csv files exported from Sakai with the following columns:
    1. Site Title: Unparsed label field.
    2. Provider ID: Parsed unique course identifier of the form (term_yearterm_idcrn).
    3. Student Name: Unparsed label field.
    4. Student ID: Parsed unique student identifier (kerberos_name).
    5. Course Grade: Parsed two-letter grading code (valid Banner gradecode).
  2. Accepted files must be parsed to resolve valid grading tuples (Course,Student,Grade) according to systemic grading rules.
  3. Grading tuples passing validation must be saved to the internal database.
  4. Instructors must be notified of invalid grading tuples and the cause.

File Format

The transitional .csv file will be required to have the following columns, in order:

Name

Data Type

Data Element

Processing

Site Title

char(19-21)

Title of Course Site

N/A

Course Site ID

char(99)

Sakai Site ID

N/A

Course Provider ID

char(14)

Unique Course ID

[term year][term_id][crn]

Student Name

char(???)

Student Name

N/A

StudentID

char(32)

Kerberos Name

[kerberos_name]

Grade

char(2)

Grade Code

[grade_code]

Interface Mockups

There are two ways we can approach the Final Grading interface for SmartSite Course Grading sheet uploads. We can either integrate the interface with the existing interface for download and upload of excel files, or we can build a separate interface. Providing one interface, while perhaps allowing some confusion, should present the most powerful set of features.

Code Changes

The following pages will be changed:

  • fgs_gradsheet_parse.cfm : Implement detection of Sakai format file and invocation of appropriate tag.
  • tag_fgs_gradesheet_parse_sakai.cfm : New implementation of csv parsing for Sakai file format.
  • No labels