~ubuntu-branches/ubuntu/lucid/sword/lucid

« back to all changes in this revision

Viewing changes to src/modules/filters/utf8transliterator.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Dmitrijs Ledkovs, Jonathan Marsden, Dmitrijs Ledkovs
  • Date: 2010-01-21 00:10:17 UTC
  • mfrom: (1.1.4 upstream) (5.1.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100121001017-5ea19163rgisywbl
Tags: 1.6.1+dfsg-1
[ Jonathan Marsden ]
* debian/libsword8.examples: Add missing tcl eggdrop bot script.

[ Dmitrijs Ledkovs ]
* Drop shipping .la file in favour of pkg-config (Debian release goal)
  - More info http://lists.debian.org/debian-devel/2009/08/msg00783.html
* Drop backported patches, refreshed libver & compiler warnings.
* Compiling with -Werror enabled. 
* Bumped standards version to 3.8.3, no changes needed.
* Added debian/README.source documentation quilt usage
* Added configure option --without-internalregex

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
        //        "Ogham",
84
84
        //        "Thaana",
85
85
        //        "Glagolitic",
 
86
        //        "Cherokee",
86
87
};
87
88
 
88
89
const char UTF8Transliterator::optName[] = "Transliteration";
403
404
                        case UBLOCK_OGHAM: scripts[SE_OGHAM] = true; break;
404
405
                        case UBLOCK_THAANA: scripts[SE_THAANA] = true; break;
405
406
                        case UBLOCK_GLAGOLITIC: scripts[SE_GLAGOLITIC] = true; break;
 
407
                        case UBLOCK_CHEROKEE: scripts[SE_CHEROKEE] = true; break;
406
408
//                      case UBLOCK_TENGWAR: scripts[SE_TENGWAR] = true; break;
407
409
//                      case UBLOCK_CIRTH: scripts[SE_CIRTH] = true; break;
408
410
                        case UBLOCK_CJK_RADICALS_SUPPLEMENT:
637
639
                                scripts[SE_LATIN] = true;
638
640
                        }
639
641
                }
 
642
                if (scripts[SE_CHEROKEE]) {
 
643
                        addTrans("Cherokee-Latin", &ID);
 
644
                        scripts[SE_LATIN] = true;
 
645
                }
640
646
                if (scripts[SE_THAI]) {
641
647
                        addTrans("Thai-Latin", &ID);
642
648
                        scripts[SE_LATIN] = true;
869
875
                        case SE_GLAGOLITIC:
870
876
                                addTrans("Latin-Glagolitic", &ID);
871
877
                                break;
 
878
                        case SE_CHEROKEE:
 
879
                                addTrans("Latin-Cherokee", &ID);
 
880
                                break;
872
881
//                        case SE_TENGWAR:
873
882
//                              addTrans("Latin-Tengwar", &ID);
874
883
//                                break;