-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
187 lines (162 loc) · 7.47 KB
/
index.php
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
<!DOCTYPE html>
<html lang="de" ng-app="Vorlesungsplaner">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="Hier kann man einen Kalender für seine Vorlesungen an der FHWS generieren lassen.">
<meta name="author" content="Sebastian Kaim">
<!--<link rel="icon" href="../../favicon.ico">-->
<title>FHWS Vorlesungsplaner</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/app.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Vorlesungsplaner</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<form class="navbar-form navbar-right" ng-controller="searchCtrl">
<div class="form-group">
<input type="text" placeholder="Suchtext" class="form-control" ng-model="query" ng-change="broadcastQuery()"
data-toggle="tooltip" title="Tipp: Du kannst nach dem Vorlesungsnamen, Dozenten, Studiengang (auch mit Semester) und Fakultät suchen. Beispiel: 'Programmieren BIN2'">
</div>
<button type="submit" class="btn btn-success">Suchen</button>
</form>
</div><!--/.navbar-collapse -->
</div>
</nav>
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="jumbotron">
<div class="container" ng-controller="genCtrl">
<h1>Ausgewählte Vorlesungen</h1>
<p class="non-selected-note" ng-show="classes.length === 0 && loaded">Keine Vorlesungen ausgewählt.</p>
<p class="non-selected-note" ng-hide="loaded">Lade ...</p>
<div class="selected-showcase" ng-show="classes.length !== 0 && loaded">
<div class="alert alert-info">
<b>Tipp:</b> Du kannst diesen Link zu deinen Bookmarks hinzufügen oder teilen, um wieder zu deinem
persönlichem Plan zu kommen.
</div>
<div class="alert alert-warning" ng-show="hasBrokenClasses">
<b>Achtung:</b> Zu einigen Vorlesungen konnten keine Daten gefunden werden. Vermutlich ist dies
ein temporärer Fehler. Sollte dieser jedoch bestehen bleiben, gibt es entweder die Vorlesung nicht mehr,
die API hat einen dauerhaften, technischen Fehler oder die aufgerufene URL ist fehlerhaft.
</div>
<table class="table">
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">Dozent</th>
<th scope="col">Semester</th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
<tr ng-repeat="cl in classes" ng-class="{ 'broken-entry': cl.broken }">
<th scope="row">{{ cl.name }}</th>
<td>{{ cl.lecturerNamesToShow || "-" }}</td>
<td>{{ cl.studyGroupsToShow || "-" }}</td>
<td><button class="btn btn-warning" ng-click="unselect(cl.id);">Löschen</button> </td>
</tr>
</tbody>
</table>
<div class="well well-sm alert-success">
<div class="row">
<div class="col-sm-2 col-md-1 url-field-text">
ICS Link:
</div>
<div class="col-sm-6 col-md-7 col-lg-8">
<input class="url-field" type="text" readonly="readonly" ng-value="dllink" onclick="this.select()">
</div>
<div class="col-sm-4 col-md-4 col-lg-3">
<button
class="btn btn-success"
ng-click="copyLinkToClipboard()"
data-toggle="popover"
data-trigger="click"
data-placement="top"
data-content="Link kopiert!">Kopieren</button>
<a href="{{ dllink }}&download" target="_blank">
<button class="btn btn-success">Downloaden</button>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container" ng-controller="listCtrl">
<h1><span ng-hide="loaded"><img src="loading.gif" class="loading-spinner"> </span> Vorlesungen</h1>
<div class="loading-error-container" ng-hide="loadingErrors.length === 0">
<div class="alert alert-warning loading-error-alert" role="alert">
<b>Fehler!</b> Die Daten einiger Fakultäten konnten nur teilweise oder gar nicht geladen werden:
<ul>
<li ng-repeat="faculty in loadingErrors">{{ faculty }}</li>
</ul>
Sofern Sie Vorlesungen dieser Fakultät benötigen laden Sie bitte die Seite neu. Wenn der<br>
Fehler dauerhaft bestehen bleibt wenden Sie sich bitte an den Administrator.
</div>
</div>
<div class="well" ng-repeat="cl in classes | idNotInArray:ignored | classSearch:query">
<div class="row">
<div class="col-sm-12 col-md-8">
<button class="btn btn-success btn-add" ng-click="select(cl.id)">+</button>
{{ cl.name }} - {{ cl.studyGroupsToShow }}
</div>
<div class="col-sm-12 col-md-4">
<span class="lecturer-name">{{ cl.lecturerNamesToShow }}</span>
</div>
</div>
</div>
<hr>
<footer>
<p>© <?php
$year = date("Y");
if($year == "2018")
echo $year;
else
echo "2018-$year"
?> <a href="https://kaim-consulting.com/">Sebastian Kaim</a>
· Lizensiert unter der <a href="https://choosealicense.com/licenses/mit/">MIT Lizenz</a>
· Source auf <a href="https://github.com/Sebb767/Vorlesungsplaner">GitHub</a>
</p>
</footer>
</div> <!-- /container -->
<!-- core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script>
var sources = <?php
echo json_encode(require 'config.php');
?>;
</script>
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/angular.min.js"></script>
<script src="js/app.js"></script>
<script>
$(function () {
$('[data-toggle="popover"]').popover().click(function () {
setTimeout(function () {
$('[data-toggle="popover"]').popover('hide');
}, 2000);
});
$('[data-toggle="tooltip"]').tooltip({
placement: "bottom",
trigger: "focus"
});
});
</script>
</body>
</html>