summaryrefslogtreecommitdiff
path: root/fml/doc/ja/tutorial/command
diff options
context:
space:
mode:
Diffstat (limited to 'fml/doc/ja/tutorial/command')
-rw-r--r--fml/doc/ja/tutorial/command/extension.sgml4
-rw-r--r--fml/doc/ja/tutorial/command/internal.sgml6
-rw-r--r--fml/doc/ja/tutorial/command/module.sgml (renamed from fml/doc/ja/tutorial/command/chapter.sgml)46
3 files changed, 16 insertions, 40 deletions
diff --git a/fml/doc/ja/tutorial/command/extension.sgml b/fml/doc/ja/tutorial/command/extension.sgml
index 7a287745..a3331249 100644
--- a/fml/doc/ja/tutorial/command/extension.sgml
+++ b/fml/doc/ja/tutorial/command/extension.sgml
@@ -1,10 +1,10 @@
<!--
- $FML$
+ $FML: extension.sgml,v 1.1 2001/10/13 08:47:54 fukachan Exp $
-->
<sect1 id="fml.command.hack.example0">
- <title> コマンドの拡張の仕方の例 </title>
+ <title> コマンドの拡張の仕方 (予定) </title>
<sect2>
diff --git a/fml/doc/ja/tutorial/command/internal.sgml b/fml/doc/ja/tutorial/command/internal.sgml
index 0bfa8974..7cccd856 100644
--- a/fml/doc/ja/tutorial/command/internal.sgml
+++ b/fml/doc/ja/tutorial/command/internal.sgml
@@ -1,10 +1,10 @@
<!--
- $FML$
+ $FML: internal.sgml,v 1.1.1.1 2001/10/12 11:00:20 fukachan Exp $
-->
-<sect1 id="fml.command.overview">
+<sect1 id="fml.command.interal.change">
<title>
- コマンド処理の概要:
+ 議論:
『4.0 と 5.0 のコードの書き方はどのくらい違うか?』
</title>
diff --git a/fml/doc/ja/tutorial/command/chapter.sgml b/fml/doc/ja/tutorial/command/module.sgml
index 41e161f4..fd0fdd24 100644
--- a/fml/doc/ja/tutorial/command/chapter.sgml
+++ b/fml/doc/ja/tutorial/command/module.sgml
@@ -1,43 +1,30 @@
<!--
- $FML: chapter.sgml,v 1.2 2001/10/12 11:14:19 fukachan Exp $
+ $FML$
-->
-<chapter id="fml.command.op">
+
+<sect1 id="fml.command.module.hierarchy">
<title>
- コマンド: fml をメールで操作する
+ コマンドが使うモジュール
</title>
<para>
-fml にメールで文字列(コマンド)を送り込むことで、fml に特定の処理をして
-もらうことができます。例えば、メンバーの登録、削除や、過去の記事を取り
-寄せるなどの処理です。
+5.0 では、
+コマンドメール、makefml そして CGI が使うモジュール
+は共有されています。
+ただし、その権限の差異によって、
+ユーザ用のモジュールと管理者用のモジュールの2つに分かれています。
+以下、これらのモジュール群の構成について解説します。
</para>
<para>
-fml 5.0 では
-<screen>
-メールによるコマンド処理
-makefml によるコマンド処理
-CGI でのコマンド処理
-</screen>
-これらすべての機能が FML::Command:: クラスのモジュールを使うように
-設計されています。
-</para>
-
-
-<sect1 id="fml.command.module.hierarchy">
- <title>
- FML::Command クラス以下の構成
- </title>
-
-<para>
FML::Command:: クラスは以下のような構成になっています。
<screen>
FML::Command.pm FML::Command クラス以下への入口
FML::Command::ACL ACL
FML::Command::Utils よもやまの定義
FML::Command::User ユーザ用コマンド群
-FML::Command::Admin ユーザ用コマンド群
+FML::Command::Admin 管理者用コマンド群
</screen>
例えば、(メールでの)ユーザ用のコマンドの場合
FML::Command.pm を経由して
@@ -104,14 +91,3 @@ FML::Command::Admin::コマンド.pm
</sect1>
-
-
-<!-- コマンドの例 -->
-&sect.command.internal;
-
-
-<!-- コマンドの拡張例 -->
-&sect.command.extension;
-
-
-</chapter>