diff --git a/Source/README b/Source/README index 05d8d201..a9ac8659 100644 --- a/Source/README +++ b/Source/README @@ -2,108 +2,113 @@ ├── AppDelegate.h ├── AppDelegate.m ├── Data -│   ├── BPMFBase.txt -│   ├── BPMFMappings.txt -│   ├── BPMFPunctuations.txt -│   ├── Makefile -│   ├── PhraseFreq.txt -│   ├── README -│   ├── bin -│   │   ├── BIG5toUTF8.pl -│   │   ├── build4wlist.bash -│   │   ├── buildFreq.bash -│   │   ├── cook.rb -│   │   ├── countphrase.bash -│   │   ├── filter.bash -│   │   ├── randomShuffle.bash -│   │   └── typocorrection.bash -│   ├── heterophony1.list -│   ├── heterophony2.list -│   ├── heterophony3.list -│   └── phrase.occ +│ ├── BPMFBase.txt +│ ├── BPMFMappings.txt +│ ├── BPMFPunctuations.txt +│ ├── Makefile +│ ├── README +│ ├── bin +│ │ ├── BIG5toUTF8.pl +│ │ ├── Makefile +│ │ ├── README +│ │ ├── build4wlist.bash +│ │ ├── buildFreq.bash +│ │ ├── cook.rb +│ │ ├── count.occurrence.c +│ │ ├── count.occurrence.pl +│ │ ├── count.occurrence.py +│ │ ├── countphrase.bash +│ │ ├── filter.bash +│ │ ├── randomShuffle.bash +│ │ ├── typocorrection.bash +│ │ └── utf8length.pl +│ ├── heterophony1.list +│ ├── heterophony2.list +│ ├── heterophony3.list +│ └── phrase.occ ├── Engine -│   ├── Gramambular -│   │   ├── Bigram.h -│   │   ├── BlockReadingBuilder.h -│   │   ├── Gramambular.h -│   │   ├── Grid.h -│   │   ├── KeyValuePair.h -│   │   ├── LanguageModel.h -│   │   ├── Node.h -│   │   ├── NodeAnchor.h -│   │   ├── Span.h -│   │   ├── Unigram.h -│   │   └── Walker.h -│   ├── Mandarin -│   │   ├── Mandarin.cpp -│   │   └── Mandarin.h -│   ├── OpenVanilla -│   │   ├── OVAroundFilter.h -│   │   ├── OVBase.h -│   │   ├── OVBenchmark.h -│   │   ├── OVCINDataTable.h -│   │   ├── OVCINDatabaseService.h -│   │   ├── OVCINToSQLiteConvertor.h -│   │   ├── OVCandidateService.h -│   │   ├── OVDatabaseService.h -│   │   ├── OVDateTimeHelper.h -│   │   ├── OVEncodingService.h -│   │   ├── OVEventHandlingContext.h -│   │   ├── OVException.h -│   │   ├── OVFileHelper.h -│   │   ├── OVFrameworkInfo.h -│   │   ├── OVInputMethod.h -│   │   ├── OVKey.h -│   │   ├── OVKeyPreprocessor.h -│   │   ├── OVKeyValueMap.h -│   │   ├── OVLoaderBase.h -│   │   ├── OVLoaderService.h -│   │   ├── OVLocalization.h -│   │   ├── OVModule.h -│   │   ├── OVModulePackage.h -│   │   ├── OVOutputFilter.h -│   │   ├── OVPathInfo.h -│   │   ├── OVSQLiteDatabaseService.h -│   │   ├── OVSQLiteWrapper.h -│   │   ├── OVStringHelper.h -│   │   ├── OVTextBuffer.h -│   │   ├── OVUTF8Helper.h -│   │   ├── OVWildcard.h -│   │   └── OpenVanilla.h -│   ├── SimpleLM.cpp -│   └── SimpleLM.h +│ ├── Gramambular +│ │ ├── Bigram.h +│ │ ├── BlockReadingBuilder.h +│ │ ├── Gramambular.h +│ │ ├── Grid.h +│ │ ├── KeyValuePair.h +│ │ ├── LanguageModel.h +│ │ ├── Node.h +│ │ ├── NodeAnchor.h +│ │ ├── Span.h +│ │ ├── Unigram.h +│ │ └── Walker.h +│ ├── Mandarin +│ │ ├── Mandarin.cpp +│ │ └── Mandarin.h +│ ├── OpenVanilla +│ │ ├── OVAroundFilter.h +│ │ ├── OVBase.h +│ │ ├── OVBenchmark.h +│ │ ├── OVCINDataTable.h +│ │ ├── OVCINDatabaseService.h +│ │ ├── OVCINToSQLiteConvertor.h +│ │ ├── OVCandidateService.h +│ │ ├── OVDatabaseService.h +│ │ ├── OVDateTimeHelper.h +│ │ ├── OVEncodingService.h +│ │ ├── OVEventHandlingContext.h +│ │ ├── OVException.h +│ │ ├── OVFileHelper.h +│ │ ├── OVFrameworkInfo.h +│ │ ├── OVInputMethod.h +│ │ ├── OVKey.h +│ │ ├── OVKeyPreprocessor.h +│ │ ├── OVKeyValueMap.h +│ │ ├── OVLoaderBase.h +│ │ ├── OVLoaderService.h +│ │ ├── OVLocalization.h +│ │ ├── OVModule.h +│ │ ├── OVModulePackage.h +│ │ ├── OVOutputFilter.h +│ │ ├── OVPathInfo.h +│ │ ├── OVSQLiteDatabaseService.h +│ │ ├── OVSQLiteWrapper.h +│ │ ├── OVStringHelper.h +│ │ ├── OVTextBuffer.h +│ │ ├── OVUTF8Helper.h +│ │ ├── OVWildcard.h +│ │ └── OpenVanilla.h +│ ├── SimpleLM.cpp +│ └── SimpleLM.h ├── English.lproj -│   ├── InfoPlist.strings -│   ├── Localizable.strings -│   ├── MainMenu.xib -│   └── preferences.xib +│ ├── InfoPlist.strings +│ ├── Localizable.strings +│ ├── MainMenu.xib +│ └── preferences.xib ├── IconMaker -│   ├── AppIconRendererView.h -│   ├── AppIconRendererView.m -│   ├── IconMaker-Info.plist -│   ├── IconMaker-Prefix.pch -│   ├── IconMakerAppDelegate.h -│   ├── IconMakerAppDelegate.m -│   ├── ImageZoomInView.h -│   ├── ImageZoomInView.m -│   ├── TISIconRendererView.h -│   ├── TISIconRendererView.m -│   ├── en.lproj -│   │   ├── Credits.rtf -│   │   ├── InfoPlist.strings -│   │   └── MainMenu.xib -│   └── main.m +│ ├── AppIconRendererView.h +│ ├── AppIconRendererView.m +│ ├── IconMaker-Info.plist +│ ├── IconMaker-Prefix.pch +│ ├── IconMakerAppDelegate.h +│ ├── IconMakerAppDelegate.m +│ ├── ImageZoomInView.h +│ ├── ImageZoomInView.m +│ ├── TISIconRendererView.h +│ ├── TISIconRendererView.m +│ ├── en.lproj +│ │ ├── Credits.rtf +│ │ ├── InfoPlist.strings +│ │ └── MainMenu.xib +│ └── main.m ├── Images -│   ├── Bopomofo.tiff -│   ├── BopomofoSelected.tiff -│   ├── Lettuce.icns -│   ├── favicon.ico -│   ├── favicon.png -│   └── favicon.tiff +│ ├── Bopomofo.tiff +│ ├── BopomofoSelected.tiff +│ ├── Lettuce.icns +│ ├── favicon.ico +│ ├── favicon.png +│ └── favicon.tiff ├── InputMethodController.h ├── InputMethodController.mm ├── Lettuce.xcodeproj -│   └── project.pbxproj +│ └── project.pbxproj ├── Makefile ├── McBopomofo-Info.plist ├── McBopomofo-Prefix.pch @@ -113,8 +118,8 @@ ├── PreferencesWindowController.m ├── README ├── Tools -│   ├── genRTF.py -│   └── tistool.m +│ ├── genRTF.py +│ └── tistool.m ├── UpdateNotificationController.h ├── UpdateNotificationController.m ├── UpdateNotificationController.xib @@ -123,3 +128,5 @@ ├── InfoPlist.strings ├── Localizable.strings └── preferences.xib + +13 directories, 116 files