[armedbear-cvs] r13619 - trunk/abcl/doc/manual
mevenson at common-lisp.net
mevenson at common-lisp.net
Mon Oct 3 06:32:47 UTC 2011
Author: mevenson
Date: Sun Oct 2 23:32:46 2011
New Revision: 13619
Log:
More incremental progress.
Modified:
trunk/abcl/doc/manual/abcl.tex
Modified: trunk/abcl/doc/manual/abcl.tex
==============================================================================
--- trunk/abcl/doc/manual/abcl.tex Sun Oct 2 11:18:12 2011 (r13618)
+++ trunk/abcl/doc/manual/abcl.tex Sun Oct 2 23:32:46 2011 (r13619)
@@ -320,7 +320,7 @@
\begin{listing-lisp}
CL-USER> (add-to-classpath "/path/to/some.jar")
-\end{listing-lisp}p
+\end{listing-lisp}
\subsection{API}
@@ -333,7 +333,7 @@
\subsection{API}
-% TODO document the THREADS package.
+% include autogen docs for the THREADS package.
\include{threads}
\section{EXTENSIONS}
@@ -349,6 +349,7 @@
\subsection{API}
+% include autogen docs for the EXTENSIONS package.
\include{extensions}
\chapter{Beyond ANSI}
@@ -361,7 +362,7 @@
\section{Implementation Dependent}
\begin{enumerate}
\item Compiler to JVM 5 bytecode
- \item Pathname extensionsn
+ \item Pathname extensions
\end{enumerate}
\section{Pathname}
@@ -407,7 +408,7 @@
\ref{RHODES2007}
-The SEQUENCE pacakge fully implements Christopher Rhodes' proposal for
+The SEQUENCE package fully implements Christopher Rhodes' proposal for
extensible sequences. These user extensible sequences are used
directly in \code{java-collections.lisp} provide these CLOS
abstractions on the standard Java collection classes as defined by the
@@ -460,6 +461,42 @@
the corresponding Unicode character is output for characters whose
code is greater than 0x00ff.
+\section{ASDF}
+
+asdf-2.017 is packaged as core component of ABCL. By default, ASDF is
+not loaded, as it relies on the CLOS subsystem which can take a bit of
+time to initialize.
+
+\begin{listing-lisp}
+CL-USER> (require 'asdf)
+\end{listing-lisp}
+
+\chapter{Contrib}
+
+\section{abcl-asdf}
+
+Allow ASDF system definition which dynamically loads JVM artifacts
+such as jar archives via a Maven encapsulation.
+
+ASDF components added: JAR-FILE, JAR-DIRECTORY, CLASS-FILE-DIRECTORY
+and MVN.
+
+\section{asdf-install}
+
+An implementation of ASDF-INSTALL. Superceded by Quicklisp (qv.)
+
+\section{asdf-jar}
+
+ASDF-JAR provides a system for packaging ASDF systems into jar
+archives for ABCL. Given a running ABCL image with loadable ASDF
+systems the code in this package will recursively package all the
+required source and fasls in a jar archive.
+
+\section{jss}
+
+Java Syntax sucks, so we introduce this #" macro
+
+
\chapter{History}
ABCL was originally the extension language for the J editor, which was
@@ -475,6 +512,9 @@
In 201x, with the publication of this Manual explicitly stating the
conformance of Armed Bear Common Lisp to ANSI, we release abcl-1.0.
+
+
+
\section{References}
[Java2000]: A New Era for Java Protocol Handlers.
More information about the armedbear-cvs
mailing list