| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
- define("_DIR_APPDATA_" , __DIR__."/../tmp/appdata");
- define("_DIR_PALICANON_" , __DIR__."/../tmp/appdata/palicanon");
- define("_DIR_PALICANON_TEMPLET_" , __DIR__."/../tmp/appdata/palicanon/templet");
- define("_DIR_PALICANON_PALITEXT_" , __DIR__."/../tmp/appdata/palicanon/pali_text");
- define("_DIR_PALICANON_WBW_" , __DIR__."/../tmp/appdata/palicanon/wbw");
- define("_DIR_PALICANON_TRAN_" , __DIR__."/../tmp/appdata/palicanon/translate");
- //pali canon db file
- define("_FILE_DB_RESRES_INDEX_" , __DIR__."/../tmp/appdata/palicanon/res.db3");
- define("_FILE_DB_PALITEXT_" , __DIR__."/../tmp/appdata/palicanon/pali_text.db3");
- define("_FILE_DB_STATISTICS_" , __DIR__."/../tmp/appdata/palicanon/word_statistics.db3");
- define("_FILE_DB_PALI_SENTENCE_" , __DIR__."/../tmp/appdata/palicanon/pali_sent.db3");
- define("_FILE_DB_INDEX_" , __DIR__."/../tmp/appdata/palicanon/index.db3");
- define("_FILE_DB_WORD_INDEX_" , __DIR__."/../tmp/appdata/palicanon/wordindex.db3");
- define("_FILE_DB_PALI_INDEX_" , __DIR__."/../tmp/appdata/palicanon/paliindex.db3");
- define("_FILE_DB_BOOK_WORD_" , __DIR__."/../tmp/appdata/palicanon/bookword.db3");
- define("_FILE_DB_BOLD_" , __DIR__."/../tmp/appdata/palicanon/bold.db3");
- //语料库
- define("_DIR_CSV_PALI_CANON_WORD_" , __DIR__."/../paliword/book");
- define("_DIR_CSV_PALI_CANON_WORD_INDEX_" , __DIR__."/../paliword/index");
- define("_DIR_PALI_CSV_" , __DIR__."/../tmp/palicsv");
- define("_DIR_LOG_" , __DIR__."/../tmp/log");
- define("_DIR_TEMP_" , __DIR__."/../tmp/temp");
- //dictionary
- define("_DIR_DICT_" , __DIR__."/../tmp/appdata/dict");
- define("_DIR_DICT_SYSTEM_" , __DIR__."/../tmp/appdata/dict/system");
- define("_DIR_DICT_3RD_" , __DIR__."/../tmp/appdata/dict/3rd");
- define("_DIR_DICT_REF_" , __DIR__."/../tmp/appdata/dict/ref");
- define("_DIR_USERS_GUIDE_" , __DIR__."/../documents/users_guide");
- define("_FILE_DB_REF_" , __DIR__."/../tmp/appdata/dict/system/ref.db");
- define("_FILE_DB_REF_INDEX_" , __DIR__."/../tmp/appdata/dict/system/ref1.db");
- define("_FILE_DB_PART_" , __DIR__."/../tmp/appdata/dict/system/part.db3");
- define("_DIR_FONT_" , __DIR__."/../font");
- define("_DIR_PALI_HTML_" , __DIR__."/../palihtml");
- define("_DIR_DICT_TEXT_" , __DIR__."/../dicttext");
- define("_DIR_PALI_TITLE_" , __DIR__."/../pali_title");
- define("_DIR_APP_" , __DIR__."/../app");
- define("_DIR_LANGUAGE_" , __DIR__."/../app/public/lang");
- define("_DIR_BOOK_INDEX_" , __DIR__."/../app/public/book_index");
- /*user data*/
- define("_DIR_USER_BASE_" , __DIR__."/../tmp/user");
- define("_DIR_USER_IMG_" , __DIR__."/../tmp/user/media/3");
- define("_DIR_USER_IMG_LINK_" , "../../tmp/user/media/3");
- define("_DIR_MYDOCUMENT_" , "/my_document");
- define("_FILE_DB_USER_WBW_" , __DIR__."/../tmp/user/user_wbw.db3");
- define("_FILE_DB_COMMENTS_" , __DIR__."/../tmp/user/comments.db3");
- define("_FILE_DB_SENTENCE_" , __DIR__."/../tmp/user/sentence.db3");
- define("_FILE_DB_TERM_" , __DIR__."/../tmp/user/dhammaterm.db");
- define("_FILE_DB_GROUP_" , __DIR__."/../tmp/user/group.db3");
- define("_FILE_DB_USERINFO_" , __DIR__."/../tmp/user/userinfo.db3");
- define("_FILE_DB_FILEINDEX_" , __DIR__."/../tmp/user/fileindex.db");
- define("_FILE_DB_WBW_" , __DIR__."/../tmp/user/wbw.db3");
- define("_FILE_DB_COURSE_" , __DIR__."/../tmp/user/course.db3");
- define("_FILE_DB_MEDIA_" , __DIR__."/../tmp/user/media.db3");
- define("_FILE_DB_MESSAGE_" , __DIR__."/../tmp/user/message.db");
- define("_FILE_DB_USER_STATISTICS_" , __DIR__."/../tmp/user/statistics.db3");
- define("_FILE_DB_CHANNAL_" , __DIR__."/../tmp/user/channal.db3");
- define("_FILE_DB_USER_DICT_" , __DIR__."/../tmp/user/udict.db3");
- ?>
|