From 29fdec7e28073abc077153c3d80b20322392ab94 Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Mon, 6 Apr 2015 18:57:27 -0700 Subject: [PATCH] Working on documentation. --- doc/index.html | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++ doc/style.css | 54 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 116 insertions(+) create mode 100644 doc/index.html create mode 100644 doc/style.css diff --git a/doc/index.html b/doc/index.html new file mode 100644 index 0000000..d1aad5e --- /dev/null +++ b/doc/index.html @@ -0,0 +1,62 @@ + + + + + KUTILS: Kyle's utilities + + + + + +
+

KUTILS

+

Kyle's utility package for Common Lisp development

+
+ +

Introduction

+ +

This package contains utilities that I find useful in writing + programs; that is, it is a collection of generally-useful functions + and macros. Some of these I've written, and some of these derive from + other sources.

+ +

The utilities can be categorised as

+ + + +

On Lisp

+ + + +

Quicklisp installation

+ +

Clone into your Quicklisp project's local-projects/ + subdirectory, and call (ql:quickload :kutils).

+ +

CVS

+ +

You can +browse our CVS repository or download the current development tree via + anonymous cvs, as described here

+ + + +
+ + Valid XHTML 1.0 Strict +
+ + + diff --git a/doc/style.css b/doc/style.css new file mode 100644 index 0000000..1ca7bf3 --- /dev/null +++ b/doc/style.css @@ -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; }