Changes between Version 2 and Version 3 of AboutProject


Ignore:
Timestamp:
07/01/26 18:06:46 (4 days ago)
Author:
231082
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AboutProject

    v2 v3  
    1111== Short description:
    1212
    13 The Courses Management System (CMS) is a relational database platform designed to support the full academic lifecycle of a higher-education institution. The database contains data about members (students and teachers), academic programs and program enrollment history, courses and their editions, semester enrollments, exercises and exam assessments, grades, lecture materials, announcements, direct messaging between members, and surveys. Students may switch academic programs, with a full historical record of enrollments and disenrollments maintained. All student activity — submissions, exam attempts, grades, and survey responses — is restricted to courses the student is actually enrolled in. Two security mechanisms are built into the design: member passwords are stored as SCRAM-SHA-256 hashes, and semester enrollment records are protected by a blockchain-inspired SHA-256 hash chain that makes retroactive tampering detectable.
     13The Courses Management System (CMS) is a relational database platform designed to support the full academic lifecycle of a higher-education institution. The database contains data about members (students and teachers), academic programs and program enrollment history, courses and their editions, semester enrollments, exercises and exam assessments, grades, lecture materials, announcements, direct messaging between members, and surveys. Students may switch academic programs, with a full historical record of enrollments and disenrollments maintained. All student activity — submissions, exam attempts, grades, and survey responses — is restricted to courses the student is actually enrolled in.
    1414
    1515== Detailed description:
     
    1818Members of the system are either students or teachers. A student enrolls in an academic program, and that program defines a curriculum — a set of courses recommended across semesters, some mandatory and some elective. Students may switch academic programs over time; each enrollment and disenrollment is recorded with its respective date, and a student may even re-enroll in a previously attended program. When switching programs, courses that have been declared equivalent across programs are recognised, so that a student does not lose credit for passed work covered by an equivalent course in the new program.
    1919Courses may have prerequisites, forming a directed dependency graph across the catalog. Teachers are assigned to course editions, and students who qualify may serve as teaching assistants to teachers.
    20 Each semester, a student's enrollment is recorded as a Semester Enrollment, which lists the specific course editions the student is taking that term through individual Course Enrollment records. The Course Enrollment is the central integrity anchor of the system: a student can only submit exercises, attempt exams, receive a final grade, or respond to surveys for a course edition they are concretely enrolled in. Final grades are recorded per course enrollment. Assessment is handled through two mechanisms: exercises (assignments with deadlines, submissions, and grading) and exams (scheduled events composed of individual problems, supporting multiple attempts per student with per-problem answers and points).
     20Each semester, a student's enrollment is recorded as a Semester Enrollment, which lists the specific course editions the student is taking that term through individual Course Enrollment records. The Course Enrollment is the central linking entity of the system: a student can only submit exercises, attempt exams, receive a final grade, or respond to surveys for a course edition they are concretely enrolled in. Final grades are recorded per course enrollment. Assessment is handled through two mechanisms: exercises (assignments with deadlines, submissions, and grading) and exams (scheduled events composed of individual problems, supporting multiple attempts per student with per-problem answers and points).
    2121Course editions also host lecture materials, announcements (which support threaded replies), and surveys (with defined options and student responses). Members can exchange direct private messages with one another.
    22 Password security is implemented via SCRAM-SHA-256 hashing. Semester enrollment records are made tamper-evident through a blockchain-inspired hash chain: each record stores the SHA-256 hash of the previous enrollment record for the same student, chained with the current record's data. Both mechanisms are planned for detailed implementation in Phase 5 as the advanced topic.
    2322
    2423== Who is the database and project intended for?
     
    2726== What problems does it solve?
    2827
    29 Higher-education institutions typically rely on a fragmented set of tools for course scheduling, enrollment tracking, assessment, communication, and grading. The CMS consolidates all of these into one system, reducing administrative overhead and eliminating data inconsistencies that arise from maintaining multiple disconnected databases. It additionally handles the complexity of students switching academic programs, including the recognition of equivalent courses across programs — a scenario that manual processes typically handle inconsistently. The tamper-evident enrollment chain addresses the integrity concern of retroactive modification of official enrollment records.
     28Higher-education institutions typically rely on a fragmented set of tools for course scheduling, enrollment tracking, assessment, communication, and grading. The CMS consolidates all of these into one system, reducing administrative overhead and eliminating data inconsistencies that arise from maintaining multiple disconnected databases. It additionally handles the complexity of students switching academic programs, including the recognition of equivalent courses across programs — a scenario that manual processes typically handle inconsistently.
    3029
    3130== What types of users will have access?
     
    3534== How is it different from existing solutions?
    3635
    37 General-purpose learning management systems such as Moodle or Canvas cover some of the same ground, but they are not designed around a structured relational academic data model. They typically lack first-class support for academic program curricula with prerequisite chains, course equivalence across programs, per-semester enrollment records as auditable entities, or fine-grained exam modeling with per-problem attempts and answers. The CMS is designed from the ground up as a data-model-first system, with integrity and auditability as primary concerns, and with the blockchain-inspired enrollment chain as a novel addition not present in standard LMS platforms.
    38 
    39 == Is it a web, mobile, and/or desktop application?
    40 
    41 The intended application is a web-based platform, accessible from both desktop and mobile browsers.
    42 
     36General-purpose learning management systems such as Moodle or Canvas cover some of the same ground, but they are not designed around a structured relational academic data model. They typically lack first-class support for academic program curricula with prerequisite chains, course equivalence across programs, per-semester enrollment records as auditable entities, or fine-grained exam modeling with per-problem attempts and answers. The CMS is designed from the ground up as a data-model-first system, built around a comprehensive relational schema that captures the full academic lifecycle.