summaryrefslogtreecommitdiff
path: root/fml/doc/en/tutorial/internals
diff options
context:
space:
mode:
authorfukachan <fukachan>2003-07-29 12:13:54 +0000
committerfukachan <fukachan>2003-07-29 12:13:54 +0000
commit1e55dfb8a11faedb028f39d7529374a3714f4e9a (patch)
tree0b5c71787ba8bd1b6c3a71236119b41a618f98cf /fml/doc/en/tutorial/internals
parent9b8aa01b71fa6ae09e7e12a9fe2f5150e1adec3f (diff)
downloadfml8-1e55dfb8a11faedb028f39d7529374a3714f4e9a.tar.gz
fml8-1e55dfb8a11faedb028f39d7529374a3714f4e9a.tar.bz2
fml8-1e55dfb8a11faedb028f39d7529374a3714f4e9a.zip
translated
Diffstat (limited to 'fml/doc/en/tutorial/internals')
-rw-r--r--fml/doc/en/tutorial/internals/credential.sgml39
-rw-r--r--fml/doc/en/tutorial/internals/dbms.sgml52
2 files changed, 91 insertions, 0 deletions
diff --git a/fml/doc/en/tutorial/internals/credential.sgml b/fml/doc/en/tutorial/internals/credential.sgml
new file mode 100644
index 00000000..4a9409b6
--- /dev/null
+++ b/fml/doc/en/tutorial/internals/credential.sgml
@@ -0,0 +1,39 @@
+<!--
+ $FML$
+ $jaFML: credential.sgml,v 1.3 2003/04/15 14:51:40 fukachan Exp $
+-->
+
+<chapter id="credential">
+ <title>
+ User authentication
+ </title>
+
+<para>
+User authentication is provydes by methods of FML::Credential class.
+</para>
+
+
+
+<sect1>
+ <title>
+ Discussion: FML::Credential implementation
+ </title>
+
+
+<sect2>
+ <title>
+ case sensitive / case insensitive
+ </title>
+
+<para>
+For the user@domain address, we handle user part as case sensitively
+and domain as case insensitively. Is it better to prepare the option
+that handling of user part is insensitive.
+</para>
+
+</sect2>
+
+</sect1>
+
+
+</chapter>
diff --git a/fml/doc/en/tutorial/internals/dbms.sgml b/fml/doc/en/tutorial/internals/dbms.sgml
new file mode 100644
index 00000000..25a2d32a
--- /dev/null
+++ b/fml/doc/en/tutorial/internals/dbms.sgml
@@ -0,0 +1,52 @@
+<!--
+ $FML$
+ $jaFML: dbms.sgml,v 1.5 2003/05/31 08:51:09 fukachan Exp $
+-->
+
+<chapter id="dbms">
+ <title>
+ database management system
+ </title>
+
+
+<sect1 id="dbms.overview">
+ <title>
+ Overview
+ </title>
+
+<para>
+Communication with DBMS (database management system)
+via
+<link linkend="module.io.adapter">
+IO::Adapter
+</link>
+class.
+</para>
+
+<para>
+This class provides fundamental functions such as insersion and
+deletion of data. If more complex operation is needed, the
+preprocessing module calling IO::Adapter should handle it.
+</para>
+
+</sect1>
+
+
+<sect1 id="dbms.todo">
+ <title>
+ TODO
+ </title>
+
+<para>
+Consider if methods are least set or not.
+But
+<link linkend="module.io.adapter">
+IO::Adapter
+</link>
+is enough ?
+</para>
+
+</sect1>
+
+
+</chapter>