-
Notifications
You must be signed in to change notification settings - Fork 31
/
index.html
217 lines (183 loc) · 7 KB
/
index.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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
<!DOCTYPE html>
<html lang="pl-PL" prefix="og: https://ogp.me/ns#">
<head>
<title>Rozwiązania do egzaminów EE09 i E14</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Rozwiązania testów i arkuszy egzaminów praktycznych EE.09 i E.14. Znajdziesz i pobierzesz tutaj wszystkie rozwiązania arkuszy z poprzednich lat."
/>
<meta
name="keywords"
content="ee09, ee09 odpowiedzi, ee09 rozwiązania, ee09 praktyczny, ee09 blogspot, ee09 arkusz, ee09 pdf, e14, e14 odpowiedzi, e14 rozwiązania, e14 blogspot, e14 kwalifikacja, e14 arkusze, e14 praktyczny, e14 pdf, technik informatyk"
/>
<meta name="robots" content="index, follow" />
<meta name="googlebot" content="index, follow" />
<meta name="author" content="Jan Kupczyk" />
<meta property="og:locale" content="pl_PL" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Rozwiązania do egzaminów EE09 i E14" />
<meta
property="og:site_name"
content="Rozwiązania do egzaminów EE09 i E14"
/>
<meta property="og:url" content="https://jankupczyk.github.io/EE-09/" />
<meta
property="og:description"
content="Rozwiązania testów i arkuszy egzaminów praktycznych EE.09 i E.14. Znajdziesz tutaj wszystkie rozwiązania arkuszy z poprzednich lat."
/>
<meta property="og:image" content="" />
<link rel="shortcut icon" type="image/png" sizes="" href="📚" />
<link rel="favicon" type="image/png" sizes="" href="📚" />
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>📚</text></svg>"
/>
<link rel="icon" type="image/png" sizes="16x16" href="📚" />
<link rel="icon" type="image/png" sizes="32x32" href="📚" />
<link rel="icon" type="image/png" sizes="192x192" href="📚" />
<link rel="icon" type="image/png" sizes="512x512" href="📚" />
<link rel="apple-touch-icon" href="📚" />
<link rel="stylesheet" href="src/css/style.css" type="text/css" />
<script src="https://use.fontawesome.com/releases/v5.15.2/js/all.js"></script>
</head>
<body>
<div class="form-control-container">
<input
type="text"
id="inputed"
class="form-control"
placeholder="Search in 63 exams or jump to..."
autocomplete="off"
value
data-throttled-autosubmit
accept-charset="utf-8"
/>
</div>
<div class="version-info"></div>
<main class="container">
<table class="table" id="egzaminyTable">
<thead>
<th>
<a href="javascript:SortTable(0)">year</a>
<span id="sortIndicator0"></span>
</th>
<th>
<a href="javascript:SortTable(1)">type</a>
<span id="sortIndicator1"></span>
</th>
<th>
<a href="javascript:SortTable(1)">title</a>
<span id="sortIndicator2"></span>
</th>
<th>
<a href="javascript:SortTable(3, 'T')">lang</a>
<span id="sortIndicator3"></span>
</th>
<th>
<a href="javascript:SortTable(3, 'T')">status</a>
<span id="sortIndicator4"></span>
</th>
<th>download (.zip)</th>
<th>download (.pdf)</th>
</thead>
<tbody id="tableBody"></tbody>
</table>
</main>
<div class="ToolTip"></div>
<div id="noRowsFound" class="no-rows-found"><b>No rows found.</b></div>
<footer>
<div class="footer-container">
<div class="footer-box">
</div>
</div>
<div class="author">
<span>This website is not affiliated with cke.gov.pl.</span>
<p>
© 2019
<span
><a
target="_blank"
rel="noopener noreferrer nofollw"
class="noopener-noreferrer footer"
>Jan Kupczyk</a
>.</span
>
<span> All rights reserved.</span>
</p>
</div>
</footer>
<script src="src/js/ToolTip.js"></script>
<script>
const table = document.getElementById("egzaminyTable");
const tableBody = document.getElementById("tableBody");
const htmlReg = /<\/?[a-z][\s\S]*>/i;
function createElement(tag, params = {}) {
const element = document.createElement(tag);
const { dataset } = params;
for (const [key, value] of Object.entries(params)) {
element[key] = value;
}
for (const [key, value] of Object.entries(dataset)) {
element.dataset[key] = dataset[key];
}
return element;
}
function addRow(rowData) {
const tr = document.createElement("tr");
const keys = Object.keys(rowData);
const { year, type, title, lang, status, download, pdf } = rowData;
keys.forEach((key, _) => {
let content = rowData[key];
if (key === "status") {
content =
rowData[key] === "COMPLTD"
? `<i class="fas fa-check"></i>`
: `<i class="fas fa-times"></i>`;
}
tr.append(
createElement("td", {
dataset: {
label: key.toUpperCase(),
},
innerHTML: content,
})
);
});
document.getElementById("tableBody").appendChild(tr);
}
async function setupTable() {
try {
const data = await fetch("data.json").then((resp) => resp.json());
data.forEach((element, idx) => {
addRow(element);
});
setToolTip();
return data;
} catch (err) {
console.error(err);
}
}
setupTable();
</script>
<script src="src/js/Search.js"></script>
<script src="src/js/SortTable.js"></script>
<script src="src/js/appversion.js"></script>
</body>
</html>
<!--
# AUTHOR: Jan Kupczyk
# GITHUB: https://github.com/jankupczyk
# LICENSE: MIT
# FINALLY:
Rozwiązania do starych arkuszy egzaminacyjnych (EE09, E14)
To repozytorium zawiera rozwiązane arkusze egzaminacyjne z egzaminów praktycznych EE09, E14.
Rozwiązane arkusze znajdują się pod tym linkiem - https://jankupczyk.github.io/EE-09/
#-----------------------------------------------------------------------------------------------#
Please do not misuse this website, if you want to share it it would be nice if you tag me.
Solutions for old exams (EE09, E14)
To the solution repository resolved exam sheets for EE09, E14 practice exams.
Solved sheets can be found at this link - https://jankupczyk.github.io/EE-09/
-->