├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── pom.xml └── src └── main ├── java └── com │ └── ssm │ └── cluster │ ├── common │ └── Constants.java │ ├── controller │ ├── ArticleController.java │ ├── LoadImageController.java │ ├── PictureController.java │ └── UserController.java │ ├── dao │ ├── ArticleDao.java │ ├── PictureDao.java │ └── UserDao.java │ ├── entity │ ├── Article.java │ ├── Picture.java │ └── User.java │ ├── service │ ├── ArticleService.java │ ├── PictureService.java │ ├── UserService.java │ └── impl │ │ ├── ArticleServiceImpl.java │ │ ├── PictureServiceImpl.java │ │ └── UserServiceImpl.java │ └── utils │ ├── AntiXssUtil.java │ ├── DateUtil.java │ ├── MD5Util.java │ ├── PageUtils.java │ ├── Result.java │ └── SearchQuery.java ├── resources ├── db │ └── ssm_cluster_db.sql ├── jdbc-druid-config.properties ├── log4j.properties ├── mappers │ ├── ArticleDao.xml │ ├── PictureDao.xml │ └── UserDao.xml ├── mybatis-config.xml ├── spring-context-druid-stat.xml ├── spring-context-mvc.xml ├── spring-context-mybatis.xml ├── spring-context-tx.xml └── spring-context.xml └── webapp ├── 404.html ├── 500.html ├── META-INF └── MANIFEST.MF ├── WEB-INF └── web.xml ├── article.html ├── blank.html ├── dist ├── css │ ├── adminlte.css │ ├── adminlte.css.map │ ├── adminlte.min.css │ ├── font-awesome.min.css │ ├── ionicons.min.css │ └── main.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── img │ ├── AdminLTELogo.png │ ├── avatar.png │ ├── avatar04.png │ ├── avatar2.png │ ├── avatar3.png │ ├── avatar5.png │ ├── boxed-bg.jpg │ ├── boxed-bg.png │ ├── credit │ │ ├── american-express.png │ │ ├── cirrus.png │ │ ├── mastercard.png │ │ ├── mestro.png │ │ ├── paypal.png │ │ ├── paypal2.png │ │ └── visa.png │ ├── default-150x150.png │ ├── icons.png │ ├── logo.jpg │ ├── logo3.jpg │ ├── photo1.png │ ├── photo2.png │ ├── photo3.jpg │ ├── photo4.jpg │ ├── user1-128x128.jpg │ ├── user2-160x160.jpg │ ├── user3-128x128.jpg │ ├── user4-128x128.jpg │ ├── user5-128x128.jpg │ ├── user6-128x128.jpg │ ├── user7-128x128.jpg │ ├── user8-128x128.jpg │ ├── wxpay.jpg │ └── zhifubao1.jpg └── js │ ├── adminlte.js │ ├── adminlte.js.map │ ├── adminlte.min.js │ ├── adminlte.min.js.map │ ├── article.js │ ├── demo.js │ ├── pages │ ├── dashboard.js │ ├── dashboard2.js │ └── dashboard3.js │ ├── picture.js │ ├── plugins │ ├── bootstrap │ │ ├── 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 │ │ └── js │ │ │ ├── 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.js │ ├── chart.js2 │ ├── chartjs2 │ │ ├── Chart.bundle.js │ │ ├── Chart.bundle.min.js │ │ ├── Chart.js │ │ ├── Chart.min.js │ │ └── docs │ │ │ ├── axes │ │ │ ├── cartesian │ │ │ │ ├── category.html │ │ │ │ ├── index.html │ │ │ │ ├── linear.html │ │ │ │ ├── logarithmic.html │ │ │ │ └── time.html │ │ │ ├── index.html │ │ │ ├── labelling.html │ │ │ ├── radial │ │ │ │ ├── index.html │ │ │ │ └── linear.html │ │ │ └── styling.html │ │ │ ├── charts │ │ │ ├── area.html │ │ │ ├── bar.html │ │ │ ├── bubble.html │ │ │ ├── doughnut.html │ │ │ ├── index.html │ │ │ ├── line.html │ │ │ ├── mixed.html │ │ │ ├── polar.html │ │ │ ├── radar.html │ │ │ └── scatter.html │ │ │ ├── configuration │ │ │ ├── animations.html │ │ │ ├── elements.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── legend.html │ │ │ ├── title.html │ │ │ └── tooltip.html │ │ │ ├── developers │ │ │ ├── api.html │ │ │ ├── axes.html │ │ │ ├── charts.html │ │ │ ├── contributing.html │ │ │ ├── index.html │ │ │ ├── plugins.html │ │ │ └── updates.html │ │ │ ├── general │ │ │ ├── colors.html │ │ │ ├── device-pixel-ratio.md │ │ │ ├── fonts.html │ │ │ ├── index.html │ │ │ ├── interactions │ │ │ │ ├── events.html │ │ │ │ ├── index.html │ │ │ │ └── modes.html │ │ │ ├── options.html │ │ │ └── responsive.html │ │ │ ├── getting-started │ │ │ ├── index.html │ │ │ ├── installation.html │ │ │ ├── integration.html │ │ │ └── usage.html │ │ │ ├── gitbook │ │ │ ├── fonts │ │ │ │ └── fontawesome │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── gitbook-plugin-anchorjs │ │ │ │ └── anchor-style.js │ │ │ ├── gitbook-plugin-chartjs │ │ │ │ ├── Chart.bundle.js │ │ │ │ ├── Chart.bundle.min.js │ │ │ │ ├── Chart.js │ │ │ │ ├── Chart.min.js │ │ │ │ ├── chartjs-plugin-deferred.js │ │ │ │ ├── chartjs-plugin-deferred.min.js │ │ │ │ └── style.css │ │ │ ├── gitbook-plugin-fontsettings │ │ │ │ ├── fontsettings.js │ │ │ │ └── website.css │ │ │ ├── gitbook-plugin-ga │ │ │ │ └── plugin.js │ │ │ ├── gitbook-plugin-highlight │ │ │ │ ├── ebook.css │ │ │ │ └── website.css │ │ │ ├── gitbook-plugin-search-plus │ │ │ │ ├── jquery.mark.min.js │ │ │ │ ├── search.css │ │ │ │ └── search.js │ │ │ ├── gitbook-plugin-sharing │ │ │ │ └── buttons.js │ │ │ ├── gitbook.js │ │ │ ├── images │ │ │ │ ├── apple-touch-icon-precomposed-152.png │ │ │ │ └── favicon.ico │ │ │ ├── style.css │ │ │ └── theme.js │ │ │ ├── index.html │ │ │ ├── notes │ │ │ ├── comparison.html │ │ │ ├── extensions.html │ │ │ ├── index.html │ │ │ └── license.html │ │ │ ├── search_plus_index.json │ │ │ └── style.css │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ ├── font-awesome.css.map │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── jquery │ │ ├── core.js │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── jquery.slim.js │ │ ├── jquery.slim.min.js │ │ └── jquery.slim.min.map │ └── popper │ │ ├── esm │ │ ├── popper-utils.js │ │ ├── popper-utils.js.map │ │ ├── popper-utils.min.js │ │ ├── popper-utils.min.js.map │ │ ├── popper.js │ │ ├── popper.js.map │ │ ├── popper.min.js │ │ └── popper.min.js.map │ │ ├── popper-utils.js │ │ ├── popper-utils.js.map │ │ ├── popper-utils.min.js │ │ ├── popper-utils.min.js.map │ │ ├── popper.js │ │ ├── popper.js.map │ │ ├── popper.min.js │ │ ├── popper.min.js.map │ │ └── umd │ │ ├── popper-utils.js │ │ ├── popper-utils.js.map │ │ ├── popper-utils.min.js │ │ ├── popper-utils.min.js.map │ │ ├── popper.js │ │ ├── popper.js.map │ │ ├── popper.min.js │ │ └── popper.min.js.map │ ├── public.js │ └── user.js ├── index.html ├── index2.html ├── index3.html ├── login.html ├── pages ├── UI │ ├── buttons.html │ ├── general.html │ ├── icons.html │ └── sliders.html ├── calendar.html ├── charts │ ├── chartjs.html │ ├── flot.html │ └── inline.html ├── examples │ ├── 404.html │ ├── 500.html │ ├── blank.html │ ├── invoice-print.html │ ├── invoice.html │ ├── lockscreen.html │ ├── login.html │ ├── profile.html │ └── register.html ├── forms │ ├── advanced.html │ ├── editors.html │ └── general.html ├── mailbox │ ├── compose.html │ ├── mailbox.html │ └── read-mail.html ├── tables │ ├── data.html │ └── simple.html └── widgets.html ├── picture.html ├── plugins ├── ajaxupload │ └── ajaxupload.js ├── bootstrap-slider │ ├── bootstrap-slider.js │ └── slider.css ├── bootstrap-wysihtml5 │ ├── bootstrap3-wysihtml5.all.js │ ├── bootstrap3-wysihtml5.all.min.js │ ├── bootstrap3-wysihtml5.css │ └── bootstrap3-wysihtml5.min.css ├── bootstrap │ ├── 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 │ └── js │ │ ├── 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.js │ ├── Chart.bundle.js │ ├── Chart.bundle.min.js │ ├── Chart.js │ ├── Chart.min.js │ └── docs │ │ ├── axes │ │ ├── cartesian │ │ │ ├── category.html │ │ │ ├── index.html │ │ │ ├── linear.html │ │ │ ├── logarithmic.html │ │ │ └── time.html │ │ ├── index.html │ │ ├── labelling.html │ │ ├── radial │ │ │ ├── index.html │ │ │ └── linear.html │ │ └── styling.html │ │ ├── charts │ │ ├── area.html │ │ ├── bar.html │ │ ├── bubble.html │ │ ├── doughnut.html │ │ ├── index.html │ │ ├── line.html │ │ ├── mixed.html │ │ ├── polar.html │ │ ├── radar.html │ │ └── scatter.html │ │ ├── configuration │ │ ├── animations.html │ │ ├── elements.html │ │ ├── index.html │ │ ├── layout.html │ │ ├── legend.html │ │ ├── title.html │ │ └── tooltip.html │ │ ├── developers │ │ ├── api.html │ │ ├── axes.html │ │ ├── charts.html │ │ ├── contributing.html │ │ ├── index.html │ │ ├── plugins.html │ │ └── updates.html │ │ ├── general │ │ ├── colors.html │ │ ├── device-pixel-ratio.html │ │ ├── device-pixel-ratio.md │ │ ├── fonts.html │ │ ├── index.html │ │ ├── interactions │ │ │ ├── events.html │ │ │ ├── index.html │ │ │ └── modes.html │ │ ├── options.html │ │ └── responsive.html │ │ ├── getting-started │ │ ├── index.html │ │ ├── installation.html │ │ ├── integration.html │ │ └── usage.html │ │ ├── gitbook │ │ ├── fonts │ │ │ └── fontawesome │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ ├── gitbook-plugin-anchorjs │ │ │ └── anchor-style.js │ │ ├── gitbook-plugin-chartjs │ │ │ ├── Chart.bundle.js │ │ │ ├── Chart.bundle.min.js │ │ │ ├── Chart.js │ │ │ ├── Chart.min.js │ │ │ ├── chartjs-plugin-deferred.js │ │ │ ├── chartjs-plugin-deferred.min.js │ │ │ └── style.css │ │ ├── gitbook-plugin-fontsettings │ │ │ ├── fontsettings.js │ │ │ └── website.css │ │ ├── gitbook-plugin-ga │ │ │ └── plugin.js │ │ ├── gitbook-plugin-highlight │ │ │ ├── ebook.css │ │ │ └── website.css │ │ ├── gitbook-plugin-search-plus │ │ │ ├── jquery.mark.min.js │ │ │ ├── search.css │ │ │ └── search.js │ │ ├── gitbook-plugin-sharing │ │ │ └── buttons.js │ │ ├── gitbook.js │ │ ├── images │ │ │ ├── apple-touch-icon-precomposed-152.png │ │ │ └── favicon.ico │ │ ├── style.css │ │ └── theme.js │ │ ├── index.html │ │ ├── notes │ │ ├── comparison.html │ │ ├── extensions.html │ │ ├── index.html │ │ └── license.html │ │ ├── search_plus_index.json │ │ └── style.css ├── chartjs-old │ ├── Chart.js │ └── Chart.min.js ├── ckeditor │ ├── ckeditor.js │ ├── ckeditor.js.map │ └── translations │ │ ├── ar.js │ │ ├── ast.js │ │ ├── bg.js │ │ ├── cs.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── eo.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── km.js │ │ ├── kn.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── nb.js │ │ ├── ne.js │ │ ├── nl.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sq.js │ │ ├── sv.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── zh-cn.js │ │ └── zh.js ├── colorpicker │ ├── bootstrap-colorpicker.css │ ├── bootstrap-colorpicker.js │ ├── bootstrap-colorpicker.min.css │ ├── bootstrap-colorpicker.min.js │ └── img │ │ ├── alpha-horizontal.png │ │ ├── alpha.png │ │ ├── hue-horizontal.png │ │ ├── hue.png │ │ └── saturation.png ├── datatables │ ├── dataTables.bootstrap4.min.css │ ├── dataTables.bootstrap4.min.js │ ├── extensions │ │ ├── AutoFill │ │ │ ├── Readme.txt │ │ │ ├── css │ │ │ │ ├── dataTables.autoFill.css │ │ │ │ └── dataTables.autoFill.min.css │ │ │ ├── examples │ │ │ │ ├── columns.html │ │ │ │ ├── complete-callback.html │ │ │ │ ├── fill-both.html │ │ │ │ ├── fill-horizontal.html │ │ │ │ ├── index.html │ │ │ │ ├── scrolling.html │ │ │ │ ├── simple.html │ │ │ │ └── step-callback.html │ │ │ ├── images │ │ │ │ └── filler.png │ │ │ └── js │ │ │ │ ├── dataTables.autoFill.js │ │ │ │ └── dataTables.autoFill.min.js │ │ ├── ColReorder │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── dataTables.colReorder.css │ │ │ │ └── dataTables.colReorder.min.css │ │ │ ├── examples │ │ │ │ ├── alt_insert.html │ │ │ │ ├── col_filter.html │ │ │ │ ├── colvis.html │ │ │ │ ├── fixedcolumns.html │ │ │ │ ├── fixedheader.html │ │ │ │ ├── index.html │ │ │ │ ├── jqueryui.html │ │ │ │ ├── new_init.html │ │ │ │ ├── predefined.html │ │ │ │ ├── realtime.html │ │ │ │ ├── reset.html │ │ │ │ ├── scrolling.html │ │ │ │ ├── server_side.html │ │ │ │ ├── simple.html │ │ │ │ └── state_save.html │ │ │ ├── images │ │ │ │ └── insert.png │ │ │ └── js │ │ │ │ ├── dataTables.colReorder.js │ │ │ │ └── dataTables.colReorder.min.js │ │ ├── ColVis │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── dataTables.colVis.css │ │ │ │ ├── dataTables.colVis.min.css │ │ │ │ └── dataTables.colvis.jqueryui.css │ │ │ ├── examples │ │ │ │ ├── button_order.html │ │ │ │ ├── exclude_columns.html │ │ │ │ ├── group_columns.html │ │ │ │ ├── index.html │ │ │ │ ├── jqueryui.html │ │ │ │ ├── mouseover.html │ │ │ │ ├── new_init.html │ │ │ │ ├── restore.html │ │ │ │ ├── simple.html │ │ │ │ ├── text.html │ │ │ │ ├── title_callback.html │ │ │ │ ├── two_tables.html │ │ │ │ └── two_tables_identical.html │ │ │ └── js │ │ │ │ ├── dataTables.colVis.js │ │ │ │ └── dataTables.colVis.min.js │ │ ├── FixedColumns │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── dataTables.fixedColumns.css │ │ │ │ └── dataTables.fixedColumns.min.css │ │ │ ├── examples │ │ │ │ ├── bootstrap.html │ │ │ │ ├── col_filter.html │ │ │ │ ├── colvis.html │ │ │ │ ├── css_size.html │ │ │ │ ├── index.html │ │ │ │ ├── index_column.html │ │ │ │ ├── left_right_columns.html │ │ │ │ ├── right_column.html │ │ │ │ ├── rowspan.html │ │ │ │ ├── server-side-processing.html │ │ │ │ ├── simple.html │ │ │ │ ├── size_fixed.html │ │ │ │ ├── size_fluid.html │ │ │ │ └── two_columns.html │ │ │ └── js │ │ │ │ ├── dataTables.fixedColumns.js │ │ │ │ └── dataTables.fixedColumns.min.js │ │ ├── FixedHeader │ │ │ ├── Readme.txt │ │ │ ├── css │ │ │ │ ├── dataTables.fixedHeader.css │ │ │ │ └── dataTables.fixedHeader.min.css │ │ │ ├── examples │ │ │ │ ├── header_footer.html │ │ │ │ ├── index.html │ │ │ │ ├── simple.html │ │ │ │ ├── top_left_right.html │ │ │ │ ├── two_tables.html │ │ │ │ └── zIndexes.html │ │ │ └── js │ │ │ │ ├── dataTables.fixedHeader.js │ │ │ │ └── dataTables.fixedHeader.min.js │ │ ├── KeyTable │ │ │ ├── Readme.txt │ │ │ ├── css │ │ │ │ ├── dataTables.keyTable.css │ │ │ │ └── dataTables.keyTable.min.css │ │ │ ├── examples │ │ │ │ ├── events.html │ │ │ │ ├── html.html │ │ │ │ ├── index.html │ │ │ │ ├── scrolling.html │ │ │ │ └── simple.html │ │ │ └── js │ │ │ │ ├── dataTables.keyTable.js │ │ │ │ └── dataTables.keyTable.min.js │ │ ├── Responsive │ │ │ ├── License.txt │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ │ ├── dataTables.responsive.css │ │ │ │ └── dataTables.responsive.scss │ │ │ ├── examples │ │ │ │ ├── child-rows │ │ │ │ │ ├── column-control.html │ │ │ │ │ ├── custom-renderer.html │ │ │ │ │ ├── disable-child-rows.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── right-column.html │ │ │ │ │ └── whole-row-control.html │ │ │ │ ├── display-control │ │ │ │ │ ├── auto.html │ │ │ │ │ ├── classes.html │ │ │ │ │ ├── complexHeader.html │ │ │ │ │ ├── fixedHeader.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── init-classes.html │ │ │ │ ├── index.html │ │ │ │ ├── initialisation │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── className.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── new.html │ │ │ │ │ └── option.html │ │ │ │ └── styling │ │ │ │ │ ├── bootstrap.html │ │ │ │ │ ├── compact.html │ │ │ │ │ ├── foundation.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── scrolling.html │ │ │ └── js │ │ │ │ ├── dataTables.responsive.js │ │ │ │ └── dataTables.responsive.min.js │ │ ├── Scroller │ │ │ ├── Readme.txt │ │ │ ├── css │ │ │ │ ├── dataTables.scroller.css │ │ │ │ └── dataTables.scroller.min.css │ │ │ ├── examples │ │ │ │ ├── api_scrolling.html │ │ │ │ ├── data │ │ │ │ │ ├── 2500.txt │ │ │ │ │ └── ssp.php │ │ │ │ ├── index.html │ │ │ │ ├── large_js_source.html │ │ │ │ ├── server-side_processing.html │ │ │ │ ├── simple.html │ │ │ │ └── state_saving.html │ │ │ ├── images │ │ │ │ └── loading-background.png │ │ │ └── js │ │ │ │ ├── dataTables.scroller.js │ │ │ │ └── dataTables.scroller.min.js │ │ └── TableTools │ │ │ ├── Readme.md │ │ │ ├── css │ │ │ ├── dataTables.tableTools.css │ │ │ └── dataTables.tableTools.min.css │ │ │ ├── examples │ │ │ ├── ajax.html │ │ │ ├── alter_buttons.html │ │ │ ├── bootstrap.html │ │ │ ├── button_text.html │ │ │ ├── collection.html │ │ │ ├── defaults.html │ │ │ ├── index.html │ │ │ ├── jqueryui.html │ │ │ ├── multi_instance.html │ │ │ ├── multiple_tables.html │ │ │ ├── new_init.html │ │ │ ├── pdf_message.html │ │ │ ├── plug-in.html │ │ │ ├── select_column.html │ │ │ ├── select_multi.html │ │ │ ├── select_os.html │ │ │ ├── select_single.html │ │ │ ├── simple.html │ │ │ └── swf_path.html │ │ │ ├── images │ │ │ ├── collection.png │ │ │ ├── collection_hover.png │ │ │ ├── copy.png │ │ │ ├── copy_hover.png │ │ │ ├── csv.png │ │ │ ├── csv_hover.png │ │ │ ├── pdf.png │ │ │ ├── pdf_hover.png │ │ │ ├── print.png │ │ │ ├── print_hover.png │ │ │ ├── psd │ │ │ │ ├── collection.psd │ │ │ │ ├── copy document.psd │ │ │ │ ├── file_types.psd │ │ │ │ └── printer.psd │ │ │ ├── xls.png │ │ │ └── xls_hover.png │ │ │ ├── js │ │ │ ├── dataTables.tableTools.js │ │ │ └── dataTables.tableTools.min.js │ │ │ └── swf │ │ │ ├── copy_csv_xls.swf │ │ │ └── copy_csv_xls_pdf.swf │ ├── images │ │ ├── sort_asc.png │ │ ├── sort_asc_disabled.png │ │ ├── sort_both.png │ │ ├── sort_desc.png │ │ └── sort_desc_disabled.png │ ├── jquery.dataTables.css │ ├── jquery.dataTables.js │ ├── jquery.dataTables.min.css │ ├── jquery.dataTables.min.js │ └── jquery.dataTables_themeroller.css ├── datepicker │ ├── bootstrap-datepicker.js │ ├── datepicker3.css │ └── locales │ │ ├── bootstrap-datepicker.ar.js │ │ ├── bootstrap-datepicker.az.js │ │ ├── bootstrap-datepicker.bg.js │ │ ├── bootstrap-datepicker.ca.js │ │ ├── bootstrap-datepicker.cs.js │ │ ├── bootstrap-datepicker.cy.js │ │ ├── bootstrap-datepicker.da.js │ │ ├── bootstrap-datepicker.de.js │ │ ├── bootstrap-datepicker.el.js │ │ ├── bootstrap-datepicker.es.js │ │ ├── bootstrap-datepicker.et.js │ │ ├── bootstrap-datepicker.fa.js │ │ ├── bootstrap-datepicker.fi.js │ │ ├── bootstrap-datepicker.fr.js │ │ ├── bootstrap-datepicker.gl.js │ │ ├── bootstrap-datepicker.he.js │ │ ├── bootstrap-datepicker.hr.js │ │ ├── bootstrap-datepicker.hu.js │ │ ├── bootstrap-datepicker.id.js │ │ ├── bootstrap-datepicker.is.js │ │ ├── bootstrap-datepicker.it.js │ │ ├── bootstrap-datepicker.ja.js │ │ ├── bootstrap-datepicker.ka.js │ │ ├── bootstrap-datepicker.kk.js │ │ ├── bootstrap-datepicker.kr.js │ │ ├── bootstrap-datepicker.lt.js │ │ ├── bootstrap-datepicker.lv.js │ │ ├── bootstrap-datepicker.mk.js │ │ ├── bootstrap-datepicker.ms.js │ │ ├── bootstrap-datepicker.nb.js │ │ ├── bootstrap-datepicker.nl-BE.js │ │ ├── bootstrap-datepicker.nl.js │ │ ├── bootstrap-datepicker.no.js │ │ ├── bootstrap-datepicker.pl.js │ │ ├── bootstrap-datepicker.pt-BR.js │ │ ├── bootstrap-datepicker.pt.js │ │ ├── bootstrap-datepicker.ro.js │ │ ├── bootstrap-datepicker.rs-latin.js │ │ ├── bootstrap-datepicker.rs.js │ │ ├── bootstrap-datepicker.ru.js │ │ ├── bootstrap-datepicker.sk.js │ │ ├── bootstrap-datepicker.sl.js │ │ ├── bootstrap-datepicker.sq.js │ │ ├── bootstrap-datepicker.sv.js │ │ ├── bootstrap-datepicker.sw.js │ │ ├── bootstrap-datepicker.th.js │ │ ├── bootstrap-datepicker.tr.js │ │ ├── bootstrap-datepicker.ua.js │ │ ├── bootstrap-datepicker.vi.js │ │ ├── bootstrap-datepicker.zh-CN.js │ │ └── bootstrap-datepicker.zh-TW.js ├── daterangepicker │ ├── daterangepicker-bs3.css │ ├── daterangepicker.js │ ├── moment.js │ └── moment.min.js ├── fastclick │ ├── fastclick.js │ └── fastclick.min.js ├── flot │ ├── excanvas.js │ ├── excanvas.min.js │ ├── jquery.colorhelpers.js │ ├── jquery.colorhelpers.min.js │ ├── jquery.flot.canvas.js │ ├── jquery.flot.canvas.min.js │ ├── jquery.flot.categories.js │ ├── jquery.flot.categories.min.js │ ├── jquery.flot.crosshair.js │ ├── jquery.flot.crosshair.min.js │ ├── jquery.flot.errorbars.js │ ├── jquery.flot.errorbars.min.js │ ├── jquery.flot.fillbetween.js │ ├── jquery.flot.fillbetween.min.js │ ├── jquery.flot.image.js │ ├── jquery.flot.image.min.js │ ├── jquery.flot.js │ ├── jquery.flot.min.js │ ├── jquery.flot.navigate.js │ ├── jquery.flot.navigate.min.js │ ├── jquery.flot.pie.js │ ├── jquery.flot.pie.min.js │ ├── jquery.flot.resize.js │ ├── jquery.flot.resize.min.js │ ├── jquery.flot.selection.js │ ├── jquery.flot.selection.min.js │ ├── jquery.flot.stack.js │ ├── jquery.flot.stack.min.js │ ├── jquery.flot.symbol.js │ ├── jquery.flot.symbol.min.js │ ├── jquery.flot.threshold.js │ ├── jquery.flot.threshold.min.js │ ├── jquery.flot.time.js │ └── jquery.flot.time.min.js ├── font-awesome │ ├── css │ │ ├── font-awesome.css │ │ ├── font-awesome.css.map │ │ └── font-awesome.min.css │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 ├── fullcalendar │ ├── fullcalendar.css │ ├── fullcalendar.js │ ├── fullcalendar.min.css │ ├── fullcalendar.min.js │ └── fullcalendar.print.css ├── iCheck │ ├── all.css │ ├── flat │ │ ├── _all.css │ │ ├── aero.css │ │ ├── aero.png │ │ ├── aero@2x.png │ │ ├── blue.css │ │ ├── blue.png │ │ ├── blue@2x.png │ │ ├── flat.css │ │ ├── flat.png │ │ ├── flat@2x.png │ │ ├── green.css │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── grey.css │ │ ├── grey.png │ │ ├── grey@2x.png │ │ ├── orange.css │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── pink.css │ │ ├── pink.png │ │ ├── pink@2x.png │ │ ├── purple.css │ │ ├── purple.png │ │ ├── purple@2x.png │ │ ├── red.css │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── yellow.css │ │ ├── yellow.png │ │ └── yellow@2x.png │ ├── futurico │ │ ├── futurico.css │ │ ├── futurico.png │ │ └── futurico@2x.png │ ├── icheck.js │ ├── icheck.min.js │ ├── line │ │ ├── _all.css │ │ ├── aero.css │ │ ├── blue.css │ │ ├── green.css │ │ ├── grey.css │ │ ├── line.css │ │ ├── line.png │ │ ├── line@2x.png │ │ ├── orange.css │ │ ├── pink.css │ │ ├── purple.css │ │ ├── red.css │ │ └── yellow.css │ ├── minimal │ │ ├── _all.css │ │ ├── aero.css │ │ ├── aero.png │ │ ├── aero@2x.png │ │ ├── blue.css │ │ ├── blue.png │ │ ├── blue@2x.png │ │ ├── green.css │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── grey.css │ │ ├── grey.png │ │ ├── grey@2x.png │ │ ├── minimal.css │ │ ├── minimal.png │ │ ├── minimal@2x.png │ │ ├── orange.css │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── pink.css │ │ ├── pink.png │ │ ├── pink@2x.png │ │ ├── purple.css │ │ ├── purple.png │ │ ├── purple@2x.png │ │ ├── red.css │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── yellow.css │ │ ├── yellow.png │ │ └── yellow@2x.png │ ├── polaris │ │ ├── polaris.css │ │ ├── polaris.png │ │ └── polaris@2x.png │ └── square │ │ ├── _all.css │ │ ├── aero.css │ │ ├── aero.png │ │ ├── aero@2x.png │ │ ├── blue.css │ │ ├── blue.png │ │ ├── blue@2x.png │ │ ├── green.css │ │ ├── green.png │ │ ├── green@2x.png │ │ ├── grey.css │ │ ├── grey.png │ │ ├── grey@2x.png │ │ ├── orange.css │ │ ├── orange.png │ │ ├── orange@2x.png │ │ ├── pink.css │ │ ├── pink.png │ │ ├── pink@2x.png │ │ ├── purple.css │ │ ├── purple.png │ │ ├── purple@2x.png │ │ ├── red.css │ │ ├── red.png │ │ ├── red@2x.png │ │ ├── square.css │ │ ├── square.png │ │ ├── square@2x.png │ │ ├── yellow.css │ │ ├── yellow.png │ │ └── yellow@2x.png ├── input-mask │ ├── jquery.inputmask.date.extensions.js │ ├── jquery.inputmask.extensions.js │ ├── jquery.inputmask.js │ ├── jquery.inputmask.numeric.extensions.js │ ├── jquery.inputmask.phone.extensions.js │ ├── jquery.inputmask.regex.extensions.js │ └── phone-codes │ │ ├── phone-be.json │ │ ├── phone-codes.json │ │ └── readme.txt ├── ionslider │ ├── img │ │ ├── sprite-skin-flat.png │ │ └── sprite-skin-nice.png │ ├── ion.rangeSlider.css │ ├── ion.rangeSlider.min.js │ ├── ion.rangeSlider.skinFlat.css │ └── ion.rangeSlider.skinNice.css ├── jQueryUI │ └── jquery-ui.min.js ├── jqgrid │ ├── grid.locale-cn.js │ ├── jquery.jqGrid.min.js │ ├── ui.jqgrid-bootstrap-ui.css │ ├── ui.jqgrid-bootstrap.css │ └── ui.jqgrid.css ├── jquery │ ├── core.js │ ├── jquery.js │ ├── jquery.min.js │ ├── jquery.min.map │ ├── jquery.slim.js │ ├── jquery.slim.min.js │ └── jquery.slim.min.map ├── jvectormap │ ├── jquery-jvectormap-1.2.2.css │ ├── jquery-jvectormap-1.2.2.min.js │ ├── jquery-jvectormap-usa-en.js │ └── jquery-jvectormap-world-mill-en.js ├── kindeditor-4.1.10 │ ├── examples │ │ ├── auto-height.html │ │ ├── colorpicker.html │ │ ├── custom-plugin.html │ │ ├── custom-theme.html │ │ ├── default.html │ │ ├── dialog.html │ │ ├── dynamic-load.html │ │ ├── file-dialog.html │ │ ├── file-manager.html │ │ ├── filter-mode.html │ │ ├── image-dialog.html │ │ ├── index.css │ │ ├── index.html │ │ ├── jquery-ui.html │ │ ├── jquery-ui │ │ │ ├── css │ │ │ │ └── smoothness │ │ │ │ │ ├── images │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── jquery-ui-1.9.2.custom.css │ │ │ │ │ └── jquery-ui-1.9.2.custom.min.css │ │ │ └── js │ │ │ │ ├── jquery-ui-1.9.2.custom.js │ │ │ │ └── jquery-ui-1.9.2.custom.min.js │ │ ├── jquery.html │ │ ├── jquery.js │ │ ├── multi-image-dialog.html │ │ ├── multi-language.html │ │ ├── newline.html │ │ ├── node.html │ │ ├── paste-type.html │ │ ├── qqstyle.html │ │ ├── readonly.html │ │ ├── simple.html │ │ ├── uploadbutton.html │ │ ├── url-type.html │ │ └── word-count.html │ ├── jsp │ │ ├── README.txt │ │ ├── demo.jsp │ │ ├── file_manager_json.jsp │ │ └── upload_json.jsp │ ├── kindeditor-all-min.js │ ├── kindeditor-all.js │ ├── kindeditor-min.js │ ├── kindeditor.js │ ├── lang │ │ ├── ar.js │ │ ├── en.js │ │ ├── ko.js │ │ ├── zh_CN.js │ │ └── zh_TW.js │ ├── license.txt │ ├── plugins │ │ ├── anchor │ │ │ └── anchor.js │ │ ├── autoheight │ │ │ └── autoheight.js │ │ ├── baidumap │ │ │ ├── baidumap.js │ │ │ ├── index.html │ │ │ └── map.html │ │ ├── clearhtml │ │ │ └── clearhtml.js │ │ ├── code │ │ │ ├── code.js │ │ │ ├── prettify.css │ │ │ └── prettify.js │ │ ├── emoticons │ │ │ ├── emoticons.js │ │ │ └── images │ │ │ │ ├── 0.gif │ │ │ │ ├── 1.gif │ │ │ │ ├── 10.gif │ │ │ │ ├── 100.gif │ │ │ │ ├── 101.gif │ │ │ │ ├── 102.gif │ │ │ │ ├── 103.gif │ │ │ │ ├── 104.gif │ │ │ │ ├── 105.gif │ │ │ │ ├── 106.gif │ │ │ │ ├── 107.gif │ │ │ │ ├── 108.gif │ │ │ │ ├── 109.gif │ │ │ │ ├── 11.gif │ │ │ │ ├── 110.gif │ │ │ │ ├── 111.gif │ │ │ │ ├── 112.gif │ │ │ │ ├── 113.gif │ │ │ │ ├── 114.gif │ │ │ │ ├── 115.gif │ │ │ │ ├── 116.gif │ │ │ │ ├── 117.gif │ │ │ │ ├── 118.gif │ │ │ │ ├── 119.gif │ │ │ │ ├── 12.gif │ │ │ │ ├── 120.gif │ │ │ │ ├── 121.gif │ │ │ │ ├── 122.gif │ │ │ │ ├── 123.gif │ │ │ │ ├── 124.gif │ │ │ │ ├── 125.gif │ │ │ │ ├── 126.gif │ │ │ │ ├── 127.gif │ │ │ │ ├── 128.gif │ │ │ │ ├── 129.gif │ │ │ │ ├── 13.gif │ │ │ │ ├── 130.gif │ │ │ │ ├── 131.gif │ │ │ │ ├── 132.gif │ │ │ │ ├── 133.gif │ │ │ │ ├── 134.gif │ │ │ │ ├── 14.gif │ │ │ │ ├── 15.gif │ │ │ │ ├── 16.gif │ │ │ │ ├── 17.gif │ │ │ │ ├── 18.gif │ │ │ │ ├── 19.gif │ │ │ │ ├── 2.gif │ │ │ │ ├── 20.gif │ │ │ │ ├── 21.gif │ │ │ │ ├── 22.gif │ │ │ │ ├── 23.gif │ │ │ │ ├── 24.gif │ │ │ │ ├── 25.gif │ │ │ │ ├── 26.gif │ │ │ │ ├── 27.gif │ │ │ │ ├── 28.gif │ │ │ │ ├── 29.gif │ │ │ │ ├── 3.gif │ │ │ │ ├── 30.gif │ │ │ │ ├── 31.gif │ │ │ │ ├── 32.gif │ │ │ │ ├── 33.gif │ │ │ │ ├── 34.gif │ │ │ │ ├── 35.gif │ │ │ │ ├── 36.gif │ │ │ │ ├── 37.gif │ │ │ │ ├── 38.gif │ │ │ │ ├── 39.gif │ │ │ │ ├── 4.gif │ │ │ │ ├── 40.gif │ │ │ │ ├── 41.gif │ │ │ │ ├── 42.gif │ │ │ │ ├── 43.gif │ │ │ │ ├── 44.gif │ │ │ │ ├── 45.gif │ │ │ │ ├── 46.gif │ │ │ │ ├── 47.gif │ │ │ │ ├── 48.gif │ │ │ │ ├── 49.gif │ │ │ │ ├── 5.gif │ │ │ │ ├── 50.gif │ │ │ │ ├── 51.gif │ │ │ │ ├── 52.gif │ │ │ │ ├── 53.gif │ │ │ │ ├── 54.gif │ │ │ │ ├── 55.gif │ │ │ │ ├── 56.gif │ │ │ │ ├── 57.gif │ │ │ │ ├── 58.gif │ │ │ │ ├── 59.gif │ │ │ │ ├── 6.gif │ │ │ │ ├── 60.gif │ │ │ │ ├── 61.gif │ │ │ │ ├── 62.gif │ │ │ │ ├── 63.gif │ │ │ │ ├── 64.gif │ │ │ │ ├── 65.gif │ │ │ │ ├── 66.gif │ │ │ │ ├── 67.gif │ │ │ │ ├── 68.gif │ │ │ │ ├── 69.gif │ │ │ │ ├── 7.gif │ │ │ │ ├── 70.gif │ │ │ │ ├── 71.gif │ │ │ │ ├── 72.gif │ │ │ │ ├── 73.gif │ │ │ │ ├── 74.gif │ │ │ │ ├── 75.gif │ │ │ │ ├── 76.gif │ │ │ │ ├── 77.gif │ │ │ │ ├── 78.gif │ │ │ │ ├── 79.gif │ │ │ │ ├── 8.gif │ │ │ │ ├── 80.gif │ │ │ │ ├── 81.gif │ │ │ │ ├── 82.gif │ │ │ │ ├── 83.gif │ │ │ │ ├── 84.gif │ │ │ │ ├── 85.gif │ │ │ │ ├── 86.gif │ │ │ │ ├── 87.gif │ │ │ │ ├── 88.gif │ │ │ │ ├── 89.gif │ │ │ │ ├── 9.gif │ │ │ │ ├── 90.gif │ │ │ │ ├── 91.gif │ │ │ │ ├── 92.gif │ │ │ │ ├── 93.gif │ │ │ │ ├── 94.gif │ │ │ │ ├── 95.gif │ │ │ │ ├── 96.gif │ │ │ │ ├── 97.gif │ │ │ │ ├── 98.gif │ │ │ │ ├── 99.gif │ │ │ │ └── static.gif │ │ ├── filemanager │ │ │ ├── filemanager.js │ │ │ └── images │ │ │ │ ├── file-16.gif │ │ │ │ ├── file-64.gif │ │ │ │ ├── folder-16.gif │ │ │ │ ├── folder-64.gif │ │ │ │ └── go-up.gif │ │ ├── flash │ │ │ └── flash.js │ │ ├── image │ │ │ ├── image.js │ │ │ └── images │ │ │ │ ├── align_left.gif │ │ │ │ ├── align_right.gif │ │ │ │ ├── align_top.gif │ │ │ │ └── refresh.png │ │ ├── insertfile │ │ │ └── insertfile.js │ │ ├── lineheight │ │ │ └── lineheight.js │ │ ├── link │ │ │ └── link.js │ │ ├── map │ │ │ ├── map.html │ │ │ └── map.js │ │ ├── media │ │ │ └── media.js │ │ ├── multiimage │ │ │ ├── images │ │ │ │ ├── image.png │ │ │ │ ├── select-files-en.png │ │ │ │ ├── select-files-zh_CN.png │ │ │ │ └── swfupload.swf │ │ │ └── multiimage.js │ │ ├── pagebreak │ │ │ └── pagebreak.js │ │ ├── plainpaste │ │ │ └── plainpaste.js │ │ ├── preview │ │ │ └── preview.js │ │ ├── quickformat │ │ │ └── quickformat.js │ │ ├── table │ │ │ └── table.js │ │ ├── template │ │ │ ├── html │ │ │ │ ├── 1.html │ │ │ │ ├── 2.html │ │ │ │ └── 3.html │ │ │ └── template.js │ │ └── wordpaste │ │ │ └── wordpaste.js │ └── themes │ │ ├── common │ │ ├── anchor.gif │ │ ├── blank.gif │ │ ├── flash.gif │ │ ├── loading.gif │ │ ├── media.gif │ │ └── rm.gif │ │ ├── default │ │ ├── background.png │ │ ├── default.css │ │ └── default.png │ │ ├── qq │ │ ├── editor.gif │ │ └── qq.css │ │ └── simple │ │ └── simple.css ├── knob │ └── jquery.knob.js ├── morris │ ├── morris.css │ ├── morris.js │ └── morris.min.js ├── pace │ ├── pace.css │ ├── pace.js │ ├── pace.min.css │ └── pace.min.js ├── popper │ ├── esm │ │ ├── popper-utils.js │ │ ├── popper-utils.js.map │ │ ├── popper-utils.min.js │ │ ├── popper-utils.min.js.map │ │ ├── popper.js │ │ ├── popper.js.map │ │ ├── popper.min.js │ │ └── popper.min.js.map │ ├── popper-utils.js │ ├── popper-utils.js.map │ ├── popper-utils.min.js │ ├── popper-utils.min.js.map │ ├── popper.js │ ├── popper.js.map │ ├── popper.min.js │ ├── popper.min.js.map │ └── umd │ │ ├── popper-utils.js │ │ ├── popper-utils.js.map │ │ ├── popper-utils.min.js │ │ ├── popper-utils.min.js.map │ │ ├── popper.js │ │ ├── popper.js.map │ │ ├── popper.min.js │ │ └── popper.min.js.map ├── select2 │ ├── i18n │ │ ├── az.js │ │ ├── bg.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── da.js │ │ ├── de.js │ │ ├── en.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ko.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── pt-BR.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sk.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-CN.js │ │ └── zh-TW.js │ ├── select2.css │ ├── select2.full.js │ ├── select2.full.min.js │ ├── select2.js │ ├── select2.min.css │ └── select2.min.js ├── slimScroll │ ├── jquery.slimscroll.js │ └── jquery.slimscroll.min.js ├── sparkline │ ├── jquery.sparkline.js │ └── jquery.sparkline.min.js ├── sweetalert │ ├── sweetalert.css │ └── sweetalert.min.js └── timepicker │ ├── bootstrap-timepicker.css │ ├── bootstrap-timepicker.js │ ├── bootstrap-timepicker.min.css │ └── bootstrap-timepicker.min.js └── user.html /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=java 2 | *.css linguist-language=java 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled class file 2 | *.class 3 | 4 | # Log file 5 | *.log 6 | 7 | # Package Files # 8 | *.jar 9 | *.war 10 | *.ear 11 | *.zip 12 | *.tar.gz 13 | *.rar 14 | 15 | ### IntelliJ IDEA ### 16 | .idea 17 | *.iws 18 | *.iml 19 | *.ipr 20 | 21 | ###my own### 22 | logs 23 | target 24 | jdbc-druid-config.properties -------------------------------------------------------------------------------- /src/main/java/com/ssm/cluster/common/Constants.java: -------------------------------------------------------------------------------- 1 | package com.ssm.cluster.common; 2 | 3 | /** 4 | * Created by 13 on 2017/6/26. 5 | */ 6 | public class Constants { 7 | 8 | public static final int RESULT_CODE_SUCCESS = 200; // 成功处理请求 9 | public static final int RESULT_CODE_BAD_REQUEST = 412; // bad request 10 | public static final int RESULT_CODE_SERVER_ERROR = 500; // 没有对应结果 11 | 12 | public static final String ARTICLE_CACHE_KEY = "ssm-cluster:article:";//文章key 13 | public static final String PICTURE_CACHE_KEY = "ssm-cluster:picture:";//图片key 14 | } 15 | -------------------------------------------------------------------------------- /src/main/java/com/ssm/cluster/service/ArticleService.java: -------------------------------------------------------------------------------- 1 | package com.ssm.cluster.service; 2 | 3 | import com.ssm.cluster.entity.Article; 4 | 5 | import java.util.List; 6 | import java.util.Map; 7 | 8 | /** 9 | * @author 13 10 | * @date 2018-02-11 13:39:08 11 | */ 12 | public interface ArticleService { 13 | 14 | Article queryObject(Integer id); 15 | 16 | List
queryList(Map map); 17 | 18 | int queryTotal(Map map); 19 | 20 | void save(Article article); 21 | 22 | void update(Article article); 23 | 24 | void delete(Integer id); 25 | 26 | void deleteBatch(Integer[] ids); 27 | } 28 | -------------------------------------------------------------------------------- /src/main/java/com/ssm/cluster/service/PictureService.java: -------------------------------------------------------------------------------- 1 | package com.ssm.cluster.service; 2 | 3 | import com.ssm.cluster.entity.Picture; 4 | 5 | import java.util.List; 6 | import java.util.Map; 7 | 8 | /** 9 | * @author 13 10 | * @date 2018-02-11 13:39:08 11 | */ 12 | public interface PictureService { 13 | 14 | Picture queryObject(Integer id); 15 | 16 | List queryList(Map map); 17 | 18 | int queryTotal(Map map); 19 | 20 | void save(Picture picture); 21 | 22 | void update(Picture picture); 23 | 24 | void delete(Integer id); 25 | 26 | void deleteBatch(Integer[] ids); 27 | } 28 | -------------------------------------------------------------------------------- /src/main/java/com/ssm/cluster/service/UserService.java: -------------------------------------------------------------------------------- 1 | package com.ssm.cluster.service; 2 | 3 | import com.ssm.cluster.entity.User; 4 | 5 | import java.util.List; 6 | import java.util.Map; 7 | 8 | /** 9 | * @author 13 10 | * @date 2018-02-11 13:39:08 11 | */ 12 | public interface UserService { 13 | 14 | User login(User user); 15 | 16 | List queryList(Map map); 17 | 18 | int queryTotal(Map map); 19 | 20 | void save(User user); 21 | 22 | void updatePassword(User user); 23 | 24 | void delete(Integer id); 25 | 26 | void deleteBatch(Integer[] ids); 27 | 28 | User queryObject(Integer id); 29 | } 30 | -------------------------------------------------------------------------------- /src/main/resources/jdbc-druid-config.properties: -------------------------------------------------------------------------------- 1 | # database configure 2 | jdbc.url=jdbc:mysql://localhost:3306/ssm_cluster_db?useUnicode=true&characterEncoding=utf8&autoReconnect=true 3 | jdbc.username=root 4 | jdbc.password=123456 5 | 6 | # druid datasource 7 | druid.initialSize=10 8 | druid.minIdle=10 9 | druid.maxActive=50 10 | druid.maxWait=60000 11 | druid.timeBetweenEvictionRunsMillis=60000 12 | druid.minEvictableIdleTimeMillis=300000 13 | druid.validationQuery=SELECT 1 14 | druid.testWhileIdle=true 15 | druid.testOnBorrow=false 16 | druid.testOnReturn=false 17 | druid.poolPreparedStatements=false 18 | druid.maxPoolPreparedStatementPerConnectionSize=20 19 | druid.filters=wall,stat,log4j -------------------------------------------------------------------------------- /src/main/resources/mybatis-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /src/main/webapp/dist/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/main/webapp/dist/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/webapp/dist/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/webapp/dist/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/webapp/dist/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/main/webapp/dist/img/AdminLTELogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/AdminLTELogo.png -------------------------------------------------------------------------------- /src/main/webapp/dist/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/avatar.png -------------------------------------------------------------------------------- /src/main/webapp/dist/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/avatar04.png -------------------------------------------------------------------------------- /src/main/webapp/dist/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/avatar2.png -------------------------------------------------------------------------------- /src/main/webapp/dist/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/avatar3.png -------------------------------------------------------------------------------- /src/main/webapp/dist/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/avatar5.png -------------------------------------------------------------------------------- /src/main/webapp/dist/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/boxed-bg.jpg -------------------------------------------------------------------------------- /src/main/webapp/dist/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/boxed-bg.png -------------------------------------------------------------------------------- /src/main/webapp/dist/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/credit/american-express.png -------------------------------------------------------------------------------- /src/main/webapp/dist/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/credit/cirrus.png -------------------------------------------------------------------------------- /src/main/webapp/dist/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/credit/mastercard.png -------------------------------------------------------------------------------- /src/main/webapp/dist/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/credit/mestro.png -------------------------------------------------------------------------------- /src/main/webapp/dist/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/credit/paypal.png -------------------------------------------------------------------------------- /src/main/webapp/dist/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/credit/paypal2.png -------------------------------------------------------------------------------- /src/main/webapp/dist/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/credit/visa.png -------------------------------------------------------------------------------- /src/main/webapp/dist/img/default-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/default-150x150.png -------------------------------------------------------------------------------- /src/main/webapp/dist/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/icons.png -------------------------------------------------------------------------------- /src/main/webapp/dist/img/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/logo.jpg -------------------------------------------------------------------------------- /src/main/webapp/dist/img/logo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/logo3.jpg -------------------------------------------------------------------------------- /src/main/webapp/dist/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/photo1.png -------------------------------------------------------------------------------- /src/main/webapp/dist/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/photo2.png -------------------------------------------------------------------------------- /src/main/webapp/dist/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/photo3.jpg -------------------------------------------------------------------------------- /src/main/webapp/dist/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/photo4.jpg -------------------------------------------------------------------------------- /src/main/webapp/dist/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/user1-128x128.jpg -------------------------------------------------------------------------------- /src/main/webapp/dist/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/user2-160x160.jpg -------------------------------------------------------------------------------- /src/main/webapp/dist/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/user3-128x128.jpg -------------------------------------------------------------------------------- /src/main/webapp/dist/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/user4-128x128.jpg -------------------------------------------------------------------------------- /src/main/webapp/dist/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/user5-128x128.jpg -------------------------------------------------------------------------------- /src/main/webapp/dist/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/user6-128x128.jpg -------------------------------------------------------------------------------- /src/main/webapp/dist/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/user7-128x128.jpg -------------------------------------------------------------------------------- /src/main/webapp/dist/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/user8-128x128.jpg -------------------------------------------------------------------------------- /src/main/webapp/dist/img/wxpay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/wxpay.jpg -------------------------------------------------------------------------------- /src/main/webapp/dist/img/zhifubao1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/img/zhifubao1.jpg -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/bootstrap/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/bootstrap/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/chartjs2/docs/gitbook/fonts/fontawesome/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/chartjs2/docs/gitbook/fonts/fontawesome/FontAwesome.otf -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/chartjs2/docs/gitbook/fonts/fontawesome/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/chartjs2/docs/gitbook/fonts/fontawesome/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/chartjs2/docs/gitbook/fonts/fontawesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/chartjs2/docs/gitbook/fonts/fontawesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/chartjs2/docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/chartjs2/docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/chartjs2/docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/chartjs2/docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/chartjs2/docs/gitbook/gitbook-plugin-anchorjs/anchor-style.js: -------------------------------------------------------------------------------- 1 | gitbook.events.bind('start', function(e, config) { 2 | anchors.options = config.anchorjs || {}; 3 | }); 4 | 5 | gitbook.events.bind('page.change', function() { 6 | anchors.add('h1,h2,h3,h4,h5'); 7 | }); 8 | -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/chartjs2/docs/gitbook/gitbook-plugin-chartjs/style.css: -------------------------------------------------------------------------------- 1 | .chartjs-wrapper canvas { 2 | -webkit-user-select: none; 3 | -moz-user-select: none; 4 | -ms-user-select: none; 5 | user-select: none; 6 | } 7 | -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/chartjs2/docs/gitbook/images/apple-touch-icon-precomposed-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/chartjs2/docs/gitbook/images/apple-touch-icon-precomposed-152.png -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/chartjs2/docs/gitbook/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/chartjs2/docs/gitbook/images/favicon.ico -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/chartjs2/docs/style.css: -------------------------------------------------------------------------------- 1 | a.anchorjs-link { 2 | color: rgba(65, 131, 196, 0.1); 3 | font-weight: 400; 4 | text-decoration: none; 5 | transition: color 100ms ease-out; 6 | z-index: 999; 7 | } 8 | 9 | a.anchorjs-link:hover { 10 | color: rgba(65, 131, 196, 1); 11 | } 12 | 13 | sup { 14 | font-size: 0.75em !important; 15 | } 16 | -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/font-awesome/css/font-awesome.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/font-awesome/css/font-awesome.css.map -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/jquery/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/jquery/core.js -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/jquery/jquery.js -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/jquery/jquery.min.js -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/jquery/jquery.min.map -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/jquery/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/jquery/jquery.slim.js -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/jquery/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/jquery/jquery.slim.min.js -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/jquery/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/jquery/jquery.slim.min.map -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/popper/esm/popper-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/popper/esm/popper-utils.js -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/popper/esm/popper-utils.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/popper/esm/popper-utils.js.map -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/popper/esm/popper-utils.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/popper/esm/popper-utils.min.js -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/popper/esm/popper-utils.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/popper/esm/popper-utils.min.js.map -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/popper/esm/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/popper/esm/popper.js -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/popper/esm/popper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/popper/esm/popper.js.map -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/popper/esm/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/popper/esm/popper.min.js -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/popper/esm/popper.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/popper/esm/popper.min.js.map -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/popper/popper-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/popper/popper-utils.js -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/popper/popper-utils.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/popper/popper-utils.js.map -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/popper/popper-utils.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/popper/popper-utils.min.js -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/popper/popper-utils.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/popper/popper-utils.min.js.map -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/popper/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/popper/popper.js -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/popper/popper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/popper/popper.js.map -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/popper/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/popper/popper.min.js -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/popper/popper.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/popper/popper.min.js.map -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/popper/umd/popper-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/popper/umd/popper-utils.js -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/popper/umd/popper-utils.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/popper/umd/popper-utils.js.map -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/popper/umd/popper-utils.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/popper/umd/popper-utils.min.js -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/popper/umd/popper-utils.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/popper/umd/popper-utils.min.js.map -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/popper/umd/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/popper/umd/popper.js -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/popper/umd/popper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/popper/umd/popper.js.map -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/popper/umd/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/popper/umd/popper.min.js -------------------------------------------------------------------------------- /src/main/webapp/dist/js/plugins/popper/umd/popper.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/dist/js/plugins/popper/umd/popper.min.js.map -------------------------------------------------------------------------------- /src/main/webapp/plugins/chart.js/docs/gitbook/fonts/fontawesome/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/chart.js/docs/gitbook/fonts/fontawesome/FontAwesome.otf -------------------------------------------------------------------------------- /src/main/webapp/plugins/chart.js/docs/gitbook/fonts/fontawesome/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/chart.js/docs/gitbook/fonts/fontawesome/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/webapp/plugins/chart.js/docs/gitbook/fonts/fontawesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/chart.js/docs/gitbook/fonts/fontawesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/webapp/plugins/chart.js/docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/chart.js/docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/webapp/plugins/chart.js/docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/chart.js/docs/gitbook/fonts/fontawesome/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/main/webapp/plugins/chart.js/docs/gitbook/gitbook-plugin-anchorjs/anchor-style.js: -------------------------------------------------------------------------------- 1 | gitbook.events.bind('start', function(e, config) { 2 | anchors.options = config.anchorjs || {}; 3 | }); 4 | 5 | gitbook.events.bind('page.change', function() { 6 | anchors.add(anchors.options.selector || 'h2,h3,h4,h5'); 7 | }); 8 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/chart.js/docs/gitbook/gitbook-plugin-chartjs/style.css: -------------------------------------------------------------------------------- 1 | .chartjs-wrapper canvas { 2 | -webkit-user-select: none; 3 | -moz-user-select: none; 4 | -ms-user-select: none; 5 | user-select: none; 6 | } 7 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/chart.js/docs/gitbook/images/apple-touch-icon-precomposed-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/chart.js/docs/gitbook/images/apple-touch-icon-precomposed-152.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/chart.js/docs/gitbook/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/chart.js/docs/gitbook/images/favicon.ico -------------------------------------------------------------------------------- /src/main/webapp/plugins/chart.js/docs/style.css: -------------------------------------------------------------------------------- 1 | a.anchorjs-link { 2 | color: rgba(65, 131, 196, 0.1); 3 | font-weight: 400; 4 | text-decoration: none; 5 | transition: color 100ms ease-out; 6 | z-index: 999; 7 | } 8 | 9 | a.anchorjs-link:hover { 10 | color: rgba(65, 131, 196, 1); 11 | } 12 | 13 | sup { 14 | font-size: 0.75em !important; 15 | } 16 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/ckeditor/translations/ar.js: -------------------------------------------------------------------------------- 1 | (function(d){d['ar']=Object.assign(d['ar']||{},{a:"لا يمكن رفع الملف:",b:"Block quote",c:"Italic",d:"Bold",e:"image widget",f:"Full size image",g:"Side image",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"Enter image caption",l:"Insert image",m:"رابط",n:"Upload failed",o:"Choose heading",p:"Heading",q:"قائمة مرقمة",r:"Bulleted List",s:"Change image text alternative",t:"Paragraph",u:"Heading 1",v:"Heading 2",w:"Heading 3",x:"Unlink",y:"تحرير الرابط",z:"فتح الرابط في تبويب جديد",aa:"This link has no URL",ab:"Rich Text Editor, %0",ac:"Rich Text Editor",ad:"تراجع",ae:"Redo",af:"حفظ",ag:"إلغاء",ah:"Text alternative",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/webapp/plugins/ckeditor/translations/bg.js: -------------------------------------------------------------------------------- 1 | (function(d){d['bg']=Object.assign(d['bg']||{},{a:"Cannot upload file:",b:"Цитат",c:"Курсив",d:"Удебелен",e:"image widget",f:"Full size image",g:"Side image",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"Enter image caption",l:"Insert image",m:"Link",n:"Upload failed",o:"Choose heading",p:"Heading",q:"Numbered List",r:"Bulleted List",s:"Change image text alternative",t:"Параграф",u:"Heading 1",v:"Heading 2",w:"Heading 3",x:"Unlink",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Rich Text Editor, %0",ac:"Rich Text Editor",ad:"Undo",ae:"Redo",af:"Запазване",ag:"Отказ",ah:"Text alternative",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/webapp/plugins/ckeditor/translations/cs.js: -------------------------------------------------------------------------------- 1 | (function(d){d['cs']=Object.assign(d['cs']||{},{a:"Soubor nelze nahrát:",b:"Citace",c:"Kurzíva",d:"Tučné",e:"ovládací prvek obrázku",f:"Obrázek v plné velikosti",g:"Postranní obrázek",h:"Obrázek zarovnaný vlevo",i:"Obrázek zarovnaný na střed",j:"Obrázek zarovnaný vpravo",k:"Zadejte popis obrázku",l:"Vložit obrázek",m:"Odkaz",n:"Nahrání selhalo",o:"Zvolte nadpis",p:"Nadpis",q:"Číslování",r:"Odrážky",s:"Změnit alternativní text obrázku",t:"Odstavec",u:"Nadpis 1",v:"Nadpis 2",w:"Nadpis 3",x:"Odstranit odkaz",y:"Upravit odkaz",z:"Otevřít odkaz v nové kartě",aa:"Tento odkaz nemá žádnou URL",ab:"Textový editor, %0",ac:"Textový editor",ad:"Zpět",ae:"Znovu",af:"Uložit",ag:"Zrušit",ah:"Alternativní text",ai:"URL odkazu"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/webapp/plugins/ckeditor/translations/da.js: -------------------------------------------------------------------------------- 1 | (function(d){d['da']=Object.assign(d['da']||{},{a:"Kan ikke uploade fil:",b:"Blot citat",c:"Kursiv",d:"Fed",e:"billed widget",f:"Fuld billedstørrelse",g:"Sidebillede",h:"Venstrestillet billede",i:"Centreret billede",j:"Højrestillet billede",k:"Indtast billedoverskrift",l:"Indsæt billede",m:"Link",n:"Upload fejlede",o:"Vælg overskrift",p:"Overskrift",q:"Opstilling med tal",r:"Punktopstilling",s:"Skift alternativ billedtekst",t:"Formattering",u:"Overskrift 1",v:"Overskrift 2",w:"Overskrift 3",x:"Fjern link",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Wysiwyg editor, %0",ac:"Wysiwyg editor",ad:"Fortryd",ae:"Gentag",af:"Gem",ag:"Annullér",ah:"Alternativ tekst",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/webapp/plugins/ckeditor/translations/en-au.js: -------------------------------------------------------------------------------- 1 | (function(d){d['en-au']=Object.assign(d['en-au']||{},{a:"Cannot upload file:",b:"Block quote",c:"Italic",d:"Bold",e:"image widget",f:"Full size image",g:"Side image",h:"Left aligned image",i:"Centred image",j:"Right aligned image",k:"Enter image caption",l:"Insert image",m:"Link",n:"Upload failed",o:"Choose heading",p:"Heading",q:"Numbered List",r:"Bulleted List",s:"Change image text alternative",t:"Paragraph",u:"Heading 1",v:"Heading 2",w:"Heading 3",x:"Unlink",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Rich Text Editor, %0",ac:"Rich Text Editor",ad:"Undo",ae:"Redo",af:"Save",ag:"Cancel",ah:"Text alternative",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/webapp/plugins/ckeditor/translations/eo.js: -------------------------------------------------------------------------------- 1 | (function(d){d['eo']=Object.assign(d['eo']||{},{a:"Cannot upload file:",b:"Block quote",c:"kursiva",d:"grasa",e:"bilda fenestraĵo",f:"Bildo kun reala dimensio",g:"Flanka biildo",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"Skribu klarigon pri la bildo",l:"Enmetu bildon",m:"Ligilo",n:"Upload failed",o:"Elektu ĉapon",p:"Ĉapo",q:"Numerita Listo",r:"Bula Listo",s:"Ŝanĝu la alternativan tekston de la bildo",t:"Paragrafo",u:"Ĉapo 1",v:"Ĉapo 2",w:"Ĉapo 3",x:"Malligi",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Redaktilo de Riĉa Teksto, %0",ac:"Redaktilo de Riĉa Teksto",ad:"Malfari",ae:"Refari",af:"Konservi",ag:"Nuligi",ah:"Alternativa teksto",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/webapp/plugins/ckeditor/translations/fi.js: -------------------------------------------------------------------------------- 1 | (function(d){d['fi']=Object.assign(d['fi']||{},{a:"Tiedostoa ei voitu ladata:",b:"Lainaus",c:"Kursivointi",d:"Lihavointi",e:"Kuvavimpain",f:"Täysikokoinen kuva",g:"Pieni kuva",h:"Vasemmalle tasattu kuva",i:"Keskitetty kuva",j:"Oikealle tasattu kuva",k:"Syötä kuvateksti",l:"Lisää kuva",m:"Linkki",n:"Lataus epäonnistui",o:"Valitse tyyli",p:"Otsikkotyyli",q:"Numeroitu lista",r:"Lista",s:"Vaihda kuvan vaihtoehtoinen teksti",t:"Kappale",u:"Otsikko 1",v:"Otsikko 2",w:"Otsikko 3",x:"Poista linkki",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Rikas tekstieditori, %0",ac:"Rikas tekstieditori",ad:"Peru",ae:"Tee uudelleen",af:"Tallenna",ag:"Peruuta",ah:"Vaihtoehtoinen teksti",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/webapp/plugins/ckeditor/translations/gu.js: -------------------------------------------------------------------------------- 1 | (function(d){d['gu']=Object.assign(d['gu']||{},{a:"ફાઇલ અપલોડ ન થઇ શકી",b:" વિચાર ટાંકો",c:"ત્રાંસુ - ઇટલિક્",d:"ઘાટુ - બોલ્ડ્",e:"image widget",f:"Full size image",g:"Side image",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"Enter image caption",l:"Insert image",m:"Link",n:"Upload failed",o:"Choose heading",p:"Heading",q:"Numbered List",r:"Bulleted List",s:"Change image text alternative",t:"Paragraph",u:"Heading 1",v:"Heading 2",w:"Heading 3",x:"Unlink",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Rich Text Editor, %0",ac:"Rich Text Editor",ad:"Undo",ae:"Redo",af:"Save",ag:"Cancel",ah:"Text alternative",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/webapp/plugins/ckeditor/translations/hr.js: -------------------------------------------------------------------------------- 1 | (function(d){d['hr']=Object.assign(d['hr']||{},{a:"Datoteku nije moguće poslati:",b:"Blok citat",c:"Ukošeno",d:"Podebljano",e:"Slika widget",f:"Slika pune veličine",g:"Slika sa strane",h:"Lijevo poravnata slika",i:"Centrirana slika",j:"Slika poravnata desno",k:"Unesite naslov slike",l:"Umetni sliku",m:"Veza",n:"Slanje nije uspjelo",o:"Odaberite naslov",p:"Naslov",q:"Brojčana lista",r:"Obična lista",s:"Promijeni alternativni tekst slike",t:"Paragraf",u:"Naslov 1",v:"Naslov 2",w:"Naslov 3",x:"Ukloni vezu",y:"Uredi vezu",z:"Otvori vezu u novoj kartici",aa:"Ova veza nema URL",ab:"Rich Text Editor, %0",ac:"Rich Text Editor",ad:"Poništi",ae:"Ponovi",af:"Snimi",ag:"Poništi",ah:"Alternativni tekst",ai:"URL veze"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/webapp/plugins/ckeditor/translations/hu.js: -------------------------------------------------------------------------------- 1 | (function(d){d['hu']=Object.assign(d['hu']||{},{a:"Nem sikerült a fájl feltöltése:",b:"Idézet",c:"Dőlt",d:"Félkövér",e:"képmodul",f:"Teljes méretű kép",g:"Oldalsó kép",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"Képaláírás megadása",l:"Kép beszúrása",m:"Link",n:"A feltöltés nem sikerült",o:"Stílus megadása",p:"Stílusok",q:"Számozott lista",r:"Pontozott lista",s:"Helyettesítő szöveg módosítása",t:"Bekezdés",u:"Címsor 1",v:"Címsor 2",w:"Címsor 3",x:"Link eltávolítása",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Bővített szövegszerkesztő, %0",ac:"Bővített szövegszerkesztő",ad:"Visszavonás",ae:"Újra",af:"Mentés",ag:"Mégsem",ah:"Helyettesítő szöveg",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/webapp/plugins/ckeditor/translations/ja.js: -------------------------------------------------------------------------------- 1 | (function(d){d['ja']=Object.assign(d['ja']||{},{a:"ファイルをアップロードできません:",b:"ブロッククオート(引用)",c:"イタリック",d:"ボールド",e:"画像ウィジェット",f:"フルサイズ画像",g:"サイドイメージ",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"画像の注釈を入力",l:"画像挿入",m:"リンク",n:"アップロード失敗",o:"見出しを選択",p:"見出し",q:"番号付きリスト",r:"箇条書きリスト",s:"画像の代替テキストを変更",t:"パラグラフ",u:"見出し1",v:"見出し2",w:"見出し3 ",x:"リンク解除",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"リッチテキストエディター, %0",ac:"リッチテキストエディター",ad:"元に戻す",ae:"やり直し",af:"保存",ag:"キャンセル",ah:"代替テキスト",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/webapp/plugins/ckeditor/translations/kn.js: -------------------------------------------------------------------------------- 1 | (function(d){d['kn']=Object.assign(d['kn']||{},{a:"Cannot upload file:",b:"‍‍‍‍ಗುರುತಿಸಲಾದ ‍‍ಉಲ್ಲೇಖ",c:"‍ಇಟಾಲಿಕ್",d:"‍‍ದಪ್ಪ",e:"‍ಚಿತ್ರ ವಿಜೆಟ್",f:"‍ಪೂರ್ಣ ‍‍ಅಳತೆಯ ಚಿತ್ರ",g:"‍ಪಕ್ಕದ ಚಿತ್ರ",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"‍ಚಿತ್ರದ ಶೀರ್ಷಿಕೆ ಸೇರಿಸು",l:"Insert image",m:"‍ಕೊಂಡಿ",n:"Upload failed",o:"ಶೀರ್ಷಿಕೆ ಆಯ್ಕೆಮಾಡು",p:"ಶೀರ್ಷಿಕೆ",q:"‍ಸಂಖ್ಯೆಯ ಪಟ್ಟಿ‍",r:"‍‍ಬುಲೆಟ್ ಪಟ್ಟಿ",s:"‍ಚಿತ್ರದ ಬದಲಿ ಪಠ್ಯ ಬದಲಾಯಿಸು",t:"ಪ್ಯಾರಾಗ್ರಾಫ್",u:"ಶೀರ್ಷಿಕೆ 1",v:"ಶೀರ್ಷಿಕೆ 2",w:"ಶೀರ್ಷಿಕೆ 3",x:"‍ಕೊಂಡಿ ತೆಗೆ",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"‍ಸಮೃದ್ಧ ಪಠ್ಯ ಸಂಪಾದಕ‍, %0",ac:"‍ಸಮೃದ್ಧ ಪಠ್ಯ ಸಂಪಾದಕ‍‍",ad:"‍‍ರದ್ದು",ae:"‍ಮತ್ತೆ ಮಾಡು",af:"ಉಳಿಸು",ag:"ರದ್ದುಮಾಡು",ah:"‍ಪಠ್ಯದ ಬದಲಿ",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/webapp/plugins/ckeditor/translations/ko.js: -------------------------------------------------------------------------------- 1 | (function(d){d['ko']=Object.assign(d['ko']||{},{a:"Cannot upload file:",b:"인용 단락",c:"기울임꼴",d:"굵게",e:"이미지 위젯",f:"문서 너비",g:"내부 우측 정렬",h:"왼쪽 정렬",i:"가운데 정렬",j:"오른쪽 정렬",k:"이미지 설명을 입력하세요",l:"Insert image",m:"링크",n:"Upload failed",o:"제목 선택",p:"제목",q:"번호매기기",r:"글머리기호",s:"대체 텍스트 변경",t:"문단",u:"제목1",v:"제목2",w:"제목3",x:"링크 삭제",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Rich Text Editor, %0",ac:"Rich Text Editor",ad:"실행 취소",ae:"다시 실행",af:"저장",ag:"취소",ah:"대체 텍스트",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/webapp/plugins/ckeditor/translations/nb.js: -------------------------------------------------------------------------------- 1 | (function(d){d['nb']=Object.assign(d['nb']||{},{a:"Kan ikke laste opp fil:",b:"Blokksitat",c:"Kursiv",d:"Fet",e:"Bilde-widget",f:"Bilde i full størrelse",g:"Sidebilde",h:"Venstrejustert bilde",i:"Midtstilt bilde",j:"Høyrejustert bilde",k:"Skriv inn bildetekst",l:"Sett inn bilde",m:"Lenke",n:"Opplasting feilet",o:"Velg overskrift",p:"Overskrift",q:"Nummerert liste",r:"Punktmerket liste",s:"Endre tekstalternativ for bilde",t:"Avsnitt",u:"Overskrift 1",v:"Overskrift 2",w:"Overskrift 3",x:"Fjern lenke",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Rikteksteditor, %0",ac:"Rikteksteditor",ad:"Angre",ae:"Gjør om",af:"Lagre",ag:"Avbryt",ah:"Tekstalternativ for bilde",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/webapp/plugins/ckeditor/translations/ne.js: -------------------------------------------------------------------------------- 1 | (function(d){d['ne']=Object.assign(d['ne']||{},{a:"Cannot upload file:",b:"Block quote",c:"Italic",d:"Bold",e:"image widget",f:"Full size image",g:"Side image",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"Enter image caption",l:"तस्वीर सम्मिलित गर्नुहोस्",m:"Link",n:"Upload failed",o:"Choose heading",p:"Heading",q:"Numbered List",r:"Bulleted List",s:"Change image text alternative",t:"Paragraph",u:"Heading 1",v:"Heading 2",w:"Heading 3",x:"Unlink",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Rich Text Editor, %0",ac:"Rich Text Editor",ad:"Undo",ae:"Redo",af:"सुरक्षित गर्नुहोस्",ag:"रद्द गर्नुहोस्",ah:"Text alternative",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/webapp/plugins/ckeditor/translations/oc.js: -------------------------------------------------------------------------------- 1 | (function(d){d['oc']=Object.assign(d['oc']||{},{a:"Cannot upload file:",b:"Block quote",c:"Italica",d:"Gras",e:"image widget",f:"Full size image",g:"Side image",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"Enter image caption",l:"Insert image",m:"Link",n:"Upload failed",o:"Choose heading",p:"Heading",q:"Numbered List",r:"Bulleted List",s:"Change image text alternative",t:"Paragraph",u:"Heading 1",v:"Heading 2",w:"Heading 3",x:"Unlink",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Rich Text Editor, %0",ac:"Rich Text Editor",ad:"Undo",ae:"Redo",af:"Enregistrar",ag:"Anullar",ah:"Text alternative",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/webapp/plugins/ckeditor/translations/pl.js: -------------------------------------------------------------------------------- 1 | (function(d){d['pl']=Object.assign(d['pl']||{},{a:"Nie można przesłać pliku:",b:"Cytat blokowy",c:"Kursywa",d:"Pogrubienie",e:"image widget",f:"Full size image",g:"Side image",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"Enter image caption",l:"Wstaw obraz",m:"Wstaw odnośnik",n:"Upload failed",o:"Wybierz nagłówek",p:"Nagłówek",q:"Lista numerowana",r:"Lista wypunktowana",s:"Change image text alternative",t:"Akapit",u:"Nagłówek 1",v:"Nagłówek 2",w:"Nagłówek 3",x:"Usuń odnośnik",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Rich Text Editor, %0",ac:"Rich Text Editor",ad:"Cofnij",ae:"Ponów",af:"Zapisz",ag:"Anuluj",ah:"Text alternative",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/webapp/plugins/ckeditor/translations/si.js: -------------------------------------------------------------------------------- 1 | (function(d){d['si']=Object.assign(d['si']||{},{a:"ගොනුව යාවත්කාලීන කළ නොහැක:",b:"Block quote",c:"ඇලකුරු",d:"තදකුරු",e:"image widget",f:"Full size image",g:"Side image",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"Enter image caption",l:"පින්තූරය ඇතුල් කරන්න",m:"Link",n:"උඩුගත කිරීම අසාර්ථක විය",o:"Choose heading",p:"Heading",q:"අංකිත ලැයිස්තුව",r:"බුලටිත ලැයිස්තුව",s:"Change image text alternative",t:"Paragraph",u:"Heading 1",v:"Heading 2",w:"Heading 3",x:"Unlink",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Rich Text Editor, %0",ac:"Rich Text Editor",ad:"අහෝසි කරන්න",ae:"නැවත කරන්න",af:"Save",ag:"Cancel",ah:"Text alternative",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/webapp/plugins/ckeditor/translations/sv.js: -------------------------------------------------------------------------------- 1 | (function(d){d['sv']=Object.assign(d['sv']||{},{a:"Kan inte ladda upp fil:",b:"Blockcitat",c:"Kursiv",d:"Fet",e:"image widget",f:"Full size image",g:"Side image",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"Enter image caption",l:"Infoga bild",m:"Länk",n:"Uppladdning misslyckades",o:"Välj rubrik",p:"Rubrik",q:"Numrerad lista",r:"Punktlista",s:"Change image text alternative",t:"Paragraf",u:"Rubrik 1",v:"Rubrik 2",w:"Rubrik 3",x:"Ta bort länk",y:"Redigera länk",z:"Öppna länk i ny flik",aa:"Denna länk saknar URL",ab:"Rich Text-editor, %0",ac:"Rich Text-editor",ad:"Ångra",ae:"Gör om",af:"Spara",ag:"Avbryt",ah:"Text alternative",ai:"Länkens URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/webapp/plugins/ckeditor/translations/tr.js: -------------------------------------------------------------------------------- 1 | (function(d){d['tr']=Object.assign(d['tr']||{},{a:"Dosya yüklenemedi:",b:"Alıntı",c:"İtalik",d:"Kalın",e:"Görsel Bileşeni",f:"Tam Boyut Görsel",g:"Yan Görsel",h:"Sola hizalı görsel",i:"Ortalı görsel",j:"Sağa hizalı görsel",k:"Resim Açıklaması Gir",l:"Görsel Ekle",m:"Bağlantı",n:"Yükleme başarsız",o:"Başlık tipi seç",p:"Başlık",q:"Numaralı Liste",r:"Simgeli Liste",s:"Görsel alternatif yazısını değiştir",t:"Paragraf",u:"1. Seviye Başlık",v:"2. Seviye Başlık",w:"3. Seviye Başlık",x:"Bağlantıyı kaldır",y:"Bağlantıyı değiştir",z:"Yeni sekmede aç",aa:"Bağlantı adresi yok",ab:"Zengin İÇerik Editörü, %0",ac:"Zengin İçerik Editörü",ad:"Geri al",ae:"İleri al",af:"Kaydet",ag:"İptal",ah:"Yazı alternatifi",ai:"Bağlantı Adresi"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/webapp/plugins/ckeditor/translations/tt.js: -------------------------------------------------------------------------------- 1 | (function(d){d['tt']=Object.assign(d['tt']||{},{a:"Cannot upload file:",b:"Block quote",c:"Italic",d:"Калын",e:"image widget",f:"Full size image",g:"Side image",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"Enter image caption",l:"Insert image",m:"Link",n:"Upload failed",o:"Choose heading",p:"Heading",q:"Numbered List",r:"Bulleted List",s:"Change image text alternative",t:"Paragraph",u:"Heading 1",v:"Heading 2",w:"Heading 3",x:"Unlink",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"Rich Text Editor, %0",ac:"Rich Text Editor",ad:"Undo",ae:"Кабатла",af:"Сакла",ag:"Cancel",ah:"Text alternative",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/webapp/plugins/ckeditor/translations/ug.js: -------------------------------------------------------------------------------- 1 | (function(d){d['ug']=Object.assign(d['ug']||{},{a:"چىقىرىشقا بولمايدىغان ھۆججەت :",b:"قىسمەن قوللىنىش",c:"يانتۇ",d:"توم",e:"رەسىمچىك",f:"ئەسلى چوڭلۇقتىكى رەسىم",g:"يان رەسىم",h:"سولغا توغۇرلانغان رەسىم",i:"ئوتتۇردىكى رەسىم",j:"ئوڭغا توغۇرلانغان رەسىم",k:"رەسىمنىڭ تېمىسىنى كىرگۈزۈڭ",l:"رەسىم قىستۇرۇش",m:"ئۇلاش",n:"چىقىرىش مەغلۇپ بولدى",o:"تېما تاللاش",p:"تېما",q:"نومۇر جەدىۋېلى",r:"بەلگە جەدىۋېلى",s:"رەسىملىك تېكىست تاللىغۇچنى ئۆزگەرتىش",t:"بۆلەك",u:"تېما 1",v:"تېما 2",w:"تېما 3",x:"ئۈزۈش",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"تېكىست تەھرىرلىگۈچ، 0%",ac:"تېكىست تەھرىرلىگۈچ",ad:"قالدۇرۇش",ae:"قايتا قىلىش",af:"ساقلاش",ag:"قالدۇرۇش",ah:"تېكىست ئاملاشتۇرۇش",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/webapp/plugins/ckeditor/translations/zh-cn.js: -------------------------------------------------------------------------------- 1 | (function(d){d['zh-cn']=Object.assign(d['zh-cn']||{},{a:"无法上传的文件:",b:"块引用",c:"倾斜",d:"加粗",e:"图像小部件",f:"图片通栏显示",g:"图片侧边显示",h:"图片左侧对齐",i:"图片居中",j:"图片右侧对齐",k:"输入图片标题",l:"插入图像",m:"超链接",n:"上传失败",o:"标题类型",p:"标题",q:"编号列表",r:"项目列表",s:"更改图片替换文本",t:"段落",u:"标题 1",v:"标题 2",w:"标题 3",x:"取消超链接",y:"修改链接",z:"在新标签页中打开链接",aa:"此链接没有设置网址",ab:"富文本编辑器, %0",ac:"富文本编辑器",ad:"撤销",ae:"重做",af:"保存",ag:"取消",ah:"替换文本",ai:"链接网址"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/webapp/plugins/ckeditor/translations/zh.js: -------------------------------------------------------------------------------- 1 | (function(d){d['zh']=Object.assign(d['zh']||{},{a:"無法上傳檔案:",b:"塊引用",c:"斜體",d:"粗體",e:"圖片小工具",f:"完整大小圖片",g:"側邊圖片",h:"Left aligned image",i:"Centered image",j:"Right aligned image",k:"輸入圖片說明",l:"插入圖片",m:"連結",n:"上傳失敗",o:"選取標題",p:"標題",q:"有編號的清單",r:"項目符號清單",s:"變更圖片的文字替代",t:"段落",u:"標題 1",v:"標題 2",w:"標題 3",x:"取消連結",y:"Edit link",z:"Open link in new tab",aa:"This link has no URL",ab:"豐富文字編輯器,%0",ac:"豐富文字編輯器",ad:"取消",ae:"重做",af:"儲存",ag:"取消",ah:"文字替代",ai:"Link URL"})})(window.CKEDITOR_TRANSLATIONS||(window.CKEDITOR_TRANSLATIONS={})); -------------------------------------------------------------------------------- /src/main/webapp/plugins/colorpicker/img/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/colorpicker/img/alpha-horizontal.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/colorpicker/img/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/colorpicker/img/alpha.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/colorpicker/img/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/colorpicker/img/hue-horizontal.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/colorpicker/img/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/colorpicker/img/hue.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/colorpicker/img/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/colorpicker/img/saturation.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/AutoFill/css/dataTables.autoFill.css: -------------------------------------------------------------------------------- 1 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 2 | * AutoFill styles 3 | */ 4 | 5 | div.AutoFill_filler { 6 | display: none; 7 | position: absolute; 8 | height: 14px; 9 | width: 14px; 10 | background: url(../images/filler.png) no-repeat center center; 11 | z-index: 1002; 12 | } 13 | 14 | div.AutoFill_border { 15 | display: none; 16 | position: absolute; 17 | background-color: #0063dc; 18 | z-index: 1001; 19 | 20 | box-shadow: 0px 0px 5px #76b4ff; 21 | -moz-box-shadow: 0px 0px 5px #76b4ff; 22 | -webkit-box-shadow: 0px 0px 5px #76b4ff; 23 | } 24 | 25 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/AutoFill/css/dataTables.autoFill.min.css: -------------------------------------------------------------------------------- 1 | div.AutoFill_filler{display:none;position:absolute;height:14px;width:14px;background:url(../images/filler.png) no-repeat center center;z-index:1002}div.AutoFill_border{display:none;position:absolute;background-color:#0063dc;z-index:1001;box-shadow:0px 0px 5px #76b4ff;-moz-box-shadow:0px 0px 5px #76b4ff;-webkit-box-shadow:0px 0px 5px #76b4ff} 2 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/AutoFill/images/filler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/extensions/AutoFill/images/filler.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/ColReorder/css/dataTables.colReorder.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Namespace DTCR - "DataTables ColReorder" plug-in 3 | */ 4 | 5 | table.DTCR_clonedTable { 6 | background-color: rgba(255, 255, 255, 0.7); 7 | z-index: 202; 8 | } 9 | 10 | div.DTCR_pointer { 11 | width: 1px; 12 | background-color: #0259C4; 13 | z-index: 201; 14 | } -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/ColReorder/css/dataTables.colReorder.min.css: -------------------------------------------------------------------------------- 1 | table.DTCR_clonedTable{background-color:rgba(255,255,255,0.7);z-index:202}div.DTCR_pointer{width:1px;background-color:#0259C4;z-index:201} 2 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/ColReorder/images/insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/extensions/ColReorder/images/insert.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/FixedColumns/css/dataTables.fixedColumns.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | /* Block out what is behind the fixed column's header and footer */ 4 | table.DTFC_Cloned thead, 5 | table.DTFC_Cloned tfoot { 6 | background-color: white; 7 | } 8 | 9 | /* Block out the gap above the scrollbar on the right, when there is a fixed 10 | * right column 11 | */ 12 | div.DTFC_Blocker { 13 | background-color: white; 14 | } 15 | 16 | div.DTFC_LeftWrapper table.dataTable, 17 | div.DTFC_RightWrapper table.dataTable { 18 | margin-bottom: 0; 19 | z-index: 2; 20 | } 21 | 22 | div.DTFC_LeftWrapper table.dataTable.no-footer, 23 | div.DTFC_RightWrapper table.dataTable.no-footer { 24 | border-bottom: none; 25 | } 26 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/FixedColumns/css/dataTables.fixedColumns.min.css: -------------------------------------------------------------------------------- 1 | table.DTFC_Cloned thead,table.DTFC_Cloned tfoot{background-color:white}div.DTFC_Blocker{background-color:white}div.DTFC_LeftWrapper table.dataTable,div.DTFC_RightWrapper table.dataTable{margin-bottom:0;z-index:2}div.DTFC_LeftWrapper table.dataTable.no-footer,div.DTFC_RightWrapper table.dataTable.no-footer{border-bottom:none} 2 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/FixedHeader/css/dataTables.fixedHeader.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | div.FixedHeader_Cloned th, 4 | div.FixedHeader_Cloned td { 5 | background-color: white !important; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/FixedHeader/css/dataTables.fixedHeader.min.css: -------------------------------------------------------------------------------- 1 | div.FixedHeader_Cloned th,div.FixedHeader_Cloned td{background-color:white !important} 2 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/KeyTable/css/dataTables.keyTable.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | table.KeyTable th.focus, 4 | table.KeyTable td.focus { 5 | outline: 3px solid #3366FF; 6 | outline-offset: -3px; 7 | } 8 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/KeyTable/css/dataTables.keyTable.min.css: -------------------------------------------------------------------------------- 1 | table.KeyTable th.focus,table.KeyTable td.focus{outline:3px solid #3366FF;outline-offset:-3px} 2 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/Responsive/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/extensions/Responsive/Readme.md -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/Scroller/css/dataTables.scroller.min.css: -------------------------------------------------------------------------------- 1 | div.DTS tbody th,div.DTS tbody td{white-space:nowrap}div.DTS tbody tr.even{background-color:white}div.DTS div.DTS_Loading{position:absolute;top:50%;left:50%;width:200px;height:20px;margin-top:-20px;margin-left:-100px;z-index:1;border:1px solid #999;padding:20px 0;text-align:center;background-color:white;background-color:rgba(255,255,255,0.5)}div.DTS div.dataTables_scrollHead,div.DTS div.dataTables_scrollFoot{background-color:white}div.DTS div.dataTables_scrollBody{z-index:2}div.DTS div.dataTables_scroll{background:url("../images/loading-background.png") repeat 0 0} 2 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/Scroller/images/loading-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/extensions/Scroller/images/loading-background.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/TableTools/images/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/extensions/TableTools/images/collection.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/TableTools/images/collection_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/extensions/TableTools/images/collection_hover.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/TableTools/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/extensions/TableTools/images/copy.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/TableTools/images/copy_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/extensions/TableTools/images/copy_hover.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/TableTools/images/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/extensions/TableTools/images/csv.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/TableTools/images/csv_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/extensions/TableTools/images/csv_hover.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/TableTools/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/extensions/TableTools/images/pdf.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/TableTools/images/pdf_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/extensions/TableTools/images/pdf_hover.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/TableTools/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/extensions/TableTools/images/print.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/TableTools/images/print_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/extensions/TableTools/images/print_hover.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/TableTools/images/psd/collection.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/extensions/TableTools/images/psd/collection.psd -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/TableTools/images/psd/copy document.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/extensions/TableTools/images/psd/copy document.psd -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/TableTools/images/psd/file_types.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/extensions/TableTools/images/psd/file_types.psd -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/TableTools/images/psd/printer.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/extensions/TableTools/images/psd/printer.psd -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/TableTools/images/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/extensions/TableTools/images/xls.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/TableTools/images/xls_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/extensions/TableTools/images/xls_hover.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/TableTools/swf/copy_csv_xls.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/extensions/TableTools/swf/copy_csv_xls.swf -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/extensions/TableTools/swf/copy_csv_xls_pdf.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/extensions/TableTools/swf/copy_csv_xls_pdf.swf -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/images/sort_asc.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/images/sort_both.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/images/sort_desc.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/datatables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/datatables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.az.js: -------------------------------------------------------------------------------- 1 | // Azerbaijani 2 | ;(function($){ 3 | $.fn.datepicker.dates['az'] = { 4 | days: ["Bazar", "Bazar ertəsi", "Çərşənbə axşamı", "Çərşənbə", "Cümə axşamı", "Cümə", "Şənbə", "Bazar"], 5 | daysShort: ["B.", "B.e", "Ç.a", "Ç.", "C.a", "C.", "Ş.", "B."], 6 | daysMin: ["B.", "B.e", "Ç.a", "Ç.", "C.a", "C.", "Ş.", "B."], 7 | months: ["Yanvar", "Fevral", "Mart", "Aprel", "May", "İyun", "İyul", "Avqust", "Sentyabr", "Oktyabr", "Noyabr", "Dekabr"], 8 | monthsShort: ["Yan", "Fev", "Mar", "Apr", "May", "İyun", "İyul", "Avq", "Sen", "Okt", "Noy", "Dek"], 9 | today: "Bu gün", 10 | weekStart: 1 11 | }; 12 | }(jQuery)); 13 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.bg.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Bulgarian translation for bootstrap-datepicker 3 | * Apostol Apostolov 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['bg'] = { 7 | days: ["Неделя", "Понеделник", "Вторник", "Сряда", "Четвъртък", "Петък", "Събота", "Неделя"], 8 | daysShort: ["Нед", "Пон", "Вто", "Сря", "Чет", "Пет", "Съб", "Нед"], 9 | daysMin: ["Н", "П", "В", "С", "Ч", "П", "С", "Н"], 10 | months: ["Януари", "Февруари", "Март", "Април", "Май", "Юни", "Юли", "Август", "Септември", "Октомври", "Ноември", "Декември"], 11 | monthsShort: ["Ян", "Фев", "Мар", "Апр", "Май", "Юни", "Юли", "Авг", "Сеп", "Окт", "Ное", "Дек"], 12 | today: "днес" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.ca.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Catalan translation for bootstrap-datepicker 3 | * J. Garcia 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ca'] = { 7 | days: ["Diumenge", "Dilluns", "Dimarts", "Dimecres", "Dijous", "Divendres", "Dissabte", "Diumenge"], 8 | daysShort: ["Diu", "Dil", "Dmt", "Dmc", "Dij", "Div", "Dis", "Diu"], 9 | daysMin: ["dg", "dl", "dt", "dc", "dj", "dv", "ds", "dg"], 10 | months: ["Gener", "Febrer", "Març", "Abril", "Maig", "Juny", "Juliol", "Agost", "Setembre", "Octubre", "Novembre", "Desembre"], 11 | monthsShort: ["Gen", "Feb", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Oct", "Nov", "Des"], 12 | today: "Avui" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.cs.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Czech translation for bootstrap-datepicker 3 | * Matěj Koubík 4 | * Fixes by Michal Remiš 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['cs'] = { 8 | days: ["Neděle", "Pondělí", "Úterý", "Středa", "Čtvrtek", "Pátek", "Sobota", "Neděle"], 9 | daysShort: ["Ned", "Pon", "Úte", "Stř", "Čtv", "Pát", "Sob", "Ned"], 10 | daysMin: ["Ne", "Po", "Út", "St", "Čt", "Pá", "So", "Ne"], 11 | months: ["Leden", "Únor", "Březen", "Duben", "Květen", "Červen", "Červenec", "Srpen", "Září", "Říjen", "Listopad", "Prosinec"], 12 | monthsShort: ["Led", "Úno", "Bře", "Dub", "Kvě", "Čer", "Čnc", "Srp", "Zář", "Říj", "Lis", "Pro"], 13 | today: "Dnes" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.cy.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Welsh translation for bootstrap-datepicker 3 | * S. Morris 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['cy'] = { 7 | days: ["Sul", "Llun", "Mawrth", "Mercher", "Iau", "Gwener", "Sadwrn", "Sul"], 8 | daysShort: ["Sul", "Llu", "Maw", "Mer", "Iau", "Gwe", "Sad", "Sul"], 9 | daysMin: ["Su", "Ll", "Ma", "Me", "Ia", "Gwe", "Sa", "Su"], 10 | months: ["Ionawr", "Chewfror", "Mawrth", "Ebrill", "Mai", "Mehefin", "Gorfennaf", "Awst", "Medi", "Hydref", "Tachwedd", "Rhagfyr"], 11 | monthsShort: ["Ion", "Chw", "Maw", "Ebr", "Mai", "Meh", "Gor", "Aws", "Med", "Hyd", "Tach", "Rha"], 12 | today: "Heddiw" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.da.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Danish translation for bootstrap-datepicker 3 | * Christian Pedersen 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['da'] = { 7 | days: ["Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag", "Søndag"], 8 | daysShort: ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør", "Søn"], 9 | daysMin: ["Sø", "Ma", "Ti", "On", "To", "Fr", "Lø", "Sø"], 10 | months: ["Januar", "Februar", "Marts", "April", "Maj", "Juni", "Juli", "August", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], 12 | today: "I Dag", 13 | clear: "Nulstil" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.el.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Greek translation for bootstrap-datepicker 3 | */ 4 | ;(function($){ 5 | $.fn.datepicker.dates['el'] = { 6 | days: ["Κυριακή", "Δευτέρα", "Τρίτη", "Τετάρτη", "Πέμπτη", "Παρασκευή", "Σάββατο", "Κυριακή"], 7 | daysShort: ["Κυρ", "Δευ", "Τρι", "Τετ", "Πεμ", "Παρ", "Σαβ", "Κυρ"], 8 | daysMin: ["Κυ", "Δε", "Τρ", "Τε", "Πε", "Πα", "Σα", "Κυ"], 9 | months: ["Ιανουάριος", "Φεβρουάριος", "Μάρτιος", "Απρίλιος", "Μάιος", "Ιούνιος", "Ιούλιος", "Αύγουστος", "Σεπτέμβριος", "Οκτώβριος", "Νοέμβριος", "Δεκέμβριος"], 10 | monthsShort: ["Ιαν", "Φεβ", "Μαρ", "Απρ", "Μάι", "Ιουν", "Ιουλ", "Αυγ", "Σεπ", "Οκτ", "Νοε", "Δεκ"], 11 | today: "Σήμερα" 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.es.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Spanish translation for bootstrap-datepicker 3 | * Bruno Bonamin 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['es'] = { 7 | days: ["Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado", "Domingo"], 8 | daysShort: ["Dom", "Lun", "Mar", "Mié", "Jue", "Vie", "Sáb", "Dom"], 9 | daysMin: ["Do", "Lu", "Ma", "Mi", "Ju", "Vi", "Sa", "Do"], 10 | months: ["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"], 11 | monthsShort: ["Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dic"], 12 | today: "Hoy" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.fa.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Persian translation for bootstrap-datepicker 3 | * Mostafa Rokooie 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['fa'] = { 7 | days: ["یک‌شنبه", "دوشنبه", "سه‌شنبه", "چهارشنبه", "پنج‌شنبه", "جمعه", "شنبه", "یک‌شنبه"], 8 | daysShort: ["یک", "دو", "سه", "چهار", "پنج", "جمعه", "شنبه", "یک"], 9 | daysMin: ["ی", "د", "س", "چ", "پ", "ج", "ش", "ی"], 10 | months: ["ژانویه", "فوریه", "مارس", "آوریل", "مه", "ژوئن", "ژوئیه", "اوت", "سپتامبر", "اکتبر", "نوامبر", "دسامبر"], 11 | monthsShort: ["ژان", "فور", "مار", "آور", "مه", "ژون", "ژوی", "اوت", "سپت", "اکت", "نوا", "دسا"], 12 | today: "امروز", 13 | clear: "پاک کن", 14 | weekStart: 1, 15 | format: "yyyy/mm/dd" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.gl.js: -------------------------------------------------------------------------------- 1 | ;(function($){ 2 | $.fn.datepicker.dates['gl'] = { 3 | days: ["Domingo", "Luns", "Martes", "Mércores", "Xoves", "Venres", "Sábado", "Domingo"], 4 | daysShort: ["Dom", "Lun", "Mar", "Mér", "Xov", "Ven", "Sáb", "Dom"], 5 | daysMin: ["Do", "Lu", "Ma", "Me", "Xo", "Ve", "Sa", "Do"], 6 | months: ["Xaneiro", "Febreiro", "Marzo", "Abril", "Maio", "Xuño", "Xullo", "Agosto", "Setembro", "Outubro", "Novembro", "Decembro"], 7 | monthsShort: ["Xan", "Feb", "Mar", "Abr", "Mai", "Xun", "Xul", "Ago", "Sep", "Out", "Nov", "Dec"], 8 | today: "Hoxe", 9 | clear: "Limpar" 10 | }; 11 | }(jQuery)); 12 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.he.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Hebrew translation for bootstrap-datepicker 3 | * Sagie Maoz 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['he'] = { 7 | days: ["ראשון", "שני", "שלישי", "רביעי", "חמישי", "שישי", "שבת", "ראשון"], 8 | daysShort: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"], 9 | daysMin: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"], 10 | months: ["ינואר", "פברואר", "מרץ", "אפריל", "מאי", "יוני", "יולי", "אוגוסט", "ספטמבר", "אוקטובר", "נובמבר", "דצמבר"], 11 | monthsShort: ["ינו", "פבר", "מרץ", "אפר", "מאי", "יונ", "יול", "אוג", "ספט", "אוק", "נוב", "דצמ"], 12 | today: "היום", 13 | rtl: true 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.hr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Croatian localisation 3 | */ 4 | ;(function($){ 5 | $.fn.datepicker.dates['hr'] = { 6 | days: ["Nedjelja", "Ponedjeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota", "Nedjelja"], 7 | daysShort: ["Ned", "Pon", "Uto", "Sri", "Čet", "Pet", "Sub", "Ned"], 8 | daysMin: ["Ne", "Po", "Ut", "Sr", "Če", "Pe", "Su", "Ne"], 9 | months: ["Siječanj", "Veljača", "Ožujak", "Travanj", "Svibanj", "Lipanj", "Srpanj", "Kolovoz", "Rujan", "Listopad", "Studeni", "Prosinac"], 10 | monthsShort: ["Sij", "Velj", "Ožu", "Tra", "Svi", "Lip", "Srp", "Kol", "Ruj", "Lis", "Stu", "Pro"], 11 | today: "Danas" 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.hu.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Hungarian translation for bootstrap-datepicker 3 | * Sotus László 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['hu'] = { 7 | days: ["Vasárnap", "Hétfő", "Kedd", "Szerda", "Csütörtök", "Péntek", "Szombat", "Vasárnap"], 8 | daysShort: ["Vas", "Hét", "Ked", "Sze", "Csü", "Pén", "Szo", "Vas"], 9 | daysMin: ["Va", "Hé", "Ke", "Sz", "Cs", "Pé", "Sz", "Va"], 10 | months: ["Január", "Február", "Március", "Április", "Május", "Június", "Július", "Augusztus", "Szeptember", "Október", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Már", "Ápr", "Máj", "Jún", "Júl", "Aug", "Sze", "Okt", "Nov", "Dec"], 12 | today: "Ma", 13 | weekStart: 1, 14 | format: "yyyy.mm.dd" 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.id.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Bahasa translation for bootstrap-datepicker 3 | * Azwar Akbar 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['id'] = { 7 | days: ["Minggu", "Senin", "Selasa", "Rabu", "Kamis", "Jumat", "Sabtu", "Minggu"], 8 | daysShort: ["Mgu", "Sen", "Sel", "Rab", "Kam", "Jum", "Sab", "Mgu"], 9 | daysMin: ["Mg", "Sn", "Sl", "Ra", "Ka", "Ju", "Sa", "Mg"], 10 | months: ["Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "November", "Desember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Ags", "Sep", "Okt", "Nov", "Des"], 12 | today: "Hari Ini", 13 | clear: "Kosongkan" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.is.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Icelandic translation for bootstrap-datepicker 3 | * Hinrik Örn Sigurðsson 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['is'] = { 7 | days: ["Sunnudagur", "Mánudagur", "Þriðjudagur", "Miðvikudagur", "Fimmtudagur", "Föstudagur", "Laugardagur", "Sunnudagur"], 8 | daysShort: ["Sun", "Mán", "Þri", "Mið", "Fim", "Fös", "Lau", "Sun"], 9 | daysMin: ["Su", "Má", "Þr", "Mi", "Fi", "Fö", "La", "Su"], 10 | months: ["Janúar", "Febrúar", "Mars", "Apríl", "Maí", "Júní", "Júlí", "Ágúst", "September", "Október", "Nóvember", "Desember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maí", "Jún", "Júl", "Ágú", "Sep", "Okt", "Nóv", "Des"], 12 | today: "Í Dag" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.ja.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Japanese translation for bootstrap-datepicker 3 | * Norio Suzuki 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ja'] = { 7 | days: ["日曜", "月曜", "火曜", "水曜", "木曜", "金曜", "土曜", "日曜"], 8 | daysShort: ["日", "月", "火", "水", "木", "金", "土", "日"], 9 | daysMin: ["日", "月", "火", "水", "木", "金", "土", "日"], 10 | months: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 11 | monthsShort: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 12 | today: "今日", 13 | format: "yyyy/mm/dd" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.kk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Kazakh translation for bootstrap-datepicker 3 | * Yerzhan Tolekov 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['kk'] = { 7 | days: ["Жексенбі", "Дүйсенбі", "Сейсенбі", "Сәрсенбі", "Бейсенбі", "Жұма", "Сенбі", "Жексенбі"], 8 | daysShort: ["Жек", "Дүй", "Сей", "Сәр", "Бей", "Жұм", "Сен", "Жек"], 9 | daysMin: ["Жк", "Дс", "Сс", "Ср", "Бс", "Жм", "Сн", "Жк"], 10 | months: ["Қаңтар", "Ақпан", "Наурыз", "Сәуір", "Мамыр", "Маусым", "Шілде", "Тамыз", "Қыркүйек", "Қазан", "Қараша", "Желтоқсан"], 11 | monthsShort: ["Қаң", "Ақп", "Нау", "Сәу", "Мамыр", "Мау", "Шлд", "Тмз", "Қыр", "Қзн", "Қар", "Жел"], 12 | today: "Бүгін", 13 | weekStart: 1 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.kr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Korean translation for bootstrap-datepicker 3 | * Gu Youn 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['kr'] = { 7 | days: ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일", "일요일"], 8 | daysShort: ["일", "월", "화", "수", "목", "금", "토", "일"], 9 | daysMin: ["일", "월", "화", "수", "목", "금", "토", "일"], 10 | months: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"], 11 | monthsShort: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"] 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.ms.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Malay translation for bootstrap-datepicker 3 | * Ateman Faiz 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ms'] = { 7 | days: ["Ahad", "Isnin", "Selasa", "Rabu", "Khamis", "Jumaat", "Sabtu", "Ahad"], 8 | daysShort: ["Aha", "Isn", "Sel", "Rab", "Kha", "Jum", "Sab", "Aha"], 9 | daysMin: ["Ah", "Is", "Se", "Ra", "Kh", "Ju", "Sa", "Ah"], 10 | months: ["Januari", "Februari", "Mac", "April", "Mei", "Jun", "Julai", "Ogos", "September", "Oktober", "November", "Disember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Ogo", "Sep", "Okt", "Nov", "Dis"], 12 | today: "Hari Ini" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.nb.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Norwegian (bokmål) translation for bootstrap-datepicker 3 | * Fredrik Sundmyhr 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['nb'] = { 7 | days: ["Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag", "Søndag"], 8 | daysShort: ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør", "Søn"], 9 | daysMin: ["Sø", "Ma", "Ti", "On", "To", "Fr", "Lø", "Sø"], 10 | months: ["Januar", "Februar", "Mars", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Desember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Des"], 12 | today: "I Dag" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.nl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Dutch translation for bootstrap-datepicker 3 | * Reinier Goltstein 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['nl'] = { 7 | days: ["Zondag", "Maandag", "Dinsdag", "Woensdag", "Donderdag", "Vrijdag", "Zaterdag", "Zondag"], 8 | daysShort: ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za", "Zo"], 9 | daysMin: ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za", "Zo"], 10 | months: ["Januari", "Februari", "Maart", "April", "Mei", "Juni", "Juli", "Augustus", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mrt", "Apr", "Mei", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Vandaag" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.no.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Norwegian translation for bootstrap-datepicker 3 | **/ 4 | ;(function($){ 5 | $.fn.datepicker.dates['no'] = { 6 | days: ['Søndag','Mandag','Tirsdag','Onsdag','Torsdag','Fredag','Lørdag'], 7 | daysShort: ['Søn','Man','Tir','Ons','Tor','Fre','Lør'], 8 | daysMin: ['Sø','Ma','Ti','On','To','Fr','Lø'], 9 | months: ['Januar','Februar','Mars','April','Mai','Juni','Juli','August','September','Oktober','November','Desember'], 10 | monthsShort: ['Jan','Feb','Mar','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Des'], 11 | today: 'I dag', 12 | clear: 'Nullstill', 13 | weekStart: 1, 14 | format: 'dd.mm.yyyy' 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.pt-BR.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Brazilian translation for bootstrap-datepicker 3 | * Cauan Cabral 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['pt-BR'] = { 7 | days: ["Domingo", "Segunda", "Terça", "Quarta", "Quinta", "Sexta", "Sábado", "Domingo"], 8 | daysShort: ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb", "Dom"], 9 | daysMin: ["Do", "Se", "Te", "Qu", "Qu", "Se", "Sa", "Do"], 10 | months: ["Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"], 11 | monthsShort: ["Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"], 12 | today: "Hoje", 13 | clear: "Limpar" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.ro.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Romanian translation for bootstrap-datepicker 3 | * Cristian Vasile 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ro'] = { 7 | days: ["Duminică", "Luni", "Marţi", "Miercuri", "Joi", "Vineri", "Sâmbătă", "Duminică"], 8 | daysShort: ["Dum", "Lun", "Mar", "Mie", "Joi", "Vin", "Sâm", "Dum"], 9 | daysMin: ["Du", "Lu", "Ma", "Mi", "Jo", "Vi", "Sâ", "Du"], 10 | months: ["Ianuarie", "Februarie", "Martie", "Aprilie", "Mai", "Iunie", "Iulie", "August", "Septembrie", "Octombrie", "Noiembrie", "Decembrie"], 11 | monthsShort: ["Ian", "Feb", "Mar", "Apr", "Mai", "Iun", "Iul", "Aug", "Sep", "Oct", "Nov", "Dec"], 12 | today: "Astăzi", 13 | clear: "Șterge", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.rs-latin.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Serbian latin translation for bootstrap-datepicker 3 | * Bojan Milosavlević 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['rs-latin'] = { 7 | days: ["Nedelja","Ponedeljak", "Utorak", "Sreda", "Četvrtak", "Petak", "Subota", "Nedelja"], 8 | daysShort: ["Ned", "Pon", "Uto", "Sre", "Čet", "Pet", "Sub", "Ned"], 9 | daysMin: ["N", "Po", "U", "Sr", "Č", "Pe", "Su", "N"], 10 | months: ["Januar", "Februar", "Mart", "April", "Maj", "Jun", "Jul", "Avgust", "Septembar", "Oktobar", "Novembar", "Decembar"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Danas" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.rs.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Serbian cyrillic translation for bootstrap-datepicker 3 | * Bojan Milosavlević 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['rs'] = { 7 | days: ["Недеља","Понедељак", "Уторак", "Среда", "Четвртак", "Петак", "Субота", "Недеља"], 8 | daysShort: ["Нед", "Пон", "Уто", "Сре", "Чет", "Пет", "Суб", "Нед"], 9 | daysMin: ["Н", "По", "У", "Ср", "Ч", "Пе", "Су", "Н"], 10 | months: ["Јануар", "Фебруар", "Март", "Април", "Мај", "Јун", "Јул", "Август", "Септембар", "Октобар", "Новембар", "Децембар"], 11 | monthsShort: ["Јан", "Феб", "Мар", "Апр", "Мај", "Јун", "Јул", "Авг", "Сеп", "Окт", "Нов", "Дец"], 12 | today: "Данас" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.ru.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Russian translation for bootstrap-datepicker 3 | * Victor Taranenko 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ru'] = { 7 | days: ["Воскресенье", "Понедельник", "Вторник", "Среда", "Четверг", "Пятница", "Суббота", "Воскресенье"], 8 | daysShort: ["Вск", "Пнд", "Втр", "Срд", "Чтв", "Птн", "Суб", "Вск"], 9 | daysMin: ["Вс", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб", "Вс"], 10 | months: ["Январь", "Февраль", "Март", "Апрель", "Май", "Июнь", "Июль", "Август", "Сентябрь", "Октябрь", "Ноябрь", "Декабрь"], 11 | monthsShort: ["Янв", "Фев", "Мар", "Апр", "Май", "Июн", "Июл", "Авг", "Сен", "Окт", "Ноя", "Дек"], 12 | today: "Сегодня", 13 | weekStart: 1 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.sk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Slovak translation for bootstrap-datepicker 3 | * Marek Lichtner 4 | * Fixes by Michal Remiš 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates["sk"] = { 8 | days: ["Nedeľa", "Pondelok", "Utorok", "Streda", "Štvrtok", "Piatok", "Sobota", "Nedeľa"], 9 | daysShort: ["Ned", "Pon", "Uto", "Str", "Štv", "Pia", "Sob", "Ned"], 10 | daysMin: ["Ne", "Po", "Ut", "St", "Št", "Pia", "So", "Ne"], 11 | months: ["Január", "Február", "Marec", "Apríl", "Máj", "Jún", "Júl", "August", "September", "Október", "November", "December"], 12 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Máj", "Jún", "Júl", "Aug", "Sep", "Okt", "Nov", "Dec"], 13 | today: "Dnes" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.sl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Slovene translation for bootstrap-datepicker 3 | * Gregor Rudolf 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['sl'] = { 7 | days: ["Nedelja", "Ponedeljek", "Torek", "Sreda", "Četrtek", "Petek", "Sobota", "Nedelja"], 8 | daysShort: ["Ned", "Pon", "Tor", "Sre", "Čet", "Pet", "Sob", "Ned"], 9 | daysMin: ["Ne", "Po", "To", "Sr", "Če", "Pe", "So", "Ne"], 10 | months: ["Januar", "Februar", "Marec", "April", "Maj", "Junij", "Julij", "Avgust", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Danes" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.sq.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Albanian translation for bootstrap-datepicker 3 | * Tomor Pupovci 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['sq'] = { 7 | days: ["E Diel", "E Hënë", "E martē", "E mërkurë", "E Enjte", "E Premte", "E Shtunë", "E Diel"], 8 | daysShort: ["Die", "Hën", "Mar", "Mër", "Enj", "Pre", "Shtu", "Die"], 9 | daysMin: ["Di", "Hë", "Ma", "Më", "En", "Pr", "Sht", "Di"], 10 | months: ["Janar", "Shkurt", "Mars", "Prill", "Maj", "Qershor", "Korrik", "Gusht", "Shtator", "Tetor", "Nëntor", "Dhjetor"], 11 | monthsShort: ["Jan", "Shk", "Mar", "Pri", "Maj", "Qer", "Korr", "Gu", "Sht", "Tet", "Nën", "Dhjet"], 12 | today: "Sot" 13 | }; 14 | }(jQuery)); 15 | 16 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.sv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Swedish translation for bootstrap-datepicker 3 | * Patrik Ragnarsson 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['sv'] = { 7 | days: ["Söndag", "Måndag", "Tisdag", "Onsdag", "Torsdag", "Fredag", "Lördag", "Söndag"], 8 | daysShort: ["Sön", "Mån", "Tis", "Ons", "Tor", "Fre", "Lör", "Sön"], 9 | daysMin: ["Sö", "Må", "Ti", "On", "To", "Fr", "Lö", "Sö"], 10 | months: ["Januari", "Februari", "Mars", "April", "Maj", "Juni", "Juli", "Augusti", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Idag", 13 | format: "yyyy-mm-dd", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.th.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Thai translation for bootstrap-datepicker 3 | * Suchau Jiraprapot 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['th'] = { 7 | days: ["อาทิตย์", "จันทร์", "อังคาร", "พุธ", "พฤหัส", "ศุกร์", "เสาร์", "อาทิตย์"], 8 | daysShort: ["อา", "จ", "อ", "พ", "พฤ", "ศ", "ส", "อา"], 9 | daysMin: ["อา", "จ", "อ", "พ", "พฤ", "ศ", "ส", "อา"], 10 | months: ["มกราคม", "กุมภาพันธ์", "มีนาคม", "เมษายน", "พฤษภาคม", "มิถุนายน", "กรกฎาคม", "สิงหาคม", "กันยายน", "ตุลาคม", "พฤศจิกายน", "ธันวาคม"], 11 | monthsShort: ["ม.ค.", "ก.พ.", "มี.ค.", "เม.ย.", "พ.ค.", "มิ.ย.", "ก.ค.", "ส.ค.", "ก.ย.", "ต.ค.", "พ.ย.", "ธ.ค."], 12 | today: "วันนี้" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.tr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Turkish translation for bootstrap-datepicker 3 | * Serkan Algur 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['tr'] = { 7 | days: ["Pazar", "Pazartesi", "Salı", "Çarşamba", "Perşembe", "Cuma", "Cumartesi", "Pazar"], 8 | daysShort: ["Pz", "Pzt", "Sal", "Çrş", "Prş", "Cu", "Cts", "Pz"], 9 | daysMin: ["Pz", "Pzt", "Sa", "Çr", "Pr", "Cu", "Ct", "Pz"], 10 | months: ["Ocak", "Şubat", "Mart", "Nisan", "Mayıs", "Haziran", "Temmuz", "Ağustos", "Eylül", "Ekim", "Kasım", "Aralık"], 11 | monthsShort: ["Oca", "Şub", "Mar", "Nis", "May", "Haz", "Tem", "Ağu", "Eyl", "Eki", "Kas", "Ara"], 12 | today: "Bugün", 13 | format: "dd.mm.yyyy" 14 | }; 15 | }(jQuery)); 16 | 17 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.ua.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Ukrainian translation for bootstrap-datepicker 3 | * Igor Polynets 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ua'] = { 7 | days: ["Неділя", "Понеділок", "Вівторок", "Середа", "Четвер", "П'ятница", "Субота", "Неділя"], 8 | daysShort: ["Нед", "Пнд", "Втр", "Срд", "Чтв", "Птн", "Суб", "Нед"], 9 | daysMin: ["Нд", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб", "Нд"], 10 | months: ["Cічень", "Лютий", "Березень", "Квітень", "Травень", "Червень", "Липень", "Серпень", "Вересень", "Жовтень", "Листопад", "Грудень"], 11 | monthsShort: ["Січ", "Лют", "Бер", "Кві", "Тра", "Чер", "Лип", "Сер", "Вер", "Жов", "Лис", "Гру"], 12 | today: "Сьогодні", 13 | weekStart: 1 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.zh-CN.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Simplified Chinese translation for bootstrap-datepicker 3 | * Yuan Cheung 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['zh-CN'] = { 7 | days: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日"], 8 | daysShort: ["周日", "周一", "周二", "周三", "周四", "周五", "周六", "周日"], 9 | daysMin: ["日", "一", "二", "三", "四", "五", "六", "日"], 10 | months: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 11 | monthsShort: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 12 | today: "今日", 13 | format: "yyyy年mm月dd日", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/datepicker/locales/bootstrap-datepicker.zh-TW.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Traditional Chinese translation for bootstrap-datepicker 3 | * Rung-Sheng Jang 4 | * FrankWu Fix more appropriate use of Traditional Chinese habit 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['zh-TW'] = { 8 | days: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日"], 9 | daysShort: ["週日", "週一", "週二", "週三", "週四", "週五", "週六", "週日"], 10 | daysMin: ["日", "一", "二", "三", "四", "五", "六", "日"], 11 | months: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 12 | monthsShort: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 13 | today: "今天", 14 | format: "yyyy年mm月dd日", 15 | weekStart: 1 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/main/webapp/plugins/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/webapp/plugins/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/webapp/plugins/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/webapp/plugins/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/flat/aero.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/flat/aero@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/flat/blue.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/flat/blue@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/flat/flat.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/flat/flat@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/flat/green.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/flat/green@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/flat/grey.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/flat/grey@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/flat/orange.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/flat/orange@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/flat/pink.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/flat/pink@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/flat/purple.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/flat/purple@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/flat/red.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/flat/red@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/flat/yellow.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/flat/yellow@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/futurico/futurico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/futurico/futurico.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/futurico/futurico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/futurico/futurico@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/line/line.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/line/line@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/minimal/aero.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/minimal/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/minimal/aero@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/minimal/blue.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/minimal/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/minimal/blue@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/minimal/green.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/minimal/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/minimal/green@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/minimal/grey.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/minimal/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/minimal/grey@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/minimal/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/minimal/minimal.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/minimal/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/minimal/minimal@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/minimal/orange.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/minimal/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/minimal/orange@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/minimal/pink.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/minimal/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/minimal/pink@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/minimal/purple.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/minimal/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/minimal/purple@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/minimal/red.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/minimal/red@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/minimal/yellow.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/minimal/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/minimal/yellow@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/polaris/polaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/polaris/polaris.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/polaris/polaris@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/polaris/polaris@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/square/aero.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/square/aero@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/square/blue.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/square/blue@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/square/green.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/square/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/square/green@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/square/grey.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/square/grey@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/square/orange.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/square/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/square/orange@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/square/pink.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/square/pink@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/square/purple.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/square/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/square/purple@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/square/red.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/square/red@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/square/square.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/square/square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/square/square@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/square/yellow.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/iCheck/square/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/iCheck/square/yellow@2x.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/input-mask/phone-codes/readme.txt: -------------------------------------------------------------------------------- 1 | more phone masks can be found at https://github.com/andr-04/inputmask-multi -------------------------------------------------------------------------------- /src/main/webapp/plugins/ionslider/img/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/ionslider/img/sprite-skin-flat.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/ionslider/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/ionslider/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/examples/index.css: -------------------------------------------------------------------------------- 1 | .ke-content { 2 | font-size: 12px; 3 | background-color: #ffffff; 4 | } 5 | .ke-content table { 6 | border-collapse:collapse; 7 | } 8 | .red { 9 | color: white; 10 | background-color: red; 11 | } 12 | .green { 13 | color: white; 14 | background-color: green; 15 | } 16 | .yellow { 17 | color: white; 18 | background-color: yellow; 19 | } -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/examples/jquery-ui/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/examples/jquery-ui/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/examples/jquery-ui/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/examples/jquery-ui/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/examples/jquery-ui/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/examples/jquery-ui/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/examples/jquery-ui/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/examples/jquery-ui/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/examples/jquery-ui/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/examples/jquery-ui/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/examples/jquery-ui/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/examples/jquery-ui/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/examples/jquery-ui/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/examples/jquery-ui/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/examples/jquery-ui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/examples/jquery-ui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/examples/jquery-ui/css/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/examples/jquery-ui/css/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/examples/jquery-ui/css/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/examples/jquery-ui/css/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/examples/jquery-ui/css/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/examples/jquery-ui/css/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/examples/jquery-ui/css/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/examples/jquery-ui/css/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/examples/jquery-ui/css/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/examples/jquery-ui/css/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/jsp/README.txt: -------------------------------------------------------------------------------- 1 | KindEditor JSP 2 | 3 | 本JSP程序是演示程序,建议不要直接在实际项目中使用。 4 | 如果您确定直接使用本程序,使用之前请仔细确认相关安全设置。 5 | 6 | 使用方法: 7 | 8 | 1. 解压zip文件,将所有文件复制到Tomcat的webapps/kindeditor目录下。 9 | 10 | 2. 将kindeditor/jsp/lib目录下的3个jar文件复制到Tomcat的lib目录下,并重新启动Tomcat。 11 | * commons-fileupload-1.2.1.jar 12 | * commons-io-1.4.jar 13 | * json_simple-1.1.jar 14 | 15 | 3. 打开浏览器,输入http://localhost:[P0RT]/kindeditor/jsp/demo.jsp。 16 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/0.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/1.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/10.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/100.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/101.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/101.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/102.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/102.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/103.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/103.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/104.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/104.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/105.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/105.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/106.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/106.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/107.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/107.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/108.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/108.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/109.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/109.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/11.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/110.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/110.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/111.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/111.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/112.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/112.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/113.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/113.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/114.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/114.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/115.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/115.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/116.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/116.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/117.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/117.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/118.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/118.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/119.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/119.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/12.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/120.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/120.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/121.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/121.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/122.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/122.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/123.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/123.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/124.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/124.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/125.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/125.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/126.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/126.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/127.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/127.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/128.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/128.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/129.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/129.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/13.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/130.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/130.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/131.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/131.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/132.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/132.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/133.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/133.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/134.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/134.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/14.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/15.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/16.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/17.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/18.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/19.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/2.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/20.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/21.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/22.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/23.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/24.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/25.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/26.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/27.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/28.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/29.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/3.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/30.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/31.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/32.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/33.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/34.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/35.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/36.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/37.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/38.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/39.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/4.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/40.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/41.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/42.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/43.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/44.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/45.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/46.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/47.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/48.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/49.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/5.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/50.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/51.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/52.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/53.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/54.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/55.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/56.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/57.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/58.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/59.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/6.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/60.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/61.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/62.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/63.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/64.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/65.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/66.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/67.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/68.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/69.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/7.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/70.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/71.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/72.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/72.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/73.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/73.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/74.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/74.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/75.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/75.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/76.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/76.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/77.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/77.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/78.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/78.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/79.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/79.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/8.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/80.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/81.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/81.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/82.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/82.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/83.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/83.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/84.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/84.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/85.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/85.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/86.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/86.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/87.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/87.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/88.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/88.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/89.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/89.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/9.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/90.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/90.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/91.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/91.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/92.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/92.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/93.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/93.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/94.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/94.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/95.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/95.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/96.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/96.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/97.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/97.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/98.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/98.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/99.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/99.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/static.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/emoticons/images/static.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/filemanager/images/file-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/filemanager/images/file-16.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/filemanager/images/file-64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/filemanager/images/file-64.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/filemanager/images/folder-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/filemanager/images/folder-16.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/filemanager/images/folder-64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/filemanager/images/folder-64.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/filemanager/images/go-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/filemanager/images/go-up.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/image/images/align_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/image/images/align_left.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/image/images/align_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/image/images/align_right.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/image/images/align_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/image/images/align_top.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/image/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/image/images/refresh.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/multiimage/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/multiimage/images/image.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/multiimage/images/select-files-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/multiimage/images/select-files-en.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/multiimage/images/select-files-zh_CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/multiimage/images/select-files-zh_CN.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/multiimage/images/swfupload.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/plugins/multiimage/images/swfupload.swf -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/template/html/1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

8 | 在此处输入标题 9 |

10 |

11 | 在此处输入内容 12 |

13 | 14 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/template/html/2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

8 | 标题 9 |

10 | 11 | 12 | 13 | 16 | 19 | 20 | 21 | 24 | 27 | 28 | 29 | 32 | 35 | 36 | 37 |
14 |

标题1

15 |
17 |

标题1

18 |
22 | 内容1 23 | 25 | 内容2 26 |
30 | 内容3 31 | 33 | 内容4 34 |
38 |

39 | 表格说明 40 |

41 | 42 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/plugins/template/html/3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

8 | 在此处输入内容 9 |

10 |
    11 |
  1. 12 | 描述1 13 |
  2. 14 |
  3. 15 | 描述2 16 |
  4. 17 |
  5. 18 | 描述3 19 |
  6. 20 |
21 |

22 | 在此处输入内容 23 |

24 |
    25 |
  • 26 | 描述1 27 |
  • 28 |
  • 29 | 描述2 30 |
  • 31 |
  • 32 | 描述3 33 |
  • 34 |
35 | 36 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/themes/common/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/themes/common/anchor.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/themes/common/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/themes/common/blank.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/themes/common/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/themes/common/flash.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/themes/common/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/themes/common/loading.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/themes/common/media.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/themes/common/media.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/themes/common/rm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/themes/common/rm.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/themes/default/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/themes/default/background.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/themes/default/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/themes/default/default.png -------------------------------------------------------------------------------- /src/main/webapp/plugins/kindeditor-4.1.10/themes/qq/editor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHENFENG13/ssm-cluster/c60e5c8cea26040ec8d0ec10315a94c8ae6932ce/src/main/webapp/plugins/kindeditor-4.1.10/themes/qq/editor.gif -------------------------------------------------------------------------------- /src/main/webapp/plugins/morris/morris.css: -------------------------------------------------------------------------------- 1 | .morris-hover{position:absolute;z-index:1090;}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#f9f9f9;background:rgba(0, 0, 0, 0.8);border:solid 2px rgba(0, 0, 0, 0.9);font-weight: 600;font-size:14px;text-align:center;}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0;} 2 | .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0;} 3 | -------------------------------------------------------------------------------- /src/main/webapp/plugins/select2/i18n/az.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/az",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return t+" simvol silin"},inputTooShort:function(e){var t=e.minimum-e.input.length;return t+" simvol daxil edin"},loadingMore:function(){return"Daha çox nəticə yüklənir…"},maximumSelected:function(e){return"Sadəcə "+e.maximum+" element seçə bilərsiniz"},noResults:function(){return"Nəticə tapılmadı"},searching:function(){return"Axtarılır…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /src/main/webapp/plugins/select2/i18n/bg.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/bg",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Моля въведете с "+t+" по-малко символ";return t>1&&(n+="a"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Моля въведете още "+t+" символ";return t>1&&(n+="a"),n},loadingMore:function(){return"Зареждат се още…"},maximumSelected:function(e){var t="Можете да направите до "+e.maximum+" ";return e.maximum>1?t+="избора":t+="избор",t},noResults:function(){return"Няма намерени съвпадения"},searching:function(){return"Търсене…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /src/main/webapp/plugins/select2/i18n/de.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/de",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Bitte "+t+" Zeichen weniger eingeben"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Bitte "+t+" Zeichen mehr eingeben"},loadingMore:function(){return"Lade mehr Ergebnisse…"},maximumSelected:function(e){var t="Sie können nur "+e.maximum+" Eintr";return e.maximum===1?t+="ag":t+="äge",t+=" auswählen",t},noResults:function(){return"Keine Übereinstimmungen gefunden"},searching:function(){return"Suche…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /src/main/webapp/plugins/select2/i18n/et.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/et",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" vähem",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" rohkem",n},loadingMore:function(){return"Laen tulemusi…"},maximumSelected:function(e){var t="Saad vaid "+e.maximum+" tulemus";return e.maximum==1?t+="e":t+="t",t+=" valida",t},noResults:function(){return"Tulemused puuduvad"},searching:function(){return"Otsin…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /src/main/webapp/plugins/select2/i18n/fi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Ole hyvä ja anna "+t+" merkkiä vähemmän"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Ole hyvä ja anna "+t+" merkkiä lisää"},loadingMore:function(){return"Ladataan lisää tuloksia…"},maximumSelected:function(e){return"Voit valita ainoastaan "+e.maximum+" kpl"},noResults:function(){return"Ei tuloksia"},searching:function(){}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /src/main/webapp/plugins/select2/i18n/gl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/gl",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Engada ";return t===1?n+="un carácter":n+=t+" caracteres",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Elimine ";return t===1?n+="un carácter":n+=t+" caracteres",n},loadingMore:function(){return"Cargando máis resultados…"},maximumSelected:function(e){var t="Só pode ";return e.maximum===1?t+="un elemento":t+=e.maximum+" elementos",t},noResults:function(){return"Non se atoparon resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /src/main/webapp/plugins/select2/i18n/he.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/he",[],function(){return{errorLoading:function(){return"התוצאות לא נטענו בהלכה"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="נא למחוק "+t+" תווים";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="נא להכניס "+t+" תווים או יותר";return n},loadingMore:function(){return"טען תוצאות נוספות…"},maximumSelected:function(e){var t="באפשרותך לבחור רק "+e.maximum+" פריטים";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"לא נמצאו תוצאות"},searching:function(){return"מחפש…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /src/main/webapp/plugins/select2/i18n/hr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hr",[],function(){function e(e){var t=" "+e+" znak";return e%10<5&&e%10>0&&(e%100<5||e%100>19)?e%10>1&&(t+="a"):t+="ova",t}return{inputTooLong:function(t){var n=t.input.length-t.maximum;return"Unesite "+e(n)},inputTooShort:function(t){var n=t.minimum-t.input.length;return"Unesite još "+e(n)},loadingMore:function(){return"Učitavanje rezultata…"},maximumSelected:function(e){return"Maksimalan broj odabranih stavki je "+e.maximum},noResults:function(){return"Nema rezultata"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /src/main/webapp/plugins/select2/i18n/hu.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Túl hosszú. "+t+" karakterrel több, mint kellene."},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Túl rövid. Még "+t+" karakter hiányzik."},loadingMore:function(){return"Töltés…"},maximumSelected:function(e){return"Csak "+e.maximum+" elemet lehet kiválasztani."},noResults:function(){return"Nincs találat."},searching:function(){return"Keresés…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /src/main/webapp/plugins/select2/i18n/id.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/id",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Hapuskan "+t+" huruf"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Masukkan "+t+" huruf lagi"},loadingMore:function(){return"Mengambil data…"},maximumSelected:function(e){return"Anda hanya dapat memilih "+e.maximum+" pilihan"},noResults:function(){return"Tidak ada data yang sesuai"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /src/main/webapp/plugins/select2/i18n/is.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/is",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vinsamlegast styttið texta um "+t+" staf";return t<=1?n:n+"i"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vinsamlegast skrifið "+t+" staf";return t>1&&(n+="i"),n+=" í viðbót",n},loadingMore:function(){return"Sæki fleiri niðurstöður…"},maximumSelected:function(e){return"Þú getur aðeins valið "+e.maximum+" atriði"},noResults:function(){return"Ekkert fannst"},searching:function(){return"Leita…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /src/main/webapp/plugins/select2/i18n/ko.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ko",[],function(){return{errorLoading:function(){return"결과를 불러올 수 없습니다."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="너무 깁니다. "+t+" 글자 지워주세요.";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="너무 짧습니다. "+t+" 글자 더 입력해주세요.";return n},loadingMore:function(){return"불러오는 중…"},maximumSelected:function(e){var t="최대 "+e.maximum+"개까지만 선택 가능합니다.";return t},noResults:function(){return"결과가 없습니다."},searching:function(){return"검색 중…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /src/main/webapp/plugins/select2/i18n/nb.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nb",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Vennligst fjern "+t+" tegn"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vennligst skriv inn ";return t>1?n+=" flere tegn":n+=" tegn til",n},loadingMore:function(){return"Laster flere resultater…"},maximumSelected:function(e){return"Du kan velge maks "+e.maximum+" elementer"},noResults:function(){return"Ingen treff"},searching:function(){return"Søker…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /src/main/webapp/plugins/select2/i18n/sv.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sv",[],function(){return{errorLoading:function(){return"Resultat kunde inte laddas."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vänligen sudda ut "+t+" tecken";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vänligen skriv in "+t+" eller fler tecken";return n},loadingMore:function(){return"Laddar fler resultat…"},maximumSelected:function(e){var t="Du kan max välja "+e.maximum+" element";return t},noResults:function(){return"Inga träffar"},searching:function(){return"Söker…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /src/main/webapp/plugins/select2/i18n/th.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/th",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="โปรดลบออก "+t+" ตัวอักษร";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="โปรดพิมพ์เพิ่มอีก "+t+" ตัวอักษร";return n},loadingMore:function(){return"กำลังค้นข้อมูลเพิ่ม…"},maximumSelected:function(e){var t="คุณสามารถเลือกได้ไม่เกิน "+e.maximum+" รายการ";return t},noResults:function(){return"ม่พบข้อมูล"},searching:function(){return"กำลังค้นข้อมูล…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /src/main/webapp/plugins/select2/i18n/tr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/tr",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" karakter daha girmelisiniz";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="En az "+t+" karakter daha girmelisiniz";return n},loadingMore:function(){return"Daha fazla…"},maximumSelected:function(e){var t="Sadece "+e.maximum+" seçim yapabilirsiniz";return t},noResults:function(){return"Sonuç bulunamadı"},searching:function(){return"Aranıyor…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /src/main/webapp/plugins/select2/i18n/vi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/vi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vui lòng nhập ít hơn "+t+" ký tự";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vui lòng nhập nhiều hơn "+t+' ký tự"';return n},loadingMore:function(){return"Đang lấy thêm kết quả…"},maximumSelected:function(e){var t="Chỉ có thể chọn được "+e.maximum+" lựa chọn";return t},noResults:function(){return"Không tìm thấy kết quả"},searching:function(){return"Đang tìm…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /src/main/webapp/plugins/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-CN",[],function(){return{errorLoading:function(){return"无法载入结果。"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="请删除"+t+"个字符";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="请再输入至少"+t+"个字符";return n},loadingMore:function(){return"载入更多结果…"},maximumSelected:function(e){var t="最多只能选择"+e.maximum+"个项目";return t},noResults:function(){return"未找到结果"},searching:function(){return"搜索中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /src/main/webapp/plugins/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.0 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-TW",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="請刪掉"+t+"個字元";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="請再輸入"+t+"個字元";return n},loadingMore:function(){return"載入中…"},maximumSelected:function(e){var t="你只能選擇最多"+e.maximum+"項";return t},noResults:function(){return"沒有找到相符的項目"},searching:function(){return"搜尋中…"}}}),{define:e.define,require:e.require}})(); --------------------------------------------------------------------------------