├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── 通用问题模板.md └── workflows │ ├── build.yml │ └── ci.yml ├── .gitignore ├── .readthedocs.yaml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── Snapshot ├── homepage.png ├── hook.png └── pic.png ├── docker-compose.yml ├── docs ├── Makefile ├── _static │ └── images │ │ ├── favicon.png │ │ ├── logo.png │ │ ├── picbed-alone-docker.gif │ │ ├── picbed-cli-release.png │ │ ├── picbed-docker-compose.gif │ │ ├── picbed-docker-volume.gif │ │ ├── picbed-install.gif │ │ ├── picbed-nginx.gif │ │ ├── picbed-online-hooks.png │ │ ├── picbed_cli.png │ │ ├── picbed_gitee_hook.png │ │ ├── picbed_github_hook.png │ │ ├── picbed_github_token.png │ │ ├── picbed_hook.png │ │ ├── picbed_hooksetting.png │ │ ├── picbed_linktoken.png │ │ ├── picbed_linktoken_copy.png │ │ ├── picbed_setting.png │ │ ├── picbed_upload.gif │ │ ├── picbed_userdiyimg.png │ │ ├── picbed_userscript.png │ │ ├── picbed_userscript_install.png │ │ ├── picbed_userscript_upload.png │ │ ├── redis-install.gif │ │ └── sapic.png ├── admin.rst ├── api.rst ├── changelog.rst ├── cli-py.rst ├── cli.rst ├── conf.py ├── docker.rst ├── faq.rst ├── hook.rst ├── index.rst ├── install.rst ├── linktoken.rst ├── module.rst └── usage.rst ├── kube-sapic.yaml ├── misc ├── layui.md └── linktoken.html ├── requirements ├── all.txt ├── base.txt ├── dev.txt ├── docs.txt ├── pic2webp.txt ├── procname.txt ├── prod.txt ├── up2qiniu.txt └── up2upyun.txt └── src ├── Makefile ├── app.py ├── config.py ├── hooks ├── __init__.py ├── pic2webp.py ├── sendmail.py ├── token.py ├── up2gitee.py ├── up2github.py ├── up2local.py ├── up2qiniu.py └── up2upyun.py ├── libs ├── __init__.py ├── hook.py └── storage.py ├── online_gunicorn.sh ├── sapicd.py ├── static ├── css │ ├── ImgCropping.css │ └── cropper.min.css ├── img │ ├── bg1.jpg │ ├── bg2.jpg │ ├── bg3.jpg │ ├── bg4.jpg │ ├── bg5.jpg │ ├── defaultAvatar.png │ ├── favicon.png │ ├── logo.png │ ├── mbg1.jpg │ ├── mbg2.jpg │ ├── mbg3.jpg │ ├── mbg4.jpg │ └── mbg5.jpg ├── layui │ ├── css │ │ ├── layui.css │ │ ├── layui.mobile.css │ │ └── modules │ │ │ ├── code.css │ │ │ ├── laydate │ │ │ └── default │ │ │ │ └── laydate.css │ │ │ └── layer │ │ │ └── default │ │ │ ├── icon-ext.png │ │ │ ├── icon.png │ │ │ ├── layer.css │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ ├── font │ │ ├── iconfont.eot │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ └── iconfont.woff2 │ ├── images │ │ └── face │ │ │ ├── 0.gif │ │ │ ├── 1.gif │ │ │ ├── 10.gif │ │ │ ├── 11.gif │ │ │ ├── 12.gif │ │ │ ├── 13.gif │ │ │ ├── 14.gif │ │ │ ├── 15.gif │ │ │ ├── 16.gif │ │ │ ├── 17.gif │ │ │ ├── 18.gif │ │ │ ├── 19.gif │ │ │ ├── 2.gif │ │ │ ├── 20.gif │ │ │ ├── 21.gif │ │ │ ├── 22.gif │ │ │ ├── 23.gif │ │ │ ├── 24.gif │ │ │ ├── 25.gif │ │ │ ├── 26.gif │ │ │ ├── 27.gif │ │ │ ├── 28.gif │ │ │ ├── 29.gif │ │ │ ├── 3.gif │ │ │ ├── 30.gif │ │ │ ├── 31.gif │ │ │ ├── 32.gif │ │ │ ├── 33.gif │ │ │ ├── 34.gif │ │ │ ├── 35.gif │ │ │ ├── 36.gif │ │ │ ├── 37.gif │ │ │ ├── 38.gif │ │ │ ├── 39.gif │ │ │ ├── 4.gif │ │ │ ├── 40.gif │ │ │ ├── 41.gif │ │ │ ├── 42.gif │ │ │ ├── 43.gif │ │ │ ├── 44.gif │ │ │ ├── 45.gif │ │ │ ├── 46.gif │ │ │ ├── 47.gif │ │ │ ├── 48.gif │ │ │ ├── 49.gif │ │ │ ├── 5.gif │ │ │ ├── 50.gif │ │ │ ├── 51.gif │ │ │ ├── 52.gif │ │ │ ├── 53.gif │ │ │ ├── 54.gif │ │ │ ├── 55.gif │ │ │ ├── 56.gif │ │ │ ├── 57.gif │ │ │ ├── 58.gif │ │ │ ├── 59.gif │ │ │ ├── 6.gif │ │ │ ├── 60.gif │ │ │ ├── 61.gif │ │ │ ├── 62.gif │ │ │ ├── 63.gif │ │ │ ├── 64.gif │ │ │ ├── 65.gif │ │ │ ├── 66.gif │ │ │ ├── 67.gif │ │ │ ├── 68.gif │ │ │ ├── 69.gif │ │ │ ├── 7.gif │ │ │ ├── 70.gif │ │ │ ├── 71.gif │ │ │ ├── 8.gif │ │ │ └── 9.gif │ └── layui.all.js ├── mymod │ ├── avatar.js │ ├── cropper.js │ ├── message.js │ ├── picbed.js │ └── tableSelect.js ├── sdk │ ├── uploader.js │ └── uploader.min.js └── share.js │ ├── css │ └── share.min.css │ ├── fonts │ ├── iconfont.eot │ ├── iconfont.svg │ ├── iconfont.ttf │ └── iconfont.woff │ └── js │ ├── jquery.share.min.js │ └── social-share.min.js ├── templates ├── control │ ├── admin.html │ └── my.html ├── email │ ├── activate_base.html │ ├── activate_email.html │ ├── activate_forgot.html │ ├── base.html │ └── notify.html ├── layout │ ├── base.html │ ├── control.html │ └── public.html ├── public │ ├── error.html │ ├── feed.xml │ ├── forgot.html │ ├── go.html │ ├── index.html │ ├── login.html │ ├── publish.html │ ├── register.html │ └── userscript.js └── ref │ ├── footer.html │ ├── header.html │ ├── nav.html │ └── upload_show.html ├── tests ├── __init__.py ├── test_app.py ├── test_hook.py ├── test_storage.py └── test_utils.py ├── utils ├── __init__.py ├── _compat.py ├── cli.py ├── exceptions.py ├── log.py ├── tool.py └── web.py ├── version.py └── views ├── __init__.py ├── api.py └── front.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/通用问题模板.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/.github/ISSUE_TEMPLATE/通用问题模板.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/README.md -------------------------------------------------------------------------------- /Snapshot/homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/Snapshot/homepage.png -------------------------------------------------------------------------------- /Snapshot/hook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/Snapshot/hook.png -------------------------------------------------------------------------------- /Snapshot/pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/Snapshot/pic.png -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/_static/images/favicon.png -------------------------------------------------------------------------------- /docs/_static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/_static/images/logo.png -------------------------------------------------------------------------------- /docs/_static/images/picbed-alone-docker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/_static/images/picbed-alone-docker.gif -------------------------------------------------------------------------------- /docs/_static/images/picbed-cli-release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/_static/images/picbed-cli-release.png -------------------------------------------------------------------------------- /docs/_static/images/picbed-docker-compose.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/_static/images/picbed-docker-compose.gif -------------------------------------------------------------------------------- /docs/_static/images/picbed-docker-volume.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/_static/images/picbed-docker-volume.gif -------------------------------------------------------------------------------- /docs/_static/images/picbed-install.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/_static/images/picbed-install.gif -------------------------------------------------------------------------------- /docs/_static/images/picbed-nginx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/_static/images/picbed-nginx.gif -------------------------------------------------------------------------------- /docs/_static/images/picbed-online-hooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/_static/images/picbed-online-hooks.png -------------------------------------------------------------------------------- /docs/_static/images/picbed_cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/_static/images/picbed_cli.png -------------------------------------------------------------------------------- /docs/_static/images/picbed_gitee_hook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/_static/images/picbed_gitee_hook.png -------------------------------------------------------------------------------- /docs/_static/images/picbed_github_hook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/_static/images/picbed_github_hook.png -------------------------------------------------------------------------------- /docs/_static/images/picbed_github_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/_static/images/picbed_github_token.png -------------------------------------------------------------------------------- /docs/_static/images/picbed_hook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/_static/images/picbed_hook.png -------------------------------------------------------------------------------- /docs/_static/images/picbed_hooksetting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/_static/images/picbed_hooksetting.png -------------------------------------------------------------------------------- /docs/_static/images/picbed_linktoken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/_static/images/picbed_linktoken.png -------------------------------------------------------------------------------- /docs/_static/images/picbed_linktoken_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/_static/images/picbed_linktoken_copy.png -------------------------------------------------------------------------------- /docs/_static/images/picbed_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/_static/images/picbed_setting.png -------------------------------------------------------------------------------- /docs/_static/images/picbed_upload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/_static/images/picbed_upload.gif -------------------------------------------------------------------------------- /docs/_static/images/picbed_userdiyimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/_static/images/picbed_userdiyimg.png -------------------------------------------------------------------------------- /docs/_static/images/picbed_userscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/_static/images/picbed_userscript.png -------------------------------------------------------------------------------- /docs/_static/images/picbed_userscript_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/_static/images/picbed_userscript_install.png -------------------------------------------------------------------------------- /docs/_static/images/picbed_userscript_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/_static/images/picbed_userscript_upload.png -------------------------------------------------------------------------------- /docs/_static/images/redis-install.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/_static/images/redis-install.gif -------------------------------------------------------------------------------- /docs/_static/images/sapic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/_static/images/sapic.png -------------------------------------------------------------------------------- /docs/admin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/admin.rst -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/cli-py.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/cli-py.rst -------------------------------------------------------------------------------- /docs/cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/cli.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/docker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/docker.rst -------------------------------------------------------------------------------- /docs/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/faq.rst -------------------------------------------------------------------------------- /docs/hook.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/hook.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/linktoken.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/linktoken.rst -------------------------------------------------------------------------------- /docs/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/module.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /kube-sapic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/kube-sapic.yaml -------------------------------------------------------------------------------- /misc/layui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/misc/layui.md -------------------------------------------------------------------------------- /misc/linktoken.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/misc/linktoken.html -------------------------------------------------------------------------------- /requirements/all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/requirements/all.txt -------------------------------------------------------------------------------- /requirements/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/requirements/base.txt -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- 1 | -r base.txt 2 | -------------------------------------------------------------------------------- /requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/requirements/docs.txt -------------------------------------------------------------------------------- /requirements/pic2webp.txt: -------------------------------------------------------------------------------- 1 | pillow>=9.4.0 -------------------------------------------------------------------------------- /requirements/procname.txt: -------------------------------------------------------------------------------- 1 | setproctitle==1.3.4 -------------------------------------------------------------------------------- /requirements/prod.txt: -------------------------------------------------------------------------------- 1 | -r base.txt 2 | gunicorn==23.0.0 3 | gevent==24.11.1 -------------------------------------------------------------------------------- /requirements/up2qiniu.txt: -------------------------------------------------------------------------------- 1 | qiniu==7.15.0 -------------------------------------------------------------------------------- /requirements/up2upyun.txt: -------------------------------------------------------------------------------- 1 | upyun==2.5.5 -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/app.py -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/config.py -------------------------------------------------------------------------------- /src/hooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/hooks/pic2webp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/hooks/pic2webp.py -------------------------------------------------------------------------------- /src/hooks/sendmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/hooks/sendmail.py -------------------------------------------------------------------------------- /src/hooks/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/hooks/token.py -------------------------------------------------------------------------------- /src/hooks/up2gitee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/hooks/up2gitee.py -------------------------------------------------------------------------------- /src/hooks/up2github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/hooks/up2github.py -------------------------------------------------------------------------------- /src/hooks/up2local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/hooks/up2local.py -------------------------------------------------------------------------------- /src/hooks/up2qiniu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/hooks/up2qiniu.py -------------------------------------------------------------------------------- /src/hooks/up2upyun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/hooks/up2upyun.py -------------------------------------------------------------------------------- /src/libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libs/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/libs/hook.py -------------------------------------------------------------------------------- /src/libs/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/libs/storage.py -------------------------------------------------------------------------------- /src/online_gunicorn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/online_gunicorn.sh -------------------------------------------------------------------------------- /src/sapicd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/sapicd.py -------------------------------------------------------------------------------- /src/static/css/ImgCropping.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/css/ImgCropping.css -------------------------------------------------------------------------------- /src/static/css/cropper.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/css/cropper.min.css -------------------------------------------------------------------------------- /src/static/img/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/img/bg1.jpg -------------------------------------------------------------------------------- /src/static/img/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/img/bg2.jpg -------------------------------------------------------------------------------- /src/static/img/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/img/bg3.jpg -------------------------------------------------------------------------------- /src/static/img/bg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/img/bg4.jpg -------------------------------------------------------------------------------- /src/static/img/bg5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/img/bg5.jpg -------------------------------------------------------------------------------- /src/static/img/defaultAvatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/img/defaultAvatar.png -------------------------------------------------------------------------------- /src/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/img/favicon.png -------------------------------------------------------------------------------- /src/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/img/logo.png -------------------------------------------------------------------------------- /src/static/img/mbg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/img/mbg1.jpg -------------------------------------------------------------------------------- /src/static/img/mbg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/img/mbg2.jpg -------------------------------------------------------------------------------- /src/static/img/mbg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/img/mbg3.jpg -------------------------------------------------------------------------------- /src/static/img/mbg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/img/mbg4.jpg -------------------------------------------------------------------------------- /src/static/img/mbg5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/img/mbg5.jpg -------------------------------------------------------------------------------- /src/static/layui/css/layui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/css/layui.css -------------------------------------------------------------------------------- /src/static/layui/css/layui.mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/css/layui.mobile.css -------------------------------------------------------------------------------- /src/static/layui/css/modules/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/css/modules/code.css -------------------------------------------------------------------------------- /src/static/layui/css/modules/laydate/default/laydate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/css/modules/laydate/default/laydate.css -------------------------------------------------------------------------------- /src/static/layui/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /src/static/layui/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /src/static/layui/css/modules/layer/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/css/modules/layer/default/layer.css -------------------------------------------------------------------------------- /src/static/layui/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /src/static/layui/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /src/static/layui/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /src/static/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/font/iconfont.eot -------------------------------------------------------------------------------- /src/static/layui/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/font/iconfont.svg -------------------------------------------------------------------------------- /src/static/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /src/static/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/font/iconfont.woff -------------------------------------------------------------------------------- /src/static/layui/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/font/iconfont.woff2 -------------------------------------------------------------------------------- /src/static/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/0.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/1.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/10.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/11.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/12.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/13.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/14.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/15.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/16.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/17.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/18.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/19.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/2.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/20.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/21.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/22.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/23.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/24.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/25.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/26.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/27.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/28.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/29.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/3.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/30.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/31.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/32.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/33.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/34.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/35.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/36.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/37.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/38.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/39.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/4.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/40.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/41.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/42.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/43.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/44.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/45.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/46.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/47.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/48.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/49.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/5.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/50.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/51.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/52.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/53.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/54.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/55.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/56.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/57.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/58.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/59.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/6.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/60.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/61.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/62.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/63.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/64.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/65.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/66.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/67.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/68.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/69.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/7.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/70.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/71.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/8.gif -------------------------------------------------------------------------------- /src/static/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/images/face/9.gif -------------------------------------------------------------------------------- /src/static/layui/layui.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/layui/layui.all.js -------------------------------------------------------------------------------- /src/static/mymod/avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/mymod/avatar.js -------------------------------------------------------------------------------- /src/static/mymod/cropper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/mymod/cropper.js -------------------------------------------------------------------------------- /src/static/mymod/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/mymod/message.js -------------------------------------------------------------------------------- /src/static/mymod/picbed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/mymod/picbed.js -------------------------------------------------------------------------------- /src/static/mymod/tableSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/mymod/tableSelect.js -------------------------------------------------------------------------------- /src/static/sdk/uploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/sdk/uploader.js -------------------------------------------------------------------------------- /src/static/sdk/uploader.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/sdk/uploader.min.js -------------------------------------------------------------------------------- /src/static/share.js/css/share.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/share.js/css/share.min.css -------------------------------------------------------------------------------- /src/static/share.js/fonts/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/share.js/fonts/iconfont.eot -------------------------------------------------------------------------------- /src/static/share.js/fonts/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/share.js/fonts/iconfont.svg -------------------------------------------------------------------------------- /src/static/share.js/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/share.js/fonts/iconfont.ttf -------------------------------------------------------------------------------- /src/static/share.js/fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/share.js/fonts/iconfont.woff -------------------------------------------------------------------------------- /src/static/share.js/js/jquery.share.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/share.js/js/jquery.share.min.js -------------------------------------------------------------------------------- /src/static/share.js/js/social-share.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/static/share.js/js/social-share.min.js -------------------------------------------------------------------------------- /src/templates/control/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/templates/control/admin.html -------------------------------------------------------------------------------- /src/templates/control/my.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/templates/control/my.html -------------------------------------------------------------------------------- /src/templates/email/activate_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/templates/email/activate_base.html -------------------------------------------------------------------------------- /src/templates/email/activate_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/templates/email/activate_email.html -------------------------------------------------------------------------------- /src/templates/email/activate_forgot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/templates/email/activate_forgot.html -------------------------------------------------------------------------------- /src/templates/email/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/templates/email/base.html -------------------------------------------------------------------------------- /src/templates/email/notify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/templates/email/notify.html -------------------------------------------------------------------------------- /src/templates/layout/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/templates/layout/base.html -------------------------------------------------------------------------------- /src/templates/layout/control.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/templates/layout/control.html -------------------------------------------------------------------------------- /src/templates/layout/public.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/templates/layout/public.html -------------------------------------------------------------------------------- /src/templates/public/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/templates/public/error.html -------------------------------------------------------------------------------- /src/templates/public/feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/templates/public/feed.xml -------------------------------------------------------------------------------- /src/templates/public/forgot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/templates/public/forgot.html -------------------------------------------------------------------------------- /src/templates/public/go.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/templates/public/go.html -------------------------------------------------------------------------------- /src/templates/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/templates/public/index.html -------------------------------------------------------------------------------- /src/templates/public/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/templates/public/login.html -------------------------------------------------------------------------------- /src/templates/public/publish.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/templates/public/publish.html -------------------------------------------------------------------------------- /src/templates/public/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/templates/public/register.html -------------------------------------------------------------------------------- /src/templates/public/userscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/templates/public/userscript.js -------------------------------------------------------------------------------- /src/templates/ref/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/templates/ref/footer.html -------------------------------------------------------------------------------- /src/templates/ref/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/templates/ref/header.html -------------------------------------------------------------------------------- /src/templates/ref/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/templates/ref/nav.html -------------------------------------------------------------------------------- /src/templates/ref/upload_show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/templates/ref/upload_show.html -------------------------------------------------------------------------------- /src/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/tests/test_app.py -------------------------------------------------------------------------------- /src/tests/test_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/tests/test_hook.py -------------------------------------------------------------------------------- /src/tests/test_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/tests/test_storage.py -------------------------------------------------------------------------------- /src/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/tests/test_utils.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/utils/_compat.py -------------------------------------------------------------------------------- /src/utils/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/utils/cli.py -------------------------------------------------------------------------------- /src/utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/utils/exceptions.py -------------------------------------------------------------------------------- /src/utils/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/utils/log.py -------------------------------------------------------------------------------- /src/utils/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/utils/tool.py -------------------------------------------------------------------------------- /src/utils/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/utils/web.py -------------------------------------------------------------------------------- /src/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.16.7" 2 | -------------------------------------------------------------------------------- /src/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/views/__init__.py -------------------------------------------------------------------------------- /src/views/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/views/api.py -------------------------------------------------------------------------------- /src/views/front.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sapicd/sapic/HEAD/src/views/front.py --------------------------------------------------------------------------------