*** empty log message ***
authorhanda <handa>
Tue, 26 Aug 2003 11:50:32 +0000 (11:50 +0000)
committerhanda <handa>
Tue, 26 Aug 2003 11:50:32 +0000 (11:50 +0000)
Makefile.am
utils/dbdata.sh

index d7d8665..5358407 100644 (file)
@@ -95,7 +95,7 @@ SRCALL = \
        data/m17n-config.txt data/exprog.txt data/exmim.txt data/dbformat.txt \
        data/dbdata.txt
 
-DBDATA = $(shell echo @M17NDB@/*.mim @M17NDB@/*.flt)
+DBDATA = $(shell echo @M17NDB@/*.mim @M17NDB@/*.flt @M17NDB@/*.tab @M17NDB@/*.tbl)
 
 HTML_USR_TARGET = usr/html/index.html usr/html/parrot.png
 HTML_JA_TARGET = ja/html/index.html ja/html/parrot.png
index eea741a..22363c8 100755 (executable)
@@ -13,6 +13,8 @@ M17N 
 <ul>
 <li> @ref mim-list
 <li> @ref flt-list
+<li> @ref charprop-list
+<li> @ref misc-list
 </ul>
 */
 
@@ -60,8 +62,55 @@ done
 cat <<EOF
 </ul>
 */
+
+/***en @section charprop-list Character Property
+
+List of character properties provided by the m17n databasse and their
+brief descriptions.  */
+
+/***ja @section charprop-list Ê¸»ú¥×¥í¥Ñ¥Æ¥£
+
+M17N ¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬Ä󶡤¹¤ëʸ»ú¥×¥í¥Ñ¥Æ¥£¤Î¥ê¥¹¥È¤È¤½¤ì¤¾¤ì¤Î´Êñ¤ÊÀâÌÀ¡£ */
+
+/***
+<ul>
+EOF
+
+for file in $1/*.tab; do
+  sed -n '/^# <li>/,/^$/ s/^# *//p' < $file
+  echo
+done
+
+cat <<EOF
+</ul>
+*/
+
+/***en @section misc-list The other data
+
+List of the other data provided by the m17n databasse and their brief
+descriptions.  */
+
+/***ja @section misc-list ¤½¤Î¾¤Î¥Ç¡¼¥¿
+
+M17N ¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬Ä󶡤¹¤ë¤½¤Î¾¤Î¥Ç¡¼¥¿¤È¤½¤ì¤¾¤ì¤Î´Êñ¤ÊÀâÌÀ¡£ */
+
+/***
+<ul>
+EOF
+
+for file in $1/*.tbl; do
+  sed -n '/^;; <li>/,/^$/ s/^;; *//p' < $file
+  echo
+done
+
+cat <<EOF
+</ul>
+*/
 EOF
 
 # Local Variables:
 # coding: euc-jp
 # End:
+
+
+