summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormallum <mallum@f5eea0f0-44ea-0310-b729-df5b855dafe5>2005-05-20 09:17:44 +0000
committermallum <mallum@f5eea0f0-44ea-0310-b729-df5b855dafe5>2005-05-20 09:17:44 +0000
commit556a5c657a937f5d53245a94daaf8938304f7485 (patch)
treedb07a20e4f1e36d99d0a5353690167d8a4942662
parentb989a142a1cedd2691eb6b4ba23f92c4cca6c7ec (diff)
Added basic website files
-rw-r--r--website/default.css39
-rw-r--r--website/index.html59
-rw-r--r--website/ohside.pngbin0 -> 6933 bytes
3 files changed, 98 insertions, 0 deletions
diff --git a/website/default.css b/website/default.css
new file mode 100644
index 0000000..8d3841d
--- /dev/null
+++ b/website/default.css
@@ -0,0 +1,39 @@
+body {
+ margin: 0px;
+ padding-top: 0px;
+ background-color: white;
+ font-family: sans-serif;
+ color: black;
+}
+
+#header {
+ background: url(ohside.png) no-repeat right top;
+ height: 100px;
+}
+
+#header h1 {
+ color: #069;
+ margin-top: 0px;
+ margin-left: 20px;
+ padding-top: 20px;
+ padding-right: 100px;
+ font-size: 200%;
+ text-align: right;
+}
+
+#content {
+ margin-left: 30px;
+ margin-right: 30px;
+
+
+}
+
+#footer {
+ color: #aaa;
+ text-align: center;
+ font-size: 11px;
+}
+
+#footer a {
+ color: #aaa;
+}
diff --git a/website/index.html b/website/index.html
new file mode 100644
index 0000000..d2dedf6
--- /dev/null
+++ b/website/index.html
@@ -0,0 +1,59 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html>
+ <head>
+ <title>Xresponse</title>
+ <link rel="stylesheet" type="text/css" href="default.css" />
+ <link rel="icon" href="http://www.openedhand.com/images/favicon.ico" />
+ <meta name="description" content="matchbox nest embedded x" />
+ </head>
+
+ <body>
+ <div id="header">
+ <h1>Xresponse</h1>
+ </div>
+
+ <div id="content"> <h2>About</h2>
+
+ <p>
+
+ Xresponse is a simple experimental command line tool for meassuring UI
+ response times to a mouse click event. It requires the
+ Xtest, to 'fake' the mouse event, and XDamage, to report areas
+ of the display that have changed.
+
+ </p>
+ <p>
+ For more info see the included <a href="README">README</a> file.
+ </P>
+ <p>
+ Xoo is authored by Matthew Allum and Ross Burton. It is free software, available under the GPL.
+ </p>
+
+ <h2>Download</h2>
+ <p>
+ Tarballs of the xresponse source code are <a href="sources/">here</a>.
+ </p>
+
+ <h2>Development</h2>
+ <p>
+
+ For Development code, use subversion;
+
+ </p>
+ <pre>
+ svn co http://svn.o-hand.com/repos/misc/trunk/xresponse xresponse
+ </pre>
+<p>
+ You can also <a href="http://svn.o-hand.com/view/misc/trunk/xresponse/">browse the repository</a>.
+</p>
+<p>
+ </p>
+
+</p>
+ </div>
+ <div id="footer">
+ &copy; 2004 <a href="http://o-hand.com">OpenedHand</a> Ltd.
+ </div>
+ </body>
+</html>
diff --git a/website/ohside.png b/website/ohside.png
new file mode 100644
index 0000000..78c0c28
--- /dev/null
+++ b/website/ohside.png
Binary files differ