*** empty log message ***

This commit is contained in:
hyung-hwan 2007-02-04 14:24:10 +00:00
parent b7f1b40166
commit 8b4f81fcb4
4 changed files with 33 additions and 2 deletions

27
ase/doc/ase-en.man Normal file
View File

@ -0,0 +1,27 @@
.title ASE
= ASE =
ASE is a programming library implementing various programming languages for embedding purposes. The library is developed in the C programming language and provides the JNI binding to JAVA and the COM interface.
== Download ==
Download the library source code from the following links.
ase-0.1.0.tar.gz
[[[
* {Link 1,ase-0.1.0.tar.gz}
* {Link 2,http://my.dreamwiz.com/bacon/ase-0.1.0.tar.gz}
]]]
== Documentation ==
[[[
* {Quickstart,quickstart.html}
* {User guide,userguide.html}
* {Frequently Asked Questions,faq.html}
]]]
== Licensing ==
ASE is distributed under a {BSD license,license-en.html} and is free for all uses.

View File

@ -1,5 +1,5 @@
/*
* $Id: doc.awk,v 1.8 2007-02-04 13:00:37 bacon Exp $
* $Id: doc.awk,v 1.9 2007-02-04 14:24:10 bacon Exp $
*
* {License}
*/
@ -51,7 +51,11 @@ BEGIN {
header && /^\.[[:alpha:]]+[[:space:]]/ {
if ($1 == ".title")
{
print "<title>" $2 "</title>";
local i;
printf "<title>";
for (i = 2; i <= NF; i++) printf "%s ", $i;
print "</title>";
}
}