[funds-cvs] r1 - branches tags trunk trunk/funds trunk/funds/doc trunk/funds/src trunk/public_html
abaine at common-lisp.net
abaine at common-lisp.net
Thu Jun 7 18:29:41 UTC 2007
Author: abaine
Date: Thu Jun 7 14:29:41 2007
New Revision: 1
Added:
branches/
tags/
trunk/
trunk/funds/
trunk/funds/doc/
trunk/funds/src/
trunk/funds/src/funds.asd
trunk/funds/src/package.lisp
trunk/public_html/
trunk/public_html/index.html
trunk/public_html/project-name
trunk/public_html/style.css
Log:
Initial import
Added: trunk/funds/src/funds.asd
==============================================================================
Added: trunk/funds/src/package.lisp
==============================================================================
--- (empty file)
+++ trunk/funds/src/package.lisp Thu Jun 7 14:29:41 2007
@@ -0,0 +1,3 @@
+
+(defpackage :funds
+ (:use :common-lisp))
\ No newline at end of file
Added: trunk/public_html/index.html
==============================================================================
--- (empty file)
+++ trunk/public_html/index.html Thu Jun 7 14:29:41 2007
@@ -0,0 +1,68 @@
+<!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"><head><title>Funds</title>
+
+
+
+
+ <link rel="stylesheet" type="text/css" href="style.css">
+ <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"></head><body>
+ <div class="header">
+ <h1>Funds</h1>
+ <h2>Functional Data Structures in Common Lisp</h2>
+ </div>
+
+ <h3>Introduction</h3>
+
+ <p>The goal of the Funds project is to provide portable, purely
+ functional, efficient data structures written in Common Lisp. Funds
+ is open source software released under the
+ <a href="http://www.opensource.org/licenses/mit-license.php">
+ MIT License
+ </a>.</p>
+
+ <h3>Mailing Lists</h3>
+ <ul>
+ <li>
+ <a href="http://www.common-lisp.net/mailman/listinfo/funds-devel">
+ funds-devel</a><br>for developers</li>
+ <li>
+ <a href="http://www.common-lisp.net/mailman/listinfo/funds-cvs">
+ funds-cvs</a><br>CVS log feed.</li>
+ <li>
+ <a href="http://www.common-lisp.net/mailman/listinfo/funds-announce">
+ funds-announce</a><br>for announcements.</li>
+
+ </ul>
+
+ <h3>Download</h3>
+
+ <p>This project has not released any files. It is under active
+ development as a <a
+ href="http://code.google.com/soc/lispnyc/appinfo.html?csaid=F098323F679401F6">
+ Google Summer of Code Project</a>, and a release is planned for
+ July 6, 2007.
+
+</p>
+
+ <h3>Project members</h3>
+<ul>
+<li>
+ <a href="mailto:andrew.baine at gmail.com">Andrew Baine</a>
+</li>
+</ul>
+ <h3>CVS</h3>
+
+ <p>You can <a
+ href="http://common-lisp.net/cgi-bin/viewcvs.cgi/?cvsroot=funds">
+ browse our CVS repository</a> or download the current development
+ tree via anonymous cvs, as described <a
+ href="http://common-lisp.net/faq.shtml">here</a></p>
+
+ <div class="footer">
+ </div>
+
+ <div class="check">
+ <a href="http://validator.w3.org/check/referer">
+ Valid XHTML 1.0 Strict</a>
+ </div>
+ </body></html>
Added: trunk/public_html/project-name
==============================================================================
--- (empty file)
+++ trunk/public_html/project-name Thu Jun 7 14:29:41 2007
@@ -0,0 +1 @@
+funds
Added: trunk/public_html/style.css
==============================================================================
--- (empty file)
+++ trunk/public_html/style.css Thu Jun 7 14:29:41 2007
@@ -0,0 +1,54 @@
+
+.header {
+ font-size: medium;
+ background-color:#336699;
+ color:#ffffff;
+ border-style:solid;
+ border-width: 5px;
+ border-color:#002244;
+ padding: 1mm 1mm 1mm 5mm;
+}
+
+.footer {
+ font-size: small;
+ font-style: italic;
+ text-align: right;
+ background-color:#336699;
+ color:#ffffff;
+ border-style:solid;
+ border-width: 2px;
+ border-color:#002244;
+ padding: 1mm 1mm 1mm 1mm;
+}
+
+.footer a:link {
+ font-weight:bold;
+ color:#ffffff;
+ text-decoration:underline;
+}
+
+.footer a:visited {
+ font-weight:bold;
+ color:#ffffff;
+ text-decoration:underline;
+}
+
+.footer a:hover {
+ font-weight:bold;
+ color:#002244;
+ text-decoration:underline; }
+
+.check {font-size: x-small;
+ text-align:right;}
+
+.check a:link { font-weight:bold;
+ color:#a0a0ff;
+ text-decoration:underline; }
+
+.check a:visited { font-weight:bold;
+ color:#a0a0ff;
+ text-decoration:underline; }
+
+.check a:hover { font-weight:bold;
+ color:#000000;
+ text-decoration:underline; }
More information about the Funds-cvs
mailing list