[12829] | 1 | .. _academic_section: |
---|
| 2 | |
---|
[12908] | 3 | Academic Section |
---|
[12863] | 4 | **************** |
---|
| 5 | |
---|
[12909] | 6 | Academic bodies of universities are hierarchically structured. A |
---|
| 7 | university contains faculties which again host departments. The |
---|
| 8 | latter offer courses (course units) and study programmes (courses of |
---|
| 9 | study). A course is series of classes or lessons on a particular |
---|
| 10 | subject. This can be a lecture, tutorial, seminar, practical work |
---|
| 11 | offered by a lecturer of the department over a period of an academic |
---|
| 12 | term. A course can also be only an exam at the end of an academic |
---|
| 13 | term. A study programme is defined by a set of course units to be |
---|
| 14 | taken at various programme levels and by an academic degree |
---|
| 15 | certificate, which is issued at the end of the programme. |
---|
| 16 | Information about universities, their study programmes, lecturers |
---|
| 17 | and courses can be found in the university prospectus. |
---|
[12863] | 18 | |
---|
[12909] | 19 | Kofa's academic section takes on the task of the university |
---|
| 20 | prospectus. It is build to disseminate information about faculties, |
---|
| 21 | departments, courses, study programmes and the sets of courses to be |
---|
| 22 | taken. The academic section reflects exactly the universities' |
---|
| 23 | hierarchical structure as described above. Technically speaking, the |
---|
| 24 | academic section is a container of type `FacultiesContainer` with id |
---|
| 25 | ``academics`` which contains faculty sub-containers. They again |
---|
| 26 | contain department sub-objects, nothing else. This leads to a |
---|
| 27 | :ref:`treelike storage of objects <object_database>`. |
---|
[12906] | 28 | |
---|
| 29 | Faculties |
---|
| 30 | ========= |
---|
| 31 | |
---|
[12909] | 32 | Faculties are container objects of type `Faculty`. They have a |
---|
| 33 | `code`, a `title` and a `title_prefix` attribute. Furthermore, |
---|
| 34 | faculties and departments have a `longtitle` property which |
---|
| 35 | :py:func:`composes <waeup.kofa.university.faculty.longtitle>` and |
---|
| 36 | returns the full title as it appears in tables, in breadcrumbs and |
---|
| 37 | in many other places: |
---|
[12906] | 38 | |
---|
| 39 | `longtitle` = `title_prefix` + `title` (`code`) |
---|
| 40 | |
---|
[12909] | 41 | The following :ref:`local roles <local_roles>` can be assigned at |
---|
| 42 | faculty tree level: |
---|
[12906] | 43 | |
---|
| 44 | .. autoattribute:: waeup.kofa.university.faculty.Faculty.local_roles |
---|
| 45 | |
---|
| 46 | Departments |
---|
| 47 | =========== |
---|
| 48 | |
---|
[12909] | 49 | Additionally, each department object has the attributes |
---|
| 50 | `certificates` and `courses`. These attributes again are containers |
---|
| 51 | which hold certificate and course objects respectively. A |
---|
| 52 | :py:meth:`traverse |
---|
| 53 | <waeup.kofa.university.department.Department.traverse>` method leads |
---|
| 54 | the user to believe that `certificates` and `courses` are the ids of |
---|
| 55 | objects stored inside a department container. De facto they are not. |
---|
| 56 | However, it doesn't matter if we store a sub-object 'in' or 'at' a |
---|
| 57 | parent object. The result is exactly the same: :ref:`a hierarchical, |
---|
| 58 | treelike storage of objects <object_database>`. |
---|
[12906] | 59 | |
---|
[12909] | 60 | The following :ref:`local roles <local_roles>` can be assigned at |
---|
| 61 | department tree level: |
---|
[12906] | 62 | |
---|
| 63 | .. autoattribute:: waeup.kofa.university.department.Department.local_roles |
---|
| 64 | |
---|
| 65 | Courses |
---|
| 66 | ======= |
---|
| 67 | |
---|
[12909] | 68 | The `Course` class inherits from `grok.Model` which means it is |
---|
| 69 | designed as a pure model and not a container. Courses are tips of |
---|
| 70 | the database tree branches. Course objects contain information as |
---|
| 71 | they are offered by the department. In the base package these are: |
---|
| 72 | `code`, `title`, `credits`, `passmark`, `semester` and the boolean |
---|
| 73 | attribute `former_course`. Like all objects in the academic section, |
---|
| 74 | they also have a `longtitle` property. A former course is an |
---|
| 75 | archived course which had been offered in the past and is no longer |
---|
| 76 | part of any curriculum. |
---|
[12906] | 77 | |
---|
| 78 | .. note:: |
---|
| 79 | |
---|
[12910] | 80 | Only the manager of the department, which offers the course, |
---|
| 81 | decides how many credits can be earned, which pass mark must be |
---|
| 82 | achieved and in which semester the course can be taken. The |
---|
| 83 | manager cannot decide whether a course is mandatory or not, or |
---|
| 84 | at which study level the course has to be taken when studying a |
---|
| 85 | certain programme. This information is stored in |
---|
| 86 | `CertificateCourse` objects, see below. Therefore it does not |
---|
| 87 | make sense to speak e.g. of a 300 level course. Also course |
---|
| 88 | codes like ``AEE311``, which tell the student that the course |
---|
| 89 | is primarily intended for 300 level students, is somehow |
---|
| 90 | misleading. There might be other study programmes which |
---|
[12909] | 91 | recommend to take this course earlier or later. |
---|
[12906] | 92 | |
---|
[12910] | 93 | |
---|
[12909] | 94 | The following :ref:`local roles <local_roles>` can be assigned at |
---|
| 95 | course tree level: |
---|
[12906] | 96 | |
---|
| 97 | .. autoattribute:: waeup.kofa.university.course.Course.local_roles |
---|
| 98 | :noindex: |
---|
| 99 | |
---|
| 100 | Certificates |
---|
| 101 | ============ |
---|
| 102 | |
---|
[12909] | 103 | In Kofa, the terms 'certificate' and 'study programme' are used |
---|
| 104 | synonymously. A certificate object holds information about the study |
---|
| 105 | programme. Important data for further processing in Kofa are: the |
---|
| 106 | various school fees to be paid at certain levels, programme start |
---|
| 107 | and end level, the study mode and, last but not least, the |
---|
| 108 | application category to which the programme belongs. |
---|
[12906] | 109 | |
---|
[12909] | 110 | Certificates are containers which contain `CertificateCourse` |
---|
| 111 | objects. thatt means a certificate defines the curriculum, i.e. the |
---|
| 112 | list of course units which have to or can be taken within the |
---|
| 113 | programme. |
---|
[12906] | 114 | |
---|
[12909] | 115 | The following :ref:`local roles <local_roles>` can be assigned at |
---|
| 116 | certificate tree level: |
---|
[12906] | 117 | |
---|
| 118 | .. autoattribute:: waeup.kofa.university.certificate.Certificate.local_roles |
---|
| 119 | :noindex: |
---|
| 120 | |
---|
[12910] | 121 | .. warning:: |
---|
| 122 | |
---|
| 123 | Do not remove certificates without backing up the student data |
---|
| 124 | of this department. If a certificate or even one of its parent |
---|
| 125 | containers is removed, students studying this programme are |
---|
| 126 | 'homeless' and need to be re-allocated to another study |
---|
| 127 | programme. |
---|
| 128 | |
---|
[12906] | 129 | Certificate Courses |
---|
| 130 | =================== |
---|
| 131 | |
---|
[12909] | 132 | `CertificateCourse` objects point to `Course` objects which means |
---|
| 133 | they have a `course` attribute which is one of the course objects |
---|
| 134 | stored in the portal. If the course is removed, an event handler |
---|
| 135 | takes care of deleting also all referring certificate courses. The |
---|
| 136 | same happens if a course is beeing marked as former course (see |
---|
| 137 | above). A former course cannot be part of a curriculum. |
---|
[12906] | 138 | |
---|
[12909] | 139 | Certificate courses have to more attributes: `level` (integer) and |
---|
| 140 | `mandatory` (boolean). Simply put, certificate courses carry the |
---|
| 141 | information at which level a certain course can or has to be taken |
---|
| 142 | to meet the current curriculum. |
---|
[12906] | 143 | |
---|
[12908] | 144 | No local role can be assigned at certificate course tree level. |
---|
| 145 | |
---|
| 146 | |
---|