ICU-1237 fix inverses (since they are from the bottom of the file up!)

X-SVN-Rev: 5921
This commit is contained in:
Mark Davis 2001-09-25 22:58:55 +00:00
parent fb79851f4e
commit 129caba477
10 changed files with 48 additions and 46 deletions

View File

@ -3,11 +3,11 @@
# Corporation and others. All Rights Reserved.
#--------------------------------------------------------------------
# $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/impl/data/Attic/Transliterator_Any_Accents.txt,v $
# $Date: 2001/09/25 21:08:32 $
# $Revision: 1.2 $
# $Date: 2001/09/25 22:58:55 $
# $Revision: 1.3 $
#--------------------------------------------------------------------
:: NFD (NFD) ;
:: NFD (NFC) ;
# to do: make reversible
@ -291,4 +291,4 @@ $pre v $post <> \u028C ; # LATIN SMALL LETTER TURNED V
# $pre YYY $post <> \u1E9A ; # LATIN SMALL LETTER A WITH RIGHT HALF RING
# $pre YYY $post <> \u207F ; # SUPERSCRIPT LATIN SMALL LETTER N
:: NFC (NFC) ;
:: NFC (NFD) ;

View File

@ -3,15 +3,15 @@
# Corporation and others. All Rights Reserved.
#--------------------------------------------------------------------
# $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/impl/data/Attic/Transliterator_Cyrillic_Latin.txt,v $
# $Date: 2001/09/25 20:48:15 $
# $Revision: 1.1 $
# $Date: 2001/09/25 22:58:55 $
# $Revision: 1.2 $
#--------------------------------------------------------------------
# TODO: add remaining characters
# Should add variants for Russian-English, Russian-German
# Those can use this as a base, and then remap cases
# like a $hat to ya or ja.
:: NFD (NFD) ;
:: NFD (NFC) ;
$modprime = \u02B9;
$modprime2 = \u02BA;
@ -285,4 +285,4 @@ $comma = \u0326 ;
### ѷ <> XXX ; # CYRILLIC SMALL LETTER IZHITSA
### Ѷ <> XXX ; # CYRILLIC CAPITAL LETTER IZHITSA
:: NFC (NFC) ;
:: NFC (NFD) ;

View File

@ -3,12 +3,12 @@
# Corporation and others. All Rights Reserved.
#--------------------------------------------------------------------
# $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/impl/data/Attic/Transliterator_Greek_Latin.txt,v $
# $Date: 2001/09/25 21:08:32 $
# $Revision: 1.2 $
# $Date: 2001/09/25 22:58:55 $
# $Revision: 1.3 $
#--------------------------------------------------------------------
# Rules are predicated on running NFD first, and NFC afterwards
::NFD (NFD) ;
::NFD (NFC) ;
# TEST CASES
@ -248,4 +248,4 @@ $vowel { Υ <> U ;
| u < v ;
| u < w ;
::NFC (NFC) ;
::NFC (NFD) ;

View File

@ -3,12 +3,13 @@
# Corporation and others. All Rights Reserved.
#--------------------------------------------------------------------
# $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/impl/data/Attic/Transliterator_Hiragana_Latin.txt,v $
# $Date: 2001/09/25 21:08:32 $
# $Revision: 1.2 $
# $Date: 2001/09/25 22:58:55 $
# $Revision: 1.3 $
#--------------------------------------------------------------------
# NOTE: Needs fix before it will really work, since it needs to not affect Katakana
# :: [[:Hiragana:][:Inherited:] ;
:: [[:Hiragana:][:Inherited:] ; # filter to just look at hirgana coming in
:: Hiragana-Katakana (Latin-Katakana) ;
:: Katakana-Latin (Katakana-Hiragana) ;
:: Hiragana-Katakana;
:: Katakana-Latin;
:: ([[:Latin:][:Inherited:]) ; # filter to just look at latin coming in to the inverse

View File

@ -3,12 +3,12 @@
# Corporation and others. All Rights Reserved.
#--------------------------------------------------------------------
# $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/icu/impl/data/Attic/Transliterator_Latin_Katakana.txt,v $
# $Date: 2001/09/25 21:08:32 $
# $Revision: 1.2 $
# $Date: 2001/09/25 22:58:55 $
# $Revision: 1.3 $
#--------------------------------------------------------------------
::NFD (NFD) ;
:: [a-zA-Z] Lower ();
::NFD (NFC) ;
:: [:latin:] Lower ();
# Uses modified Hepburn. Small changes to make unambiguous.
@ -440,6 +440,6 @@ x > | ks ;
'~' > ; # delete stray tildes between letters
# '' > ; # delete stray quotes between letters
:: NFC (NFC) ;
:: NFC (NFD) ;
# eof

View File

@ -3,11 +3,11 @@
# Corporation and others. All Rights Reserved.
#--------------------------------------------------------------------
# $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/text/resources/Attic/Transliterator_Any_Accents.txt,v $
# $Date: 2001/09/25 21:08:32 $
# $Revision: 1.2 $
# $Date: 2001/09/25 22:58:55 $
# $Revision: 1.3 $
#--------------------------------------------------------------------
:: NFD (NFD) ;
:: NFD (NFC) ;
# to do: make reversible
@ -291,4 +291,4 @@ $pre v $post <> \u028C ; # LATIN SMALL LETTER TURNED V
# $pre YYY $post <> \u1E9A ; # LATIN SMALL LETTER A WITH RIGHT HALF RING
# $pre YYY $post <> \u207F ; # SUPERSCRIPT LATIN SMALL LETTER N
:: NFC (NFC) ;
:: NFC (NFD) ;

View File

@ -3,15 +3,15 @@
# Corporation and others. All Rights Reserved.
#--------------------------------------------------------------------
# $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/text/resources/Attic/Transliterator_Cyrillic_Latin.txt,v $
# $Date: 2001/09/25 20:48:15 $
# $Revision: 1.1 $
# $Date: 2001/09/25 22:58:55 $
# $Revision: 1.2 $
#--------------------------------------------------------------------
# TODO: add remaining characters
# Should add variants for Russian-English, Russian-German
# Those can use this as a base, and then remap cases
# like a $hat to ya or ja.
:: NFD (NFD) ;
:: NFD (NFC) ;
$modprime = \u02B9;
$modprime2 = \u02BA;
@ -285,4 +285,4 @@ $comma = \u0326 ;
### ѷ <> XXX ; # CYRILLIC SMALL LETTER IZHITSA
### Ѷ <> XXX ; # CYRILLIC CAPITAL LETTER IZHITSA
:: NFC (NFC) ;
:: NFC (NFD) ;

View File

@ -3,12 +3,12 @@
# Corporation and others. All Rights Reserved.
#--------------------------------------------------------------------
# $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/text/resources/Attic/Transliterator_Greek_Latin.txt,v $
# $Date: 2001/09/25 21:08:32 $
# $Revision: 1.2 $
# $Date: 2001/09/25 22:58:55 $
# $Revision: 1.3 $
#--------------------------------------------------------------------
# Rules are predicated on running NFD first, and NFC afterwards
::NFD (NFD) ;
::NFD (NFC) ;
# TEST CASES
@ -248,4 +248,4 @@ $vowel { Υ <> U ;
| u < v ;
| u < w ;
::NFC (NFC) ;
::NFC (NFD) ;

View File

@ -3,12 +3,13 @@
# Corporation and others. All Rights Reserved.
#--------------------------------------------------------------------
# $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/text/resources/Attic/Transliterator_Hiragana_Latin.txt,v $
# $Date: 2001/09/25 21:08:32 $
# $Revision: 1.2 $
# $Date: 2001/09/25 22:58:55 $
# $Revision: 1.3 $
#--------------------------------------------------------------------
# NOTE: Needs fix before it will really work, since it needs to not affect Katakana
# :: [[:Hiragana:][:Inherited:] ;
:: [[:Hiragana:][:Inherited:] ; # filter to just look at hirgana coming in
:: Hiragana-Katakana (Latin-Katakana) ;
:: Katakana-Latin (Katakana-Hiragana) ;
:: Hiragana-Katakana;
:: Katakana-Latin;
:: ([[:Latin:][:Inherited:]) ; # filter to just look at latin coming in to the inverse

View File

@ -3,12 +3,12 @@
# Corporation and others. All Rights Reserved.
#--------------------------------------------------------------------
# $Source: /xsrl/Nsvn/icu/icu4j/src/com/ibm/text/resources/Attic/Transliterator_Latin_Katakana.txt,v $
# $Date: 2001/09/25 21:08:32 $
# $Revision: 1.2 $
# $Date: 2001/09/25 22:58:55 $
# $Revision: 1.3 $
#--------------------------------------------------------------------
::NFD (NFD) ;
:: [a-zA-Z] Lower ();
::NFD (NFC) ;
:: [:latin:] Lower ();
# Uses modified Hepburn. Small changes to make unambiguous.
@ -440,6 +440,6 @@ x > | ks ;
'~' > ; # delete stray tildes between letters
# '' > ; # delete stray quotes between letters
:: NFC (NFC) ;
:: NFC (NFD) ;
# eof