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