[Bps-public-commit] r14364 - in Prophet/sites/syncwith.us/html: .

jesse at bestpractical.com jesse at bestpractical.com
Tue Jul 22 04:09:23 EDT 2008


Author: jesse
Date: Tue Jul 22 04:09:22 2008
New Revision: 14364

Added:
   Prophet/sites/syncwith.us/html/contact
   Prophet/sites/syncwith.us/html/style.css
Modified:
   Prophet/sites/syncwith.us/html/_elements/sidebar
   Prophet/sites/syncwith.us/html/_elements/wrapper
   Prophet/sites/syncwith.us/html/index.html

Log:
* more content. yay

Modified: Prophet/sites/syncwith.us/html/_elements/sidebar
==============================================================================
--- Prophet/sites/syncwith.us/html/_elements/sidebar	(original)
+++ Prophet/sites/syncwith.us/html/_elements/sidebar	Tue Jul 22 04:09:22 2008
@@ -13,4 +13,7 @@
 <li><a href="/sd/using">Using SD</a>
 <li><a href="/sd/download">Get SD</a>
 </ul>
+<li><a href="/contact">Mailing lists</a>
+<li><a href="/contact">Contact us</a>
+
 </ul>

Modified: Prophet/sites/syncwith.us/html/_elements/wrapper
==============================================================================
--- Prophet/sites/syncwith.us/html/_elements/wrapper	(original)
+++ Prophet/sites/syncwith.us/html/_elements/wrapper	Tue Jul 22 04:09:22 2008
@@ -1,13 +1,20 @@
 <html>
 <head>
 <title><%$title || 'syncwith.us' %></title>
+<link rel="stylesheet" type="text/css" href="/style.css">
 <body>
-<h1>syncwith.us</h1>
+<div class="nav">
+<& sidebar&>
+</div>
+<div class="heading">
+<div class="site">syncwith.us</div>
 % if ($title) {
-<h2><%$title%></h2>
+<h1><%$title%></h1>
 % }
+</div>
+<div class="content">
 <%$m->content|n%>
-<& sidebar&>
+</div>
 </body>
 </html>
 <%args>

Added: Prophet/sites/syncwith.us/html/contact
==============================================================================
--- (empty file)
+++ Prophet/sites/syncwith.us/html/contact	Tue Jul 22 04:09:22 2008
@@ -0,0 +1,7 @@
+<&|/_elements/wrapper, title => 'Get in touch' &>
+<p>Despite Prophet being designed for "offline" replication, Prophet's developers are nearly constantly online.  You can usually find us on IRC and can always contact us by email.</p>
+<h3>IRC</h3>
+<p>Prophet's developers hang out on <code>#prophet</code> on <code>irc.freenode.net</code>.
+<h3>Electronic Mail</h3>
+<p>If you're looking for something a little more asynchronous than IRC, electronic mail is always a reasonable option. You can <a href="http://lists.bestpractical.com/mailman/listinfo/prophet">sign up for the Prophet mailing list or browse the list archives</a> over at Best Practical's mailing list server.
+</&>

Modified: Prophet/sites/syncwith.us/html/index.html
==============================================================================
--- Prophet/sites/syncwith.us/html/index.html	(original)
+++ Prophet/sites/syncwith.us/html/index.html	Tue Jul 22 04:09:22 2008
@@ -1,2 +1,17 @@
-<&|/_elements/wrapper, title => 'Disconnected peer to peer replication'&>
+<&|/_elements/wrapper, title => 'Syncable tools for the offline web'&>
+<p>Prophet is a new kind of database designed for the post Web-2.0 world. It's made to let you collaborate with your friends and coworkers without needing any kind of special server or internet provider.</p>
+<p>What makes Prophet different:
+<blockquote>
+<dl>
+<dt>Disconnectable</dt>
+<dt>Replicatable</dt>
+<dt>Syncable</dt>
+<dd>
+</dd>
+<dt>Schemaless</dt>
+</dl>
+</blockquote>
+</p>
+<p>Prophet is flexible enough to be used for all sorts of applications, but we've started with something near and dear to the hearts of most software developers: bug tracking.</p>
+<p><a href="/sd">SD</a> is a peer to peer bug tracker which can sync to itself, <a href="http://bestpractical.com/rt">RT</a> or <a href="http://hiveminder.com">Hiveminder</a>.  You can extend SD to sync to other bug tracking tools by writing simple adaptors. If you'd like to help make SD work better with your bug tracker, <a href="/contact">drop us a line</a>.</p>
 </&>

Added: Prophet/sites/syncwith.us/html/style.css
==============================================================================
--- (empty file)
+++ Prophet/sites/syncwith.us/html/style.css	Tue Jul 22 04:09:22 2008
@@ -0,0 +1,73 @@
+body {
+  background: #005;
+  font-family: arial, helvetica, sans-serif; 
+  
+}
+
+div.nav {
+
+  position: absolute;
+  width: 9em;
+}
+
+div.nav, div.content, div.heading {
+  background: #fff;
+  border: 1px solid black;
+  border-top: 2px solid #ccc;
+  border-left: 2px solid #ccc;
+  -moz-border-radius: 1em;
+  -webkit-border-radius: 1em;
+
+}
+
+
+div.nav ul {
+  font-size: 0.9em;
+   padding-left: 1em;
+   list-style: none;
+}
+
+div.nav li { 
+
+   padding-top: 0.3em;
+}
+
+div.nav a {
+  text-decoration: none;
+  color: #000;
+  
+}
+
+
+
+div.nav li a:hover {
+  color: #009;
+  text-decoration: underline;
+}
+
+div.heading .site {
+ text-align: right;
+ padding-right: 1em;
+ padding-top: 0.5em;
+ font-style: italic;
+}
+
+div.heading h1 {
+  font-size: 1.8em;
+}
+
+div.heading {
+  position: absolute;
+  left: 10em;
+  right: 1em;
+  padding-left: 1em;
+  
+}
+div.content {
+  position: absolute;
+  left: 10em;
+  right: 1em;
+  top: 8em;
+  padding: 1em;
+}
+



More information about the Bps-public-commit mailing list