rebuilding repo
[cl-graph.git] / website / source / index.lml
1 ;;; -*- Mode: Lisp -*-
2
3 (in-package #:rw)
4
5 (html-file-page ("index")
6   (html
7    (:HEAD (:TITLE "CL-Graph")
8           (generate-shared-headers))
9    (:BODY
10     (generate-two-line-header
11      "CL-Graph" "Better than sliced mangoes!")
12     
13     ((:DIV :CLASS "contents")
14      (generate-system-sidebar)
15      
16      ((:DIV :CLASS "system-description")
17        (:H3 "What it is")
18     (:P "CL-Graph is a Common Lisp library for manipulating graphs and running
19 graph algorithms. " (rw:link :tinaa) " documentation for CL-Graph is "
20         (rw:link :cl-graph-tinaa :title "available") ".")
21     
22     ((:A :NAME "mailing-lists"))
23      (:h3 "Mailing Lists")
24      (:ul 
25       (:li ((:a :href "http://common-lisp.net/cgi-bin/mailman/listinfo/cl-graph-announce") "cl-graph-announce")
26            ": A low volume, read only list for announcements.")
27       
28       (:li ((:a :href "http://common-lisp.net/cgi-bin/mailman/listinfo/cl-graph-devel") "cl-graph-devel")
29            ": A list for questions, patches, bug reports, and so on; It's for everything 
30 other than announcements."))
31     
32     ((:A :NAME "downloads"))
33      (:H3 "Where is it")
34      (:P "A " (rw:link :darcs) " repository is available (note that you'll also need to get several other bits and pieces to get CL-Graph to work). The commands are listed below:")
35      (:PRE
36       "darcs get http://common-lisp.net/project/cl-graph/darcs/cl-graph
37 darcs get http://common-lisp.net/project/cl-mathstats/darcs/cl-mathstats
38 darcs get http://common-lisp.net/project/cl-containers/metabang.bind/darcs/metabang.bind
39 darcs get http://common-lisp.net/project/cl-containers/metatilities/darcs/metatilities
40 darcs get http://common-lisp.net/project/cl-containers/moptilities/darcs/moptilities")
41      (:P "CL-Graph (and friends) should also be " (rw:link :asdf-install :title "ASDF installable") ". Its CLiki home is right " (rw:link :cl-graph-cliki :title "where") " you'd expect.")
42      
43      (:P "There's also a handy " (rw:link :cl-graph-package :title "gzipped tar file") ".")
44     
45     ((:A :NAME "news"))
46      (:H3 "What is happening")
47      ((:TABLE :CLASS "system-news") 
48       (:TR
49        (:TH "2 Feb 2006")
50        (:TD "Lots of new " (link :cl-graph-tinaa) " documentation."))
51       (:TR
52        (:TH "25 Nov 2005")
53        (:TD "Wrote a mini tutorial and published it on "
54             ((:a :href "http://www.metabang.com/unclog/publisha/atinybit.html") "unCLog") "."))
55       ((:TR :ALIGN "left" :VALIGN "top")
56        (:TH "10 Nov 2005")
57        (:TD "Initial setup.")))))
58
59     
60     ((:DIV :CLASS "footer")
61      (generate-button-row 
62       (format nil "Last updated: ~A" 
63               (format-date "%A, %e %B %Y" (get-universal-time))))))))