summaryrefslogtreecommitdiffstats
path: root/website/new
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2008-05-05 16:18:06 -0400
committerMichael DeHaan <mdehaan@redhat.com>2008-05-05 16:18:06 -0400
commitd50b19eb2930d8aed1344442560c2e9382f11f13 (patch)
treee9ff7c0c205b61a9144893e595c3f3a51d57b05f /website/new
parent85c52572b2a74a1e7934feeca4e3dddafeebd7fd (diff)
downloadthird_party-func-d50b19eb2930d8aed1344442560c2e9382f11f13.tar.gz
third_party-func-d50b19eb2930d8aed1344442560c2e9382f11f13.tar.xz
third_party-func-d50b19eb2930d8aed1344442560c2e9382f11f13.zip
Update web stuff
Diffstat (limited to 'website/new')
-rw-r--r--website/new/about.html9
-rw-r--r--website/new/css/style.css282
-rw-r--r--website/new/favicon.icobin0 -> 318 bytes
-rw-r--r--website/new/footer.html35
-rw-r--r--website/new/img/current-page.pngbin0 -> 281 bytes
-rw-r--r--website/new/img/et_logo.pngbin0 -> 5194 bytes
-rw-r--r--website/new/img/footer_corner.pngbin0 -> 2359 bytes
-rw-r--r--website/new/img/footer_pattern.pngbin0 -> 817 bytes
-rw-r--r--website/new/img/logo-func.pngbin0 -> 6998 bytes
-rw-r--r--website/new/img/up-arrow.gifbin0 -> 913 bytes
-rwxr-xr-xwebsite/new/index.php43
-rwxr-xr-xwebsite/new/nav.php22
-rw-r--r--website/new/top.html3
13 files changed, 394 insertions, 0 deletions
diff --git a/website/new/about.html b/website/new/about.html
new file mode 100644
index 0000000..bca3172
--- /dev/null
+++ b/website/new/about.html
@@ -0,0 +1,9 @@
+<h2>About Func</h2>
+
+<p>Func is a secure, scriptable remote control framework and API. It is intended to replace SSH scripted infrastructure for a variety of datacenter automation tasks (such as taking hardware inventory, running queries, or executing remote commands) that are run against a large amount of systems at the same time. Func provides both a command line tool and a simple and powerful Python API. It is also intended to be very easy to integrate with your provisioning environment and tools like <A HREF="http://cobbler.et.redhat.com">Cobbler</A>.
+</p>
+
+<p>For documentation on Func, including download instructions and numerous examples, see <A HREF="https://fedorahosted.org/projects/Func">the Wiki</A>.
+</p>
+
+
diff --git a/website/new/css/style.css b/website/new/css/style.css
new file mode 100644
index 0000000..d7802a2
--- /dev/null
+++ b/website/new/css/style.css
@@ -0,0 +1,282 @@
+body, html {
+ background-color: white;
+ margin: 0;
+ padding: 0;
+}
+
+body {
+ min-width: 750px;
+}
+
+img {
+ border: none;
+}
+
+/* site-wide font specifications */
+
+body, ul, li, p, h1, h2, h3 {
+ font-family: "Liberation Sans", "Helvetica", "Luxi Sans", "Bitstream Vera Sans", sans-serif;
+ color: white;
+}
+
+ul {
+ list-style-type: square;
+}
+
+#sidebar {
+ height: auto;
+ float: left;
+}
+
+#sidebar p, #sidebar h2 {
+ margin-left: 24px;
+}
+
+ul#nav {
+ text-transform: uppercase;
+ letter-spacing: -.05em;
+ list-style-type: none;
+ font-family: "URW Gothic", "Liberation Sans", "Helvetica", "Luxi Sans", "Bitstream Vera Sans", sans-serif;
+}
+
+ul#nav li a {
+ color: #0460a3;
+ text-decoration: none;
+}
+
+ul#nav li#active {
+ list-style-image: url('../img/current-page.png');
+}
+
+ul#nav li#active a, ul#nav li#active a:link, ul#nav li#active a:visited {
+ color: #0460c3;
+}
+
+#wrap {
+ min-width: 750px;
+ margin: 0px 3%;
+ padding-top: 12px;
+}
+
+div#main {
+ border-top: 1px solid #0460a3;
+ border-bottom: 1px solid #0460a3;
+ overflow: auto;
+ padding: 20px 0px;
+}
+
+div#content {
+ width: 70%;
+ float: right;
+ padding: 0px 24px;
+}
+
+div#content h1 {
+ font-size: x-large;
+ font-weight: normal;
+}
+
+div#content h2 {
+ font-size: medium;
+ font-weight: 900;
+ text-transform: uppercase;
+}
+
+div#content h3 {
+ color: black;
+}
+
+
+div#content p {
+ font-size: small;
+ color: black;
+}
+
+a:link {
+ color: #0460a3;
+}
+
+a:hover {
+ color: white;
+}
+
+a:visited {
+ color: #0460a3;
+}
+
+
+#content p.metadata {
+ font-size: x-small;
+ color: white;
+}
+
+dt {
+ font-weight: 900;
+ margin-bottom: 1em;
+}
+
+dd {
+ color: #ccc;
+ margin-bottom: 2em;
+}
+
+.back-to-top {
+ background: url('../img/up-arrow.gif') left no-repeat;
+ padding-left: 20px;
+ font-size: small;
+}
+
+blockquote {
+ border-top: 1px solid #ccc;
+ border-bottom: 1px solid #ccc;
+ background: #444;
+ padding: 2px 4px;
+}
+
+p.note, p.tip {
+ margin: 16px 8px;
+ padding: 8px 12px;
+ color: white !important;
+ background-color: #666;
+ -moz-border-radius: 10px;
+}
+
+p.note strong, p.tip strong {
+ font-size: 120%;
+}
+
+tt {
+ font-size: 130%;
+ font-weight: 700;
+}
+
+#footer {
+ clear: both;
+ position: relative;
+ margin: 0px;
+ padding: 0px;
+ border: 0px;
+ width: 100%;
+ background: #757575;
+ height: 290px;
+}
+
+/* This is hidden from IE <= 6 because it can't do transparency */
+body > #footer {
+ background: #757575 url(img/footer_pattern.png) repeat-x;
+}
+
+#footer p {
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ margin: 0px;
+ border: 0px;
+ width: 220px;
+ text-align: center;
+}
+
+#footer p a img {
+ border: 0px;
+}
+
+#projects {
+ margin: 0px;
+ border: 0px;
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ width: 100%;
+}
+
+
+#projects dl {
+ margin: 0px;
+ border: 0px solid white;
+ height: 180px;
+ position: absolute;
+ top: 0px;
+ left: 0px;
+}
+/* This is hidden from IE <= 6 because it can't do transparency */
+head:first-child+body #projects dl {
+ background: url(img/footer_corner.png) no-repeat;
+}
+
+
+#projects #p1 {
+ margin-left: 25%;
+ width: 75%;
+}
+
+#projects #p2 {
+ margin-left: 50%;
+ width: 50%;
+}
+
+#projects #p3 {
+ margin-left: 75%;
+ width: 25%;
+}
+
+#projects dt, #projects dd {
+ padding: 0px;
+ margin: 0px;
+}
+
+#projects #p1 dt, #projects #p1 dd {
+ width: 33%;
+ }
+#projects #p2 dt, #projects #p2 dd {
+ width: 50%;
+}
+#projects #p3 dt, #projects #p3 dd {
+ width: 99%;
+}
+
+#projects {
+}
+
+#projects span {
+ font-size: 0.8em;
+ display: block;
+ padding-left: 1em;
+ padding-top: 0.5em;
+}
+
+#projects a {
+ font-size: 0.8em;
+ display: block;
+ padding-left: 0.8em;
+ padding-top: 1em;
+}
+
+#projects a {
+ color: white;
+ text-decoration: inherit;
+}
+
+#projects span {
+ color: #ccc;
+}
+
+
+.screenshot img {
+ border: 0px;
+}
+.screenshot {
+ padding: 1em;
+ background: #6a7178;
+ color: #dddddd;
+ text-align: center;
+ width: 70%;
+ margin-left: auto ! important;
+ margin-right: auto ! important;
+ margin-top: 1em;
+ margin-bottom: 3em;
+}
+
+.screenshot a {
+ color: inherit;
+}
+
diff --git a/website/new/favicon.ico b/website/new/favicon.ico
new file mode 100644
index 0000000..cbb6124
--- /dev/null
+++ b/website/new/favicon.ico
Binary files differ
diff --git a/website/new/footer.html b/website/new/footer.html
new file mode 100644
index 0000000..cf9dbbe
--- /dev/null
+++ b/website/new/footer.html
@@ -0,0 +1,35 @@
+ <div id="footer">
+ <div id="projects">
+ <dl id="p1">
+ <dt><a href="http://augeas.net/">Augeas</a></dt>
+ <dd><span>A configuration editing tool and API</span></dd>
+
+ <dt><a href="http://libvirt.org/">libvirt</a></dt>
+ <dd><span>The open source virtualization API</span></dd>
+ <dt><a href="https://fedorahosted.org/func">Func</A></dt>
+ <dd><span>A secure, scriptable remote control framework & API</span></dd>
+ </dl>
+ <dl id="p2">
+ <dt><a href="http://cobbler.et.redhat.com/">Cobbler</a></dt>
+ <dd><span>OS provisioning and profile management</span></dd>
+
+ <dt><a href="http://ovirt.org/">oVirt</a></dt>
+ <dd><span>Virtualization management across the data center</span></dd>
+ </dl>
+ <dl id="p3">
+ <dt><a href="http://freeipa.org/">FreeIPA</a></dt>
+ <dd><span>Identity, policy and audit management</span></dd>
+
+ <dt><a href="http://virt-manager.org/">Virtual Machine Manager</a></dt>
+ <dd><span>Virtualization management from the desktop</span></dd>
+
+ </dl>
+ </div>
+ <p id="et">
+ <a href="http://et.redhat.com/"><img src="./img/et_logo.png" alt="A Red Hat Emerging Technology Project"></a>
+ </p>
+
+ </div>
+
+
+
diff --git a/website/new/img/current-page.png b/website/new/img/current-page.png
new file mode 100644
index 0000000..0dc6ca1
--- /dev/null
+++ b/website/new/img/current-page.png
Binary files differ
diff --git a/website/new/img/et_logo.png b/website/new/img/et_logo.png
new file mode 100644
index 0000000..e094b59
--- /dev/null
+++ b/website/new/img/et_logo.png
Binary files differ
diff --git a/website/new/img/footer_corner.png b/website/new/img/footer_corner.png
new file mode 100644
index 0000000..090bfce
--- /dev/null
+++ b/website/new/img/footer_corner.png
Binary files differ
diff --git a/website/new/img/footer_pattern.png b/website/new/img/footer_pattern.png
new file mode 100644
index 0000000..647c52a
--- /dev/null
+++ b/website/new/img/footer_pattern.png
Binary files differ
diff --git a/website/new/img/logo-func.png b/website/new/img/logo-func.png
new file mode 100644
index 0000000..b5bca3d
--- /dev/null
+++ b/website/new/img/logo-func.png
Binary files differ
diff --git a/website/new/img/up-arrow.gif b/website/new/img/up-arrow.gif
new file mode 100644
index 0000000..6f6ffcd
--- /dev/null
+++ b/website/new/img/up-arrow.gif
Binary files differ
diff --git a/website/new/index.php b/website/new/index.php
new file mode 100755
index 0000000..9ea8a3b
--- /dev/null
+++ b/website/new/index.php
@@ -0,0 +1,43 @@
+<?php
+ $current_page = 'about';
+?>
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
+<meta name="keywords" content="func,linux,automation,ssh,ssl,xmlrpc,python,batch,redhat,fedora,centos,API" />
+<title>Func</title>
+
+ <link rel="stylesheet" href="./css/style.css" type="text/css" media="all" />
+</head>
+
+<body>
+<div id="wrap">
+<?php
+ include("top.html");
+?>
+
+<div id="main">
+ <div id="sidebar">
+<?php
+ include("nav.php");
+?>
+ </div>
+
+<div id="content">
+<?php
+ include("about.html");
+?>
+
+</div>
+</div>
+<div id="footer">
+<?php
+ include("footer.html");
+?>
+</div>
+</div>
+</body>
+</html>
diff --git a/website/new/nav.php b/website/new/nav.php
new file mode 100755
index 0000000..e7c673a
--- /dev/null
+++ b/website/new/nav.php
@@ -0,0 +1,22 @@
+<?php
+
+
+ switch ($current_page) {
+
+ case "about":
+ echo "<ul id=\"nav\">
+ <li id=\"active\"><a href=\"index.php\">About</a></li>
+ <li><a href=\"https://fedorahosted.org/projects/func\">Wiki</a></li>
+ </ul>";
+ break;
+ default:
+ echo " <ul id=\"nav\">
+ <li id=\"active\"><a href=\"index.php\">About</a></li>
+ <li><a href=\"http://hosted.fedoraproject.org/projects/func/\">Wiki</a></li>
+ </ul>";
+ break;
+
+}
+
+?>
+
diff --git a/website/new/top.html b/website/new/top.html
new file mode 100644
index 0000000..1c28fd6
--- /dev/null
+++ b/website/new/top.html
@@ -0,0 +1,3 @@
+<h1 id="masthead">
+<a href="index.php"><img src="img/logo-func.png" alt="Func" /></a>
+</h1>