r5963 - in trunk/src/host/dfu-util: . www

stefan at docs.openmoko.org stefan at docs.openmoko.org
Sat May 8 19:14:36 CEST 2010


Author: stefan
Date: 2010-05-08 19:14:36 +0200 (Sat, 08 May 2010)
New Revision: 5963

Added:
   trunk/src/host/dfu-util/www/
   trunk/src/host/dfu-util/www/index.html
   trunk/src/host/dfu-util/www/simple.css
Log:
www: Add initial website

We keep it small and simple. One html page is enough for now.

Added: trunk/src/host/dfu-util/www/index.html
===================================================================
--- trunk/src/host/dfu-util/www/index.html	                        (rev 0)
+++ trunk/src/host/dfu-util/www/index.html	2010-05-08 17:14:36 UTC (rev 5963)
@@ -0,0 +1,83 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-US">
+
+<head>
+	<title>Dfu-util Homepage</title>
+	<meta http-equiv="content-type" content="application/xhtml+xml; charset=iso-8859-1" />
+	<meta name="author" content="Stefan Schmidt" />
+	<meta name="keywords" content="dfu-util, DFU, Device Firmware Upgrade, linux" />
+	<meta name="description" content="Dfu-util Project Homepage" />
+	<link rel="icon" type="image/png" href="favicon.ico" />
+	<link rel="stylesheet" type="text/css" href="simple.css" media="screen, print" />
+</head>
+
+<body>
+<div id="middlebox">
+    <h1>Dfu-util - Device Firmware Upgrade Utilities</h1>
+      <h2>Description</h2>
+      <p>
+	Dfu-util is the host side implementation of the <a
+	href="http://www.usb.org/developers/devclass_docs/usbdfu10.pdf" title="DFU
+	specification"> DFU 1.0 specification</a> of the USB forum.
+
+	DFU is intended to download and upload firmware to devices connected over USB.
+	It ranges from small devices like micro-controller boards up to mobile phones.
+
+	With dfu-util you are able to download firmware to your device or upload
+	firmware from it. Most tests have been done with the Openmoko Neo1973 and Freerunner
+	so far but other devices have been reported working and is being worked on.
+	</p>
+	<h2>Releases</h2>
+	<p>
+	Software releases of dfu-util can be found <a
+	href="http://dfu-util.gnumonks.org/releases/" title="Releases"> here</a>.<br/>
+	The latest release is <a
+	href="http://dfu-util.gnumonks.org/releases/dfu-util-0.1-rc1.tar.gz"> 0.1-rc1</a>
+	</p>
+	<h2>Development</h2>
+	<p>
+	Development happens in this <a href="http://git.openezx.org/dfu-util.git"
+	title="Git repository"> GIT repository</a>.
+	</p>
+	<h2>License</h2>
+	<p>
+	This software is licensed under the <a
+	href="http://www.gnu.org/licenses/gpl-2.0.html"> GPL version 2</a>.
+	</p>
+	<h2>Mailling List</h2>
+	<p>
+	Given the low activities on this project we don't run our on mailing
+	list but use the <a
+	href="https://lists.openmoko.org/mailman/listinfo/devel"> Openmoko devel
+	list</a> for discussions. This may change in the
+	future if a real community builds around dfu-util.
+	</p>
+	<h2>Supported Devices</h2>
+	<p>
+	<ul>
+	<li><a href="http://wiki.openmoko.org/wiki/Neo_1973">Openmoko Neo1973</a></li>
+	<li><a href="http://wiki.openmoko.org/wiki/Neo_FreeRunner">Openmoko Freerunner</a></li>
+	<li><a href="http://leaflabs.com/Maple">Leaflabs Maple</a></li>
+	</ul>
+	</p>
+	<h2>People</h2>
+	<p>
+	Dfu-util was written by <a href="http://gnumonks.org/users/laforge/">
+	Harald Welte</a> partially based on code from <a
+	href="http://dfu-programmer.sourceforge.net/">
+	dfu-programmer 0.4</a> and is currently maintained by <a
+	href="http://www.datenfreihafen.org/">Stefan Schmidt</a>.
+	</p>
+	<h2>Contact</h2>
+	<p>
+	If you have questions about the development of dfu-util please contact
+	the mailing list or  <a href="http://www.datenfreihafen.org/contact.html">Stefan Schmidt</a>.
+	</p>
+	<p id="footer">
+        &copy;2010 Stefan Schmidt  Valid <a href="http://validator.w3.org/check?uri=referer" title="validate XHTML">XHTML</a> &amp; <a href="http://jigsaw.w3.org/css-validator" title="validate CSS">CSS</a>
+      </p>
+</div>
+</body>
+</html>

Added: trunk/src/host/dfu-util/www/simple.css
===================================================================
--- trunk/src/host/dfu-util/www/simple.css	                        (rev 0)
+++ trunk/src/host/dfu-util/www/simple.css	2010-05-08 17:14:36 UTC (rev 5963)
@@ -0,0 +1,43 @@
+body {
+  margin: 10px;
+  font-size: 0.82em;
+  background-color: #EEE;
+}
+
+h1 {
+  clear: both;
+  padding: 0 0 12px 0;
+  margin: 0;
+  font-size: 2em;
+  font-weight: bold;
+}
+
+h2 {
+  clear: both;
+  margin: 0 0 -10px 0;
+  font-size: 1.5em;
+  font-weight: normal;
+}
+
+p {
+  line-height: 20px;
+  padding: 8px 0 8px 0;
+  margin: 5px 0 5px 0;
+  font-size: 1.1em;
+}
+
+a:hover {
+  background-color: #DDD;
+}
+
+#middlebox {
+  width: 600px;
+  margin: 0px auto;
+  text-align: left;
+}
+
+#footer {
+  height: 100px;
+  padding: 28px 3px 0 0;
+  margin: 20px 0 20px 0;
+}




More information about the commitlog mailing list