• R/O
  • HTTP
  • SSH
  • HTTPS

Source Tree

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Anthyを正かなづかひの入力と變換に對應させるパッチの作成作業リポジトリ。<git://git.debian.org/git/collab-maint/anthy.git>のmasterブランチからフォーク。


名称 大小 Rev. 时间 作者 Log Message
alt-cannadic
anthy
calctrans
corpus
depgraph
doc
mkanthydic
mkworddic
src-diclib
src-main
src-ordering
src-splitter
src-util
src-worddic
test
AUTHORS 4.13 k 8b1b6ca 2010-08-03 10:10:13 NIIBE Yutaka kill filemap.c, just mmap inside file...
COPYING 34.25 k af7c6bf 2010-05-18 11:45:17 NIIBE Yutaka Package is now more GNU-ish (2).
COPYING.LIB 7.46 k a50bc93 2010-05-18 11:40:42 NIIBE Yutaka Package is now more GNU-ish.
COPYING.LIB2_1 25.91 k a50bc93 2010-05-18 11:40:42 NIIBE Yutaka Package is now more GNU-ish.
ChangeLog 22.5 k b7b3220 2010-08-10 09:43:04 NIIBE Yutaka metaword.c cleanup.
ChangeLog.2001-2009 27.92 k 975d0a4 2010-05-18 09:21:18 NIIBE Yutaka Old wine into old wineskins.
Doxyfile 42.62 k ca38aa5 2010-05-14 14:20:17 NIIBE Yutaka Imported Upstream version 6700
INSTALL 387 a50bc93 2010-05-18 11:40:42 NIIBE Yutaka Package is now more GNU-ish.
INSTALL.2006.ja 1.77 k 80b78cf 2010-05-18 09:25:52 NIIBE Yutaka Old wine into old wineskins. (2)
Makefile.am 529 e11c841 2010-06-11 17:05:42 NIIBE Yutaka Added corpus to EXTRA_DIST
NEWS 804 035cd68 2010-07-08 11:49:21 NIIBE Yutaka **DICTIONARY FORMAT CHANGE** Rules in...
NEWS.2007.ja 476 80b78cf 2010-05-18 09:25:52 NIIBE Yutaka Old wine into old wineskins. (2)
README 4.38 k b41fa85 2010-05-28 17:29:27 NIIBE Yutaka minor fixups
README.2007.ja 3.37 k a50bc93 2010-05-18 11:40:42 NIIBE Yutaka Package is now more GNU-ish.
THANKS 74 a50bc93 2010-05-18 11:40:42 NIIBE Yutaka Package is now more GNU-ish.
THANKS.2007.ja 2.5 k a50bc93 2010-05-18 11:40:42 NIIBE Yutaka Package is now more GNU-ish.
anthy-conf.in 161 7fe0926 2010-07-06 17:13:50 NIIBE Yutaka Remove conf variable DEPWORD/INDEPWOR...
anthy-test-conf.in 275 7fe0926 2010-07-06 17:13:50 NIIBE Yutaka Remove conf variable DEPWORD/INDEPWOR...
anthy.pc.in 274 eebf231 2010-05-14 14:21:28 NIIBE Yutaka Imported Upstream version 8607
anthy.spec.in 1.17 k ca38aa5 2010-05-14 14:20:17 NIIBE Yutaka Imported Upstream version 6700
autogen.sh 151 e13b2c6 2010-05-17 13:05:25 NIIBE Yutaka Modified autogen.sh, configure.ac and...
configure.ac 934 6e51ec2 2010-05-18 16:12:06 NIIBE Yutaka Preparing next release.

README

Anthy -- Japanese Kana-Kanji Conversion Engine Library
							-*- text -*-

What's Anthy?
=============

Anthy is a library for Japanese Kana-Kanji conversion, targeted for
Japanese text input.

See following page for Anthy development:
	http://wiki.debian.org/Teams/DebianAnthy
	http://git.debian.org/?p=collab-maint/anthy.git;a=summary


What's New?
===========

See the file NEWS for new features and other user-visible changes in
recent versions of Anthy.


Installation
============

The file INSTALL says how to build and install Anhty on your system.


Configuration 
=============

System administrator is expected to set up following three variables
in anthy-conf.in (usually it's under /etc/anthy directory).

    Variable name  Example                         # Comment
    ----------------------------------------------------------------
    ANTHYDIR       /usr/share/anthy                # Directory 
    DIC_FILE       /usr/share/anthy/anthy.dic      # Dictionary file
    ZIPDICT_EUC    /usr/share/anthy/dic/zipcode.t  # Zipcode file


Anthy Dictionary (anthy.dic)
============================

Here is a figure to explain how Anthy Dictionary (anthy.dic) is
generated.

   depgraph/*.depword
   depgraph/conjugate.table
    ---[depgraph/mkdepgraph]---> anthy.dep (1)

   mkworddic/{extra.t,compound.t,adjust.t,utf8.t,udict},
   alt-cannadic/{gcanna.ctd,gcannf.ctd,gtankan.ctd,g_fname.t}
    ---[mkworddic/mkworddic]---> anthy.wdic (2)

   "initial anthy.dic"
   calctrans/corpus.?.txt
    ---[calctrans/{proccorpus,calctrans}]---> corpus_info (3-1)
    					      weak_words  (3-2)

      calctrans/{corpus_info,weak_words} (3-1,3-2)
       ---[calctrans/calctrans]---> anthy.cand_info (3)
       				    anthy.trans_info (4)
				    anthy.corpus_array (5)
				    anthy.corpus_bucket (6)
      				    anthy.weak_words (7)

         (1) depgraph/anthy.dep
         (2) mkworddic/anthy.wdic
         (3) calctrans/anthy.cand_info
         (4) calctrans/anthy.trans_info
         (5) calctrans/anthy.corpus_array
         (6) calctrans/anthy.corpus_bucket
         (7) calctrans/anthy.weak_words
          ---[mkanthydic/mkfiledic]--->anthy.dic

Note that we need "initial anthy.dic" to generate anthy.dic, that's
because 'proccorpus' uses Anthy Dictionary to parse text input.


Licensing
=========

Anthy library is released under the terms of the GNU Lesser General
Public Licence 3 (or later), i.e., LGPLv3+.  See the file COPYING.LIB
and COPYING for detail.

Since most of source files are released under the terms of LGPLv2 (or
later), you might use parts of code under LGPLv2.  See COPYING.LIB2_1
for detail.

Dictionary files under alt-cannadic/ and mkworddic/ are taken from
"Alternative Cannadic" Project (alt-cannadic), which is released under
the terms of GPLv2.  See alt-cannadic/COPYING for detail.

For more licensing information in general, see
<http://www.gnu.org/licenses/gpl-faq.html>


History
=======

Anthy project was hosted at SourceForge.JP.

	http://anthy.sourceforge.jp/
	http://anthy.sourceforge.jp/cgi-bin/hiki/hiki.cgi

Since February 2009, development at there stopped.  Bug fixes and
feature requests was just floating around.

In May 2010, NIIBE Yutaka <gniibe@fsij.org> arranged Git repository at
git.debian.org, put some of released versions of Anthy and Debian
packaging code into the repository, and took over the development
lead.  At alioth.debian.org, pkg-anthy project was created for Anthy
development and Debian packaging for Anthy and related packages.


Authors & Credits
=================

See AUTHORS and THANKS.

Original Authors were TABATA Yusuke, UGAWA Tomoharu, and guys at Kyoto
University Micro Computer Club.  YOSHIDA Yuichi added some features.
The project got fund from IPA Japan (NIIBE Yutaka was project manager
in 2001 and Fumitoshi UKAI was project manager in 2003).  In the GSoC
2006 program with FSIJ, HANAOKA Toshiyuki and Higashiyama Masahiko
contributed some enhancements, under TABATA Yusuke's mentorship.

-- 
This file is part of Anthy.

Anthy is free software: you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the
Free Software Foundation, either version 3 of the License, or (at your
option) any later version.

Anthy is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.