├── .gitignore ├── ChangeLog.md ├── README.md ├── mecab ├── .gitignore ├── CREDITS ├── LICENSE ├── README ├── config.m4 ├── config.w32 ├── examples │ ├── allmorphs-func.php │ ├── allmorphs-ns.php │ ├── allmorphs-oo.php │ ├── common.inc.php │ ├── dicinfo-func.php │ ├── dicinfo-ns.php │ ├── dicinfo-oo.php │ ├── dumpall-func.php │ ├── dumpall-ns.php │ ├── dumpall-ns2.php │ ├── dumpall-oo.php │ ├── dumpall-oo2.php │ ├── format-func.php │ ├── format-ns.php │ ├── format-ns2.php │ ├── format-oo.php │ ├── format-oo2.php │ ├── nbest-func.php │ ├── nbest-ns.php │ ├── nbest-oo.php │ ├── parse-func.php │ ├── parse-ns.php │ ├── parse-oo.php │ ├── provides-r.php │ ├── provides.php │ ├── split-func.php │ ├── split-ns.php │ ├── split-oo.php │ ├── test-func.php │ ├── test-ns.php │ ├── test-oo.php │ ├── wakati-func.php │ ├── wakati-ns.php │ └── wakati-oo.php ├── mecab.dsp ├── mecab5.c ├── mecab7.c ├── package.php ├── package.xml ├── php_mecab.h ├── php_mecab_compat5.h ├── php_mecab_compat7.h └── tests │ ├── .gitignore │ ├── MeCab_Node__getAlpha.phpt │ ├── MeCab_Node__getBNext.phpt │ ├── MeCab_Node__getBeta.phpt │ ├── MeCab_Node__getCharType.phpt │ ├── MeCab_Node__getCost.phpt │ ├── MeCab_Node__getENext.phpt │ ├── MeCab_Node__getFeature.phpt │ ├── MeCab_Node__getId.phpt │ ├── MeCab_Node__getIterator.phpt │ ├── MeCab_Node__getLPath.phpt │ ├── MeCab_Node__getLcAttr.phpt │ ├── MeCab_Node__getLength.phpt │ ├── MeCab_Node__getNext.phpt │ ├── MeCab_Node__getPosId.phpt │ ├── MeCab_Node__getPrev.phpt │ ├── MeCab_Node__getProb.phpt │ ├── MeCab_Node__getRLength.phpt │ ├── MeCab_Node__getRPath.phpt │ ├── MeCab_Node__getRcAttr.phpt │ ├── MeCab_Node__getStat.phpt │ ├── MeCab_Node__getSurface.phpt │ ├── MeCab_Node__getWCost.phpt │ ├── MeCab_Node__isBest.phpt │ ├── MeCab_Node__setTraverse.phpt │ ├── MeCab_Node__toArray.phpt │ ├── MeCab_Node__toString.phpt │ ├── MeCab_Path__getCost.phpt │ ├── MeCab_Path__getLNext.phpt │ ├── MeCab_Path__getLNode.phpt │ ├── MeCab_Path__getProb.phpt │ ├── MeCab_Path__getRNext.phpt │ ├── MeCab_Path__getRNode.phpt │ ├── MeCab_Tagger__dictionaryInfo.phpt │ ├── MeCab_Tagger__formatNode.phpt │ ├── MeCab_Tagger__new.phpt │ ├── MeCab_Tagger__next.phpt │ ├── MeCab_Tagger__nextNode.phpt │ ├── MeCab_Tagger__parse.phpt │ ├── MeCab_Tagger__parseNBest.phpt │ ├── MeCab_Tagger__parseNBestInit.phpt │ ├── MeCab_Tagger__parseToNode.phpt │ ├── MeCab_Tagger__parseToString.phpt │ ├── MeCab__split.phpt │ ├── MeCab__version.phpt │ ├── mecab_dictionary_info.phpt │ ├── mecab_format_node.phpt │ ├── mecab_nbest_init.phpt │ ├── mecab_nbest_next_tonode.phpt │ ├── mecab_nbest_next_tostr.phpt │ ├── mecab_nbest_sparse_tostr.phpt │ ├── mecab_new.phpt │ ├── mecab_node_alpha.phpt │ ├── mecab_node_beta.phpt │ ├── mecab_node_bnext.phpt │ ├── mecab_node_char_type.phpt │ ├── mecab_node_cost.phpt │ ├── mecab_node_enext.phpt │ ├── mecab_node_feature.phpt │ ├── mecab_node_id.phpt │ ├── mecab_node_isbest.phpt │ ├── mecab_node_lcattr.phpt │ ├── mecab_node_length.phpt │ ├── mecab_node_lpath.phpt │ ├── mecab_node_next.phpt │ ├── mecab_node_posid.phpt │ ├── mecab_node_prev.phpt │ ├── mecab_node_prob.phpt │ ├── mecab_node_rcattr.phpt │ ├── mecab_node_rlength.phpt │ ├── mecab_node_rpath.phpt │ ├── mecab_node_stat.phpt │ ├── mecab_node_surface.phpt │ ├── mecab_node_toarray.phpt │ ├── mecab_node_tostring.phpt │ ├── mecab_node_wcost.phpt │ ├── mecab_path_cost.phpt │ ├── mecab_path_lnext.phpt │ ├── mecab_path_lnode.phpt │ ├── mecab_path_prob.phpt │ ├── mecab_path_rnext.phpt │ ├── mecab_path_rnode.phpt │ ├── mecab_sparse_tonode.phpt │ ├── mecab_sparse_tostr.phpt │ ├── mecab_split.phpt │ ├── mecab_version.phpt │ └── test.txt.eucjp └── packages ├── debian ├── .gitignore ├── README.md └── debian-control.diff └── ubuntu ├── .gitignore ├── README.md └── debian-control.diff /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/README.md -------------------------------------------------------------------------------- /mecab/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/.gitignore -------------------------------------------------------------------------------- /mecab/CREDITS: -------------------------------------------------------------------------------- 1 | mecab 2 | rsk 3 | -------------------------------------------------------------------------------- /mecab/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/LICENSE -------------------------------------------------------------------------------- /mecab/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/README -------------------------------------------------------------------------------- /mecab/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/config.m4 -------------------------------------------------------------------------------- /mecab/config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/config.w32 -------------------------------------------------------------------------------- /mecab/examples/allmorphs-func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/allmorphs-func.php -------------------------------------------------------------------------------- /mecab/examples/allmorphs-ns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/allmorphs-ns.php -------------------------------------------------------------------------------- /mecab/examples/allmorphs-oo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/allmorphs-oo.php -------------------------------------------------------------------------------- /mecab/examples/common.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/common.inc.php -------------------------------------------------------------------------------- /mecab/examples/dicinfo-func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/dicinfo-func.php -------------------------------------------------------------------------------- /mecab/examples/dicinfo-ns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/dicinfo-ns.php -------------------------------------------------------------------------------- /mecab/examples/dicinfo-oo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/dicinfo-oo.php -------------------------------------------------------------------------------- /mecab/examples/dumpall-func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/dumpall-func.php -------------------------------------------------------------------------------- /mecab/examples/dumpall-ns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/dumpall-ns.php -------------------------------------------------------------------------------- /mecab/examples/dumpall-ns2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/dumpall-ns2.php -------------------------------------------------------------------------------- /mecab/examples/dumpall-oo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/dumpall-oo.php -------------------------------------------------------------------------------- /mecab/examples/dumpall-oo2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/dumpall-oo2.php -------------------------------------------------------------------------------- /mecab/examples/format-func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/format-func.php -------------------------------------------------------------------------------- /mecab/examples/format-ns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/format-ns.php -------------------------------------------------------------------------------- /mecab/examples/format-ns2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/format-ns2.php -------------------------------------------------------------------------------- /mecab/examples/format-oo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/format-oo.php -------------------------------------------------------------------------------- /mecab/examples/format-oo2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/format-oo2.php -------------------------------------------------------------------------------- /mecab/examples/nbest-func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/nbest-func.php -------------------------------------------------------------------------------- /mecab/examples/nbest-ns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/nbest-ns.php -------------------------------------------------------------------------------- /mecab/examples/nbest-oo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/nbest-oo.php -------------------------------------------------------------------------------- /mecab/examples/parse-func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/parse-func.php -------------------------------------------------------------------------------- /mecab/examples/parse-ns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/parse-ns.php -------------------------------------------------------------------------------- /mecab/examples/parse-oo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/parse-oo.php -------------------------------------------------------------------------------- /mecab/examples/provides-r.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/provides-r.php -------------------------------------------------------------------------------- /mecab/examples/provides.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/provides.php -------------------------------------------------------------------------------- /mecab/examples/split-func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/split-func.php -------------------------------------------------------------------------------- /mecab/examples/split-ns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/split-ns.php -------------------------------------------------------------------------------- /mecab/examples/split-oo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/split-oo.php -------------------------------------------------------------------------------- /mecab/examples/test-func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/test-func.php -------------------------------------------------------------------------------- /mecab/examples/test-ns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/test-ns.php -------------------------------------------------------------------------------- /mecab/examples/test-oo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/test-oo.php -------------------------------------------------------------------------------- /mecab/examples/wakati-func.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/wakati-func.php -------------------------------------------------------------------------------- /mecab/examples/wakati-ns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/wakati-ns.php -------------------------------------------------------------------------------- /mecab/examples/wakati-oo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/examples/wakati-oo.php -------------------------------------------------------------------------------- /mecab/mecab.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/mecab.dsp -------------------------------------------------------------------------------- /mecab/mecab5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/mecab5.c -------------------------------------------------------------------------------- /mecab/mecab7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/mecab7.c -------------------------------------------------------------------------------- /mecab/package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/package.php -------------------------------------------------------------------------------- /mecab/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/package.xml -------------------------------------------------------------------------------- /mecab/php_mecab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/php_mecab.h -------------------------------------------------------------------------------- /mecab/php_mecab_compat5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/php_mecab_compat5.h -------------------------------------------------------------------------------- /mecab/php_mecab_compat7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/php_mecab_compat7.h -------------------------------------------------------------------------------- /mecab/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/.gitignore -------------------------------------------------------------------------------- /mecab/tests/MeCab_Node__getAlpha.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Node__getAlpha.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Node__getBNext.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Node__getBNext.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Node__getBeta.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Node__getBeta.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Node__getCharType.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Node__getCharType.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Node__getCost.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Node__getCost.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Node__getENext.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Node__getENext.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Node__getFeature.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Node__getFeature.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Node__getId.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Node__getId.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Node__getIterator.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Node__getIterator.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Node__getLPath.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Node__getLPath.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Node__getLcAttr.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Node__getLcAttr.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Node__getLength.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Node__getLength.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Node__getNext.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Node__getNext.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Node__getPosId.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Node__getPosId.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Node__getPrev.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Node__getPrev.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Node__getProb.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Node__getProb.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Node__getRLength.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Node__getRLength.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Node__getRPath.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Node__getRPath.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Node__getRcAttr.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Node__getRcAttr.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Node__getStat.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Node__getStat.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Node__getSurface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Node__getSurface.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Node__getWCost.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Node__getWCost.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Node__isBest.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Node__isBest.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Node__setTraverse.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Node__setTraverse.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Node__toArray.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Node__toArray.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Node__toString.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Node__toString.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Path__getCost.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Path__getCost.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Path__getLNext.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Path__getLNext.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Path__getLNode.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Path__getLNode.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Path__getProb.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Path__getProb.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Path__getRNext.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Path__getRNext.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Path__getRNode.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Path__getRNode.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Tagger__dictionaryInfo.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Tagger__dictionaryInfo.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Tagger__formatNode.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Tagger__formatNode.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Tagger__new.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Tagger__new.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Tagger__next.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Tagger__next.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Tagger__nextNode.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Tagger__nextNode.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Tagger__parse.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Tagger__parse.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Tagger__parseNBest.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Tagger__parseNBest.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Tagger__parseNBestInit.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Tagger__parseNBestInit.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Tagger__parseToNode.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Tagger__parseToNode.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab_Tagger__parseToString.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab_Tagger__parseToString.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab__split.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab__split.phpt -------------------------------------------------------------------------------- /mecab/tests/MeCab__version.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/MeCab__version.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_dictionary_info.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_dictionary_info.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_format_node.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_format_node.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_nbest_init.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_nbest_init.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_nbest_next_tonode.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_nbest_next_tonode.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_nbest_next_tostr.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_nbest_next_tostr.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_nbest_sparse_tostr.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_nbest_sparse_tostr.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_new.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_new.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_node_alpha.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_node_alpha.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_node_beta.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_node_beta.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_node_bnext.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_node_bnext.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_node_char_type.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_node_char_type.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_node_cost.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_node_cost.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_node_enext.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_node_enext.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_node_feature.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_node_feature.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_node_id.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_node_id.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_node_isbest.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_node_isbest.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_node_lcattr.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_node_lcattr.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_node_length.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_node_length.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_node_lpath.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_node_lpath.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_node_next.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_node_next.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_node_posid.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_node_posid.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_node_prev.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_node_prev.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_node_prob.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_node_prob.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_node_rcattr.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_node_rcattr.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_node_rlength.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_node_rlength.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_node_rpath.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_node_rpath.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_node_stat.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_node_stat.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_node_surface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_node_surface.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_node_toarray.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_node_toarray.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_node_tostring.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_node_tostring.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_node_wcost.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_node_wcost.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_path_cost.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_path_cost.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_path_lnext.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_path_lnext.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_path_lnode.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_path_lnode.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_path_prob.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_path_prob.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_path_rnext.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_path_rnext.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_path_rnode.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_path_rnode.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_sparse_tonode.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_sparse_tonode.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_sparse_tostr.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_sparse_tostr.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_split.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_split.phpt -------------------------------------------------------------------------------- /mecab/tests/mecab_version.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/mecab_version.phpt -------------------------------------------------------------------------------- /mecab/tests/test.txt.eucjp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/mecab/tests/test.txt.eucjp -------------------------------------------------------------------------------- /packages/debian/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/packages/debian/.gitignore -------------------------------------------------------------------------------- /packages/debian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/packages/debian/README.md -------------------------------------------------------------------------------- /packages/debian/debian-control.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/packages/debian/debian-control.diff -------------------------------------------------------------------------------- /packages/ubuntu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/packages/ubuntu/.gitignore -------------------------------------------------------------------------------- /packages/ubuntu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/packages/ubuntu/README.md -------------------------------------------------------------------------------- /packages/ubuntu/debian-control.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsky/php-mecab/HEAD/packages/ubuntu/debian-control.diff --------------------------------------------------------------------------------