import invirt.mit.edu web page and CSS
authorGreg Price <price@mit.edu>
Fri, 12 Dec 2008 06:36:11 +0000 (01:36 -0500)
committerGreg Price <price@mit.edu>
Fri, 12 Dec 2008 06:36:11 +0000 (01:36 -0500)
svn path=/trunk/scripts/invirt.mit.edu/; revision=1846

index.html [new file with mode: 0644]
static/layout.css [new file with mode: 0644]
static/style.css [new file with mode: 0644]

diff --git a/index.html b/index.html
new file mode 100644 (file)
index 0000000..156e0a0
--- /dev/null
@@ -0,0 +1,50 @@
+<!DOCTYPE html
+PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html>
+<head><title>Invirt</title>
+  <link href="static/favicon.ico" type="image/x-icon" rel="shortcut icon">
+  <link rel="stylesheet" href="static/style.css" type="text/css" />
+  <link rel="stylesheet" href="static/layout.css" type="text/css" media="screen" />
+</head>
+<body id="body">
+
+<h1>Invirt</h1>
+
+<p>Invirt is free software for managing Xen virtual machines.  Invirt
+powers the <a href="http://xvm.mit.edu/">xvm.mit.edu</a> service at
+MIT.</p>
+
+<h2>Invirt Features</h2>
+<ul>
+<li>Management of VMs over the Web</li>
+<li>Both hardware virtualization and paravirtualization</li>
+<li>Installation of any OS with a boot CD</li>
+<li>A three-minute automated Debian and Ubuntu installer</li>
+<li>Secure VNC console access via a Java applet</li>
+<li>Secure serial console access over SSH</li>
+<li>Authentication by Kerberos and by client Web certs or SPNEGO</li>
+<li>Authorization lists by AFS (optional)</li>
+</ul>
+
+<h2>Getting Invirt</h2>
+
+<p>Invirt is free software under the GPL.  The source repository is in
+Subversion:</p>
+  <blockquote><tt>$ svn co svn://invirt.mit.edu/trunk invirt</tt></blockquote>
+
+<p>If you're interested in running Invirt in your own environment,
+feel free to contact us at <tt>invirt@mit.edu</tt>.  It's not yet
+straightforward to install; we're working on it, and we're happy
+to help you set it up.</p>
+
+<p>Invirt is based at <a href="http://sipb.mit.edu/">SIPB</a>, the
+student computing group at MIT.  We welcome new contributors; check
+out our <a href="http://bugs.launchpad.net/invirt/+bugs">bug
+tracker</a> for an idea of what we're working on now.</p>
+
+<p>Questions welcome
+at <a href="mailto:invirt@mit.edu">invirt@mit.edu</a>.</p>
+
+</body>
+</html>
diff --git a/static/layout.css b/static/layout.css
new file mode 100644 (file)
index 0000000..b28b55b
--- /dev/null
@@ -0,0 +1,26 @@
+/*
+  Good layout ideas stolen from Debathena.
+  Hey, we use some different fonts (in style.css.)
+  And the background color is unmistakably different.
+  Some other things are tweaked too.
+*/
+
+/* This file contains screen-only layout declarations that won't be
+   used for printing. */
+
+/* Make <body /> show up as a centered white box with rounded border,
+   over the darker enclosing <html />. */
+html {
+    padding: .75em;
+    background: #399;
+}
+body {
+    position: relative;
+    margin: 0 auto;
+    padding: 1.2em;
+    border: 1px solid black;
+    -moz-border-radius: .4em;
+    -webkit-border-radius: .4em;
+    border-radius: .4em;
+    background: #fff;
+}
diff --git a/static/style.css b/static/style.css
new file mode 100644 (file)
index 0000000..b75a026
--- /dev/null
@@ -0,0 +1,41 @@
+/*
+  Good style ideas stolen from Debathena.
+  Hey, we use some different fonts.
+  And the colors are unmistakably different.
+*/
+
+/* Basic fonts and sizes. */
+html {
+    font-size: 87.5%;
+}
+body {
+    font-family: Tahoma, Sans, sans-serif;
+}
+pre, code, samp, kbd, tt {
+    font-family: "Bitstream Vera Sans Mono", "Luxi Mono", "Courier New", monospace;
+    font-size: 100%;
+}
+
+/* Blue headings. */
+h1, h2, h3, h4, h5, h6 {
+    color: #246;
+}
+
+/* Dividing line under the header. */
+h1 {
+    border-bottom: 1px solid black;
+    margin-top: 0;
+    overflow: auto;
+}
+
+pre {
+    background: #f6f6f6;
+    border: 1px solid #ddd;
+    padding: .125em;
+}
+a:link, a:visited {
+    text-decoration: none;
+}
+a:link:hover, a:visited:hover {
+    text-decoration: underline;
+}