Added:
website/style.css
Modified:
website/index.html
website/specs/1.0/.htaccess
Log:
add style and eaut example
Modified: website/index.html
==============================================================================
--- website/index.html (original)
+++ website/index.html Sun Jul 20 21:46:50 2008
@@ -1,13 +1,15 @@
<html>
<head>
<title>Email Address to URL Translation</title>
+ <link rel="stylesheet" type="text/css" href="/style.css" />
</head>
<body>
<ul id="menu">
- <li><a href="specs/1.0/">Specification</a></li>
- <li><a href="code/">Code</a></li>
+ <li><a href="/specs/1.0/">Specification</a></li>
+ <li><a href="/code/">Code</a></li>
+ <li><a href="/example/">Example</a></li>
</ul>
<h1>Email Address to URL Translation (EAUT)</h1>
@@ -44,8 +46,8 @@
fallback service can be used which can transalte ANY email address to
an URL. Relying parties can use any fallback service they wish, but <a
href="http://emailtoid.net/" target="_blank">Email to ID</a> is
- recommended. The need for any fallback service should will diminish as
- email providers begin to support EAUT natively.</p>
+ recommended. The need for any fallback service will diminish as email
+ providers begin to support EAUT natively.</p>
</body>
</html>
Modified: website/specs/1.0/.htaccess
==============================================================================
--- website/specs/1.0/.htaccess (original)
+++ website/specs/1.0/.htaccess Sun Jul 20 21:46:50 2008
@@ -2,5 +2,5 @@
<IfModule rewrite_module>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
-
RewriteRule .* ../svn/tags/1.0-draft4/email-to-url-transformation-1_0.html [QSA,L]
+
RewriteRule .* ../svn/tags/1.0-draft4/email-to-url-transformation-1_04.html [QSA,L]
</IfModule>
Added: website/style.css
==============================================================================
--- (empty file)
+++ website/style.css Sun Jul 20 21:46:50 2008
@@ -0,0 +1,14 @@
+body {
+ width: 700px;
+ margin: 0 auto;
+}
+
+#menu {
+ list-style: none;
+}
+
+#menu li {
+ display: inline;
+ padding: 0 1em;
+}
+