diff options
| author | fukachan <fukachan> | 2001-03-18 04:55:52 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2001-03-18 04:55:52 +0000 |
| commit | fbd7cf87af76ee575c062dc6326a5fb2cdabdf5f (patch) | |
| tree | e1c62bc2f28f2f953ed22d5155945546cfe2a06d | |
| parent | 1da755d8a327d125d60d51320cf57a2e6ee610c9 (diff) | |
| download | fml8-fbd7cf87af76ee575c062dc6326a5fb2cdabdf5f.tar.gz fml8-fbd7cf87af76ee575c062dc6326a5fb2cdabdf5f.tar.bz2 fml8-fbd7cf87af76ee575c062dc6326a5fb2cdabdf5f.zip | |
generate documents on SQL::
| -rw-r--r-- | fml/lib/Makefile | 1 | ||||
| -rw-r--r-- | fml/lib/SQL/Makefile | 18 | ||||
| -rw-r--r-- | fml/lib/SQL/Schema/.cvsignore | 1 | ||||
| -rw-r--r-- | fml/lib/SQL/Schema/Makefile | 6 | ||||
| -rw-r--r-- | fml/lib/SQL/Schema/index.ja.html | 24 | ||||
| -rw-r--r-- | fml/lib/SQL/index.ja.html | 20 | ||||
| -rw-r--r-- | fml/lib/index.ja.html | 3 |
7 files changed, 73 insertions, 0 deletions
diff --git a/fml/lib/Makefile b/fml/lib/Makefile index 2f6bfef1..02b7effc 100644 --- a/fml/lib/Makefile +++ b/fml/lib/Makefile @@ -12,6 +12,7 @@ _subdir: [A-Z]* (cd IO; make html) (cd MailingList; make html) (cd Tie; make html) + (cd SQL; make html) (cd ErrorMessages; make html) _clean: diff --git a/fml/lib/SQL/Makefile b/fml/lib/SQL/Makefile new file mode 100644 index 00000000..2fcb52ac --- /dev/null +++ b/fml/lib/SQL/Makefile @@ -0,0 +1,18 @@ +all: anal + +anal: + @ find . | sort | grep -v CVS | sed 's@./@@' + +html: _subdir index.ja.html + +_subdir: + (cd Schema;make html) + +index.ja.html: *.pm + ../../../doc/bin/dir2url.pl > index.ja.html + +_clean: + rm -f index.ja.html */index.ja.html + +clean: + (cd ../../..;make clean) diff --git a/fml/lib/SQL/Schema/.cvsignore b/fml/lib/SQL/Schema/.cvsignore new file mode 100644 index 00000000..b643ba41 --- /dev/null +++ b/fml/lib/SQL/Schema/.cvsignore @@ -0,0 +1 @@ +@@doc diff --git a/fml/lib/SQL/Schema/Makefile b/fml/lib/SQL/Schema/Makefile new file mode 100644 index 00000000..795737fa --- /dev/null +++ b/fml/lib/SQL/Schema/Makefile @@ -0,0 +1,6 @@ +all: html + +html: index.ja.html + +index.ja.html: *pm + ../../../../doc/bin/dir2url.pl > index.ja.html diff --git a/fml/lib/SQL/Schema/index.ja.html b/fml/lib/SQL/Schema/index.ja.html new file mode 100644 index 00000000..3667f127 --- /dev/null +++ b/fml/lib/SQL/Schema/index.ja.html @@ -0,0 +1,24 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> +<HTML> +<HEAD> +<TITLE> +SQL/Schema::* classes +</TITLE> +<META http-equiv="Content-Type" + content="text/html; charset=EUC-JP"> +</HEAD> + +<BODY BGCOLOR="#E6E6FA"> +<CENTER><EM>SQL::Schema class modules</EM></CENTER> +<HR> +<TABLE> +<TR> +<TD> + toymodel.pm <TD> +<A HREF="toymodel.pm">[source]</A> +<TD> +<A HREF="@@doc/toymodel.txt">[manual]</A> +<TD> +</TABLE> +</BODY> +</HTML> diff --git a/fml/lib/SQL/index.ja.html b/fml/lib/SQL/index.ja.html new file mode 100644 index 00000000..2bc0c272 --- /dev/null +++ b/fml/lib/SQL/index.ja.html @@ -0,0 +1,20 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> +<HTML> +<HEAD> +<TITLE> +SQL::* classes +</TITLE> +<META http-equiv="Content-Type" + content="text/html; charset=EUC-JP"> +</HEAD> + +<BODY BGCOLOR="#E6E6FA"> +<CENTER><EM>SQL class modules</EM></CENTER> +<HR> +<TABLE> +<TR> +<TD> + <A HREF=Schema/index.ja.html>SQL::Schema::* class</A> +</TABLE> +</BODY> +</HTML> diff --git a/fml/lib/index.ja.html b/fml/lib/index.ja.html index bfcc3dc9..19d29402 100644 --- a/fml/lib/index.ja.html +++ b/fml/lib/index.ja.html @@ -32,6 +32,9 @@ <A HREF=MailingList/index.ja.html>MailingList::*</A> <TR> <TD> + <A HREF=SQL/index.ja.html>SQL::*</A> +<TR> +<TD> <A HREF=Tie/index.ja.html>Tie::*</A> </TABLE> </BODY> |
