├── .gitignore ├── DbInitScript ├── xyfs_mysql.sql └── xyfs_sqlite.sql ├── DbSqlite └── xyfs.db ├── LICENSE ├── README.md ├── bin ├── main │ ├── application.properties │ └── logback.xml └── test │ └── xy │ └── FileSystem │ └── FileSystemApplicationTests.class ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle ├── src ├── main │ ├── java │ │ └── xy │ │ │ └── FileSystem │ │ │ ├── Cache │ │ │ ├── FileCache.java │ │ │ └── UsesCache.java │ │ │ ├── Client │ │ │ ├── ClientMultipartFormDownload.java │ │ │ └── ClientMultipartFormPost.java │ │ │ ├── Controller │ │ │ ├── AppController.java │ │ │ ├── FileController.java │ │ │ └── FileUploadDownloadController.java │ │ │ ├── Dialect │ │ │ └── SQLiteDialect.java │ │ │ ├── Entity │ │ │ ├── App.java │ │ │ ├── AppRepository.java │ │ │ ├── Dailyreport.java │ │ │ ├── DailyreportRepository.java │ │ │ ├── Diskfile.java │ │ │ ├── DiskfileRepository.java │ │ │ ├── Diskgroup.java │ │ │ ├── DiskgroupRepository.java │ │ │ ├── Diskuser.java │ │ │ ├── DiskuserRepository.java │ │ │ ├── Groupuser.java │ │ │ ├── GroupuserRepository.java │ │ │ ├── History.java │ │ │ ├── HistoryRepository.java │ │ │ └── PagerModel.java │ │ │ ├── Exception │ │ │ ├── StorageException.java │ │ │ └── StorageFileNotFoundException.java │ │ │ ├── File │ │ │ ├── FileListener.java │ │ │ ├── HttpResult.java │ │ │ ├── StoreSource.java │ │ │ ├── UploadFileExt.java │ │ │ ├── UploadResult.java │ │ │ └── UploadedFile.java │ │ │ ├── FileSystemApplication.java │ │ │ ├── Propert │ │ │ └── StorageProperties.java │ │ │ ├── Schedule │ │ │ └── ScheduledTasks.java │ │ │ ├── Service │ │ │ ├── AliService.java │ │ │ ├── AppService.java │ │ │ ├── FastdfsServcice.java │ │ │ ├── FileSystemStorageService.java │ │ │ ├── MongoService.java │ │ │ ├── QiniuService.java │ │ │ ├── SeaweedfsService.java │ │ │ └── StorageService.java │ │ │ ├── SwaggerConfig.java │ │ │ └── Utils │ │ │ ├── DebugUtil.java │ │ │ ├── FilePathUtil.java │ │ │ ├── HttpHelper.java │ │ │ └── MimeTypeUtil.java │ └── resources │ │ ├── application.properties │ │ ├── logback.xml │ │ ├── static │ │ └── assets │ │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── dashboard.css │ │ │ ├── dashboard.rtl.css │ │ │ ├── tabler.css │ │ │ └── tabler.rtl.css │ │ │ ├── fonts │ │ │ └── feather │ │ │ │ ├── feather-webfont.eot │ │ │ │ ├── feather-webfont.svg │ │ │ │ ├── feather-webfont.ttf │ │ │ │ └── feather-webfont.woff │ │ │ ├── img │ │ │ ├── design.png │ │ │ ├── fast.png │ │ │ ├── favicon.ico │ │ │ ├── logo.png │ │ │ ├── prototyping.png │ │ │ ├── together.png │ │ │ └── wangxin.jpg │ │ │ ├── js │ │ │ ├── core.js │ │ │ ├── dashboard.js │ │ │ ├── require.min.js │ │ │ └── vendors │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── bootstrap.min.js.map │ │ │ │ ├── chart.bundle.min.js │ │ │ │ ├── circle-progress.min.js │ │ │ │ ├── jquery-3.2.1.min.js │ │ │ │ ├── jquery-3.2.1.slim.min.js │ │ │ │ ├── jquery-jvectormap-2.0.3.min.js │ │ │ │ ├── jquery-jvectormap-de-merc.js │ │ │ │ ├── jquery-jvectormap-world-mill.js │ │ │ │ ├── jquery.sparkline.min.js │ │ │ │ ├── jquery.tablesorter.min.js │ │ │ │ └── selectize.min.js │ │ │ └── plugins │ │ │ ├── charts-c3 │ │ │ ├── js │ │ │ │ ├── c3.min.js │ │ │ │ └── d3.v3.min.js │ │ │ ├── plugin.css │ │ │ └── plugin.js │ │ │ ├── fullcalendar │ │ │ ├── js │ │ │ │ ├── fullcalendar.min.js │ │ │ │ └── moment.min.js │ │ │ ├── plugin.css │ │ │ └── plugin.js │ │ │ ├── iconfonts │ │ │ ├── fonts │ │ │ │ ├── materialdesignicons │ │ │ │ │ ├── materialdesignicons-webfont.eot │ │ │ │ │ ├── materialdesignicons-webfont.svg │ │ │ │ │ ├── materialdesignicons-webfont.ttf │ │ │ │ │ ├── materialdesignicons-webfont.woff │ │ │ │ │ └── materialdesignicons-webfont.woff2 │ │ │ │ ├── simple-line-icons │ │ │ │ │ ├── Simple-Line-Icons.eot │ │ │ │ │ ├── Simple-Line-Icons.svg │ │ │ │ │ ├── Simple-Line-Icons.ttf │ │ │ │ │ ├── Simple-Line-Icons.woff │ │ │ │ │ └── Simple-Line-Icons.woff2 │ │ │ │ ├── themify │ │ │ │ │ ├── themify.eot │ │ │ │ │ ├── themify.svg │ │ │ │ │ ├── themify.ttf │ │ │ │ │ └── themify.woff │ │ │ │ └── weathericons │ │ │ │ │ ├── weathericons-regular-webfont.eot │ │ │ │ │ ├── weathericons-regular-webfont.svg │ │ │ │ │ ├── weathericons-regular-webfont.ttf │ │ │ │ │ ├── weathericons-regular-webfont.woff │ │ │ │ │ └── weathericons-regular-webfont.woff2 │ │ │ └── plugin.css │ │ │ ├── input-mask │ │ │ ├── js │ │ │ │ └── jquery.mask.min.js │ │ │ └── plugin.js │ │ │ ├── maps-google │ │ │ ├── plugin.css │ │ │ └── plugin.js │ │ │ └── prismjs │ │ │ ├── js │ │ │ └── prism.pack.js │ │ │ ├── plugin.css │ │ │ └── plugin.js │ │ └── templates │ │ ├── client.html │ │ ├── file │ │ ├── freemarker │ │ │ └── allfile.ftl │ │ └── thymeleaf │ │ │ ├── allfile.html │ │ │ ├── allfilebyauto.html │ │ │ ├── empty.html │ │ │ ├── index.html │ │ │ ├── uploadForm.html │ │ │ └── uploaded.html │ │ ├── foot.html │ │ ├── head.html │ │ └── menu.html └── test │ └── java │ └── xy │ └── FileSystem │ ├── FileSystemApplicationTests.java │ └── PropertiesTest.java └── uploadfiledir └── wangxin_toLearnLIST.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/.gitignore -------------------------------------------------------------------------------- /DbInitScript/xyfs_mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/DbInitScript/xyfs_mysql.sql -------------------------------------------------------------------------------- /DbInitScript/xyfs_sqlite.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/DbInitScript/xyfs_sqlite.sql -------------------------------------------------------------------------------- /DbSqlite/xyfs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/DbSqlite/xyfs.db -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/README.md -------------------------------------------------------------------------------- /bin/main/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/bin/main/application.properties -------------------------------------------------------------------------------- /bin/main/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/bin/main/logback.xml -------------------------------------------------------------------------------- /bin/test/xy/FileSystem/FileSystemApplicationTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/bin/test/xy/FileSystem/FileSystemApplicationTests.class -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'FileSystem' 2 | -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Cache/FileCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Cache/FileCache.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Cache/UsesCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Cache/UsesCache.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Client/ClientMultipartFormDownload.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Client/ClientMultipartFormDownload.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Client/ClientMultipartFormPost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Client/ClientMultipartFormPost.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Controller/AppController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Controller/AppController.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Controller/FileController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Controller/FileController.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Controller/FileUploadDownloadController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Controller/FileUploadDownloadController.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Dialect/SQLiteDialect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Dialect/SQLiteDialect.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Entity/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Entity/App.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Entity/AppRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Entity/AppRepository.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Entity/Dailyreport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Entity/Dailyreport.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Entity/DailyreportRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Entity/DailyreportRepository.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Entity/Diskfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Entity/Diskfile.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Entity/DiskfileRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Entity/DiskfileRepository.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Entity/Diskgroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Entity/Diskgroup.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Entity/DiskgroupRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Entity/DiskgroupRepository.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Entity/Diskuser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Entity/Diskuser.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Entity/DiskuserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Entity/DiskuserRepository.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Entity/Groupuser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Entity/Groupuser.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Entity/GroupuserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Entity/GroupuserRepository.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Entity/History.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Entity/History.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Entity/HistoryRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Entity/HistoryRepository.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Entity/PagerModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Entity/PagerModel.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Exception/StorageException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Exception/StorageException.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Exception/StorageFileNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Exception/StorageFileNotFoundException.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/File/FileListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/File/FileListener.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/File/HttpResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/File/HttpResult.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/File/StoreSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/File/StoreSource.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/File/UploadFileExt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/File/UploadFileExt.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/File/UploadResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/File/UploadResult.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/File/UploadedFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/File/UploadedFile.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/FileSystemApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/FileSystemApplication.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Propert/StorageProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Propert/StorageProperties.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Schedule/ScheduledTasks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Schedule/ScheduledTasks.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Service/AliService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Service/AliService.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Service/AppService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Service/AppService.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Service/FastdfsServcice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Service/FastdfsServcice.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Service/FileSystemStorageService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Service/FileSystemStorageService.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Service/MongoService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Service/MongoService.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Service/QiniuService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Service/QiniuService.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Service/SeaweedfsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Service/SeaweedfsService.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Service/StorageService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Service/StorageService.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/SwaggerConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/SwaggerConfig.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Utils/DebugUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Utils/DebugUtil.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Utils/FilePathUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Utils/FilePathUtil.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Utils/HttpHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Utils/HttpHelper.java -------------------------------------------------------------------------------- /src/main/java/xy/FileSystem/Utils/MimeTypeUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/java/xy/FileSystem/Utils/MimeTypeUtil.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/logback.xml -------------------------------------------------------------------------------- /src/main/resources/static/assets/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/css/bootstrap-grid.css -------------------------------------------------------------------------------- /src/main/resources/static/assets/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /src/main/resources/static/assets/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /src/main/resources/static/assets/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /src/main/resources/static/assets/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /src/main/resources/static/assets/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /src/main/resources/static/assets/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /src/main/resources/static/assets/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /src/main/resources/static/assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/css/bootstrap.css -------------------------------------------------------------------------------- /src/main/resources/static/assets/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/main/resources/static/assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/main/resources/static/assets/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/main/resources/static/assets/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/css/dashboard.css -------------------------------------------------------------------------------- /src/main/resources/static/assets/css/dashboard.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/css/dashboard.rtl.css -------------------------------------------------------------------------------- /src/main/resources/static/assets/css/tabler.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/css/tabler.css -------------------------------------------------------------------------------- /src/main/resources/static/assets/css/tabler.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/css/tabler.rtl.css -------------------------------------------------------------------------------- /src/main/resources/static/assets/fonts/feather/feather-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/fonts/feather/feather-webfont.eot -------------------------------------------------------------------------------- /src/main/resources/static/assets/fonts/feather/feather-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/fonts/feather/feather-webfont.svg -------------------------------------------------------------------------------- /src/main/resources/static/assets/fonts/feather/feather-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/fonts/feather/feather-webfont.ttf -------------------------------------------------------------------------------- /src/main/resources/static/assets/fonts/feather/feather-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/fonts/feather/feather-webfont.woff -------------------------------------------------------------------------------- /src/main/resources/static/assets/img/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/img/design.png -------------------------------------------------------------------------------- /src/main/resources/static/assets/img/fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/img/fast.png -------------------------------------------------------------------------------- /src/main/resources/static/assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/img/favicon.ico -------------------------------------------------------------------------------- /src/main/resources/static/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/img/logo.png -------------------------------------------------------------------------------- /src/main/resources/static/assets/img/prototyping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/img/prototyping.png -------------------------------------------------------------------------------- /src/main/resources/static/assets/img/together.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/img/together.png -------------------------------------------------------------------------------- /src/main/resources/static/assets/img/wangxin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/img/wangxin.jpg -------------------------------------------------------------------------------- /src/main/resources/static/assets/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/js/core.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/js/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/js/dashboard.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/js/require.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/js/require.min.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/js/vendors/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/js/vendors/bootstrap.bundle.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/js/vendors/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/js/vendors/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /src/main/resources/static/assets/js/vendors/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/js/vendors/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/js/vendors/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/js/vendors/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /src/main/resources/static/assets/js/vendors/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/js/vendors/bootstrap.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/js/vendors/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/js/vendors/bootstrap.js.map -------------------------------------------------------------------------------- /src/main/resources/static/assets/js/vendors/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/js/vendors/bootstrap.min.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/js/vendors/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/js/vendors/bootstrap.min.js.map -------------------------------------------------------------------------------- /src/main/resources/static/assets/js/vendors/chart.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/js/vendors/chart.bundle.min.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/js/vendors/circle-progress.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/js/vendors/circle-progress.min.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/js/vendors/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/js/vendors/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/js/vendors/jquery-3.2.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/js/vendors/jquery-3.2.1.slim.min.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/js/vendors/jquery-jvectormap-2.0.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/js/vendors/jquery-jvectormap-2.0.3.min.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/js/vendors/jquery-jvectormap-de-merc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/js/vendors/jquery-jvectormap-de-merc.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/js/vendors/jquery-jvectormap-world-mill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/js/vendors/jquery-jvectormap-world-mill.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/js/vendors/jquery.sparkline.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/js/vendors/jquery.sparkline.min.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/js/vendors/jquery.tablesorter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/js/vendors/jquery.tablesorter.min.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/js/vendors/selectize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/js/vendors/selectize.min.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/charts-c3/js/c3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/charts-c3/js/c3.min.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/charts-c3/js/d3.v3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/charts-c3/js/d3.v3.min.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/charts-c3/plugin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/charts-c3/plugin.css -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/charts-c3/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/charts-c3/plugin.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/fullcalendar/js/fullcalendar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/fullcalendar/js/fullcalendar.min.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/fullcalendar/js/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/fullcalendar/js/moment.min.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/fullcalendar/plugin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/fullcalendar/plugin.css -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/fullcalendar/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/fullcalendar/plugin.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/iconfonts/fonts/materialdesignicons/materialdesignicons-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/iconfonts/fonts/materialdesignicons/materialdesignicons-webfont.eot -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/iconfonts/fonts/materialdesignicons/materialdesignicons-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/iconfonts/fonts/materialdesignicons/materialdesignicons-webfont.svg -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/iconfonts/fonts/materialdesignicons/materialdesignicons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/iconfonts/fonts/materialdesignicons/materialdesignicons-webfont.ttf -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/iconfonts/fonts/materialdesignicons/materialdesignicons-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/iconfonts/fonts/materialdesignicons/materialdesignicons-webfont.woff -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/iconfonts/fonts/materialdesignicons/materialdesignicons-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/iconfonts/fonts/materialdesignicons/materialdesignicons-webfont.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/iconfonts/fonts/simple-line-icons/Simple-Line-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/iconfonts/fonts/simple-line-icons/Simple-Line-Icons.eot -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/iconfonts/fonts/simple-line-icons/Simple-Line-Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/iconfonts/fonts/simple-line-icons/Simple-Line-Icons.svg -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/iconfonts/fonts/simple-line-icons/Simple-Line-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/iconfonts/fonts/simple-line-icons/Simple-Line-Icons.ttf -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/iconfonts/fonts/simple-line-icons/Simple-Line-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/iconfonts/fonts/simple-line-icons/Simple-Line-Icons.woff -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/iconfonts/fonts/simple-line-icons/Simple-Line-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/iconfonts/fonts/simple-line-icons/Simple-Line-Icons.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/iconfonts/fonts/themify/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/iconfonts/fonts/themify/themify.eot -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/iconfonts/fonts/themify/themify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/iconfonts/fonts/themify/themify.svg -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/iconfonts/fonts/themify/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/iconfonts/fonts/themify/themify.ttf -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/iconfonts/fonts/themify/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/iconfonts/fonts/themify/themify.woff -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/iconfonts/fonts/weathericons/weathericons-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/iconfonts/fonts/weathericons/weathericons-regular-webfont.eot -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/iconfonts/fonts/weathericons/weathericons-regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/iconfonts/fonts/weathericons/weathericons-regular-webfont.svg -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/iconfonts/fonts/weathericons/weathericons-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/iconfonts/fonts/weathericons/weathericons-regular-webfont.ttf -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/iconfonts/fonts/weathericons/weathericons-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/iconfonts/fonts/weathericons/weathericons-regular-webfont.woff -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/iconfonts/fonts/weathericons/weathericons-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/iconfonts/fonts/weathericons/weathericons-regular-webfont.woff2 -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/iconfonts/plugin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/iconfonts/plugin.css -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/input-mask/js/jquery.mask.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/input-mask/js/jquery.mask.min.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/input-mask/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/input-mask/plugin.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/maps-google/plugin.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/maps-google/plugin.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/prismjs/js/prism.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/prismjs/js/prism.pack.js -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/prismjs/plugin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/prismjs/plugin.css -------------------------------------------------------------------------------- /src/main/resources/static/assets/plugins/prismjs/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/static/assets/plugins/prismjs/plugin.js -------------------------------------------------------------------------------- /src/main/resources/templates/client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/templates/client.html -------------------------------------------------------------------------------- /src/main/resources/templates/file/freemarker/allfile.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/templates/file/freemarker/allfile.ftl -------------------------------------------------------------------------------- /src/main/resources/templates/file/thymeleaf/allfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/templates/file/thymeleaf/allfile.html -------------------------------------------------------------------------------- /src/main/resources/templates/file/thymeleaf/allfilebyauto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/templates/file/thymeleaf/allfilebyauto.html -------------------------------------------------------------------------------- /src/main/resources/templates/file/thymeleaf/empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/templates/file/thymeleaf/empty.html -------------------------------------------------------------------------------- /src/main/resources/templates/file/thymeleaf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/templates/file/thymeleaf/index.html -------------------------------------------------------------------------------- /src/main/resources/templates/file/thymeleaf/uploadForm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/templates/file/thymeleaf/uploadForm.html -------------------------------------------------------------------------------- /src/main/resources/templates/file/thymeleaf/uploaded.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/templates/file/thymeleaf/uploaded.html -------------------------------------------------------------------------------- /src/main/resources/templates/foot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/templates/foot.html -------------------------------------------------------------------------------- /src/main/resources/templates/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/templates/head.html -------------------------------------------------------------------------------- /src/main/resources/templates/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/main/resources/templates/menu.html -------------------------------------------------------------------------------- /src/test/java/xy/FileSystem/FileSystemApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/test/java/xy/FileSystem/FileSystemApplicationTests.java -------------------------------------------------------------------------------- /src/test/java/xy/FileSystem/PropertiesTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/src/test/java/xy/FileSystem/PropertiesTest.java -------------------------------------------------------------------------------- /uploadfiledir/wangxin_toLearnLIST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xy-soft/xyFS/HEAD/uploadfiledir/wangxin_toLearnLIST.txt --------------------------------------------------------------------------------