├── .gitignore ├── 0.jpg ├── LICENSE ├── README.md ├── README_zh-cn.md ├── file ├── .DS_Store └── myApp.ipa ├── pom.xml ├── src ├── .DS_Store └── main │ ├── .DS_Store │ ├── java │ ├── .DS_Store │ └── com │ │ ├── .DS_Store │ │ └── demo │ │ ├── .DS_Store │ │ ├── blog │ │ ├── BlogController.java │ │ ├── BlogInterceptor.java │ │ ├── BlogService.java │ │ └── BlogValidator.java │ │ ├── common │ │ ├── DemoConfig.java │ │ └── model │ │ │ ├── Blog.java │ │ │ ├── _JFinalDemoGenerator.java │ │ │ ├── _MappingKit.java │ │ │ └── base │ │ │ └── BaseBlog.java │ │ ├── index │ │ └── IndexController.java │ │ └── ios │ │ ├── ExecuteUtil.java │ │ ├── FileService.java │ │ ├── GetAndSendImg.java │ │ ├── HttpClientUtil.java │ │ ├── IosController.java │ │ ├── Test.java │ │ ├── WebSocket2Controller.java │ │ ├── WebSocketController.java │ │ └── WebSocketHandler.java │ ├── resources │ ├── config.properties │ ├── execWDA.sh │ ├── exitMinicap.sh │ ├── exitWDA.sh │ ├── getUDID.sh │ └── log4j.properties │ └── webapp │ ├── .DS_Store │ ├── META-INF │ └── MANIFEST.MF │ ├── WEB-INF │ └── web.xml │ ├── common │ ├── _layout.html │ └── _paginate.html │ ├── css │ ├── .DS_Store │ ├── AdminLTE.min.css │ ├── _all-skins.min.css │ ├── animate.min.css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap-theme.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ ├── default.css │ ├── font-awesome.min.css │ ├── ionicons.min.css │ ├── manage.css │ └── style.css │ ├── favicon.ico │ ├── fonts │ ├── .DS_Store │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 │ ├── img │ ├── 11.png │ ├── arrow.png │ ├── bg.gif │ ├── cart-1.png │ ├── cart-2.png │ ├── cart-3.png │ ├── close.png │ ├── crossword.png │ ├── left2.gif │ ├── right2.gif │ ├── s-icons.png │ ├── search.png │ ├── star.png │ └── tick.png │ ├── include │ ├── css.html │ ├── header.html │ └── js.html │ ├── index │ └── index.html │ ├── ios │ ├── .DS_Store │ ├── devices.html │ ├── ios.html │ └── remote.html │ └── js │ ├── .DS_Store │ ├── action.js │ ├── ajaxfileupload.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── canvas2image.js │ ├── device.js │ ├── deviceinfo.js │ ├── html5shiv.js │ ├── iosinfo.js │ ├── jquery-1.4.4.min.js │ ├── jquery-3.1.1.min.js │ ├── npm.js │ ├── respond.min.js │ ├── underscore.min.js │ ├── upload.js │ └── vue.js └── 启动说明 ├── blog.sql └── 启动说明.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/.gitignore -------------------------------------------------------------------------------- /0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/0.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/README.md -------------------------------------------------------------------------------- /README_zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/README_zh-cn.md -------------------------------------------------------------------------------- /file/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/file/.DS_Store -------------------------------------------------------------------------------- /file/myApp.ipa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/file/myApp.ipa -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/pom.xml -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/main/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/.DS_Store -------------------------------------------------------------------------------- /src/main/java/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/java/.DS_Store -------------------------------------------------------------------------------- /src/main/java/com/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/java/com/.DS_Store -------------------------------------------------------------------------------- /src/main/java/com/demo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/java/com/demo/.DS_Store -------------------------------------------------------------------------------- /src/main/java/com/demo/blog/BlogController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/java/com/demo/blog/BlogController.java -------------------------------------------------------------------------------- /src/main/java/com/demo/blog/BlogInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/java/com/demo/blog/BlogInterceptor.java -------------------------------------------------------------------------------- /src/main/java/com/demo/blog/BlogService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/java/com/demo/blog/BlogService.java -------------------------------------------------------------------------------- /src/main/java/com/demo/blog/BlogValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/java/com/demo/blog/BlogValidator.java -------------------------------------------------------------------------------- /src/main/java/com/demo/common/DemoConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/java/com/demo/common/DemoConfig.java -------------------------------------------------------------------------------- /src/main/java/com/demo/common/model/Blog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/java/com/demo/common/model/Blog.java -------------------------------------------------------------------------------- /src/main/java/com/demo/common/model/_JFinalDemoGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/java/com/demo/common/model/_JFinalDemoGenerator.java -------------------------------------------------------------------------------- /src/main/java/com/demo/common/model/_MappingKit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/java/com/demo/common/model/_MappingKit.java -------------------------------------------------------------------------------- /src/main/java/com/demo/common/model/base/BaseBlog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/java/com/demo/common/model/base/BaseBlog.java -------------------------------------------------------------------------------- /src/main/java/com/demo/index/IndexController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/java/com/demo/index/IndexController.java -------------------------------------------------------------------------------- /src/main/java/com/demo/ios/ExecuteUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/java/com/demo/ios/ExecuteUtil.java -------------------------------------------------------------------------------- /src/main/java/com/demo/ios/FileService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/java/com/demo/ios/FileService.java -------------------------------------------------------------------------------- /src/main/java/com/demo/ios/GetAndSendImg.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/java/com/demo/ios/GetAndSendImg.java -------------------------------------------------------------------------------- /src/main/java/com/demo/ios/HttpClientUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/java/com/demo/ios/HttpClientUtil.java -------------------------------------------------------------------------------- /src/main/java/com/demo/ios/IosController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/java/com/demo/ios/IosController.java -------------------------------------------------------------------------------- /src/main/java/com/demo/ios/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/java/com/demo/ios/Test.java -------------------------------------------------------------------------------- /src/main/java/com/demo/ios/WebSocket2Controller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/java/com/demo/ios/WebSocket2Controller.java -------------------------------------------------------------------------------- /src/main/java/com/demo/ios/WebSocketController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/java/com/demo/ios/WebSocketController.java -------------------------------------------------------------------------------- /src/main/java/com/demo/ios/WebSocketHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/java/com/demo/ios/WebSocketHandler.java -------------------------------------------------------------------------------- /src/main/resources/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/resources/config.properties -------------------------------------------------------------------------------- /src/main/resources/execWDA.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/resources/execWDA.sh -------------------------------------------------------------------------------- /src/main/resources/exitMinicap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/resources/exitMinicap.sh -------------------------------------------------------------------------------- /src/main/resources/exitWDA.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/resources/exitWDA.sh -------------------------------------------------------------------------------- /src/main/resources/getUDID.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/resources/getUDID.sh -------------------------------------------------------------------------------- /src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /src/main/webapp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/.DS_Store -------------------------------------------------------------------------------- /src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/main/webapp/common/_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/common/_layout.html -------------------------------------------------------------------------------- /src/main/webapp/common/_paginate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/common/_paginate.html -------------------------------------------------------------------------------- /src/main/webapp/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/css/.DS_Store -------------------------------------------------------------------------------- /src/main/webapp/css/AdminLTE.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/css/AdminLTE.min.css -------------------------------------------------------------------------------- /src/main/webapp/css/_all-skins.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/css/_all-skins.min.css -------------------------------------------------------------------------------- /src/main/webapp/css/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/css/animate.min.css -------------------------------------------------------------------------------- /src/main/webapp/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/css/bootstrap-theme.css -------------------------------------------------------------------------------- /src/main/webapp/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /src/main/webapp/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /src/main/webapp/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /src/main/webapp/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/css/bootstrap.css -------------------------------------------------------------------------------- /src/main/webapp/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/main/webapp/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/main/webapp/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/css/default.css -------------------------------------------------------------------------------- /src/main/webapp/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/css/font-awesome.min.css -------------------------------------------------------------------------------- /src/main/webapp/css/ionicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/css/ionicons.min.css -------------------------------------------------------------------------------- /src/main/webapp/css/manage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/css/manage.css -------------------------------------------------------------------------------- /src/main/webapp/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/css/style.css -------------------------------------------------------------------------------- /src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /src/main/webapp/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/fonts/.DS_Store -------------------------------------------------------------------------------- /src/main/webapp/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/webapp/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/main/webapp/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/webapp/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/webapp/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/main/webapp/img/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/img/11.png -------------------------------------------------------------------------------- /src/main/webapp/img/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/img/arrow.png -------------------------------------------------------------------------------- /src/main/webapp/img/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/img/bg.gif -------------------------------------------------------------------------------- /src/main/webapp/img/cart-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/img/cart-1.png -------------------------------------------------------------------------------- /src/main/webapp/img/cart-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/img/cart-2.png -------------------------------------------------------------------------------- /src/main/webapp/img/cart-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/img/cart-3.png -------------------------------------------------------------------------------- /src/main/webapp/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/img/close.png -------------------------------------------------------------------------------- /src/main/webapp/img/crossword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/img/crossword.png -------------------------------------------------------------------------------- /src/main/webapp/img/left2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/img/left2.gif -------------------------------------------------------------------------------- /src/main/webapp/img/right2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/img/right2.gif -------------------------------------------------------------------------------- /src/main/webapp/img/s-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/img/s-icons.png -------------------------------------------------------------------------------- /src/main/webapp/img/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/img/search.png -------------------------------------------------------------------------------- /src/main/webapp/img/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/img/star.png -------------------------------------------------------------------------------- /src/main/webapp/img/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/img/tick.png -------------------------------------------------------------------------------- /src/main/webapp/include/css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/include/css.html -------------------------------------------------------------------------------- /src/main/webapp/include/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/include/header.html -------------------------------------------------------------------------------- /src/main/webapp/include/js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/include/js.html -------------------------------------------------------------------------------- /src/main/webapp/index/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/index/index.html -------------------------------------------------------------------------------- /src/main/webapp/ios/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/ios/.DS_Store -------------------------------------------------------------------------------- /src/main/webapp/ios/devices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/ios/devices.html -------------------------------------------------------------------------------- /src/main/webapp/ios/ios.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/ios/ios.html -------------------------------------------------------------------------------- /src/main/webapp/ios/remote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/ios/remote.html -------------------------------------------------------------------------------- /src/main/webapp/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/js/.DS_Store -------------------------------------------------------------------------------- /src/main/webapp/js/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/js/action.js -------------------------------------------------------------------------------- /src/main/webapp/js/ajaxfileupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/js/ajaxfileupload.js -------------------------------------------------------------------------------- /src/main/webapp/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/js/bootstrap.js -------------------------------------------------------------------------------- /src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/main/webapp/js/canvas2image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/js/canvas2image.js -------------------------------------------------------------------------------- /src/main/webapp/js/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/js/device.js -------------------------------------------------------------------------------- /src/main/webapp/js/deviceinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/js/deviceinfo.js -------------------------------------------------------------------------------- /src/main/webapp/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/js/html5shiv.js -------------------------------------------------------------------------------- /src/main/webapp/js/iosinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/js/iosinfo.js -------------------------------------------------------------------------------- /src/main/webapp/js/jquery-1.4.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/js/jquery-1.4.4.min.js -------------------------------------------------------------------------------- /src/main/webapp/js/jquery-3.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/js/jquery-3.1.1.min.js -------------------------------------------------------------------------------- /src/main/webapp/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/js/npm.js -------------------------------------------------------------------------------- /src/main/webapp/js/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/js/respond.min.js -------------------------------------------------------------------------------- /src/main/webapp/js/underscore.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/js/underscore.min.js -------------------------------------------------------------------------------- /src/main/webapp/js/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/js/upload.js -------------------------------------------------------------------------------- /src/main/webapp/js/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/src/main/webapp/js/vue.js -------------------------------------------------------------------------------- /启动说明/blog.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/启动说明/blog.sql -------------------------------------------------------------------------------- /启动说明/启动说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weamylady2/iOS_remote/HEAD/启动说明/启动说明.txt --------------------------------------------------------------------------------