From 0a052fac8b4d98a220c661c96de98a5382e6c699 Mon Sep 17 00:00:00 2001 From: handa Date: Wed, 19 Oct 2005 00:35:27 +0000 Subject: [PATCH] *** empty log message *** --- utils/dbdata.sh | 117 +++---------------------------------------------------- 1 file changed, 6 insertions(+), 111 deletions(-) diff --git a/utils/dbdata.sh b/utils/dbdata.sh index 77b96db..4dce3a0 100755 --- a/utils/dbdata.sh +++ b/utils/dbdata.sh @@ -1,114 +1,9 @@ #!/bin/sh -cat < -
  • @ref mim-list -
  • @ref flt-list -
  • @ref charprop-list -
  • @ref misc-list - -*/ - -/***en @section mim-list Input method - -List of input methods provided by the m17n databasse and their brief -descriptions. */ - -/***ja @section mim-list ÆþÎϥ᥽¥Ã¥É - -M17N ¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬Ä󶡤¹¤ëÆþÎϥ᥽¥Ã¥É¤Î¥ê¥¹¥È¤È¤½¤ì¤¾¤ì¤Î´Êñ¤ÊÀâÌÀ¡£ */ - -/*** -
      -EOF - -for file in $1/*.mim; do - sed -n '/^;;
    • /,/^$/ s/^;; *//p' < $file - echo -done - -cat < -*/ - -/***en @section flt-list Font Layout Table - -List of Font Layout Tables (FLTs) provided by the m17n databasse and -their brief descriptions. */ - -/***ja @section flt-list ¥Õ¥©¥ó¥È¡¦¥ì¥¤¥¢¥¦¥È¡¦¥Æ¡¼¥Ö¥ë - -M17N ¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬Ä󶡤¹¤ë¥Õ¥©¥ó¥È¡¦¥ì¥¤¥¢¥¦¥È¡¦¥Æ¡¼¥Ö¥ë (FLT) ¤Î¥ê¥¹ -¥È¤È¤½¤ì¤¾¤ì¤Î´Êñ¤ÊÀâÌÀ¡£ */ - -/*** -
        -EOF - -for file in $1/*.flt; do - sed -n '/^;;
      • /,/^$/ s/^;; *//p' < $file - echo +FILE=$1 +while shift 1; do + sed -n -e "/^(input-method/s/(input-method \([^ ]*\) \([^)]*\))/
      • $FILE \1 \2/p" $FILE + echo + sed -n -e '/^;;;/ s/^;;; *//p' -e '/^(description "/,/^")/ s/^(description "\|^")\|\\\|$//gp' $FILE + FILE=$1 done - -cat < -*/ - -/***en @section charprop-list Character Property - -List of character properties provided by the m17n databasse and their -brief descriptions. */ - -/***ja @section charprop-list ʸ»ú¥×¥í¥Ñ¥Æ¥£ - -M17N ¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬Ä󶡤¹¤ëʸ»ú¥×¥í¥Ñ¥Æ¥£¤Î¥ê¥¹¥È¤È¤½¤ì¤¾¤ì¤Î´Êñ¤ÊÀâÌÀ¡£ */ - -/*** -
          -EOF - -for file in $1/*.tab; do - sed -n '/^#
        • /,/^$/ s/^# *//p' < $file - echo -done - -cat < -*/ - -/***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 ¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬Ä󶡤¹¤ë¤½¤Î¾¤Î¥Ç¡¼¥¿¤È¤½¤ì¤¾¤ì¤Î´Êñ¤ÊÀâÌÀ¡£ */ - -/*** -
            -EOF - -for file in $1/*.tbl; do - sed -n '/^;;
          • /,/^$/ s/^;; *//p' < $file - echo -done - -cat < -*/ -EOF - -# Local Variables: -# coding: euc-jp -# End: -- 1.7.10.4