diff options
| author | fukachan <fukachan> | 2001-04-17 11:50:15 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2001-04-17 11:50:15 +0000 |
| commit | 5c4a122130ef36fef6530b31761ad51b6c10f0f1 (patch) | |
| tree | a19d889f03cc8b6a5337281869119b2d3f2407ea | |
| parent | fe3e763bba6c4ff60e82600fcde428f8471b77b6 (diff) | |
| download | fml8-snap-20010417.tar.gz fml8-snap-20010417.tar.bz2 fml8-snap-20010417.zip | |
tiny sgml samples for fml 5.0 tutorialsnap-20010417
| -rw-r--r-- | fml/doc/tutorial/.cvsignore | 1 | ||||
| -rw-r--r-- | fml/doc/tutorial/Makefile | 9 | ||||
| -rw-r--r-- | fml/doc/tutorial/catalog.sample | 6 | ||||
| -rw-r--r-- | fml/doc/tutorial/fml-devel.sgml | 32 | ||||
| -rw-r--r-- | fml/doc/tutorial/intro.sgml | 5 | ||||
| -rw-r--r-- | fml/doc/tutorial/reference.sgml | 13 |
6 files changed, 66 insertions, 0 deletions
diff --git a/fml/doc/tutorial/.cvsignore b/fml/doc/tutorial/.cvsignore new file mode 100644 index 00000000..04e74a53 --- /dev/null +++ b/fml/doc/tutorial/.cvsignore @@ -0,0 +1 @@ +fml-devel.fot diff --git a/fml/doc/tutorial/Makefile b/fml/doc/tutorial/Makefile new file mode 100644 index 00000000..9c1cf7be --- /dev/null +++ b/fml/doc/tutorial/Makefile @@ -0,0 +1,9 @@ +all: html + +html: + sgmltools -v -b html -j "-v" fml-devel.sgml 2>&1 |\ + uniq + +clean: + find . -type f -print |grep '~' |perl -nple unlink + rm -fr fml-devel
\ No newline at end of file diff --git a/fml/doc/tutorial/catalog.sample b/fml/doc/tutorial/catalog.sample new file mode 100644 index 00000000..38bfe634 --- /dev/null +++ b/fml/doc/tutorial/catalog.sample @@ -0,0 +1,6 @@ +CATALOG "/usr/pkg/share/sgml/docbook/3.1/catalog" +CATALOG "/usr/pkg/share/sgml/iso8879/catalog" +CATALOG "/usr/pkg/share/sgml/iso12083/catalog" +CATALOG "/usr/pkg/share/sgml/jade/catalog" +CATALOG "/usr/local/share/sgml/stylesheets/sgmltools/sgmltools.cat" +CATALOG "/usr/local/share/sgml/dtd/sgmltools/catalog" diff --git a/fml/doc/tutorial/fml-devel.sgml b/fml/doc/tutorial/fml-devel.sgml new file mode 100644 index 00000000..07f9e7cb --- /dev/null +++ b/fml/doc/tutorial/fml-devel.sgml @@ -0,0 +1,32 @@ +<!doctype book public "-//OASIS//DTD DocBook V3.1//EN" [ +<!entity intro SYSTEM "intro.sgml"> +<!entity reference SYSTEM "reference.sgml"> +]> + +<!-- +This is an sgml using DocBook dtd. Use sgmltools version 2.0.x or above +to generate various output formats. +--> + +<book> + <bookinfo> + <title>fml-devel reference manual</title> + <author>Ken'ichi Fukamachi</author> + <copyright><year/2001/<holder/Ken'ichi Fukamachi/</copyright> + <legalnotice> + <para> + All rights reserved. This program is free software; you can + redistribute it and/or modify it under the same terms as Perl itself. + </para> + </legalnotice> + </bookinfo> + + <chapter id="intro"> + &intro; + </chapter> + + <chapter id="reference"> + &reference; + </chapter> + +</book> diff --git a/fml/doc/tutorial/intro.sgml b/fml/doc/tutorial/intro.sgml new file mode 100644 index 00000000..ddfd15de --- /dev/null +++ b/fml/doc/tutorial/intro.sgml @@ -0,0 +1,5 @@ + <title>Introduction to fml-devel</title> + + <para> + fml-devel は将来 fml 5.0 になるであろうという + </para> diff --git a/fml/doc/tutorial/reference.sgml b/fml/doc/tutorial/reference.sgml new file mode 100644 index 00000000..b2e4a31a --- /dev/null +++ b/fml/doc/tutorial/reference.sgml @@ -0,0 +1,13 @@ + + <title>Reference</title> + <para> + This chapter documents the drivers and options you may specify + in the configuration file. + </para> + <sect1> + <title>Source drivers</title> + <para> + The following drivers may be used in the source statement, as + described in the previous chapter. + </para> + </sect1> |
