initial commit

This commit is contained in:
2017-10-10 14:30:28 +01:00
commit e1f112083d
49 changed files with 2710 additions and 0 deletions

4
template/form-group.html Normal file
View File

@@ -0,0 +1,4 @@
<label for="group">Selecteer groepen</label>
<select name="group[]" id="group" multiple="multiple">
{OPTIONS}
</select>

View File

@@ -0,0 +1,3 @@
<optgroup label="{LABEL}">
{OPTIONS}
</optgroup>

View File

@@ -0,0 +1 @@
<option value="{VALUE}"{SELECTED}>{TEXT}</option>

View File

@@ -0,0 +1 @@
<option value="{VALUE}">{TEXT}</option>

8
template/form-week.html Normal file
View File

@@ -0,0 +1,8 @@
<label for="week-from">Week vanaf</label>
<select name="week-from" id="week-from">
{OPTIONS-FROM}
</select>
<label for="week-to">Week tot</label>
<select name="week-to" id="week-to">
{OPTIONS-TO}
</select>

4
template/form-weeks.html Normal file
View File

@@ -0,0 +1,4 @@
<label for="weeks">Aantal weken</label>
<select name="weeks" id="weeks">
{OPTIONS}
</select>

31
template/form.html Normal file
View File

@@ -0,0 +1,31 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Gecombineerde roosters</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="css/redmond/jquery-ui-1.7.1.custom.css" type="text/css" />
<link rel="stylesheet" href="css/ui.slider.extras.css" type="text/css" />
<link rel="stylesheet" href="css/jquery.multiselect.css" type="text/css" />
<link href="style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.9.1/jquery-ui.min.js"></script>
<script type="text/javascript" src="js/selectToUISlider.jQuery.js"></script>
<script type="text/javascript" src="js/jquery.multiselect.js"></script>
<script type="text/javascript" src="js/form.js"></script>
</head>
<body>
<form action="" method="post">
<input type="hidden" name="action" value="view" />
<fieldset>
<legend>Instellingen</legend>
{WEEKS}
{WEEK}
{GROUP}
</fieldset>
<input type="submit" value="Roosters ophalen" />
</form>
</body>
</html>

View File

@@ -0,0 +1,4 @@
<tr>
<td class="strong">{NAME}</td>
<td class="type-{TYPE}">&nbsp;</td>
</tr>

11
template/legenda.html Normal file
View File

@@ -0,0 +1,11 @@
<table>
<caption>Legenda</caption>
<thead>
<tr>
<th>Type</th>
<th>Kleur</th>
</tr>
</thead>
<tbody>
{BODY} </tbody>
</table>

14
template/page.html Normal file
View File

@@ -0,0 +1,14 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Gecombineerde roosters</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<p><a href="">&lt;&lt; Terug naar formulier</a></p>
{LEGENDA}
{ROOSTER}
</body>
</html>

View File

@@ -0,0 +1 @@
<th class="bar">{GROUP}</th>

View File

@@ -0,0 +1 @@
<td class="type-{TYPE}{BORDER}" title="{TITLE}">&nbsp;</td>

View File

@@ -0,0 +1 @@
<th rowspan="{SPAN}" class="hour">{HOUR}</th>

View File

@@ -0,0 +1 @@
<th class="minute">{MINUTE}</th>

View File

@@ -0,0 +1,2 @@
<tr>
{HOUR}{MINUTE}{DATA} </tr>

22
template/rooster.html Normal file
View File

@@ -0,0 +1,22 @@
<table>
<caption>Rooster week <strong>{WEEK}</strong></caption>
<colgroup>
<col span="2" />
<col width="20" span="{COLUMNS}" />
</colgroup>
<thead>
<tr>
<th colspan="2" class="week"></th>
<th colspan="{GROUPS}">Ma<br/><small>({MONDAY})</small></th>
<th colspan="{GROUPS}">Di<br/><small>({TUESDAY})</small></th>
<th colspan="{GROUPS}">Wo<br/><small>({WEDNESDAY})</small></th>
<th colspan="{GROUPS}">Do<br/><small>({THURSDAY})</small></th>
<th colspan="{GROUPS}">Vr<br/><small>({FRIDAY})</small></th>
</tr>
<tr>
<th colspan="2" class="corner">&nbsp;</th>
{BAR} </tr>
</thead>
<tbody>
{BODY} </tbody>
</table>