[Usbmount-commit] r8 - in trunk/www: . package

Martin Dickopp mdickopp-guest@costa.debian.org
Wed, 16 Mar 2005 16:24:41 +0100


Author: mdickopp-guest
Date: 2005-03-16 16:24:37 +0100 (Wed, 16 Mar 2005)
New Revision: 8

Added:
   trunk/www/Makefile
   trunk/www/index.html
   trunk/www/package/
   trunk/www/package/usbmount_0.0.5.dsc
   trunk/www/package/usbmount_0.0.5.tar.gz
   trunk/www/package/usbmount_0.0.5_all.deb
   trunk/www/package/usbmount_0.0.6-1.diff.gz
   trunk/www/package/usbmount_0.0.6-1.dsc
   trunk/www/package/usbmount_0.0.6-1_all.deb
   trunk/www/package/usbmount_0.0.6.orig.tar.gz
   trunk/www/package/usbmount_0.0.7.dsc
   trunk/www/package/usbmount_0.0.7.tar.gz
   trunk/www/package/usbmount_0.0.7_all.deb
   trunk/www/package/usbmount_0.0.7_amd64.changes
   trunk/www/robots.txt
   trunk/www/style.css
Log:
Initial import of web page.


Added: trunk/www/Makefile
===================================================================
--- trunk/www/Makefile	2005-03-16 07:30:47 UTC (rev 7)
+++ trunk/www/Makefile	2005-03-16 15:24:37 UTC (rev 8)
@@ -0,0 +1,26 @@
+# This makefile creates a tar archive of the USBmount web page.
+# Copyright (C) 2005 Martin Dickopp
+# The copyright holder gives unlimited permission to copy and/or
+# distribute this file, with or without modifications, as long as
+# this notice is preserved.
+
+
+# Name of the archive file.
+ARCHIVE = usbmount-www.tar.gz
+
+# Files and directories to include in the archive.
+FILES=index.html style.css robots.txt package
+
+# Exclude patterns for the tar command.
+EXCLUDE = --exclude=.svn --exclude=\*~
+
+
+$(ARCHIVE): $(FILES)
+	svn update
+	svn commit
+	tar --create --gzip --verbose --file=$@ $(EXCLUDE) $^
+
+%.html: %.html.in
+	modtime=`date -u -r $< '+%d-%b-%Y\&nbsp;%H:%M:%S\&nbsp;UTC'`;    \
+	metatime=`date -u -r $< '+%Y-%m-%dT%H:%M:%S+00:00'`;             \
+	sed "s/@MODTIME@/$$modtime/g; s/@METATIME@/$$metatime/g" $< > $@

Added: trunk/www/index.html
===================================================================
--- trunk/www/index.html	2005-03-16 07:30:47 UTC (rev 7)
+++ trunk/www/index.html	2005-03-16 15:24:37 UTC (rev 8)
@@ -0,0 +1,145 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!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" lang="en-US" xml:lang="en-US">
+<head>
+  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+  <meta name="robots" content="index, follow" />
+  <meta name="author" content="Martin Dickopp" />
+  <meta name="copyright" content="Copyright &copy; 2004, 2005 Martin Dickopp" />
+  <meta name="date" content="2005-03-09T13:29:06+00:00" />
+  <meta name="language" content="en" />
+  <meta name="keywords" content="USB, USB storage device, USB mass storage device, USB pen, USB memory pen, mount" />
+  <meta name="description" content="USBmount is a Debian package to automatically mount and unmount USB mass storage devices." />
+  <title>USBmount</title>
+  <link rel="stylesheet" type="text/css" href="style.css" />
+</head>
+<body>
+  <div class="text">
+    <h1><a name="top" class="invlink">USBmount</a></h1>
+
+    <p class="pagemenu">[&nbsp;<a href="#what" title="What is USBmount?">What is it?</a>&nbsp;|
+    <a href="#download" title="Download USBmount">Download</a>&nbsp;|
+    <a href="#history" title="History of USBmount">History</a>&nbsp;|
+    <a href="#bugs" title="Report Bugs">Bug Reporting</a>&nbsp;]</p>
+
+    <h2><a name="what" class="invlink">What is it?</a></h2>
+
+    <p>The usbmount Debian package automatically mounts <acronym title="Universal Serial Bus">USB</acronym>
+    mass storage devices (typically <acronym title="Universal Serial Bus">USB</acronym> pens) when they are
+    plugged in, and unmounts them when they are removed. The mountpoints
+    (<span class="filename">/media/usb<span class="meta">[0-7]</span></span> by default), filesystem types to
+    consider, and mount options are configurable. When multiple devices are plugged in, the first available
+    mountpoint is automatically selected. If the device provides a model name, a symlink
+    <span class="filename">/var/run/usbmount/<span class="meta">MODELNAME</span></span> pointing to the mountpoint
+    is automatically created.</p>
+
+    <p>The script that does the (un)mounting is called by the udev daemon.</p>
+
+    <p>USBmount is licensed under an &lsquo;all-permissive license&rsquo; (i.e. everything is allowed, as long
+    as the copyright and license notices and the warranty disclaimer are preserved). See the
+    <span class="filename">debian/copyright</span> file in the package for details.</p>
+
+    <p>If you are interested in the development of USBmount, please refer to the
+    <a href="http://alioth.debian.org/projects/usbmount/" title="Alioth project page of USBmount">Alioth project page</a>
+    of USBmount.</p>
+
+    <p class="toplink">[&nbsp;<a href="#top" title="Return to the top of this page.">Top of Page</a>&nbsp;]</p>
+
+    <h2><a name="download" class="invlink">Download</a></h2>
+
+    <h3>Download Debian Package</h3>
+
+    <p>The <a title="USBmount Debian package directory" href="package/">latest Debian package of USBmount</a>
+    can be downloaded here:</p>
+    <ul>
+      <li>Source:
+      <ul>
+        <li><a href="package/usbmount_0.0.7.dsc">usbmount_0.0.7.dsc</a></li>
+        <li><a href="package/usbmount_0.0.7.tar.gz">usbmount_0.0.7.tar.gz</a></li>
+      </ul></li>
+
+      <li>Binary:
+      <ul>
+        <li><a href="package/usbmount_0.0.7_all.deb">usbmount_0.0.7_all.deb</a></li>
+      </ul></li>
+
+      <li>Changes:
+      <ul>
+        <li><a href="package/usbmount_0.0.7_amd64.changes">usbmount_0.0.7_amd64.changes</a></li>
+      </ul></li>
+    </ul>
+
+    <h3>Subversion Repository</h3>
+
+    <p>The development version of USBmount will be available as a Subversion repository. More elaborate information
+    will follow once the repository is set up.</p>
+
+    <p class="toplink">[&nbsp;<a href="#top" title="Return to the top of this page.">Top of Page</a>&nbsp;]</p>
+
+    <h2><a name="history" class="invlink">History</a></h2>
+
+    <ul>
+      <li>Version 0.0.7 (09-Mar-2005, latest release):
+      <ul>
+        <li>The default configuration does not mount vfat filesystems any more. The vfat filesystem type
+	does not fully support sync-mounting. The default configuration file warns about this.</li>
+	<li>The package description refers to this page instead of the old homepage.</li>
+      </ul></li>
+
+      <li>Version 0.0.6 (08-Mar-2005):
+      <ul>
+        <li>Model name symlinks are created in <span class="filename">/var/run/usbmount</span> instead of <span class="filename">/var/usbmount</span>.</li>
+        <li>Rafael Laboissiere will kindly sponsor the package, so that it can be uploaded to Debian.</li>
+      </ul></li>
+
+      <li>Version 0.0.5 (23-Feb-2005):
+      <ul>
+        <li>Symlinks (model names) are created in <span class="filename">/var/usbmount</span>.</li>
+      </ul></li>
+
+      <li>Version 0.0.4 (21-Feb-2005):
+      <ul>
+        <li>Adapt to changes in <span class="filename">udev_volume_id</span>; depend on <span class="filename">udev</span> (&gt;= 0.053-1).</li>
+        <li>Redirect standard output and standard error to <span class="filename">/dev/null</span>; log via syslog.</li>
+        <li>More verbose logging can be turned on with a configuration variable.</li>
+      </ul></li>
+
+      <li>Version 0.0.3 (08-Nov-2004):
+      <ul>
+        <li>Create <span class="filename">/media</span> if it doesn't already exist.</li>
+        <li>Include instructions for the reportbug program to send bug reports to
+        the maintainer instead of the Debian <acronym title="Bug Tracking System">BTS</acronym>.</li>
+        <li>Move mounting and unmounting script to <span class="filename">/usr/share/usbmount/usbmount</span>.</li>
+      </ul></li>
+
+      <li>Version 0.0.2 (26-Oct-2004):
+        <ul>
+        <li>Don't kill processes before unmounting. Thanks to Martin F. Krafft for the suggestion.</li>
+      </ul></li>
+
+      <li>Version 0.0.1 (26-Oct-2004):
+        <ul>
+        <li>Initial release.</li>
+      </ul></li>
+    </ul>
+
+    <p class="toplink">[&nbsp;<a href="#top" title="Return to the top of this page.">Top of Page</a>&nbsp;]</p>
+
+    <h2><a name="bugs" class="invlink">Bug Reporting</a></h2>
+
+    <p>As long as USBmount is not yet an official Debian package, bugs should be reported to the upstream maintainer
+    &lt;<a href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;&#109;&#97;&#114;&#116;&#105;&#110;&#64;&#122;&#101;&#114;&#111;&#45;&#98;&#97;&#115;&#101;&#100;&#46;&#111;&#114;&#103;" title="Contact the maintainer of USBmount.">&#109;&#97;&#114;&#116;&#105;&#110;&#64;&#122;&#101;&#114;&#111;&#45;&#98;&#97;&#115;&#101;&#100;&#46;&#111;&#114;&#103;</a>&gt;.</p>
+
+    <p class="toplink">[&nbsp;<a href="#top" title="Return to the top of this page.">Top of Page</a>&nbsp;]</p>
+  </div>
+
+  <div class="footer">
+    <p>Copyright &copy; 2004, 2005 <a href="http://www.zero-based.org/" title="Homepage of Martin Dickopp">Martin Dickopp</a>.<br />
+    The copyright holder gives unlimited permission to copy and/or distribute this file, with or without modifications, as long as this notice is preserved.<br />
+    Last modified 09-Mar-2005&nbsp;13:29:06&nbsp;UTC.</p>
+
+    <p class="validator">[&nbsp;<a href="http://validator.w3.org/check?uri=http://usbmount.alioth.debian.org/" title="Validate this page.">Valid XHTML 1.0</a>&nbsp;|
+    <a href="http://jigsaw.w3.org/css-validator/validator?uri=http://usbmount.alioth.debian.org/style.css&amp;warning=2&amp;profile=css2" title="Validate the CSS used by this page.">Valid CSS</a>&nbsp;]</p>
+  </div>
+</body>
+</html>

Added: trunk/www/package/usbmount_0.0.5.dsc
===================================================================
--- trunk/www/package/usbmount_0.0.5.dsc	2005-03-16 07:30:47 UTC (rev 7)
+++ trunk/www/package/usbmount_0.0.5.dsc	2005-03-16 15:24:37 UTC (rev 8)
@@ -0,0 +1,10 @@
+Format: 1.0
+Source: usbmount
+Version: 0.0.5
+Binary: usbmount
+Maintainer: Martin Dickopp <martin-deb@zero-based.org>
+Architecture: all
+Standards-Version: 3.6.1
+Build-Depends: cdbs, debhelper (>= 4.1.0)
+Files: 
+ 7c15e4fdd50d4779996d9bc1e42ea550 4369 usbmount_0.0.5.tar.gz

Added: trunk/www/package/usbmount_0.0.5.tar.gz
===================================================================
(Binary files differ)


Property changes on: trunk/www/package/usbmount_0.0.5.tar.gz
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/www/package/usbmount_0.0.5_all.deb
===================================================================
(Binary files differ)


Property changes on: trunk/www/package/usbmount_0.0.5_all.deb
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/www/package/usbmount_0.0.6-1.diff.gz
===================================================================
(Binary files differ)


Property changes on: trunk/www/package/usbmount_0.0.6-1.diff.gz
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/www/package/usbmount_0.0.6-1.dsc
===================================================================
--- trunk/www/package/usbmount_0.0.6-1.dsc	2005-03-16 07:30:47 UTC (rev 7)
+++ trunk/www/package/usbmount_0.0.6-1.dsc	2005-03-16 15:24:37 UTC (rev 8)
@@ -0,0 +1,12 @@
+Format: 1.0
+Source: usbmount
+Version: 0.0.6-1
+Binary: usbmount
+Maintainer: Martin Dickopp <martin@zero-based.org>
+Architecture: all
+Standards-Version: 3.6.1
+Build-Depends-Indep: cdbs, debhelper (>= 4.1.0)
+Uploaders: Rafael Laboissiere <rafael@debian.org>
+Files: 
+ 2c90b46c97f430502fb57d1e92a7d336 4600 usbmount_0.0.6.orig.tar.gz
+ 9428e9c916c94f47fe9fe0ffa7e62257 20 usbmount_0.0.6-1.diff.gz

Added: trunk/www/package/usbmount_0.0.6-1_all.deb
===================================================================
(Binary files differ)


Property changes on: trunk/www/package/usbmount_0.0.6-1_all.deb
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/www/package/usbmount_0.0.6.orig.tar.gz
===================================================================
(Binary files differ)


Property changes on: trunk/www/package/usbmount_0.0.6.orig.tar.gz
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/www/package/usbmount_0.0.7.dsc
===================================================================
--- trunk/www/package/usbmount_0.0.7.dsc	2005-03-16 07:30:47 UTC (rev 7)
+++ trunk/www/package/usbmount_0.0.7.dsc	2005-03-16 15:24:37 UTC (rev 8)
@@ -0,0 +1,11 @@
+Format: 1.0
+Source: usbmount
+Version: 0.0.7
+Binary: usbmount
+Maintainer: Martin Dickopp <martin@zero-based.org>
+Architecture: all
+Standards-Version: 3.6.1
+Build-Depends-Indep: cdbs, debhelper (>= 4.1.0)
+Uploaders: Rafael Laboissiere <rafael@debian.org>
+Files: 
+ de658f658d9faf880ca9708052b03efd 4893 usbmount_0.0.7.tar.gz

Added: trunk/www/package/usbmount_0.0.7.tar.gz
===================================================================
(Binary files differ)


Property changes on: trunk/www/package/usbmount_0.0.7.tar.gz
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/www/package/usbmount_0.0.7_all.deb
===================================================================
(Binary files differ)


Property changes on: trunk/www/package/usbmount_0.0.7_all.deb
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: trunk/www/package/usbmount_0.0.7_amd64.changes
===================================================================
--- trunk/www/package/usbmount_0.0.7_amd64.changes	2005-03-16 07:30:47 UTC (rev 7)
+++ trunk/www/package/usbmount_0.0.7_amd64.changes	2005-03-16 15:24:37 UTC (rev 8)
@@ -0,0 +1,35 @@
+Format: 1.7
+Date: Wed,  9 Mar 2005 14:10:34 +0100
+Source: usbmount
+Binary: usbmount
+Architecture: source all
+Version: 0.0.7
+Distribution: unstable
+Urgency: low
+Maintainer: Martin Dickopp <martin@zero-based.org>
+Changed-By: Martin Dickopp <martin@zero-based.org>
+Description: 
+ usbmount   - automatically mount and unmount USB mass storage devices
+Closes: 298526
+Changes: 
+ usbmount (0.0.7) unstable; urgency=low
+ .
+   Rafael Laboissiere:
+ .
+   * First upload of this package to the official Debian distribution
+     (closes: #298526)
+   * NMU in the behalf of the upstream maintainer, which is also the
+     effective maintainer of the Debian package.
+ .
+   Martin Dickopp:
+ .
+   * Built as a Debian-native package again.
+   * Default configuration does not mount vfat filesystems any more.
+   * Put warning in configuration file that sync-mounting is not fully
+     implemented for vfat filesystem.
+   * Package description refers to new location of the homepage
+     (http://usbmount.alioth.debian.org/).
+Files: 
+ 6fcc3d28c45d2aa61ca592e34c6b51fa 322 admin extra usbmount_0.0.7.dsc
+ de658f658d9faf880ca9708052b03efd 4893 admin extra usbmount_0.0.7.tar.gz
+ 39b3ac9bd8effbc98aec534fce754c46 6202 admin extra usbmount_0.0.7_all.deb

Added: trunk/www/robots.txt
===================================================================
--- trunk/www/robots.txt	2005-03-16 07:30:47 UTC (rev 7)
+++ trunk/www/robots.txt	2005-03-16 15:24:37 UTC (rev 8)
@@ -0,0 +1,2 @@
+User-agent: *
+Disallow:

Added: trunk/www/style.css
===================================================================
--- trunk/www/style.css	2005-03-16 07:30:47 UTC (rev 7)
+++ trunk/www/style.css	2005-03-16 15:24:37 UTC (rev 8)
@@ -0,0 +1,99 @@
+/*
+ *  Copyright (C) 2003, 2004, 2005 Martin Dickopp.
+ *  The copyright holder gives unlimited permission to copy and/or
+ *  distribute this file, with or without modifications, as long as
+ *  this notice is preserved.
+ *
+ *  Last modified 09-Mar-2005.
+ */
+
+html, body {
+	background:	#ffffff;
+	color:		#000000;
+}
+
+html, body, div, h1, h2, h3, p, span, ul, li {
+	font-family:	sans-serif;
+}
+
+a:link {
+	background:	inherit;
+	color:		#ff0000;
+}
+
+a:visited {
+	background:	inherit;
+	color:		#990000;
+}
+
+a:hover {
+	background:	#ffffd0;
+	color:		#990000;
+}
+
+a:active {
+	background:	#ffffd0;
+	color:		#ff6600;
+}
+
+a.invlink:link, a.invlink:visited, a.invlink:hover, a.invlink:active {
+	background:	inherit;
+	color:		inherit;
+}
+
+h1, h2 {
+	background:	#ffffff;
+	color:		#000080;
+
+	text-align:	center;
+
+	border-left:		2px solid #000080;
+	border-right-style:	none;
+	border-top-style:	none;
+	border-bottom:		2px solid #000080;
+
+}
+
+h3 {
+	background:	#ffffff;
+	color:		#000080;
+
+	text-align:	left;
+}
+
+p.pagemenu {
+	text-align:	center;
+	font-size:	75%;
+}
+
+p.toplink {
+	text-align:	right;
+	font-size:	75%;
+}
+
+p.validator {
+	text-align:	right;
+}
+
+span.filename {
+	font-family:	monospace;
+	font-style:	normal;
+	font-weight:	bold;
+}
+
+span.meta {
+	font-family:	inherit;
+	font-style:	italic;
+	font-weight:	inherit;
+}
+
+acronym {
+	cursor:		help;
+}
+
+div.footer {
+	font-size:	75%;
+	clear:		both;
+
+	margin-top:	3em;
+}