... | ... |
@@ -14,7 +14,7 @@ https://creativecommons.org/publicdomain/zero/1.0/ |
14 | 14 |
Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code. |
15 | 15 |
*/ |
16 | 16 |
?><!DOCTYPE html> |
17 |
-<html> |
|
17 |
+<html lang="de"> |
|
18 | 18 |
<head> |
19 | 19 |
|
20 | 20 |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
... | ... |
@@ -29,13 +29,13 @@ if ($title) { |
29 | 29 |
<link rel="shortcut icon" href="<?php echo $THEME_PATH; ?>favicon.ico" type="image/x-icon" /> |
30 | 30 |
<?php echo $html_header; ?> |
31 | 31 |
<link rel="stylesheet" href="<?php echo $THEME_PATH; ?>style.css" type="text/css" media="screen" title="Normal" /> |
32 |
-<script type="text/javascript" src="<?php echo $THEME_PATH; ?>script.js"></script> |
|
32 |
+<script src="<?php echo $THEME_PATH; ?>script.js"></script> |
|
33 | 33 |
</head> |
34 | 34 |
|
35 | 35 |
<body> |
36 | 36 |
<div><a href="#content" style="display: none;">Zum Inhalt</a></div> |
37 | 37 |
|
38 |
-<a href="javascript:void(0);" class="menuicon" id="showmenu" onclick="showMenu()"><img src="<?php echo $THEME_PATH; ?>images/bars.svg"><span id="showmenutext">Menü</span></a> |
|
38 |
+<a href="javascript:void(0);" class="menuicon" id="showmenu" onclick="showMenu()"><img src="<?php echo $THEME_PATH; ?>images/bars.svg" alt=""><span id="showmenutext">Menü</span></a> |
|
39 | 39 |
<a href="<?php echo $BASE_PATH; ?>" class="logo"><img src="<?php echo $THEME_PATH; ?>images/schokokeks.png" width="190" height="141" alt="schokokeks.org Hosting" /></a> |
40 | 40 |
<div class="sidebar" id="sidebar"> |
41 | 41 |
|
... | ... |
@@ -51,14 +51,14 @@ if ($title) { |
51 | 51 |
<a id="content" style="display: none"> </a> |
52 | 52 |
|
53 | 53 |
<?php |
54 |
-if ($messages) { |
|
55 |
- echo $messages; |
|
54 |
+if ($headline) { |
|
55 |
+ echo "<h3 class=\"headline\">$headline</h3>"; |
|
56 | 56 |
} |
57 | 57 |
?> |
58 | 58 |
|
59 | 59 |
<?php |
60 |
-if ($headline) { |
|
61 |
- echo "<h3 class=\"headline\">$headline</h3>"; |
|
60 |
+if ($messages) { |
|
61 |
+ echo $messages; |
|
62 | 62 |
} |
63 | 63 |
?> |
64 | 64 |
|
... | ... |
@@ -19,7 +19,7 @@ Nevertheless, in case you use a significant part of this code, we ask (but not r |
19 | 19 |
|
20 | 20 |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
21 | 21 |
|
22 |
-<?php |
|
22 |
+<?php |
|
23 | 23 |
if ($title) { |
24 | 24 |
echo "<title>$title - Administration</title>"; |
25 | 25 |
} else { |
... | ... |
@@ -56,7 +56,7 @@ if ($messages) { |
56 | 56 |
} |
57 | 57 |
?> |
58 | 58 |
|
59 |
-<?php |
|
59 |
+<?php |
|
60 | 60 |
if ($headline) { |
61 | 61 |
echo "<h3 class=\"headline\">$headline</h3>"; |
62 | 62 |
} |
... | ... |
@@ -8,7 +8,7 @@ Written 2008-2018 by schokokeks.org Hosting, namely |
8 | 8 |
|
9 | 9 |
To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. |
10 | 10 |
|
11 |
-You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see |
|
11 |
+You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see |
|
12 | 12 |
https://creativecommons.org/publicdomain/zero/1.0/ |
13 | 13 |
|
14 | 14 |
Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code. |
... | ... |
@@ -20,10 +20,11 @@ Nevertheless, in case you use a significant part of this code, we ask (but not r |
20 | 20 |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
21 | 21 |
|
22 | 22 |
<?php |
23 |
-if ($title) |
|
24 |
- echo "<title>$title - Administration</title>"; |
|
25 |
-else |
|
26 |
- echo "<title>Administration</title>"; |
|
23 |
+if ($title) { |
|
24 |
+ echo "<title>$title - Administration</title>"; |
|
25 |
+} else { |
|
26 |
+ echo "<title>Administration</title>"; |
|
27 |
+} |
|
27 | 28 |
?> |
28 | 29 |
<link rel="shortcut icon" href="<?php echo $THEME_PATH; ?>favicon.ico" type="image/x-icon" /> |
29 | 30 |
<?php echo $html_header; ?> |
... | ... |
@@ -51,13 +52,13 @@ else |
51 | 52 |
|
52 | 53 |
<?php |
53 | 54 |
if ($messages) { |
54 |
- echo $messages; |
|
55 |
+ echo $messages; |
|
55 | 56 |
} |
56 | 57 |
?> |
57 | 58 |
|
58 | 59 |
<?php |
59 | 60 |
if ($headline) { |
60 |
- echo "<h3 class=\"headline\">$headline</h3>"; |
|
61 |
+ echo "<h3 class=\"headline\">$headline</h3>"; |
|
61 | 62 |
} |
62 | 63 |
?> |
63 | 64 |
|
... | ... |
@@ -66,7 +67,7 @@ if ($headline) { |
66 | 67 |
<?php if ($footnotes) { |
67 | 68 |
echo '<div class="footnotes">'; |
68 | 69 |
foreach ($footnotes as $num => $explaination) { |
69 |
- echo '<p>'.str_repeat('*', $num+1).': '.$explaination.'</p>'; |
|
70 |
+ echo '<p>'.str_repeat('*', $num+1).': '.$explaination.'</p>'; |
|
70 | 71 |
} |
71 | 72 |
echo '</div>'; |
72 | 73 |
} ?> |
... | ... |
@@ -13,35 +13,37 @@ https://creativecommons.org/publicdomain/zero/1.0/ |
13 | 13 |
|
14 | 14 |
Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code. |
15 | 15 |
*/ |
16 |
-?><?xml version="1.0" encoding="utf-8"?> |
|
17 |
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" |
|
18 |
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
|
19 |
- |
|
20 |
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> |
|
16 |
+?><!DOCTYPE html> |
|
17 |
+<html> |
|
21 | 18 |
<head> |
22 | 19 |
|
20 |
+<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
21 |
+ |
|
23 | 22 |
<?php |
24 | 23 |
if ($title) |
25 | 24 |
echo "<title>$title - Administration</title>"; |
26 | 25 |
else |
27 | 26 |
echo "<title>Administration</title>"; |
28 | 27 |
?> |
29 |
-<!--<link rel="stylesheet" href="<?php echo $BASE_PATH; ?>css/default.css" type="text/css" media="screen" title="Normal" />--> |
|
30 | 28 |
<link rel="shortcut icon" href="<?php echo $THEME_PATH; ?>favicon.ico" type="image/x-icon" /> |
31 | 29 |
<?php echo $html_header; ?> |
32 | 30 |
<link rel="stylesheet" href="<?php echo $THEME_PATH; ?>style.css" type="text/css" media="screen" title="Normal" /> |
31 |
+<script type="text/javascript" src="<?php echo $THEME_PATH; ?>script.js"></script> |
|
33 | 32 |
</head> |
34 | 33 |
|
35 | 34 |
<body> |
36 | 35 |
<div><a href="#content" style="display: none;">Zum Inhalt</a></div> |
37 | 36 |
|
38 |
-<div class="menu"> |
|
39 |
-<a href="<?php echo $BASE_PATH; ?>"><img src="<?php echo $THEME_PATH; ?>images/schokokeks.png" width="190" height="141" alt="schokokeks.org Hosting" /></a> |
|
37 |
+<a href="javascript:void(0);" class="menuicon" id="showmenu" onclick="showMenu()"><img src="<?php echo $THEME_PATH; ?>images/bars.svg"><span id="showmenutext">Menü</span></a> |
|
38 |
+<a href="<?php echo $BASE_PATH; ?>" class="logo"><img src="<?php echo $THEME_PATH; ?>images/schokokeks.png" width="190" height="141" alt="schokokeks.org Hosting" /></a> |
|
39 |
+<div class="sidebar" id="sidebar"> |
|
40 | 40 |
|
41 |
+<div class="menu"> |
|
41 | 42 |
<?php echo $menu; ?> |
42 |
- |
|
43 |
+</div> |
|
44 |
+<div class="userinfo"> |
|
43 | 45 |
<?php echo $userinfo; ?> |
44 |
- |
|
46 |
+</div> |
|
45 | 47 |
</div> |
46 | 48 |
|
47 | 49 |
<div class="content"> |
... | ... |
@@ -64,7 +64,7 @@ if ($headline) { |
64 | 64 |
<?php if ($footnotes) { |
65 | 65 |
echo '<div class="footnotes">'; |
66 | 66 |
foreach ($footnotes as $num => $explaination) { |
67 |
- echo str_repeat('*', $num+1).': '.$explaination; |
|
67 |
+ echo '<p>'.str_repeat('*', $num+1).': '.$explaination.'</p>'; |
|
68 | 68 |
} |
69 | 69 |
echo '</div>'; |
70 | 70 |
} ?> |
... | ... |
@@ -61,6 +61,13 @@ if ($headline) { |
61 | 61 |
|
62 | 62 |
<?php echo $content; ?> |
63 | 63 |
|
64 |
+<?php if ($footnotes) { |
|
65 |
+ echo '<div class="footnotes">'; |
|
66 |
+ foreach ($footnotes as $num => $explaination) { |
|
67 |
+ echo str_repeat('*', $num+1).': '.$explaination; |
|
68 |
+ } |
|
69 |
+ echo '</div>'; |
|
70 |
+} ?> |
|
64 | 71 |
</div> |
65 | 72 |
<div class="foot"> |
66 | 73 |
<p>Sollten Sie auf dieser Administrations-Oberfläche ein Problem entdecken oder Hilfe benötigen, schreiben Sie bitte eine einfache eMail an <a href="mailto:root@schokokeks.org">root@schokokeks.org</a>. Unser <a href="https://schokokeks.org/kontakt">Impressum</a> finden Sie auf der <a href="https://schokokeks.org/">öffentlichen Seite</a>. Lizenzinformationen zu diesem Webinterface und verwendeten Rechten finden Sie <a href="<?php echo $BASE_PATH; ?>go/about/about">indem Sie hier klicken</a>.</p> |
... | ... |
@@ -9,7 +9,7 @@ Written 2008-2014 by schokokeks.org Hosting, namely |
9 | 9 |
To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. |
10 | 10 |
|
11 | 11 |
You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see |
12 |
-http://creativecommons.org/publicdomain/zero/1.0/ |
|
12 |
+https://creativecommons.org/publicdomain/zero/1.0/ |
|
13 | 13 |
|
14 | 14 |
Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code. |
15 | 15 |
*/ |
... | ... |
@@ -63,7 +63,7 @@ if ($headline) { |
63 | 63 |
|
64 | 64 |
</div> |
65 | 65 |
<div class="foot"> |
66 |
-<p>Sollten Sie auf dieser Administrations-Oberfläche ein Problem entdecken oder Hilfe benötigen, schreiben Sie bitte eine einfache eMail an <a href="mailto:root@schokokeks.org">root@schokokeks.org</a>. Unser <a href="http://www.schokokeks.org/kontakt">Impressum</a> finden Sie auf der <a href="http://www.schokokeks.org/">öffentlichen Seite</a>. Lizenzinformationen zu diesem Webinterface und verwendeten Rechten finden Sie <a href="<?php echo $BASE_PATH; ?>go/about/about">indem Sie hier klicken</a>.</p> |
|
66 |
+<p>Sollten Sie auf dieser Administrations-Oberfläche ein Problem entdecken oder Hilfe benötigen, schreiben Sie bitte eine einfache eMail an <a href="mailto:root@schokokeks.org">root@schokokeks.org</a>. Unser <a href="https://schokokeks.org/kontakt">Impressum</a> finden Sie auf der <a href="https://schokokeks.org/">öffentlichen Seite</a>. Lizenzinformationen zu diesem Webinterface und verwendeten Rechten finden Sie <a href="<?php echo $BASE_PATH; ?>go/about/about">indem Sie hier klicken</a>.</p> |
|
67 | 67 |
|
68 | 68 |
</div> |
69 | 69 |
|
... | ... |
@@ -27,9 +27,9 @@ else |
27 | 27 |
echo "<title>Administration</title>"; |
28 | 28 |
?> |
29 | 29 |
<!--<link rel="stylesheet" href="<?php echo $BASE_PATH; ?>css/default.css" type="text/css" media="screen" title="Normal" />--> |
30 |
-<link rel="stylesheet" href="<?php echo $THEME_PATH; ?>style.css" type="text/css" media="screen" title="Normal" /> |
|
31 | 30 |
<link rel="shortcut icon" href="<?php echo $THEME_PATH; ?>favicon.ico" type="image/x-icon" /> |
32 | 31 |
<?php echo $html_header; ?> |
32 |
+<link rel="stylesheet" href="<?php echo $THEME_PATH; ?>style.css" type="text/css" media="screen" title="Normal" /> |
|
33 | 33 |
</head> |
34 | 34 |
|
35 | 35 |
<body> |
... | ... |
@@ -55,7 +55,7 @@ if ($messages) { |
55 | 55 |
|
56 | 56 |
<?php |
57 | 57 |
if ($headline) { |
58 |
- echo "<h3>$headline</h3>"; |
|
58 |
+ echo "<h3 class=\"headline\">$headline</h3>"; |
|
59 | 59 |
} |
60 | 60 |
?> |
61 | 61 |
|
... | ... |
@@ -2,7 +2,7 @@ |
2 | 2 |
/* |
3 | 3 |
This file belongs to the Webinterface of schokokeks.org Hosting |
4 | 4 |
|
5 |
-Written 2008-2013 by schokokeks.org Hosting, namely |
|
5 |
+Written 2008-2014 by schokokeks.org Hosting, namely |
|
6 | 6 |
Bernd Wurst <bernd@schokokeks.org> |
7 | 7 |
Hanno Böck <hanno@schokokeks.org> |
8 | 8 |
|
... | ... |
@@ -63,7 +63,7 @@ if ($headline) { |
63 | 63 |
|
64 | 64 |
</div> |
65 | 65 |
<div class="foot"> |
66 |
-<p>Sollten Sie auf dieser Administrations-Oberfläche ein Problem entdecken oder Hilfe benötigen, schreiben Sie bitte eine einfache eMail an <a href="mailto:root@schokokeks.org">root@schokokeks.org</a>. Unser <a href="http://www.schokokeks.org/kontakt">Impressum</a> finden Sie auf der <a href="http://www.schokokeks.org/">öffentlichen Seite</a>. Lizenzinformationen zu diesem Webinterface und verwendeten Rechten finden Sie <a href="../../images/about.php">indem Sie hier klicken</a>.</p> |
|
66 |
+<p>Sollten Sie auf dieser Administrations-Oberfläche ein Problem entdecken oder Hilfe benötigen, schreiben Sie bitte eine einfache eMail an <a href="mailto:root@schokokeks.org">root@schokokeks.org</a>. Unser <a href="http://www.schokokeks.org/kontakt">Impressum</a> finden Sie auf der <a href="http://www.schokokeks.org/">öffentlichen Seite</a>. Lizenzinformationen zu diesem Webinterface und verwendeten Rechten finden Sie <a href="<?php echo $BASE_PATH; ?>go/about/about">indem Sie hier klicken</a>.</p> |
|
67 | 67 |
|
68 | 68 |
</div> |
69 | 69 |
|
... | ... |
@@ -1,4 +1,19 @@ |
1 |
-<?xml version="1.0" encoding="utf-8"?> |
|
1 |
+<?php |
|
2 |
+/* |
|
3 |
+This file belongs to the Webinterface of schokokeks.org Hosting |
|
4 |
+ |
|
5 |
+Written 2008-2012 by schokokeks.org Hosting, namely |
|
6 |
+ Bernd Wurst <bernd@schokokeks.org> |
|
7 |
+ Hanno Böck <hanno@schokokeks.org> |
|
8 |
+ |
|
9 |
+To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. |
|
10 |
+ |
|
11 |
+You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see |
|
12 |
+http://creativecommons.org/publicdomain/zero/1.0/ |
|
13 |
+ |
|
14 |
+Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code. |
|
15 |
+*/ |
|
16 |
+?><?xml version="1.0" encoding="utf-8"?> |
|
2 | 17 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" |
3 | 18 |
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
4 | 19 |
|
git-svn-id: https://svn.schokokeks.org/repos/tools/webinterface/trunk@1826 87cf0b9e-d624-0410-a070-f6ee81989793
... | ... |
@@ -11,7 +11,7 @@ if ($title) |
11 | 11 |
else |
12 | 12 |
echo "<title>Administration</title>"; |
13 | 13 |
?> |
14 |
-<link rel="stylesheet" href="<?php echo $BASE_PATH; ?>css/default.css" type="text/css" media="screen" title="Normal" /> |
|
14 |
+<!--<link rel="stylesheet" href="<?php echo $BASE_PATH; ?>css/default.css" type="text/css" media="screen" title="Normal" />--> |
|
15 | 15 |
<link rel="stylesheet" href="<?php echo $THEME_PATH; ?>style.css" type="text/css" media="screen" title="Normal" /> |
16 | 16 |
<link rel="shortcut icon" href="<?php echo $THEME_PATH; ?>favicon.ico" type="image/x-icon" /> |
17 | 17 |
<?php echo $html_header; ?> |
git-svn-id: https://svn.schokokeks.org/repos/tools/webinterface/trunk@1811 87cf0b9e-d624-0410-a070-f6ee81989793
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,57 @@ |
1 |
+<?xml version="1.0" encoding="utf-8"?> |
|
2 |
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" |
|
3 |
+ "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
|
4 |
+ |
|
5 |
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> |
|
6 |
+<head> |
|
7 |
+ |
|
8 |
+<?php |
|
9 |
+if ($title) |
|
10 |
+ echo "<title>$title - Administration</title>"; |
|
11 |
+else |
|
12 |
+ echo "<title>Administration</title>"; |
|
13 |
+?> |
|
14 |
+<link rel="stylesheet" href="<?php echo $BASE_PATH; ?>css/default.css" type="text/css" media="screen" title="Normal" /> |
|
15 |
+<link rel="stylesheet" href="<?php echo $THEME_PATH; ?>style.css" type="text/css" media="screen" title="Normal" /> |
|
16 |
+<link rel="shortcut icon" href="<?php echo $THEME_PATH; ?>favicon.ico" type="image/x-icon" /> |
|
17 |
+<?php echo $html_header; ?> |
|
18 |
+</head> |
|
19 |
+ |
|
20 |
+<body> |
|
21 |
+<div><a href="#content" style="display: none;">Zum Inhalt</a></div> |
|
22 |
+ |
|
23 |
+<div class="menu"> |
|
24 |
+<a href="<?php echo $BASE_PATH; ?>"><img src="<?php echo $THEME_PATH; ?>images/schokokeks.png" width="190" height="141" alt="schokokeks.org Hosting" /></a> |
|
25 |
+ |
|
26 |
+<?php echo $menu; ?> |
|
27 |
+ |
|
28 |
+<?php echo $userinfo; ?> |
|
29 |
+ |
|
30 |
+</div> |
|
31 |
+ |
|
32 |
+<div class="content"> |
|
33 |
+<a id="content" style="display: none"> </a> |
|
34 |
+ |
|
35 |
+<?php |
|
36 |
+if ($messages) { |
|
37 |
+ echo $messages; |
|
38 |
+} |
|
39 |
+?> |
|
40 |
+ |
|
41 |
+<?php |
|
42 |
+if ($headline) { |
|
43 |
+ echo "<h3>$headline</h3>"; |
|
44 |
+} |
|
45 |
+?> |
|
46 |
+ |
|
47 |
+<?php echo $content; ?> |
|
48 |
+ |
|
49 |
+</div> |
|
50 |
+<div class="foot"> |
|
51 |
+<p>Sollten Sie auf dieser Administrations-Oberfläche ein Problem entdecken oder Hilfe benötigen, schreiben Sie bitte eine einfache eMail an <a href="mailto:root@schokokeks.org">root@schokokeks.org</a>. Unser <a href="http://www.schokokeks.org/kontakt">Impressum</a> finden Sie auf der <a href="http://www.schokokeks.org/">öffentlichen Seite</a>. Lizenzinformationen zu diesem Webinterface und verwendeten Rechten finden Sie <a href="../../images/about.php">indem Sie hier klicken</a>.</p> |
|
52 |
+ |
|
53 |
+</div> |
|
54 |
+ |
|
55 |
+ |
|
56 |
+</body> |
|
57 |
+</html> |