summaryrefslogtreecommitdiff
path: root/fml/doc/en/tutorial/command/internal.sgml
diff options
context:
space:
mode:
authorfukachan <fukachan>2003-08-02 03:05:53 +0000
committerfukachan <fukachan>2003-08-02 03:05:53 +0000
commitfb58227e2c2a6d061372a27409b96ea27ea75451 (patch)
treeeeb1171a255fef728b9604cafc39a027f288d78b /fml/doc/en/tutorial/command/internal.sgml
parent26f88d05d24fa845ab0c73f34cae9cf3d99cc91c (diff)
downloadfml8-fb58227e2c2a6d061372a27409b96ea27ea75451.tar.gz
fml8-fb58227e2c2a6d061372a27409b96ea27ea75451.tar.bz2
fml8-fb58227e2c2a6d061372a27409b96ea27ea75451.zip
clean up
Diffstat (limited to 'fml/doc/en/tutorial/command/internal.sgml')
-rw-r--r--fml/doc/en/tutorial/command/internal.sgml41
1 files changed, 20 insertions, 21 deletions
diff --git a/fml/doc/en/tutorial/command/internal.sgml b/fml/doc/en/tutorial/command/internal.sgml
index d671dcf0..75a4785f 100644
--- a/fml/doc/en/tutorial/command/internal.sgml
+++ b/fml/doc/en/tutorial/command/internal.sgml
@@ -1,5 +1,5 @@
<!--
- $FML$
+ $FML: internal.sgml,v 1.1 2003/07/29 12:13:54 fukachan Exp $
$jaFML: internal.sgml,v 1.6 2003/04/15 14:51:36 fukachan Exp $
-->
@@ -9,12 +9,8 @@
</title>
<para>
-(... not yet translated ...)
-</para>
-
-<para>
-Consider help command which send back help message to the sender, an
-example of command.
+Consider "help" command an an example of command,
+which sends back help message to the sender.
</para>
<para>
@@ -25,10 +21,10 @@ FML::Process::Command via AUTOLOAD of FML::Command.
<warning>
<para>
-All commands are implemented as either of FML::Command::User
-FML::Command::Admin classes. CUI (makefml, fml) and GUI (CGI) uses
-FML::Command::Admin class. Command mail users both classes according
-to the context.
+All commands are implemented at either of FML::Command::User
+FML::Command::Admin classes. Both CUI (makefml, fml) and GUI (CGI)
+uses FML::Command::Admin class. Instead command mail users both
+classes according to the context.
</para>
</warning>
@@ -66,24 +62,24 @@ sub process
where $curproc is an object, which type is hash reference.
It corresponds to %Envelope of &fml4;.
It contains several references to objects for this process.
-$config is an object, but global in $fml4;.
+For exmple, variable $config is an object holding configuration variables.
</para>
<para>
prepare_file_to_return() converts the message language and expands the
-arguments in the message templtes.
+arguments in the message templates.
</para>
<para>
$curproc->reply_message() inserts the specified mesage string into the
-queue.
+message queue of this process on memory.
</para>
<para>
-The error/log messages queued in are aggergated to one message at the
-last of the current process. It is driven by Mail::Delivery class to
-send it. If needed, the aggregator handles text strings and multipart
-properly.
+The error/log messages queued in on memory are aggergated to one
+message at the last of the current process. Mail::Delivery class
+handles the aggregation and send it. If needed, the aggregator handles
+text strings and multipart properly to build one message.
</para>
<para>
@@ -92,9 +88,12 @@ is different.
</para>
<para>
-FYI: commands such as get for the file manipulation uses the same
-message queuing mechanism. This is different from &fml4;'s Notify()
-fundamentally.
+FYI: commands such as "get" for the file manipulation uses the same
+message queuing mechanism. Notify() sends back immediately. This is
+different from &fml4;'s Notify() fundamentally.
</para>
</sect1>
+
+
+