├── laucher.js ├── DB ├── upDB │ ├── comment.bson │ ├── blog.bson │ ├── blogs.bson │ ├── blog.metadata.json │ ├── comment.metadata.json │ └── blogs.metadata.json └── test │ ├── lang.bson │ └── lang.metadata.json ├── assets ├── module │ └── blog │ │ ├── list │ │ ├── list.css │ │ ├── list_d41d8cd98f.css │ │ ├── list_d41d8cd98f_d41d8cd98f.css │ │ └── list.js │ │ ├── preview │ │ ├── preview.css │ │ ├── preview_d41d8cd98f.css │ │ └── preview_d41d8cd98f_d41d8cd98f.css │ │ ├── mis │ │ ├── mis_1c9ab0ff81.css │ │ ├── mis_1c9ab0ff81_1c9ab0ff81.css │ │ ├── mis.css │ │ └── mis.js │ │ ├── info │ │ ├── info_2496d6ac5b.css │ │ ├── info_2496d6ac5b_2496d6ac5b.css │ │ └── info.css │ │ └── edit │ │ ├── edit_17a0d82df7.css │ │ ├── edit_17a0d82df7_17a0d82df7.css │ │ └── edit.css ├── widget │ └── hint │ │ ├── hint_d41d8cd98f.css │ │ ├── hint_cbf05c6d8c.css │ │ ├── hint_cbf05c6d8c_cbf05c6d8c.css │ │ └── hint.css ├── public │ ├── css │ │ ├── common_e41b9e80ea_d41d8cd98f.css │ │ ├── reset_ca08e7b227.css │ │ ├── reset_ca08e7b227_ca08e7b227.css │ │ ├── markdown_ddc924cd03.css │ │ ├── markdown_ddc924cd03_ddc924cd03.css │ │ └── markdown.css │ └── imgs │ │ ├── cloud.png │ │ └── head.png ├── baidu.png ├── cpu.png ├── login.png ├── sso.png ├── bigpipe.png └── jmeter.png ├── web ├── views │ ├── blog │ │ ├── info │ │ │ └── a │ │ ├── list.ejs │ │ ├── info.ejs │ │ └── info.htx │ ├── 404.ejs │ ├── issue │ │ └── index.ejs │ ├── user │ │ ├── info.ejs │ │ ├── self.ejs │ │ └── edit.ejs │ ├── case │ │ └── list.ejs │ └── common │ │ ├── slide.ejs │ │ ├── header.ejs │ │ └── footer.ejs ├── assets │ ├── module │ │ ├── blog │ │ │ ├── list │ │ │ │ ├── list.css │ │ │ │ └── list.js │ │ │ └── info │ │ │ │ └── info.css │ │ ├── case │ │ │ └── list │ │ │ │ ├── list.css │ │ │ │ └── list.js │ │ ├── issue │ │ │ ├── error │ │ │ │ ├── error.css │ │ │ │ └── error.js │ │ │ ├── index │ │ │ │ ├── index.css │ │ │ │ └── index.js │ │ │ └── index (copy) │ │ │ │ ├── index.css │ │ │ │ └── index.js │ │ └── user │ │ │ ├── edit │ │ │ ├── edit.css │ │ │ └── edit.js │ │ │ ├── info │ │ │ └── info.css │ │ │ └── self │ │ │ └── self.css │ ├── public │ │ ├── imgs │ │ │ ├── bg1.png │ │ │ ├── head.png │ │ │ ├── cloud.png │ │ │ └── qrcode.png │ │ └── js │ │ │ └── zh.js │ ├── widget │ │ └── hint │ │ │ ├── hint.css │ │ │ └── hint.js │ └── core │ │ └── js │ │ ├── event.js │ │ └── base.js ├── config │ ├── redis.js │ ├── server.js │ ├── guard.js │ ├── site.js │ └── logger.js ├── lib │ ├── md5.js │ ├── logger.js │ ├── mailer.js │ └── redis.js ├── server │ ├── case.js │ └── issue.js ├── test │ ├── test-main.js │ └── case │ │ └── core │ │ └── js │ │ └── base_case.js ├── app.js ├── karma.conf.js ├── gulpfile.js └── package.json ├── webES6 ├── dump │ ├── upDB │ │ ├── comment.bson │ │ ├── blog.bson │ │ ├── blogs.bson │ │ ├── blog.metadata.json │ │ ├── comment.metadata.json │ │ └── blogs.metadata.json │ └── test │ │ ├── lang.bson │ │ └── lang.metadata.json ├── assets │ ├── module │ │ ├── list │ │ │ ├── list.css │ │ │ └── list.css?d41d8cd98f │ │ └── blog │ │ │ ├── list │ │ │ ├── list.css │ │ │ └── list.css?d41d8cd98f │ │ │ ├── preview │ │ │ ├── preview.css │ │ │ └── preview.css?d41d8cd98f │ │ │ ├── mis │ │ │ ├── mis.css │ │ │ └── mis.css?125d6259c9 │ │ │ ├── info │ │ │ ├── info.css │ │ │ └── info.css?0a422813ca │ │ │ └── edit │ │ │ ├── edit.css │ │ │ └── edit.css?e24ad0a248 │ ├── git.png │ ├── log.png │ ├── map.jpg │ ├── frame.png │ ├── http.png │ ├── bigpipe.png │ ├── public │ │ ├── imgs │ │ │ ├── cloud.png │ │ │ └── head.png │ │ └── css │ │ │ ├── markdown.css │ │ │ ├── markdown.css?c568c5f6cb │ │ │ └── markdown.css?600854b646 │ └── widget │ │ └── hint │ │ ├── hint.css │ │ └── hint.css?c317a49aab ├── resource │ ├── module │ │ ├── blog │ │ │ ├── list │ │ │ │ ├── list.scss │ │ │ │ ├── .DS_Store │ │ │ │ └── list.js │ │ │ ├── preview │ │ │ │ ├── preview.scss │ │ │ │ └── preview.js │ │ │ ├── .DS_Store │ │ │ ├── mis │ │ │ │ ├── .DS_Store │ │ │ │ ├── mis.scss │ │ │ │ └── mis.js │ │ │ ├── edit │ │ │ │ ├── .DS_Store │ │ │ │ ├── edit.scss │ │ │ │ └── edit.js │ │ │ └── info │ │ │ │ └── info.scss │ │ └── .DS_Store │ ├── .DS_Store │ ├── core │ │ └── .DS_Store │ ├── public │ │ ├── imgs │ │ │ ├── head.png │ │ │ └── cloud.png │ │ ├── js │ │ │ ├── bigpipe.js │ │ │ └── btype.js │ │ └── css │ │ │ └── markdown.scss │ └── widget │ │ └── hint │ │ ├── hint.js │ │ └── hint.scss ├── .babelrc ├── .DS_Store ├── gulp │ ├── .DS_Store │ ├── entry.js │ ├── webpack.js │ ├── imageimg.js │ ├── config.js │ └── webpack.config.js ├── entry.js ├── views │ ├── blog │ │ ├── .DS_Store │ │ ├── mis.ejs │ │ ├── preview.ejs │ │ ├── edit.ejs │ │ ├── info │ │ │ ├── 5720b477303846b20a81e1ed.ejs │ │ │ ├── 5720ac218a3e258a0a287d78.ejs │ │ │ ├── 5720b1b499f705a10a481225.ejs │ │ │ ├── 571e1eb7a61a83b714a42c6a.ejs │ │ │ ├── 5720b757a6e555c30a890179.ejs │ │ │ └── 5720b97d772850cb0a90d786.ejs │ │ ├── list.ejs │ │ └── info.htx │ ├── index.ejs │ └── common │ │ ├── slide.ejs │ │ ├── header.ejs │ │ └── footer.ejs ├── .sass-cache │ ├── 0086bd769221997de606588d417ee0a1c2201a25 │ │ └── info.scssc │ ├── 00e0d4bb043c7b35726486f22fab89b955640d58 │ │ ├── reset.scssc │ │ ├── common.scssc │ │ └── markdown.scssc │ ├── fe2ba5f39279b34b80c9d0d522e51a7f4cc6903e │ │ └── edit.scssc │ └── 596b18f4f48381b6c41d77ed281565b986a6e600 │ │ └── list.scssc ├── controller │ ├── issue.js │ ├── comment.js │ ├── route.js │ └── blog.js ├── config │ └── config.js ├── lib │ ├── utils.js │ ├── code.js │ ├── request.js │ └── loger.js ├── app.js ├── server │ └── comment.js ├── package.json ├── gulp.config.js └── gulpfile.js ├── static ├── assets │ ├── module │ │ ├── list │ │ │ └── list.css │ │ └── blog │ │ │ ├── list │ │ │ └── list.css │ │ │ ├── preview │ │ │ └── preview.css │ │ │ ├── mis │ │ │ └── mis.css │ │ │ ├── info │ │ │ └── info.css │ │ │ └── edit │ │ │ └── edit.css │ ├── public │ │ ├── imgs │ │ │ ├── cloud.png │ │ │ └── head.png │ │ └── css │ │ │ └── markdown.css │ └── widget │ │ └── hint │ │ └── hint.css ├── module │ ├── issue │ │ ├── index (copy) │ │ │ └── index.js │ │ ├── error │ │ │ └── error.js │ │ └── index │ │ │ └── index.js │ ├── case │ │ └── list │ │ │ └── list.js │ ├── user │ │ ├── edit │ │ │ └── edit.js │ │ └── info │ │ │ └── info.js │ └── blog │ │ ├── list │ │ └── list.js │ │ └── info │ │ └── info.js ├── public │ └── js │ │ ├── zh.js │ │ └── common.js ├── core │ └── js │ │ └── base.js └── widget │ └── hint │ └── hint.js ├── serverES6 ├── .babelrc ├── .DS_Store ├── entry.js ├── config │ └── config.js ├── app.js ├── lib │ ├── utils.js │ └── loger.js ├── controller │ ├── comment.js │ ├── blog.js │ └── route.js ├── package.json ├── server │ ├── comment.js │ └── blog.js └── model │ └── db.js ├── docs ├── pic │ └── stack.jpg ├── qa.txt └── sql │ └── server.txt ├── .gitignore ├── check ├── config │ ├── mongo.js │ ├── redis.js │ └── logger.js ├── assets │ ├── core │ │ ├── imgs │ │ │ └── cloud.jpg │ │ └── js │ │ │ ├── npm.js │ │ │ ├── event.js │ │ │ ├── react-dom.js │ │ │ ├── css.min.js │ │ │ └── base.js │ ├── public │ │ ├── imgs │ │ │ ├── bg1.png │ │ │ ├── head.png │ │ │ ├── cloud.png │ │ │ └── qrcode.png │ │ └── js │ │ │ └── zh.js │ ├── module │ │ └── index │ │ │ └── imgs │ │ │ └── cloud.jpg │ └── widget │ │ └── hint │ │ ├── hint.css │ │ └── hint.js ├── lib │ ├── logger.js │ ├── redis.js │ └── toys.js ├── model │ ├── db.js │ └── action.js ├── views │ ├── index.ejs │ └── common │ │ ├── header.ejs │ │ └── footer.ejs ├── webpack.config.js ├── app.js ├── package.json ├── controller │ └── index.js └── server │ └── action.js ├── server ├── config │ ├── redis.js │ ├── mysql.js │ └── logger.js ├── lib │ ├── md5.js │ ├── logger.js │ ├── mailer.js │ ├── redis.js │ └── toys.js ├── app.js ├── model │ ├── user.js │ ├── blog.js │ └── comment.js ├── package.json ├── controller │ └── index.js └── server │ └── comment.js ├── entry.json ├── server.json └── README.md /laucher.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DB/upDB/comment.bson: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/module/blog/list/list.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/views/blog/info/a: -------------------------------------------------------------------------------- 1 | ia 2 | 3 | -------------------------------------------------------------------------------- /webES6/dump/upDB/comment.bson: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/module/blog/preview/preview.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/widget/hint/hint_d41d8cd98f.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/assets/module/list/list.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/assets/module/blog/list/list.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/assets/module/case/list/list.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webES6/assets/module/list/list.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/module/blog/list/list_d41d8cd98f.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/assets/module/blog/list/list.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/module/issue/index (copy)/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/assets/module/issue/error/error.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/assets/module/issue/index/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webES6/assets/module/blog/list/list.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webES6/resource/module/blog/list/list.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/assets/module/blog/preview/preview.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/assets/module/issue/index (copy)/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/assets/module/issue/index (copy)/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webES6/assets/module/blog/preview/preview.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webES6/assets/module/list/list.css?d41d8cd98f: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webES6/resource/module/blog/preview/preview.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/module/blog/preview/preview_d41d8cd98f.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/public/css/common_e41b9e80ea_d41d8cd98f.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webES6/assets/module/blog/list/list.css?d41d8cd98f: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/module/blog/list/list_d41d8cd98f_d41d8cd98f.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webES6/assets/module/blog/preview/preview.css?d41d8cd98f: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/module/blog/preview/preview_d41d8cd98f_d41d8cd98f.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serverES6/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | presets: ['es2015'], 3 | plugins: [] 4 | } 5 | -------------------------------------------------------------------------------- /webES6/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | presets: ['es2015'], 3 | plugins: [] 4 | } 5 | -------------------------------------------------------------------------------- /assets/baidu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/assets/baidu.png -------------------------------------------------------------------------------- /assets/cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/assets/cpu.png -------------------------------------------------------------------------------- /assets/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/assets/login.png -------------------------------------------------------------------------------- /assets/sso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/assets/sso.png -------------------------------------------------------------------------------- /webES6/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/webES6/.DS_Store -------------------------------------------------------------------------------- /DB/test/lang.bson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/DB/test/lang.bson -------------------------------------------------------------------------------- /DB/upDB/blog.bson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/DB/upDB/blog.bson -------------------------------------------------------------------------------- /DB/upDB/blogs.bson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/DB/upDB/blogs.bson -------------------------------------------------------------------------------- /assets/bigpipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/assets/bigpipe.png -------------------------------------------------------------------------------- /assets/jmeter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/assets/jmeter.png -------------------------------------------------------------------------------- /docs/pic/stack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/docs/pic/stack.jpg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | log/ 3 | node_modules/ 4 | webES6/views/blog/info/ 5 | bak/ 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /check/config/mongo.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | host: '127.0.0.1', 3 | db: 'upcheck' 4 | } 5 | -------------------------------------------------------------------------------- /serverES6/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/serverES6/.DS_Store -------------------------------------------------------------------------------- /web/config/redis.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = { 3 | host: '127.0.0.1', 4 | port: 6379 5 | } 6 | -------------------------------------------------------------------------------- /webES6/assets/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/webES6/assets/git.png -------------------------------------------------------------------------------- /webES6/assets/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/webES6/assets/log.png -------------------------------------------------------------------------------- /webES6/assets/map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/webES6/assets/map.jpg -------------------------------------------------------------------------------- /webES6/gulp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/webES6/gulp/.DS_Store -------------------------------------------------------------------------------- /check/config/redis.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = { 3 | host: '127.0.0.1', 4 | port: 6379 5 | } 6 | -------------------------------------------------------------------------------- /server/config/redis.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = { 3 | host: '127.0.0.1', 4 | port: 6379 5 | } 6 | -------------------------------------------------------------------------------- /web/views/404.ejs: -------------------------------------------------------------------------------- 1 | <% include common/header.ejs %> 2 | 404 3 | <% include common/footer.ejs %> 4 | -------------------------------------------------------------------------------- /webES6/assets/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/webES6/assets/frame.png -------------------------------------------------------------------------------- /webES6/assets/http.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/webES6/assets/http.png -------------------------------------------------------------------------------- /web/config/server.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = { 3 | hostname: 'server.upopen.cn', 4 | port: 80 5 | } 6 | -------------------------------------------------------------------------------- /webES6/assets/bigpipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/webES6/assets/bigpipe.png -------------------------------------------------------------------------------- /webES6/dump/test/lang.bson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/webES6/dump/test/lang.bson -------------------------------------------------------------------------------- /webES6/dump/upDB/blog.bson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/webES6/dump/upDB/blog.bson -------------------------------------------------------------------------------- /webES6/entry.js: -------------------------------------------------------------------------------- 1 | require('babel-core/register'); 2 | require('babel-polyfill'); 3 | require('./app'); -------------------------------------------------------------------------------- /webES6/resource/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/webES6/resource/.DS_Store -------------------------------------------------------------------------------- /DB/test/lang.metadata.json: -------------------------------------------------------------------------------- 1 | {"options":{},"indexes":[{"v":1,"key":{"_id":1},"name":"_id_","ns":"test.lang"}]} -------------------------------------------------------------------------------- /DB/upDB/blog.metadata.json: -------------------------------------------------------------------------------- 1 | {"options":{},"indexes":[{"v":1,"key":{"_id":1},"name":"_id_","ns":"upDB.blog"}]} -------------------------------------------------------------------------------- /assets/public/imgs/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/assets/public/imgs/cloud.png -------------------------------------------------------------------------------- /assets/public/imgs/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/assets/public/imgs/head.png -------------------------------------------------------------------------------- /serverES6/entry.js: -------------------------------------------------------------------------------- 1 | require( 'babel-core/register' ); 2 | require( 'babel-polyfill' ); 3 | require( './app' ) -------------------------------------------------------------------------------- /webES6/dump/upDB/blogs.bson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/webES6/dump/upDB/blogs.bson -------------------------------------------------------------------------------- /webES6/views/blog/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/webES6/views/blog/.DS_Store -------------------------------------------------------------------------------- /web/assets/public/imgs/bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/web/assets/public/imgs/bg1.png -------------------------------------------------------------------------------- /web/assets/public/imgs/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/web/assets/public/imgs/head.png -------------------------------------------------------------------------------- /webES6/resource/core/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/webES6/resource/core/.DS_Store -------------------------------------------------------------------------------- /check/assets/core/imgs/cloud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/check/assets/core/imgs/cloud.jpg -------------------------------------------------------------------------------- /check/assets/public/imgs/bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/check/assets/public/imgs/bg1.png -------------------------------------------------------------------------------- /check/assets/public/imgs/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/check/assets/public/imgs/head.png -------------------------------------------------------------------------------- /static/public/js/zh.js: -------------------------------------------------------------------------------- 1 | define(function(){return Msg={error:{10001:"User isn't exist!",10100:"Need to sign in!"}},Msg}); -------------------------------------------------------------------------------- /web/assets/public/imgs/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/web/assets/public/imgs/cloud.png -------------------------------------------------------------------------------- /web/assets/public/imgs/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/web/assets/public/imgs/qrcode.png -------------------------------------------------------------------------------- /webES6/dump/test/lang.metadata.json: -------------------------------------------------------------------------------- 1 | {"options":{},"indexes":[{"v":1,"key":{"_id":1},"name":"_id_","ns":"test.lang"}]} -------------------------------------------------------------------------------- /webES6/dump/upDB/blog.metadata.json: -------------------------------------------------------------------------------- 1 | {"options":{},"indexes":[{"v":1,"key":{"_id":1},"name":"_id_","ns":"upDB.blog"}]} -------------------------------------------------------------------------------- /webES6/resource/module/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/webES6/resource/module/.DS_Store -------------------------------------------------------------------------------- /check/assets/public/imgs/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/check/assets/public/imgs/cloud.png -------------------------------------------------------------------------------- /check/assets/public/imgs/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/check/assets/public/imgs/qrcode.png -------------------------------------------------------------------------------- /entry.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | 'name': 'upopen web', 4 | 'script': 'entry.js', 5 | 'cwd': './webES6', 6 | '' 7 | } 8 | ] -------------------------------------------------------------------------------- /static/assets/public/imgs/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/static/assets/public/imgs/cloud.png -------------------------------------------------------------------------------- /static/assets/public/imgs/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/static/assets/public/imgs/head.png -------------------------------------------------------------------------------- /webES6/assets/public/imgs/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/webES6/assets/public/imgs/cloud.png -------------------------------------------------------------------------------- /webES6/assets/public/imgs/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/webES6/assets/public/imgs/head.png -------------------------------------------------------------------------------- /webES6/resource/public/imgs/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/webES6/resource/public/imgs/head.png -------------------------------------------------------------------------------- /static/module/case/list/list.js: -------------------------------------------------------------------------------- 1 | require.config({paths:{common:"/assets/public/js/common"}}),require(["common"],function(){}); -------------------------------------------------------------------------------- /static/module/issue/error/error.js: -------------------------------------------------------------------------------- 1 | require.config({paths:{common:"/assets/public/js/common"}}),require(["common"],function(){}); -------------------------------------------------------------------------------- /static/module/issue/index/index.js: -------------------------------------------------------------------------------- 1 | require.config({paths:{common:"/assets/public/js/common"}}),require(["common"],function(){}); -------------------------------------------------------------------------------- /webES6/resource/module/blog/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/webES6/resource/module/blog/.DS_Store -------------------------------------------------------------------------------- /webES6/resource/public/imgs/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/webES6/resource/public/imgs/cloud.png -------------------------------------------------------------------------------- /check/assets/module/index/imgs/cloud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/check/assets/module/index/imgs/cloud.jpg -------------------------------------------------------------------------------- /webES6/resource/module/blog/mis/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/webES6/resource/module/blog/mis/.DS_Store -------------------------------------------------------------------------------- /webES6/resource/module/blog/edit/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/webES6/resource/module/blog/edit/.DS_Store -------------------------------------------------------------------------------- /webES6/resource/module/blog/list/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolulu/upopen/HEAD/webES6/resource/module/blog/list/.DS_Store -------------------------------------------------------------------------------- /webES6/gulp/entry.js: -------------------------------------------------------------------------------- 1 | const gulp = require( 'gulp' ); 2 | 3 | gulp.task( 'default', ['webpack'], function(){ 4 | console.log(`gulp default`) 5 | }) -------------------------------------------------------------------------------- /webES6/views/index.ejs: -------------------------------------------------------------------------------- 1 | <% include ./common/header.ejs %> 2 |
hello
wewe
heelo
123123dddd
hello
qweeqe
17 | Don't have an account yet? 18 | Sign up 19 |
20 |