├── .gitignore ├── README.md ├── assets ├── chat │ ├── alert.mp3 │ ├── chat.css │ └── chat.js ├── css │ ├── admin.css │ ├── font.css │ └── main.css ├── fonts │ ├── OpenSans.woff │ └── PTMono.woff ├── js │ ├── jquery-1.9.1.min.js │ └── main.js └── twitter │ └── main.js ├── chann_test.conf ├── lib ├── mongoose │ ├── mongoose.c │ └── mongoose.h ├── squirrel │ ├── cchan.sql │ ├── general.cpp │ ├── general.h │ ├── main.cpp │ ├── makefile │ └── squirrel └── unqlite │ ├── unqlite.c │ └── unqlite.h ├── makefile ├── src ├── actions │ ├── chat.cpp │ ├── chat.h │ ├── kill.cpp │ ├── kill.h │ ├── post.cpp │ └── post.h ├── config.h ├── deprecated │ ├── cookie.cpp │ ├── cookie.h │ ├── lang.h │ └── templates.h ├── general.cpp ├── general.h ├── helper.cpp ├── helper.h ├── main.cpp ├── router.h ├── tags.h └── views │ ├── info.cpp │ ├── info.h │ ├── list │ ├── expand.cpp │ ├── expand.h │ ├── gallery.cpp │ ├── gallery.h │ ├── linear.cpp │ ├── linear.h │ ├── timeline.cpp │ └── timeline.h │ ├── single.cpp │ ├── single.h │ ├── success.cpp │ └── success.h └── templates └── zh-CN ├── admin_panel.tpl ├── expand_hidden_replies.tpl ├── info_page.tpl ├── misc.tpl ├── pager.tpl ├── post_form.tpl ├── single_thread.tpl ├── single_thread_header.tpl ├── site_footer.tpl ├── site_header.tpl ├── site_slogan.tpl └── site_welcome.tpl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/README.md -------------------------------------------------------------------------------- /assets/chat/alert.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/assets/chat/alert.mp3 -------------------------------------------------------------------------------- /assets/chat/chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/assets/chat/chat.css -------------------------------------------------------------------------------- /assets/chat/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/assets/chat/chat.js -------------------------------------------------------------------------------- /assets/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/assets/css/admin.css -------------------------------------------------------------------------------- /assets/css/font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/assets/css/font.css -------------------------------------------------------------------------------- /assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/assets/css/main.css -------------------------------------------------------------------------------- /assets/fonts/OpenSans.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/assets/fonts/OpenSans.woff -------------------------------------------------------------------------------- /assets/fonts/PTMono.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/assets/fonts/PTMono.woff -------------------------------------------------------------------------------- /assets/js/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/assets/js/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/assets/js/main.js -------------------------------------------------------------------------------- /assets/twitter/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/assets/twitter/main.js -------------------------------------------------------------------------------- /chann_test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/chann_test.conf -------------------------------------------------------------------------------- /lib/mongoose/mongoose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/lib/mongoose/mongoose.c -------------------------------------------------------------------------------- /lib/mongoose/mongoose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/lib/mongoose/mongoose.h -------------------------------------------------------------------------------- /lib/squirrel/cchan.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/lib/squirrel/cchan.sql -------------------------------------------------------------------------------- /lib/squirrel/general.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/lib/squirrel/general.cpp -------------------------------------------------------------------------------- /lib/squirrel/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/lib/squirrel/general.h -------------------------------------------------------------------------------- /lib/squirrel/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/lib/squirrel/main.cpp -------------------------------------------------------------------------------- /lib/squirrel/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/lib/squirrel/makefile -------------------------------------------------------------------------------- /lib/squirrel/squirrel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/lib/squirrel/squirrel -------------------------------------------------------------------------------- /lib/unqlite/unqlite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/lib/unqlite/unqlite.c -------------------------------------------------------------------------------- /lib/unqlite/unqlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/lib/unqlite/unqlite.h -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/makefile -------------------------------------------------------------------------------- /src/actions/chat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/actions/chat.cpp -------------------------------------------------------------------------------- /src/actions/chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/actions/chat.h -------------------------------------------------------------------------------- /src/actions/kill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/actions/kill.cpp -------------------------------------------------------------------------------- /src/actions/kill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/actions/kill.h -------------------------------------------------------------------------------- /src/actions/post.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/actions/post.cpp -------------------------------------------------------------------------------- /src/actions/post.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/actions/post.h -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/config.h -------------------------------------------------------------------------------- /src/deprecated/cookie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/deprecated/cookie.cpp -------------------------------------------------------------------------------- /src/deprecated/cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/deprecated/cookie.h -------------------------------------------------------------------------------- /src/deprecated/lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/deprecated/lang.h -------------------------------------------------------------------------------- /src/deprecated/templates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/deprecated/templates.h -------------------------------------------------------------------------------- /src/general.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/general.cpp -------------------------------------------------------------------------------- /src/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/general.h -------------------------------------------------------------------------------- /src/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/helper.cpp -------------------------------------------------------------------------------- /src/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/helper.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/router.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/router.h -------------------------------------------------------------------------------- /src/tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/tags.h -------------------------------------------------------------------------------- /src/views/info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/views/info.cpp -------------------------------------------------------------------------------- /src/views/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/views/info.h -------------------------------------------------------------------------------- /src/views/list/expand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/views/list/expand.cpp -------------------------------------------------------------------------------- /src/views/list/expand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/views/list/expand.h -------------------------------------------------------------------------------- /src/views/list/gallery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/views/list/gallery.cpp -------------------------------------------------------------------------------- /src/views/list/gallery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/views/list/gallery.h -------------------------------------------------------------------------------- /src/views/list/linear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/views/list/linear.cpp -------------------------------------------------------------------------------- /src/views/list/linear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/views/list/linear.h -------------------------------------------------------------------------------- /src/views/list/timeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/views/list/timeline.cpp -------------------------------------------------------------------------------- /src/views/list/timeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/views/list/timeline.h -------------------------------------------------------------------------------- /src/views/single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/views/single.cpp -------------------------------------------------------------------------------- /src/views/single.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/views/single.h -------------------------------------------------------------------------------- /src/views/success.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/views/success.cpp -------------------------------------------------------------------------------- /src/views/success.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/src/views/success.h -------------------------------------------------------------------------------- /templates/zh-CN/admin_panel.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/templates/zh-CN/admin_panel.tpl -------------------------------------------------------------------------------- /templates/zh-CN/expand_hidden_replies.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/templates/zh-CN/expand_hidden_replies.tpl -------------------------------------------------------------------------------- /templates/zh-CN/info_page.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/templates/zh-CN/info_page.tpl -------------------------------------------------------------------------------- /templates/zh-CN/misc.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/templates/zh-CN/misc.tpl -------------------------------------------------------------------------------- /templates/zh-CN/pager.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/templates/zh-CN/pager.tpl -------------------------------------------------------------------------------- /templates/zh-CN/post_form.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/templates/zh-CN/post_form.tpl -------------------------------------------------------------------------------- /templates/zh-CN/single_thread.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/templates/zh-CN/single_thread.tpl -------------------------------------------------------------------------------- /templates/zh-CN/single_thread_header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/templates/zh-CN/single_thread_header.tpl -------------------------------------------------------------------------------- /templates/zh-CN/site_footer.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/templates/zh-CN/site_footer.tpl -------------------------------------------------------------------------------- /templates/zh-CN/site_header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/templates/zh-CN/site_header.tpl -------------------------------------------------------------------------------- /templates/zh-CN/site_slogan.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/templates/zh-CN/site_slogan.tpl -------------------------------------------------------------------------------- /templates/zh-CN/site_welcome.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coyove/chann/HEAD/templates/zh-CN/site_welcome.tpl --------------------------------------------------------------------------------