Commit 1b6fbbe5 authored by Gary King's avatar Gary King
Browse files

more website tomfoolery

parent 6545466d
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -13,8 +13,8 @@ Simple Lisp programs are defined in a single file; to use
them, you load the file and go. More complicated systems,
however, are made up of many files (and possibly depend on
other systems made up of their own files). Using these
requires loading the sub-systems and files in the right order
- an error-prone and tedious task.
requires loading the sub-systems and files in the right 
order -- an error-prone and tedious task.

ASDF is *a*nother *s*ystem *d*efinition *f*acility: a tool
for describing the sub-systems and files that comprise a
@@ -82,7 +82,7 @@ You can load system definition files by hand:
    (load "/path/to/my/system/my-system.asd")

or you can tell ASDF where to look to find them using the
[*central-registry*][*central-registry*] parameter.
[`*central-registry*`][*central-registry*] parameter.

{docs *central-registry*}

+10 −12
Original line number Diff line number Diff line
@@ -12,18 +12,14 @@

### What it is

ASDF is
ASDF is a tool for describing how source files are organized:
what depends on which and when. I.e., it is *A*nother
*S*ystem *D*efinition *F*acility.

* *A*nother *S*ystem *D*efinition *F*acility.

* A way to describe how your source files are organized: what
  depends on which and when.

* A de-facto standard in need of some tender loving care.

For details, you can read the [tutorial][],
browse the [manual][], or just look further down
this page to grab the source code.
If you want to use ASDF with other people's systems, see the
[getting started][getting-started] guide. For details on
defining your own systems, you can read the [tutorial][],
browse the [manual][].

<a id="mailing-lists"></a>

@@ -59,8 +55,10 @@ with questions or patches.

### What is happening

 * Sunday; May 3, 2009 - moving towards git and Common-Lisp.net
 * Saturday; June 6, 2009 - updated website and added [oos][]
   shortcuts like [system-load][].

 * Sunday; May 3, 2009 - moving towards git and Common-Lisp.net


</div>
+42 −245

File changed.

Preview size limit exceeded, changes collapsed.

+1 −2
Original line number Diff line number Diff line
@@ -5,10 +5,9 @@
<a class="nav" href="http://www.lisp.org/" title="Association of Lisp Users"><img src="http://common-lisp.net/project/cl-containers/shared/buttons/lambda-lisp.png" width="80" height="15" title="ALU emblem" alt="ALU button" /></a>
<a class="nav" href="http://common-lisp.net/" title="Common-Lisp.net"><img src="http://common-lisp.net/project/cl-containers/shared/buttons/lisp-lizard.png" width="80" height="15" title="Common-Lisp.net" alt="Common-Lisp.net button" /></a>

<span class="copyright">Copyright (c) 2001-2009 Daniel Barlow and [contributors][]</span>
<span class="copyright">[Copyright][] (c) 2001-2009 Daniel Barlow and [contributors][]</span>

ASDF has an [MIT style][mit-license] license

<div id="timestamp">Last updated {today} at {now}</div>

</div>
+8 −4
Original line number Diff line number Diff line
{include shared-links.md}

{set-property html yes}
{set-property author "Gary Warren King"}
{set-property author "the ASDF group"}
{set-property title "ASDF - Another System Definition Facility"}
{set-property style-sheet "style.css"}

@@ -9,13 +9,17 @@
  [tutorial]: user-guide.html
  [manual]: manual.html
  [Overview]: overview.html
  [copyright]: copyright.html
  [contributors]: contributors.html
  [sys-guide]: manual.html
  [getting-started]: getting-started.html
  [FAQ]: faq.html

 [asdf-devel]: http://common-lisp.net/cgi-bin/mailman/listinfo/asdf-devel
 [asdf-announce]: http://common-lisp.net/cgi-bin/mailman/listinfo/asdf-announce

 [asdf-home]: http://common-lisp.net/project/asdf/
 [asdf.lisp]: http://common-lisp.net/project/asdf/asdf.lisp
 [tarball]: http://common-lisp.net/project/asdf/asdf.tar.gz
 
 [contributors]: contributors.html
 
 No newline at end of file
 [hs-require]: 
 No newline at end of file
Loading