diff options
| author | fukachan <fukachan> | 2002-04-01 13:06:18 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2002-04-01 13:06:18 +0000 |
| commit | acdc830e5d95d238f3595e8a086a1a472906b1ed (patch) | |
| tree | 66b9c6728cca0d9112c00d60224af59beec0c77a | |
| parent | 9ef78f0fc678a53a5dc44b8d2c1e23c61831512d (diff) | |
| download | fml8-acdc830e5d95d238f3595e8a086a1a472906b1ed.tar.gz fml8-acdc830e5d95d238f3595e8a086a1a472906b1ed.tar.bz2 fml8-acdc830e5d95d238f3595e8a086a1a472906b1ed.zip | |
fml recipiessnapshot-20020401
| -rw-r--r-- | fml/doc/ja/recipes/.cvsignore | 2 | ||||
| -rw-r--r-- | fml/doc/ja/recipes/@template | 27 | ||||
| -rw-r--r-- | fml/doc/ja/recipes/Makefile | 40 | ||||
| -rw-r--r-- | fml/doc/ja/recipes/TOC | 56 | ||||
| -rw-r--r-- | fml/doc/ja/recipes/book.sgml | 21 | ||||
| -rw-r--r-- | fml/doc/ja/recipes/include/bookinfo.sgml | 41 | ||||
| -rw-r--r-- | fml/doc/ja/recipes/include/chapters.ent | 26 | ||||
| -rw-r--r-- | fml/doc/ja/recipes/member.sgml | 31 |
8 files changed, 244 insertions, 0 deletions
diff --git a/fml/doc/ja/recipes/.cvsignore b/fml/doc/ja/recipes/.cvsignore new file mode 100644 index 00000000..a66f5794 --- /dev/null +++ b/fml/doc/ja/recipes/.cvsignore @@ -0,0 +1,2 @@ +book +book.txt diff --git a/fml/doc/ja/recipes/@template b/fml/doc/ja/recipes/@template new file mode 100644 index 00000000..3a386936 --- /dev/null +++ b/fml/doc/ja/recipes/@template @@ -0,0 +1,27 @@ +<!-- + $FML: install.sgml,v 1.2 2001/05/19 05:51:59 fukachan Exp $ +--> + +<chapter id="__TEMPLATE__"> + <title> + __TEMPLATE__ + </title> + +<qandaset> +<qandaentry> + <question> + <para> + Question + </para> + </question> + + <answer> + <para> + Answer + </para> + </answer> +</qandaentry> +</qandaset> + + +</chapter> diff --git a/fml/doc/ja/recipes/Makefile b/fml/doc/ja/recipes/Makefile new file mode 100644 index 00000000..9b7e5103 --- /dev/null +++ b/fml/doc/ja/recipes/Makefile @@ -0,0 +1,40 @@ +# +# $FML: Makefile,v 1.1 2001/05/19 06:03:02 fukachan Exp $ +# + +# targets +TARGET = book +TARGET_DIR = ../../../../Documentation/ja/tutorial +ID = techtips.html + +### +### CONFIGURATIONS +### + +SOURCE = book +BOOK = recipies +BOOK_ID = index +TARGET_DIR = ../../../../Documentation/ja/$(BOOK) + + +### +### RULES +### + +_ARGV = SOURCE=$(SOURCE) BOOK=$(BOOK) BOOK_ID=$(BOOK_ID) +_MAKE = $(MAKE) -f ../Makefile.template $(_ARGV) + + +all: export + +html: + @ $(_MAKE) html + +clean: + @ $(_MAKE) clean + +export: + @ $(_MAKE) export + +scan: + @ $(_MAKE) scan diff --git a/fml/doc/ja/recipes/TOC b/fml/doc/ja/recipes/TOC new file mode 100644 index 00000000..39063b4a --- /dev/null +++ b/fml/doc/ja/recipes/TOC @@ -0,0 +1,56 @@ +はじめに +I部 イントロダクション +1章 イントロダクション +2章 fmlの操作 +3章 メーリングリストサーバの動作 +II部 fmlのセットアップ〜MLの作成 +4章 Unix上でのfmlのインストール +5章 Unix上でMLを作る +6章 Windows 2000/NT4上でのfmlのインストール +7章 アップグレード +8章 Unix上でのCGIのセットアップ +9章 fmlの動作確認 +III部 fmlのカスタマイズ +10章 MLのメンバーができること +11章 fml管理者ができること +12章 fmlの設定ファイルを変更する +13章 MLのスタイルのカスタマイズ +14章 ヘッダの書き換え +15章 fmlの返すメッセージをカスタマイズする +16章 記事のフィルタリング +17章 トラフィックを制限する(メール爆弾対策) +18章 リモート管理(メールでfmlを操作する) +19章 MLの暗号化 +20章 MLの記事をWWWで公開する +21章 まとめ送り +IV部 トラブルシューティング +22章 トラブル対応の手順 +23章 fmlのセットアップ時のトラブル +24章 配送やメールリーダにまつわるトラブル +25章 fml自体のトラブル +V部 その他のトピック +26章 日々の運用について +27章 エラーメールを自動解析する +28章 メールサーバの変更/引越し +29章 バーチャルドメイン +VI部 fmlの内部構造と機能拡張 +30章 変数と関数 +31章 リストファイルのフォーマット +32章 fml.plプロセスの動作 +33章 デバッグをする +34章 コマンドメールのカスタマイズ +35章 ケーススタディ:HOOKによる拡張 +VII部 Advanced Study +36章 fmlからデータベースへのアクセス +37章 配送の高速化について +38章 試論:現代的サーバデザインについて +あとがき +VIII部 付録 +付録A ミニ用語集 +付録B Unixの豆知識 +付録C メールサーバのインストール +付録D virus_check.phの例 +付録E makefmlリファレンス +付録F adminコマンド・リファレンス +付録G 変数とメニュー階層リスト(アルファベット順) +索引 diff --git a/fml/doc/ja/recipes/book.sgml b/fml/doc/ja/recipes/book.sgml new file mode 100644 index 00000000..10ca05bf --- /dev/null +++ b/fml/doc/ja/recipes/book.sgml @@ -0,0 +1,21 @@ +<!-- +This is an sgml using DocBook dtd. Use sgmltools version 2.0.x or above +to generate various output formats. + +$FML: book.sgml,v 1.1 2001/05/19 06:03:02 fukachan Exp $ +--> + +<!doctype book public "-//FML//DTD DocBook V3.1-Based Extension//EN" [ + <!entity % include SYSTEM "include/chapters.ent"> %include; +]> + +<book> + + &bookinfo; + + <toc></toc> + + &chapter.member; + +</book> + diff --git a/fml/doc/ja/recipes/include/bookinfo.sgml b/fml/doc/ja/recipes/include/bookinfo.sgml new file mode 100644 index 00000000..7419bf7a --- /dev/null +++ b/fml/doc/ja/recipes/include/bookinfo.sgml @@ -0,0 +1,41 @@ +<!-- + $FML: bookinfo.sgml,v 1.1.1.1 2001/05/19 05:59:27 fukachan Exp $ +--> + + <bookinfo> + <bookbiblio> + <title> + fml レシピ's + </title> + + <author> + <honorific> Dr </honorific> + <firstname> Ken'ichi </firstname> + <surname> Fukamachi </surname> + <affiliation> + <orgname>FML.ORG</orgname> + <address> + <email> + <ulink url="mailto:fukachan@fml.org"> + fukachan@fml.org + </ulink> + </email> + </address> + </affiliation> + </author> + + <copyright> + <year> 2002 </year> + <holder> Ken'ichi Fukamachi </holder> + </copyright> + + </bookbiblio> + + <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> diff --git a/fml/doc/ja/recipes/include/chapters.ent b/fml/doc/ja/recipes/include/chapters.ent new file mode 100644 index 00000000..a0538fae --- /dev/null +++ b/fml/doc/ja/recipes/include/chapters.ent @@ -0,0 +1,26 @@ +<!-- + $FML: chapters.ent,v 1.2 2001/05/19 06:03:03 fukachan Exp $ +--> + +<!entity versin "1.1"> + +<!-- ポインタ --> +<!entity fmlbible "『fml バイブル』(オライリージャパン刊)"> +<!entity www.fml.org "http://www.fml.org/fml/"> +<!entity fml4 "fml 4.0"> +<!entity fml5 "fml 5.0"> + + +<!-- 画像 --> +<!entity image.architecture SYSTEM "architecture.gif" ndata gif> + + +<!-- メタレベル --> +<!entity bookinfo SYSTEM "include/bookinfo.sgml"> +<!entity preface SYSTEM "preface.sgml"> +<!entity sect.terms SYSTEM "include/terms.sgml"> + + +<!-- chapters --> +<!entity chapter.member SYSTEM "member.sgml"> + diff --git a/fml/doc/ja/recipes/member.sgml b/fml/doc/ja/recipes/member.sgml new file mode 100644 index 00000000..4502aa42 --- /dev/null +++ b/fml/doc/ja/recipes/member.sgml @@ -0,0 +1,31 @@ +<!-- + $FML: general.sgml,v 1.4 2001/05/27 04:50:44 fukachan Exp $ +--> + +<chapter id="member"> + <title> + メンバー管理 + </title> + +<qandaset> +<qandaentry> +<question> + <para> + メンバー一覧が見たい + </para> +</question> + +<answer> +<para> +elena ML のメンバー一覧を見たい場合、 +<screen> +makefml list elena +</screen> +</para> +</answer> +</qandaentry> +</qandaset> + + + +</chapter> |
