[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 | |
---|
[12912] | 29 | .. note:: |
---|
| 30 | |
---|
| 31 | In the user handbook we do not describe how to browse the user |
---|
| 32 | interface of Kofa. The menu navigation should be |
---|
| 33 | self-explanatory and it's quite easy to follow the menu |
---|
| 34 | prompts. However, in the beginning of the development of Kofa, |
---|
| 35 | we used extensive doc tests which describe the navigation very |
---|
| 36 | well. Thus navigating through the academic section and other |
---|
| 37 | parts of Kofa with a test browser is perfectly described in |
---|
| 38 | :ref:`browser.txt <browser_txt>`. |
---|
| 39 | |
---|
[12906] | 40 | Faculties |
---|
| 41 | ========= |
---|
| 42 | |
---|
[12909] | 43 | Faculties are container objects of type `Faculty`. They have a |
---|
| 44 | `code`, a `title` and a `title_prefix` attribute. Furthermore, |
---|
| 45 | faculties and departments have a `longtitle` property which |
---|
| 46 | :py:func:`composes <waeup.kofa.university.faculty.longtitle>` and |
---|
| 47 | returns the full title as it appears in tables, in breadcrumbs and |
---|
| 48 | in many other places: |
---|
[12906] | 49 | |
---|
| 50 | `longtitle` = `title_prefix` + `title` (`code`) |
---|
| 51 | |
---|
[12909] | 52 | The following :ref:`local roles <local_roles>` can be assigned at |
---|
| 53 | faculty tree level: |
---|
[12906] | 54 | |
---|
| 55 | .. autoattribute:: waeup.kofa.university.faculty.Faculty.local_roles |
---|
| 56 | |
---|
[12912] | 57 | |
---|
[12906] | 58 | Departments |
---|
| 59 | =========== |
---|
| 60 | |
---|
[12909] | 61 | Additionally, each department object has the attributes |
---|
| 62 | `certificates` and `courses`. These attributes again are containers |
---|
| 63 | which hold certificate and course objects respectively. A |
---|
| 64 | :py:meth:`traverse |
---|
| 65 | <waeup.kofa.university.department.Department.traverse>` method leads |
---|
| 66 | the user to believe that `certificates` and `courses` are the ids of |
---|
| 67 | objects stored inside a department container. De facto they are not. |
---|
| 68 | However, it doesn't matter if we store a sub-object 'in' or 'at' a |
---|
| 69 | parent object. The result is exactly the same: :ref:`a hierarchical, |
---|
| 70 | treelike storage of objects <object_database>`. |
---|
[12906] | 71 | |
---|
[12909] | 72 | The following :ref:`local roles <local_roles>` can be assigned at |
---|
| 73 | department tree level: |
---|
[12906] | 74 | |
---|
| 75 | .. autoattribute:: waeup.kofa.university.department.Department.local_roles |
---|
| 76 | |
---|
[12912] | 77 | |
---|
[12906] | 78 | Courses |
---|
| 79 | ======= |
---|
| 80 | |
---|
[12909] | 81 | The `Course` class inherits from `grok.Model` which means it is |
---|
| 82 | designed as a pure model and not a container. Courses are tips of |
---|
| 83 | the database tree branches. Course objects contain information as |
---|
| 84 | they are offered by the department. In the base package these are: |
---|
| 85 | `code`, `title`, `credits`, `passmark`, `semester` and the boolean |
---|
| 86 | attribute `former_course`. Like all objects in the academic section, |
---|
| 87 | they also have a `longtitle` property. A former course is an |
---|
| 88 | archived course which had been offered in the past and is no longer |
---|
| 89 | part of any curriculum. |
---|
[12906] | 90 | |
---|
| 91 | .. note:: |
---|
| 92 | |
---|
[12910] | 93 | Only the manager of the department, which offers the course, |
---|
| 94 | decides how many credits can be earned, which pass mark must be |
---|
| 95 | achieved and in which semester the course can be taken. The |
---|
| 96 | manager cannot decide whether a course is mandatory or not, or |
---|
| 97 | at which study level the course has to be taken when studying a |
---|
| 98 | certain programme. This information is stored in |
---|
| 99 | `CertificateCourse` objects, see below. Therefore it does not |
---|
| 100 | make sense to speak e.g. of a 300 level course. Also course |
---|
| 101 | codes like ``AEE311``, which tell the student that the course |
---|
| 102 | is primarily intended for 300 level students, is somehow |
---|
| 103 | misleading. There might be other study programmes which |
---|
[12909] | 104 | recommend to take this course earlier or later. |
---|
[12906] | 105 | |
---|
[12910] | 106 | |
---|
[12909] | 107 | The following :ref:`local roles <local_roles>` can be assigned at |
---|
| 108 | course tree level: |
---|
[12906] | 109 | |
---|
| 110 | .. autoattribute:: waeup.kofa.university.course.Course.local_roles |
---|
| 111 | :noindex: |
---|
| 112 | |
---|
[12912] | 113 | |
---|
[12906] | 114 | Certificates |
---|
| 115 | ============ |
---|
| 116 | |
---|
[12909] | 117 | In Kofa, the terms 'certificate' and 'study programme' are used |
---|
| 118 | synonymously. A certificate object holds information about the study |
---|
| 119 | programme. Important data for further processing in Kofa are: the |
---|
| 120 | various school fees to be paid at certain levels, programme start |
---|
| 121 | and end level, the study mode and, last but not least, the |
---|
| 122 | application category to which the programme belongs. |
---|
[12906] | 123 | |
---|
[12909] | 124 | Certificates are containers which contain `CertificateCourse` |
---|
| 125 | objects. thatt means a certificate defines the curriculum, i.e. the |
---|
| 126 | list of course units which have to or can be taken within the |
---|
| 127 | programme. |
---|
[12906] | 128 | |
---|
[12909] | 129 | The following :ref:`local roles <local_roles>` can be assigned at |
---|
| 130 | certificate tree level: |
---|
[12906] | 131 | |
---|
| 132 | .. autoattribute:: waeup.kofa.university.certificate.Certificate.local_roles |
---|
| 133 | :noindex: |
---|
| 134 | |
---|
[12910] | 135 | .. warning:: |
---|
| 136 | |
---|
| 137 | Do not remove certificates without backing up the student data |
---|
| 138 | of this department. If a certificate or even one of its parent |
---|
| 139 | containers is removed, students studying this programme are |
---|
| 140 | 'homeless' and need to be re-allocated to another study |
---|
| 141 | programme. |
---|
| 142 | |
---|
[12912] | 143 | |
---|
[12906] | 144 | Certificate Courses |
---|
| 145 | =================== |
---|
| 146 | |
---|
[12909] | 147 | `CertificateCourse` objects point to `Course` objects which means |
---|
| 148 | they have a `course` attribute which is one of the course objects |
---|
| 149 | stored in the portal. If the course is removed, an event handler |
---|
| 150 | takes care of deleting also all referring certificate courses. The |
---|
| 151 | same happens if a course is beeing marked as former course (see |
---|
| 152 | above). A former course cannot be part of a curriculum. |
---|
[12906] | 153 | |
---|
[12909] | 154 | Certificate courses have to more attributes: `level` (integer) and |
---|
| 155 | `mandatory` (boolean). Simply put, certificate courses carry the |
---|
| 156 | information at which level a certain course can or has to be taken |
---|
| 157 | to meet the current curriculum. |
---|
[12906] | 158 | |
---|
[12908] | 159 | No local role can be assigned at certificate course tree level. |
---|