├── .gitignore ├── API.md ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README.md ├── acprep ├── cli ├── Makefile.am ├── gen_dict.c └── scws_cmd.c ├── configure.ac ├── dev ├── dict │ ├── baidu_getnum.php │ ├── bdb.class2.php │ ├── big5_list.txt │ ├── calc_text.php │ ├── char2.txt │ ├── dba.class.php │ ├── draw_hdb.php │ ├── gen_gbk_chars.php │ ├── getpy │ │ ├── my_Getpy.class.php │ │ └── py.dat │ ├── hdb.class.php │ ├── mk_dbm.php │ ├── mk_py_dict.php │ ├── readme.txt │ ├── sync_hdb.php │ ├── test_query.php │ ├── w.txt │ ├── w5.txt │ ├── xdb.class.php │ └── z.txt ├── eval │ ├── dev-ref.gb │ ├── dev.gb │ └── segmentationPrec.pl ├── php4 │ ├── pscws23 │ │ ├── _dictool │ │ │ ├── Readme.txt │ │ │ ├── dict.txt │ │ │ ├── gen_sqlite.php │ │ │ ├── mk_cdb.php │ │ │ ├── mk_txt.php │ │ │ ├── mk_xdb.php │ │ │ └── xdb.class.php │ │ ├── demo.php │ │ ├── dict.class.php │ │ ├── dict │ │ │ └── dict.xdb.gz │ │ ├── pscws2.class.php │ │ ├── pscws3.class.php │ │ ├── readme.txt │ │ └── xdb_r.class.php │ └── pscws4 │ │ ├── pscws4.class.php │ │ ├── readme.txt │ │ ├── test.php │ │ └── xdb_r.class.php └── unused │ ├── mio.c │ ├── mio.h │ ├── mio_poll.h │ ├── mio_select.h │ ├── xinaddr.c │ ├── xinaddr.h │ ├── xlog.c │ └── xlog.h ├── etc ├── Makefile.am ├── rules.ini ├── rules.utf8.ini └── rules_cht.utf8.ini ├── libscws ├── Makefile.am ├── charset.c ├── charset.h ├── config_win32.h ├── crc32.c ├── crc32.h ├── darray.c ├── darray.h ├── lock.c ├── lock.h ├── pool.c ├── pool.h ├── rule.c ├── rule.h ├── scws.c ├── scws.h ├── version.h.in ├── xdb.c ├── xdb.h ├── xdict.c ├── xdict.h ├── xtree.c └── xtree.h ├── phpext ├── CREDITS ├── README.md ├── config.m4 ├── php_scws.c ├── php_scws.h ├── scws.php ├── scws.stub.php ├── scws_arginfo.h ├── scws_test.php └── win32 │ └── README.txt ├── web ├── about.php ├── api.php ├── demo.php ├── demo │ ├── get_tfidf.php │ ├── get_tfidf.phps │ ├── pscws23 │ │ ├── demo.php │ │ ├── dict.class.php │ │ ├── pscws2.class.php │ │ ├── pscws3.class.php │ │ ├── readme.txt │ │ └── xdb_r.class.php │ ├── pscws4 │ │ ├── etc │ │ │ ├── rules.ini │ │ │ ├── rules.utf8.ini │ │ │ └── rules_cht.utf8.ini │ │ ├── pscws4.class.php │ │ ├── readme.txt │ │ ├── test.php │ │ └── xdb_r.class.php │ ├── sample.txt │ ├── sample.utf8.txt │ ├── sample_cht.utf8.txt │ ├── v4.php │ ├── v48.cht.php │ └── v48.php ├── docs.php ├── download.php ├── footer.inc.php ├── header.inc.php ├── index.php └── support.php └── win32 ├── libscws.dsp ├── libscws.vcproj ├── readme.txt ├── scws.dsp ├── scws.dsw ├── scws.sln └── scws.vcproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/.gitignore -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/API.md -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/README.md -------------------------------------------------------------------------------- /acprep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/acprep -------------------------------------------------------------------------------- /cli/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/cli/Makefile.am -------------------------------------------------------------------------------- /cli/gen_dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/cli/gen_dict.c -------------------------------------------------------------------------------- /cli/scws_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/cli/scws_cmd.c -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/configure.ac -------------------------------------------------------------------------------- /dev/dict/baidu_getnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/dict/baidu_getnum.php -------------------------------------------------------------------------------- /dev/dict/bdb.class2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/dict/bdb.class2.php -------------------------------------------------------------------------------- /dev/dict/big5_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/dict/big5_list.txt -------------------------------------------------------------------------------- /dev/dict/calc_text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/dict/calc_text.php -------------------------------------------------------------------------------- /dev/dict/char2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/dict/char2.txt -------------------------------------------------------------------------------- /dev/dict/dba.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/dict/dba.class.php -------------------------------------------------------------------------------- /dev/dict/draw_hdb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/dict/draw_hdb.php -------------------------------------------------------------------------------- /dev/dict/gen_gbk_chars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/dict/gen_gbk_chars.php -------------------------------------------------------------------------------- /dev/dict/getpy/my_Getpy.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/dict/getpy/my_Getpy.class.php -------------------------------------------------------------------------------- /dev/dict/getpy/py.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/dict/getpy/py.dat -------------------------------------------------------------------------------- /dev/dict/hdb.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/dict/hdb.class.php -------------------------------------------------------------------------------- /dev/dict/mk_dbm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/dict/mk_dbm.php -------------------------------------------------------------------------------- /dev/dict/mk_py_dict.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/dict/mk_py_dict.php -------------------------------------------------------------------------------- /dev/dict/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/dict/readme.txt -------------------------------------------------------------------------------- /dev/dict/sync_hdb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/dict/sync_hdb.php -------------------------------------------------------------------------------- /dev/dict/test_query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/dict/test_query.php -------------------------------------------------------------------------------- /dev/dict/w.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/dict/w.txt -------------------------------------------------------------------------------- /dev/dict/w5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/dict/w5.txt -------------------------------------------------------------------------------- /dev/dict/xdb.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/dict/xdb.class.php -------------------------------------------------------------------------------- /dev/dict/z.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/dict/z.txt -------------------------------------------------------------------------------- /dev/eval/dev-ref.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/eval/dev-ref.gb -------------------------------------------------------------------------------- /dev/eval/dev.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/eval/dev.gb -------------------------------------------------------------------------------- /dev/eval/segmentationPrec.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/eval/segmentationPrec.pl -------------------------------------------------------------------------------- /dev/php4/pscws23/_dictool/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/php4/pscws23/_dictool/Readme.txt -------------------------------------------------------------------------------- /dev/php4/pscws23/_dictool/dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/php4/pscws23/_dictool/dict.txt -------------------------------------------------------------------------------- /dev/php4/pscws23/_dictool/gen_sqlite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/php4/pscws23/_dictool/gen_sqlite.php -------------------------------------------------------------------------------- /dev/php4/pscws23/_dictool/mk_cdb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/php4/pscws23/_dictool/mk_cdb.php -------------------------------------------------------------------------------- /dev/php4/pscws23/_dictool/mk_txt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/php4/pscws23/_dictool/mk_txt.php -------------------------------------------------------------------------------- /dev/php4/pscws23/_dictool/mk_xdb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/php4/pscws23/_dictool/mk_xdb.php -------------------------------------------------------------------------------- /dev/php4/pscws23/_dictool/xdb.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/php4/pscws23/_dictool/xdb.class.php -------------------------------------------------------------------------------- /dev/php4/pscws23/demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/php4/pscws23/demo.php -------------------------------------------------------------------------------- /dev/php4/pscws23/dict.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/php4/pscws23/dict.class.php -------------------------------------------------------------------------------- /dev/php4/pscws23/dict/dict.xdb.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/php4/pscws23/dict/dict.xdb.gz -------------------------------------------------------------------------------- /dev/php4/pscws23/pscws2.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/php4/pscws23/pscws2.class.php -------------------------------------------------------------------------------- /dev/php4/pscws23/pscws3.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/php4/pscws23/pscws3.class.php -------------------------------------------------------------------------------- /dev/php4/pscws23/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/php4/pscws23/readme.txt -------------------------------------------------------------------------------- /dev/php4/pscws23/xdb_r.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/php4/pscws23/xdb_r.class.php -------------------------------------------------------------------------------- /dev/php4/pscws4/pscws4.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/php4/pscws4/pscws4.class.php -------------------------------------------------------------------------------- /dev/php4/pscws4/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/php4/pscws4/readme.txt -------------------------------------------------------------------------------- /dev/php4/pscws4/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/php4/pscws4/test.php -------------------------------------------------------------------------------- /dev/php4/pscws4/xdb_r.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/php4/pscws4/xdb_r.class.php -------------------------------------------------------------------------------- /dev/unused/mio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/unused/mio.c -------------------------------------------------------------------------------- /dev/unused/mio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/unused/mio.h -------------------------------------------------------------------------------- /dev/unused/mio_poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/unused/mio_poll.h -------------------------------------------------------------------------------- /dev/unused/mio_select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/unused/mio_select.h -------------------------------------------------------------------------------- /dev/unused/xinaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/unused/xinaddr.c -------------------------------------------------------------------------------- /dev/unused/xinaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/unused/xinaddr.h -------------------------------------------------------------------------------- /dev/unused/xlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/unused/xlog.c -------------------------------------------------------------------------------- /dev/unused/xlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/dev/unused/xlog.h -------------------------------------------------------------------------------- /etc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/etc/Makefile.am -------------------------------------------------------------------------------- /etc/rules.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/etc/rules.ini -------------------------------------------------------------------------------- /etc/rules.utf8.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/etc/rules.utf8.ini -------------------------------------------------------------------------------- /etc/rules_cht.utf8.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/etc/rules_cht.utf8.ini -------------------------------------------------------------------------------- /libscws/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/libscws/Makefile.am -------------------------------------------------------------------------------- /libscws/charset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/libscws/charset.c -------------------------------------------------------------------------------- /libscws/charset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/libscws/charset.h -------------------------------------------------------------------------------- /libscws/config_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/libscws/config_win32.h -------------------------------------------------------------------------------- /libscws/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/libscws/crc32.c -------------------------------------------------------------------------------- /libscws/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/libscws/crc32.h -------------------------------------------------------------------------------- /libscws/darray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/libscws/darray.c -------------------------------------------------------------------------------- /libscws/darray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/libscws/darray.h -------------------------------------------------------------------------------- /libscws/lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/libscws/lock.c -------------------------------------------------------------------------------- /libscws/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/libscws/lock.h -------------------------------------------------------------------------------- /libscws/pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/libscws/pool.c -------------------------------------------------------------------------------- /libscws/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/libscws/pool.h -------------------------------------------------------------------------------- /libscws/rule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/libscws/rule.c -------------------------------------------------------------------------------- /libscws/rule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/libscws/rule.h -------------------------------------------------------------------------------- /libscws/scws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/libscws/scws.c -------------------------------------------------------------------------------- /libscws/scws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/libscws/scws.h -------------------------------------------------------------------------------- /libscws/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/libscws/version.h.in -------------------------------------------------------------------------------- /libscws/xdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/libscws/xdb.c -------------------------------------------------------------------------------- /libscws/xdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/libscws/xdb.h -------------------------------------------------------------------------------- /libscws/xdict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/libscws/xdict.c -------------------------------------------------------------------------------- /libscws/xdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/libscws/xdict.h -------------------------------------------------------------------------------- /libscws/xtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/libscws/xtree.c -------------------------------------------------------------------------------- /libscws/xtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/libscws/xtree.h -------------------------------------------------------------------------------- /phpext/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/phpext/CREDITS -------------------------------------------------------------------------------- /phpext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/phpext/README.md -------------------------------------------------------------------------------- /phpext/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/phpext/config.m4 -------------------------------------------------------------------------------- /phpext/php_scws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/phpext/php_scws.c -------------------------------------------------------------------------------- /phpext/php_scws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/phpext/php_scws.h -------------------------------------------------------------------------------- /phpext/scws.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/phpext/scws.php -------------------------------------------------------------------------------- /phpext/scws.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/phpext/scws.stub.php -------------------------------------------------------------------------------- /phpext/scws_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/phpext/scws_arginfo.h -------------------------------------------------------------------------------- /phpext/scws_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/phpext/scws_test.php -------------------------------------------------------------------------------- /phpext/win32/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/phpext/win32/README.txt -------------------------------------------------------------------------------- /web/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/about.php -------------------------------------------------------------------------------- /web/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/api.php -------------------------------------------------------------------------------- /web/demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/demo.php -------------------------------------------------------------------------------- /web/demo/get_tfidf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/demo/get_tfidf.php -------------------------------------------------------------------------------- /web/demo/get_tfidf.phps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/demo/get_tfidf.phps -------------------------------------------------------------------------------- /web/demo/pscws23/demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/demo/pscws23/demo.php -------------------------------------------------------------------------------- /web/demo/pscws23/dict.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/demo/pscws23/dict.class.php -------------------------------------------------------------------------------- /web/demo/pscws23/pscws2.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/demo/pscws23/pscws2.class.php -------------------------------------------------------------------------------- /web/demo/pscws23/pscws3.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/demo/pscws23/pscws3.class.php -------------------------------------------------------------------------------- /web/demo/pscws23/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/demo/pscws23/readme.txt -------------------------------------------------------------------------------- /web/demo/pscws23/xdb_r.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/demo/pscws23/xdb_r.class.php -------------------------------------------------------------------------------- /web/demo/pscws4/etc/rules.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/demo/pscws4/etc/rules.ini -------------------------------------------------------------------------------- /web/demo/pscws4/etc/rules.utf8.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/demo/pscws4/etc/rules.utf8.ini -------------------------------------------------------------------------------- /web/demo/pscws4/etc/rules_cht.utf8.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/demo/pscws4/etc/rules_cht.utf8.ini -------------------------------------------------------------------------------- /web/demo/pscws4/pscws4.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/demo/pscws4/pscws4.class.php -------------------------------------------------------------------------------- /web/demo/pscws4/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/demo/pscws4/readme.txt -------------------------------------------------------------------------------- /web/demo/pscws4/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/demo/pscws4/test.php -------------------------------------------------------------------------------- /web/demo/pscws4/xdb_r.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/demo/pscws4/xdb_r.class.php -------------------------------------------------------------------------------- /web/demo/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/demo/sample.txt -------------------------------------------------------------------------------- /web/demo/sample.utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/demo/sample.utf8.txt -------------------------------------------------------------------------------- /web/demo/sample_cht.utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/demo/sample_cht.utf8.txt -------------------------------------------------------------------------------- /web/demo/v4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/demo/v4.php -------------------------------------------------------------------------------- /web/demo/v48.cht.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/demo/v48.cht.php -------------------------------------------------------------------------------- /web/demo/v48.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/demo/v48.php -------------------------------------------------------------------------------- /web/docs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/docs.php -------------------------------------------------------------------------------- /web/download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/download.php -------------------------------------------------------------------------------- /web/footer.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/footer.inc.php -------------------------------------------------------------------------------- /web/header.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/header.inc.php -------------------------------------------------------------------------------- /web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/index.php -------------------------------------------------------------------------------- /web/support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/web/support.php -------------------------------------------------------------------------------- /win32/libscws.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/win32/libscws.dsp -------------------------------------------------------------------------------- /win32/libscws.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/win32/libscws.vcproj -------------------------------------------------------------------------------- /win32/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/win32/readme.txt -------------------------------------------------------------------------------- /win32/scws.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/win32/scws.dsp -------------------------------------------------------------------------------- /win32/scws.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/win32/scws.dsw -------------------------------------------------------------------------------- /win32/scws.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/win32/scws.sln -------------------------------------------------------------------------------- /win32/scws.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hightman/scws/HEAD/win32/scws.vcproj --------------------------------------------------------------------------------