summaryrefslogtreecommitdiff
path: root/fml/doc/ja/tutorial/internals/db.thread.sgml
diff options
context:
space:
mode:
Diffstat (limited to 'fml/doc/ja/tutorial/internals/db.thread.sgml')
-rw-r--r--fml/doc/ja/tutorial/internals/db.thread.sgml60
1 files changed, 0 insertions, 60 deletions
diff --git a/fml/doc/ja/tutorial/internals/db.thread.sgml b/fml/doc/ja/tutorial/internals/db.thread.sgml
deleted file mode 100644
index 059a9824..00000000
--- a/fml/doc/ja/tutorial/internals/db.thread.sgml
+++ /dev/null
@@ -1,60 +0,0 @@
-<!--
- $FML$
--->
-
-<chapter id="db.thread">
- <title>
- スレッド・データベース
- </title>
-
-
-<para>
-スレッドのデータベースは
-「主に article_id か thread_id が primary key」
-です。
-<screen>
-$status open / close
-$ml_name elena
-article_id 100
-thread_id elena/100
-$from ヘッダの From: (めーる@アドレスの形式)
-$sender ヘッダの Sender: (めーる@アドレスの形式)
-$x_sender ヘッダの X-Sender: (めーる@アドレスの形式)
-
-[thread]
-
- aritcle_id => thread_id
-
-[article]
-
- thread_id => article_ids
-
- Example: elena/100 => 100 101 103 105
-
-[date]
-
- aritcle_id => unix_time
-
-[sender]
-
- article_id => from
-
-[message_id]
-
- mesasge_id => thread_id
-
-[status]
-
- thread_id => $status
-
-[index]
-
- thread_id => "$ml_name " *
-
- Example: support/100 => support sales
-</screen>
-
-</para>
-
-
-</chapter>