-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabirechner.html
169 lines (150 loc) · 5.73 KB
/
abirechner.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<head>
<title>Abirechner</title>
<meta charset="UTF-8" />
<link rel="stylesheet" href="abirechner.css" type="text/css" />
<script type="application/javascript">
'use strict';
#include "util.js"
#include "constants.js"
#include "ids.js"
#include "terms.js"
#include "exams.js"
#include "ui.js"
#include "file.js"
</script>
</head>
<body onload="startNew();">
<h1>Abiturrechner</h1>
<div id="toolbar">
<input id="btn-newfile" type="button" value="Neue Datei" onclick="startNew();" />
<input id="btn-openfile" type="button" value="Datei Öffnen" onclick="document.getElementById('filechooser-open').click(); return false;" />
<input id="filechooser-open" type="file" onchange="openFile(this);" />
<input id="btn-savefile" type="button" value="Datei Speichern" onclick="saveFile();" />
</div>
<div id="main">
<h2>1. Halbjahresnoten</h2>
<div id="terms">
<div id="terms-errors" class="empty">
<h3 class="hdr-errorlist">Fehler</h3>
<div class="empty-message">(keine Fehler)</div>
<table>
<thead>
<tr>
<th>Fächergruppe</th>
<th>Regel</th>
<th>Fehler in den Fächern</th>
</tr>
</thead>
<tbody id="tbody-requirements-terms"></tbody>
</table>
</div>
<div id="terms-grades">
<table>
<colgroup>
<col id="col-terms-field">
<col id="col-terms-subject">
<col id="col-terms-terms" span="0">
<col id="col-terms-totalterms">
<col id="col-terms-totalpoints">
</colgroup>
<thead>
<tr>
<th rowspan="2">Aufgabenfeld</th>
<th rowspan="2">Fach</th>
<th colspan="0" id="hdr-terms-grades">Halbjahresnoten</th>
<th rowspan="2">Anzahl der eingebrachten Halbjahre</th>
<th rowspan="2">Punktsumme der eingebrachten Halbjahre</th>
</tr>
<tr id="hdrow-terms"></tr>
</thead>
<tbody id="tbody-grades-terms"></tbody>
<tfoot>
<tr>
<th id="lbl-terms-sum" colspan="2">
<span class="title">Summe</span>
</th>
<th id="total-terms">
<span id="total-terms-value"></span>
<span class="error-indicator"></span>
</th>
<th id="terms-total-points"></th>
</tr>
<tr>
<th id="lbl-terms-result" colspan="3">
<span class="title">Ergebnis</span>
<span class="math">
E<sub>I</sub>
<span class="operator">=</span>
40
<span class="operator">⋅</span>
<!-- ⋅ is multiplication, ∶ is division -->
<span class="fraction">
<div class="numerator">Punktsumme</div>
<div class="denominator">Anzahl eingebrachter Halbjahresnoten</div>
</span>
<span class="operator">≤</span>
600
</span>
</th>
<th id="result-1"></th>
</tr>
</tfoot>
</table>
</div>
</div>
<h2>2. Prüfungsnoten</h2>
<table id="exam-grades">
<colgroup>
<col id="col-exams-subject">
<col id="col-exams-written">
<col id="col-exams-oral">
<col id="col-exams-total">
</colgroup>
<thead>
<tr>
<th>Prüfungsfach</th>
<th>Schriftlich</th>
<th title="Mündliche Abiturprüfung oder zusätzliche mündliche Prüfung in einem schriftlichen Prüfungsfach nach §32 / §30 (4) a)">Mündlich</th>
<th>Punktsumme</th>
</tr>
</thead>
<tbody id="tbody-grades-exam"></tbody>
<tfoot>
<tr>
<th colspan="3">
<span class="title">Ergebnis</span>
<span class="math">
E<sub>II</sub>
<span class="operator">=</span>
Punktsumme
<span class="operator">≤</span>
300
</span>
</th>
<th id="result-2"></th>
</tr>
</tfoot>
</table>
<h2>3. Gesamtnote</h2>
<dl>
<dt>Gesamtpunktzahl</dt>
<dd id="overall-points"></dd>
<dt>Gesamtnote</dt>
<dd id="overall-grade"></dd>
<dt>Punkte bis zur nächsthöheren Note</dt>
<dd id="next-grade-points"></dd>
</dl>
</div>
<footer>
<p>
Abiturrechner nach §7 der
<a href="https://www.kmk.org/fileadmin/Dateien/doc/Bildung/Auslandsschulwesen/Abitur/2015_06_11-PO-Deutsches-Intern-Abitur.pdf"><em>Ordnung zur Erlangung der Allgemeinen Hochschulreife an Deutschen Schulen im Ausland: Beschluss der KMK vom 11.06.2015</em></a>.
</p>
<span id="version">2018-01-14</span>
<div id="copyright">© 2018 Timo Wilken</div>
</footer>
</body>
<!--
vim:textwidth=0:
-->