From 6052e3d2f07860b72f6886e3e27c3209d9ba2852 Mon Sep 17 00:00:00 2001 From: David Lichteblau Date: Sun, 5 Apr 2009 09:49:33 +0200 Subject: [PATCH] more release work --- dist.sh | 3 ++- doc/atdoc.lisp | 5 ++-- doc/atdoc/index.css | 68 +++++++++++++++++++++++++++++++++++++++++++++++----- doc/example.xml | 6 ++--- doc/index.xml | 6 ++--- doc/index.xsl | 2 +- doc/installation.xml | 6 ++--- 7 files changed, 76 insertions(+), 20 deletions(-) diff --git a/dist.sh b/dist.sh index 17f00cd..7891821 100755 --- a/dist.sh +++ b/dist.sh @@ -46,4 +46,5 @@ ln -sf ${name_and_date}.tgz.asc ~/clnet/project/xuriella/public_html/download/xu echo done exit 0 -rsync -av ~/clnet/project dlichteblau@common-lisp.net:/ +rsync -av ~/clnet/project/xuriella/public_html \ + common-lisp.net:/project/xuriella/ diff --git a/doc/atdoc.lisp b/doc/atdoc.lisp index d77ca62..5a82f69 100644 --- a/doc/atdoc.lisp +++ b/doc/atdoc.lisp @@ -3,9 +3,10 @@ (let* ((base (asdf:component-pathname (asdf:find-system :xuriella))) (atdoc-directory (merge-pathnames "doc/atdoc/" base))) (ensure-directories-exist atdoc-directory) - (atdoc:generate-documentation + (atdoc:generate-html-documentation '(:xuriella) atdoc-directory :index-title "Xuriella XSLT API reference" :heading "Xuriella XSLT" - :css (merge-pathnames "doc/atdoc.css" base))) + :css (merge-pathnames "doc/atdoc.css" base) + :single-page-p t)) diff --git a/doc/atdoc/index.css b/doc/atdoc/index.css index d9e85df..85e4d5b 100644 --- a/doc/atdoc/index.css +++ b/doc/atdoc/index.css @@ -37,10 +37,14 @@ a { body { color: #000000; background-color: #ffffff; + margin: 0 0 0 0; +/* margin-top: 2em; margin-right: 20pt; margin-bottom: 10%; + */ font-family: verdana, arial; + font-size: 8pt; } .main { @@ -65,11 +69,16 @@ h2 { } h3 { - color: #0070a0; + background-color: #f4f4f4; + padding-top: 4px; + padding-bottom: 4px; + border-bottom: 1px solid #80d8fd; + color: #000000; width: 90%; - border-bottom: 1px solid #0070a0; - margin-left: -3px; - padding-left: 3px; + margin-top: 2em; + margin-left: -3px; + padding-left: 3px; + font-weight: bold; } h4 { @@ -114,10 +123,57 @@ pre { padding-bottom: 1em; } +#header table { + width: 95%; + position: absolute; + bottom: 10px; + margin-right: 1em; +} + #header { - margin-right: 22px; - border-bottom: 1px solid black; + background: url(header.gif); + position: relative; /* so that the table is relativ to this */ + width: 100%; + height: 70px; font-family: verdana, arial; font-size: 12pt; padding-bottom: 1px; } + +#sp-package-list { + /* ... */ +} + +#sp-about-packages { + /* ... */ +} + +.sp-lambda-list { + width: 90%; + background-color: #f4f4f4; + padding: 3px 3px 3px 3px; +} + +.sp-definition { + width: 90%; + border: 1px solid #cccccc; + padding: 3px 3px 3px 3px; +} + +.sp-definition-body { + padding-left: 10%; + padding-bottom: 2em; +} + +.sp-definition-body ul { + margin-top: 0; + margin-bottom: 0; +} + +.sp-return { +} + +.sph3 { + padding-top: 1em; + font-weight: bold; +} diff --git a/doc/example.xml b/doc/example.xml index 8a0e715..e333408 100644 --- a/doc/example.xml +++ b/doc/example.xml @@ -5,8 +5,8 @@

Suppose you're writing a web application (say, - using Hunchentoot), and you would like to show - directory contents. + using Hunchentoot), + and you would like to show directory contents.

We do that in two steps, strictly separating the programmer-written @@ -20,7 +20,7 @@ document listing the files.

  • - In the main step, the run that XML document through an XSL + In the main step, we run that XML document through an XSL stylesheet to generate HTML.
  • diff --git a/doc/index.xml b/doc/index.xml index 3f40492..eef10f8 100644 --- a/doc/index.xml +++ b/doc/index.xml @@ -12,9 +12,9 @@

    Please send bug reports - to - cxml-devel@common-lisp.net - (list information). + to + xuriella-devel@common-lisp.net + (list information).

    Related projects

    diff --git a/doc/index.xsl b/doc/index.xsl index 1e11eeb..4d7f275 100644 --- a/doc/index.xsl +++ b/doc/index.xsl @@ -98,7 +98,7 @@
     
  • - API documentation + API documentation
  • diff --git a/doc/installation.xml b/doc/installation.xml index e3fbb6b..5207bc0 100644 --- a/doc/installation.xml +++ b/doc/installation.xml @@ -2,10 +2,8 @@

    Download

    - - Download a - tarball. - + Download a + tarball.

    Get it from git://repo.or.cz/xuriella.git -- 2.11.4.GIT