[Nym3-commit] r161 - / trunk/nym3/Client web
laurent at conuropsis.org
laurent at conuropsis.org
Tue Mar 15 22:35:31 CET 2005
Author: laurent
Date: 2005-03-15 22:35:29 +0100 (Tue, 15 Mar 2005)
New Revision: 161
Added:
web/
web/index.html
web/minion.css
Modified:
trunk/nym3/Client/User.py
Log:
First try at a webpage.
Modified: trunk/nym3/Client/User.py
===================================================================
--- trunk/nym3/Client/User.py 2005-02-18 21:20:25 UTC (rev 160)
+++ trunk/nym3/Client/User.py 2005-03-15 21:35:29 UTC (rev 161)
@@ -261,6 +261,7 @@
def generateSurbs(self, n):
"""Generate surbs"""
capi = mapi.ClientEnv(); # TODO: create it once and share it.
+ return [ "wait for ClientAPI... or write it."] * n
return capi.generateSURBs(n, messageDest = self.data['address'],
identity = self.idTag);
Added: web/index.html
===================================================================
--- web/index.html 2005-02-18 21:20:25 UTC (rev 160)
+++ web/index.html 2005-03-15 21:35:29 UTC (rev 161)
@@ -0,0 +1,40 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+ "http://www.w3.org/TR/html4/transitional.dtd">
+<!-- $Id: index.html,v 1.33 2004/05/10 18:54:12 nickm Exp $ -->
+
+<html>
+<head>
+<title>Nym3: a Type III Nymserver</title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+<meta http-equiv="Content-Style-Type" content="text/css">
+<link rel="stylesheet" type="text/css" href="./minion.css">
+</head>
+
+<body>
+
+<h1>Nym3: A Type III Nymserver</h1>
+
+<p>
+Nym3 is the reference implementation of the Type III Nymserver. It is
+not yet working though.
+</p>
+
+<h2>Development</h2>
+
+<p>The development of nym3 is hosted in a subversion repository. Don't
+be afraid, <a href="http://svn.conuropsis.org/nym3">browse</a> our
+code.</p>
+
+<h2>Contact</h2>
+
+<p>We have a development mailing list : nym3-devel <at> lists
+<dot> noreply <dot> org. Alternatively you might want to hunt for
+us on the <kbd>#nym3</kbd> channel on <a
+href="http://www.oftc.net/">oftc</a>.</p>
+
+<h2>Links</h2>
+
+<ul><li><a href="http://www.mixminion.net/">Mixminion</a></li>
+</ul>
+</body>
+</html>
Added: web/minion.css
===================================================================
--- web/minion.css 2005-02-18 21:20:25 UTC (rev 160)
+++ web/minion.css 2005-03-15 21:35:29 UTC (rev 161)
@@ -0,0 +1,99 @@
+/* *******************************************************
+ $Id: minion.css,v 1.4 2004/04/01 17:08:45 nickm Exp $
+
+ This file is maintained in CVS; edit the version in the
+ repository.
+ *******************************************************
+ */
+
+BODY {
+ background-color: #FFF;
+ color: #000;
+}
+
+P, TD, TH, DD, DT, LI {
+ font-family: lucida, "Lucida Sans", "Geneva", sans-serif;
+}
+
+TH, DT {
+ font-weight: bold;
+}
+
+H1, H2, H3, H4, H5, H6 {
+ font-family: lucida, "Lucida Sans", "Geneva", sans-serif;
+}
+
+H1 {
+ text-align: center;
+}
+
+H2, H3, H4, H5, H6 {
+ text-align: left;
+}
+
+H2 {
+ background-color: #AFA;
+ color: #000;
+ padding: 2px 2px 2px 2px;
+ border-width: 2px 2px 2px 2px;
+ border-color: #000;
+ border-style: solid;
+}
+
+H3 {
+ background-color: #CCF;
+ color: #000;
+ padding: 2px 2px 2px 2px;
+ margin: 0 0 0 1em;
+ border-width: 2px 2px 2px 2px;
+ border-color: #000;
+ border-style: solid;
+}
+
+DIV.answer {
+ margin: 0 0 0 2em;
+}
+
+SPAN.heading {
+ background-color: #ABF;
+ color: #000;
+ border-width: 1px;
+ padding: 0 0.2em 0 0.2em;
+ border-color: #000;
+ border-style: solid;
+}
+
+SPAN.date {
+ background-color: #FFF;
+ color: #0A0;
+ font-weight: bold;
+}
+
+P.date {
+ background-color: #FFF;
+ color: #0A0;
+ font-weight: bold;
+ margin-bottom: 0;
+}
+
+P.news {
+ margin-top: 0;
+ margin-left: 3em;
+}
+
+P.credit {
+ font-size: smaller;
+ font-style: italic;
+ padding-left: 3px;
+ border-left: 3px solid;
+}
+
+TABLE.manpages {
+ margin-left: 3em;
+ padding: 2px;
+ border: 1px solid;
+}
+
+TD {
+ padding: 2px;
+}
\ No newline at end of file
More information about the Nym3-commit
mailing list