summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorequinox <equinox@diac24.net>2011-04-01 05:42:06 +0200
committerequinox <equinox@taifun.local.sublab.org>2011-04-01 05:42:28 +0200
commit49856f36361a71aba71c43c77cebb22340010181 (patch)
tree9d7d86422eac39c779a3bd01432586a0d01b7693 /static
initial checkin
Diffstat (limited to 'static')
-rw-r--r--static/app_subdap.pngbin0 -> 4579 bytes
-rw-r--r--static/app_wiki.pngbin0 -> 3778 bytes
-rw-r--r--static/details.js28
-rw-r--r--static/fire.pngbin0 -> 8663 bytes
-rw-r--r--static/layout.css92
-rw-r--r--static/ldap.pngbin0 -> 10942 bytes
-rw-r--r--static/logo.pngbin0 -> 28959 bytes
7 files changed, 120 insertions, 0 deletions
diff --git a/static/app_subdap.png b/static/app_subdap.png
new file mode 100644
index 0000000..6e985bc
--- /dev/null
+++ b/static/app_subdap.png
Binary files differ
diff --git a/static/app_wiki.png b/static/app_wiki.png
new file mode 100644
index 0000000..80c894b
--- /dev/null
+++ b/static/app_wiki.png
Binary files differ
diff --git a/static/details.js b/static/details.js
new file mode 100644
index 0000000..bd42bb4
--- /dev/null
+++ b/static/details.js
@@ -0,0 +1,28 @@
+
+function add(type) {
+ var node = document.getElementById("hperson");
+
+ ntr = document.createElement("tr");
+ ntd = document.createElement("td");
+ ntxt = document.createTextNode("x");
+ ntd.appendChild(ntxt);
+ ntr.appendChild(ntd);
+
+ node.parentNode.insertBefore(ntr, node);
+
+ window.alert('tag' + node.nodeName);
+ for (node = node.nextSibling; node != null; node = node.nextSibling) {
+ window.alert('tag' + node.nodeName);
+ if (node.nodeName != 'TR')
+ continue;
+ var td = node.getElementsByTagName("TD");
+ if (td == null)
+ continue;
+ var input = td[1].getElementsByTagName("INPUT");
+ if (input == null)
+ continue;
+ for (var k = 0; k < input.length; k++)
+ input[k].style.display = 'none';
+ }
+}
+
diff --git a/static/fire.png b/static/fire.png
new file mode 100644
index 0000000..4d9ff87
--- /dev/null
+++ b/static/fire.png
Binary files differ
diff --git a/static/layout.css b/static/layout.css
new file mode 100644
index 0000000..eb670f5
--- /dev/null
+++ b/static/layout.css
@@ -0,0 +1,92 @@
+body, table {
+ font-family:sans;
+ font-size:11pt;
+}
+body#formcont {
+ margin:auto;
+ text-align:center;
+}
+body#formcont < div {
+ display:inline-block;
+}
+img#logo {
+ display:inline-block;
+ margin:3em;
+ margin-right:0.5em;
+}
+body#formcont form,
+body#formcont div.cont {
+ display:inline-block;
+ vertical-align:top;
+ text-align:right;
+ border-left:1px solid #ccc;
+ margin:3em;
+ margin-left:0.5em;
+ padding:2em;
+ min-height:180px;
+}
+
+p.app {
+ border:1px solid #ccc;
+ padding:2pt;
+ padding-right:8pt;
+}
+p.app img {
+ display:inline-block;
+ margin:2px;
+ border:0px;
+ vertical-align:middle;
+}
+p.app a {
+ text-decoration:none;
+}
+
+a#create {
+ display:block;
+ font-size:75%;
+ text-align:right;
+ margin-bottom:1em;
+}
+b.error {
+ display:block;
+ color:red;
+ font-style:italic;
+ font-size:9pt;
+ margin-bottom:3pt;
+ max-width:15em;
+}
+div#creatpw {
+ margin-top:1em;
+}
+input[type=submit] {
+ margin-top:1em;
+}
+body#error img {
+ float:left;
+ margin:2em;
+ margin-right:0.5em;
+}
+body#error div#cont {
+ margin:2em;
+ margin-left:260px;
+ border-left:1px solid #ccc;
+ padding:1em;
+ padding-bottom:10em;
+}
+body#error h1 {
+ margin-top:1em;
+}
+body#error code {
+ font-size:10pt;
+}
+body#error pre {
+ max-width:45em;
+ font-size:8.5pt;
+ border:1px solid #d73f0b;
+ padding:1em;
+ background-color:#210;
+ color:#ffb100;
+}
+
+
+
diff --git a/static/ldap.png b/static/ldap.png
new file mode 100644
index 0000000..cc7559c
--- /dev/null
+++ b/static/ldap.png
Binary files differ
diff --git a/static/logo.png b/static/logo.png
new file mode 100644
index 0000000..e1968a0
--- /dev/null
+++ b/static/logo.png
Binary files differ