├── KBMS.iml ├── README.md ├── pom.xml ├── red5-server └── log │ └── oflademo.log └── src ├── main ├── java │ └── com │ │ ├── generator │ │ ├── dao │ │ │ ├── AssociationdocMapper.java │ │ │ ├── BtypeMapper.java │ │ │ ├── CommentsMapper.java │ │ │ ├── DocMapper.java │ │ │ ├── DocTagMapper.java │ │ │ ├── FileMapper.java │ │ │ ├── FiledocMapper.java │ │ │ ├── GroupMapper.java │ │ │ ├── KGroupMapper.java │ │ │ ├── QuestionMapper.java │ │ │ ├── ReplysMapper.java │ │ │ ├── StypeMapper.java │ │ │ ├── TagsMapper.java │ │ │ ├── UserGroupMapper.java │ │ │ ├── UserMapper.java │ │ │ └── ZanMapper.java │ │ ├── pojo │ │ │ ├── Associationdoc.java │ │ │ ├── Btype.java │ │ │ ├── Comments.java │ │ │ ├── Doc.java │ │ │ ├── DocTag.java │ │ │ ├── File.java │ │ │ ├── Filedoc.java │ │ │ ├── Group.java │ │ │ ├── KGroup.java │ │ │ ├── Question.java │ │ │ ├── Replys.java │ │ │ ├── Stype.java │ │ │ ├── Tags.java │ │ │ ├── User.java │ │ │ ├── UserGroup.java │ │ │ └── Zan.java │ │ └── xml │ │ │ ├── AssociationdocMapper.xml │ │ │ ├── BtypeMapper.xml │ │ │ ├── CommentsMapper.xml │ │ │ ├── DocMapper.xml │ │ │ ├── DocTagMapper.xml │ │ │ ├── FileMapper.xml │ │ │ ├── FiledocMapper.xml │ │ │ ├── GroupMapper.xml │ │ │ ├── KGroupMapper.xml │ │ │ ├── QuestionMapper.xml │ │ │ ├── ReplysMapper.xml │ │ │ ├── StypeMapper.xml │ │ │ ├── TagsMapper.xml │ │ │ ├── UserGroupMapper.xml │ │ │ ├── UserMapper.xml │ │ │ └── ZanMapper.xml │ │ └── kbms_module │ │ ├── controller │ │ ├── DocController.java │ │ ├── LoginController.java │ │ ├── LuceneController.java │ │ ├── MySendMailThread.java │ │ ├── UploadController.java │ │ ├── UserController.java │ │ ├── groupController.java │ │ ├── homeController.java │ │ ├── indexController.java │ │ └── questionController.java │ │ ├── dao │ │ ├── AssociationdocMapper.java │ │ ├── BtypeMapper.java │ │ ├── CommentsMapper.java │ │ ├── DocDao.java │ │ ├── DocMapper.java │ │ ├── DocTagMapper.java │ │ ├── FiledocMapper.java │ │ ├── GroupMapper.java │ │ ├── QuestionMapper.java │ │ ├── ReplysMapper.java │ │ ├── StypeMapper.java │ │ ├── TagsMapper.java │ │ ├── UserDao.java │ │ └── UserMapper.java │ │ ├── enums │ │ └── webConstant.java │ │ ├── exception │ │ └── LoginUserNoExistException.java │ │ ├── mapper │ │ ├── BtypeMapper.java │ │ ├── LuceneDao.java │ │ ├── LuceneDaoTest.java │ │ └── UserMapper.java │ │ ├── pojo │ │ ├── AccountProfile.java │ │ ├── Btype.java │ │ ├── Comments.java │ │ ├── Doc.java │ │ ├── File.java │ │ ├── Filedoc.java │ │ ├── Group.java │ │ ├── LuceneDemo.java │ │ ├── Question.java │ │ ├── Replys.java │ │ ├── Score.java │ │ ├── Stype.java │ │ ├── Tags.java │ │ ├── User.java │ │ └── Zan.java │ │ ├── service │ │ ├── CommentsService.java │ │ ├── DocService.java │ │ ├── GroupService.java │ │ ├── Impl │ │ │ ├── CommentsServiceImpl.java │ │ │ ├── DocServiceImpl.java │ │ │ ├── GroupServiceImpl.java │ │ │ ├── LuceneServiceImplTwo.java │ │ │ ├── QuestionServiceImpl.java │ │ │ ├── TagServiceImpl.java │ │ │ ├── UserServiceImpl.java │ │ │ └── ZanServiceImpl.java │ │ ├── LuceneDao.java │ │ ├── LuceneService.java │ │ ├── QuestionService.java │ │ ├── TagService.java │ │ └── UserService.java │ │ ├── shiro │ │ ├── authc │ │ │ └── AccountAuthenticationInfo.java │ │ └── realm │ │ │ └── MyAccountrealm.java │ │ ├── test │ │ └── luncetest.java │ │ └── util │ │ ├── StringValueUtil.java │ │ ├── TextRankUtil.java │ │ └── ThumbnailUtils.java ├── resources │ ├── hanlp.properties │ ├── log4j.properties │ ├── logback.xml │ ├── mapper │ │ ├── AssociationdocMapper.xml │ │ ├── BtypeMapper.xml │ │ ├── CommentsMapper.xml │ │ ├── DocMapper.xml │ │ ├── DocTagMapper.xml │ │ ├── FileMapper.xml │ │ ├── FiledocMapper.xml │ │ ├── GroupMapper.xml │ │ ├── IUserMapper.xml │ │ ├── QuestionMapper.xml │ │ ├── TagsMapper.xml │ │ └── UserMapper.xml │ ├── mybatis-generator-config.xml │ ├── mybatis │ │ └── mybatis-config.xml │ ├── properties.jdbc.properties │ ├── properties │ │ └── jdbc.properties │ ├── rebel.xml │ └── spring │ │ ├── applicationContext-dataSource.xml │ │ ├── applicationContext-mybatis.xml │ │ ├── applicationContext-transaction.xml │ │ ├── applicationContext.xml │ │ ├── spring-mvc.xml │ │ └── tapplicationContext-shiro.xml └── webapp │ ├── 248差评.png │ ├── WEB-INF │ ├── lib │ │ ├── IKAnalyzer2012FF_u1.jar │ │ ├── dom4j-1.6.1.jar │ │ ├── jstl-1.2.jar │ │ ├── junit-3.8.1.jar │ │ ├── lucene-analyzers-common-4.4.0.jar │ │ ├── lucene-core-4.4.0.jar │ │ ├── lucene-highlighter-4.4.0.jar │ │ ├── lucene-memory-4.4.0.jar │ │ └── lucene-queryparser-4.4.0.jar │ ├── view │ │ ├── common │ │ │ ├── detailType.jsp │ │ │ ├── footer.jsp │ │ │ ├── h.jsp │ │ │ ├── head.jsp │ │ │ ├── rocket.jsp │ │ │ ├── searchList.jsp │ │ │ └── tagPage.jsp │ │ ├── file │ │ │ └── content.jsp │ │ ├── home │ │ │ ├── index.jsp │ │ │ └── public.jsp │ │ ├── hx_jsp │ │ │ ├── createGroup.jsp │ │ │ ├── createQuestion.jsp │ │ │ ├── docfilepage.jsp │ │ │ ├── groupContent.jsp │ │ │ ├── knowledgeGroup.jsp │ │ │ ├── knowledgeQuestionList.jsp │ │ │ └── questionContent.jsp │ │ ├── login.jsp │ │ ├── upload │ │ │ ├── createDoc.jsp │ │ │ └── createResources.jsp │ │ ├── user │ │ │ ├── activeResult.jsp │ │ │ ├── headimg.jsp │ │ │ ├── loginRegister.jsp │ │ │ ├── loginRegistera.jsp │ │ │ ├── loginRegisterx.jsp │ │ │ └── rego.jsp │ │ └── view │ │ │ ├── docContent.jsp │ │ │ ├── docContent1.jsp │ │ │ └── mySpace_docinfo.jsp │ ├── view1 │ │ ├── common │ │ │ ├── detailType.jsp │ │ │ ├── head.jsp │ │ │ └── tagPage.jsp │ │ ├── home │ │ │ └── index.jsp │ │ ├── login.jsp │ │ ├── upload │ │ │ └── createResources.jsp │ │ ├── user │ │ │ ├── activeResult.jsp │ │ │ ├── headimg.jsp │ │ │ ├── loginRegister.jsp │ │ │ ├── loginRegistera.jsp │ │ │ ├── loginRegisterx.jsp │ │ │ └── rego.jsp │ │ └── view │ │ │ └── docContent1.jsp │ └── web.xml │ ├── boy.png │ ├── index.jsp │ ├── ll.jsp │ ├── resource │ ├── amazeui │ │ ├── css │ │ │ ├── admin.css │ │ │ ├── amazeui.css │ │ │ ├── amazeui.flat.css │ │ │ ├── amazeui.flat.min.css │ │ │ ├── amazeui.min.css │ │ │ └── app.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── i │ │ │ ├── app-icon72x72@2x.png │ │ │ ├── examples │ │ │ │ ├── admin-chrome.png │ │ │ │ ├── admin-firefox.png │ │ │ │ ├── admin-ie.png │ │ │ │ ├── admin-opera.png │ │ │ │ ├── admin-safari.png │ │ │ │ ├── adminPage.png │ │ │ │ ├── blogPage.png │ │ │ │ ├── landing.png │ │ │ │ ├── landingPage.png │ │ │ │ ├── loginPage.png │ │ │ │ └── sidebarPage.png │ │ │ ├── favicon.png │ │ │ └── startup-640x1096.png │ │ └── js │ │ │ ├── amazeui.ie8polyfill.js │ │ │ ├── amazeui.ie8polyfill.min.js │ │ │ ├── amazeui.js │ │ │ ├── amazeui.min.js │ │ │ ├── amazeui.widgets.helper.js │ │ │ ├── amazeui.widgets.helper.min.js │ │ │ ├── app.js │ │ │ ├── handlebars.min.js │ │ │ ├── jquery.cookie.min.js │ │ │ └── jquery.min.js │ ├── ckplayer │ │ ├── cklogo.png │ │ ├── ckplayer.js │ │ ├── ckplayer.swf │ │ ├── ckplayer.xml │ │ ├── language.xml │ │ ├── related.xml │ │ ├── share.xml │ │ ├── share │ │ │ ├── feixin.png │ │ │ ├── google.png │ │ │ ├── kaixin001.png │ │ │ ├── msn.png │ │ │ ├── qq.png │ │ │ ├── qq2.png │ │ │ ├── qzone.png │ │ │ ├── rr.png │ │ │ ├── sina.png │ │ │ ├── sohu.png │ │ │ └── tianya.png │ │ ├── style.swf │ │ └── 画板 2.png │ ├── ffmpeg │ │ ├── drv43260.dll │ │ ├── ffmpeg.exe │ │ ├── ffplay.exe │ │ ├── mencoder.exe │ │ ├── pncrt.dll │ │ └── pthreadGC2.dll │ ├── image │ │ ├── bitbug_favicon.ico │ │ ├── bitbug_favicon_3.ico │ │ ├── educational.png │ │ └── help.png │ ├── script │ │ ├── ._file-view.js4282457421280719477.tmp │ │ ├── ._file-view.js602220794557420745.tmp │ │ ├── ._file-view.js6760950377400576792.tmp │ │ ├── common.js │ │ ├── echarts.common.min.js │ │ ├── echarts.min.js │ │ ├── file-view.js │ │ └── pdfobject.min.js │ └── ueditor │ │ ├── jsp │ │ ├── config.json │ │ ├── controller.jsp │ │ └── lib │ │ │ ├── ._uedtior-soklib-1.0.jar2093711396755639643.tmp │ │ │ ├── commons-codec-1.9.jar │ │ │ ├── json.jar │ │ │ ├── uedtior-soklib-1.0.jar │ │ │ └── uedtior-soklib-1.1.jar │ │ └── lang │ │ └── en │ │ ├── en.js │ │ └── images │ │ ├── addimage.png │ │ ├── alldeletebtnupskin.png │ │ ├── background.png │ │ ├── button.png │ │ ├── copy.png │ │ ├── deletedisable.png │ │ ├── deleteenable.png │ │ ├── listbackground.png │ │ ├── localimage.png │ │ ├── music.png │ │ ├── rotateleftdisable.png │ │ ├── rotateleftenable.png │ │ ├── rotaterightenable.png │ │ └── upload.png │ ├── statics │ ├── .idea │ │ ├── knowAll.iml │ │ ├── modules.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── UEditor │ │ └── third-party │ │ │ ├── SyntaxHighlighter │ │ │ ├── shCore.js │ │ │ └── shCoreDefault.css │ │ │ ├── highcharts │ │ │ ├── adapters │ │ │ │ ├── mootools-adapter.js │ │ │ │ ├── mootools-adapter.src.js │ │ │ │ ├── prototype-adapter.js │ │ │ │ ├── prototype-adapter.src.js │ │ │ │ ├── standalone-framework.js │ │ │ │ └── standalone-framework.src.js │ │ │ └── modules │ │ │ │ ├── annotations.js │ │ │ │ ├── canvas-tools.js │ │ │ │ ├── canvas-tools.src.js │ │ │ │ ├── data.src.js │ │ │ │ ├── exporting.src.js │ │ │ │ ├── heatmap.src.js │ │ │ │ └── no-data-to-display.src.js │ │ │ ├── snapscreen │ │ │ └── UEditorSnapscreen.exe │ │ │ ├── webuploader │ │ │ ├── Uploader.swf │ │ │ ├── webuploader.css │ │ │ ├── webuploader.custom.js │ │ │ ├── webuploader.custom.min.js │ │ │ ├── webuploader.flashonly.js │ │ │ ├── webuploader.flashonly.min.js │ │ │ ├── webuploader.html5only.js │ │ │ ├── webuploader.html5only.min.js │ │ │ ├── webuploader.js │ │ │ ├── webuploader.min.js │ │ │ ├── webuploader.withoutimage.js │ │ │ └── webuploader.withoutimage.min.js │ │ │ └── zeroclipboard │ │ │ ├── ZeroClipboard.js │ │ │ ├── ZeroClipboard.min.js │ │ │ └── ZeroClipboard.swf │ ├── admin │ │ ├── .idea │ │ │ ├── .name │ │ │ ├── admin_new.iml │ │ │ ├── encodings.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── scopes │ │ │ │ └── scope_settings.xml │ │ │ ├── vcs.xml │ │ │ └── workspace.xml │ │ ├── admin-cate.html │ │ ├── admin-list.html │ │ ├── banner-list.html │ │ ├── comment-list.html │ │ ├── echart.html │ │ ├── expert-manager.html │ │ ├── group-doc.html │ │ ├── group-user.html │ │ ├── index.html │ │ ├── look-group.html │ │ ├── member-kiss.html │ │ ├── member-password.html │ │ ├── question-add.html │ │ ├── question-del.html │ │ ├── questionClosely.html │ │ ├── setting-category.html │ │ └── sys-set.html │ ├── font-awesome-4.7.0 │ │ └── font-awesome-4.7.0 │ │ │ ├── HELP-US-OUT.txt │ │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── screen-reader.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ ├── img │ │ ├── 65acb3aa46193bc0a19acf4a0bed12f0.jpg │ │ ├── 820格式_音频mp3.png │ │ ├── c14a56ae7f7d0b3313288516b19ad74c.jpg │ │ ├── cd-icons.svg │ │ ├── dianzan.png │ │ ├── fd5dc70f7bf53954e1a97d8160878266.jpg │ │ ├── group.png │ │ ├── hibernate-release-5.3.0.CR1.zip.lrgtswp.partial │ │ ├── loading.svg │ │ ├── picture.png │ │ ├── psd.svg │ │ ├── unknown.svg │ │ ├── yuhangyuan.jpg │ │ ├── zhixiang.png │ │ ├── zip.svg │ │ └── 数据统计.png │ └── layui-master │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ ├── css │ │ │ ├── layui.css │ │ │ ├── layui.mobile.css │ │ │ └── modules │ │ │ │ ├── code.css │ │ │ │ ├── laydate │ │ │ │ └── default │ │ │ │ │ └── laydate.css │ │ │ │ └── layer │ │ │ │ └── default │ │ │ │ ├── icon-ext.png │ │ │ │ ├── icon.png │ │ │ │ ├── layer.css │ │ │ │ ├── loading-0.gif │ │ │ │ ├── loading-1.gif │ │ │ │ └── loading-2.gif │ │ ├── font │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.svg │ │ │ ├── iconfont.ttf │ │ │ └── iconfont.woff │ │ ├── images │ │ │ └── face │ │ │ │ ├── 11.gif │ │ │ │ ├── 12.gif │ │ │ │ ├── 21.gif │ │ │ │ ├── 29.gif │ │ │ │ ├── 47.gif │ │ │ │ ├── 5.gif │ │ │ │ ├── 6.gif │ │ │ │ ├── 64.gif │ │ │ │ └── 7.gif │ │ ├── lay │ │ │ └── modules │ │ │ │ ├── carousel.js │ │ │ │ ├── code.js │ │ │ │ ├── colorpicker.js │ │ │ │ ├── element.js │ │ │ │ ├── flow.js │ │ │ │ ├── form.js │ │ │ │ ├── jquery.js │ │ │ │ ├── laydate.js │ │ │ │ ├── layedit.js │ │ │ │ ├── layer.js │ │ │ │ ├── laypage.js │ │ │ │ ├── laytpl.js │ │ │ │ ├── mobile.js │ │ │ │ ├── rate.js │ │ │ │ ├── slider.js │ │ │ │ ├── table.js │ │ │ │ ├── tree.js │ │ │ │ ├── upload.js │ │ │ │ └── util.js │ │ ├── layui.all.js │ │ └── layui.js │ │ ├── doc │ │ ├── Git仓库.url │ │ ├── README.md │ │ ├── 在线演示.url │ │ └── 快速上手.url │ │ ├── gulpfile.js │ │ ├── home.html │ │ ├── karma.conf.base.js │ │ ├── karma.conf.sauce.js │ │ ├── karma.conf.unit.js │ │ ├── package.json │ │ └── src │ │ ├── css │ │ └── layui.mobile.css │ │ ├── font │ │ ├── iconfont.eot │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ └── iconfont.woff │ │ ├── home.html │ │ ├── images │ │ └── face │ │ │ ├── 0.gif │ │ │ ├── 1.gif │ │ │ ├── 10.gif │ │ │ ├── 11.gif │ │ │ ├── 12.gif │ │ │ ├── 13.gif │ │ │ ├── 14.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 │ │ │ ├── 7.gif │ │ │ ├── 70.gif │ │ │ ├── 71.gif │ │ │ ├── 8.gif │ │ │ └── 9.gif │ │ ├── lay │ │ └── modules │ │ │ ├── carousel.js │ │ │ ├── colorpicker.js │ │ │ ├── flow.js │ │ │ ├── form.js │ │ │ ├── jquery.js │ │ │ ├── laydate.js │ │ │ ├── layer.js │ │ │ ├── laypage.js │ │ │ ├── laytpl.js │ │ │ ├── mobile │ │ │ ├── layer-mobile.js │ │ │ ├── layim-mobile-open.js │ │ │ ├── upload-mobile.js │ │ │ └── zepto.js │ │ │ ├── rate.js │ │ │ ├── table.js │ │ │ ├── upload.js │ │ │ └── util.js │ │ └── layui.js │ ├── text │ ├── img │ │ ├── bgLogin.jpg │ │ ├── consoleIcon.png │ │ ├── fileicon │ │ │ ├── AC3.png │ │ │ ├── ACE.png │ │ │ ├── ADE.png │ │ │ ├── ADP.png │ │ │ ├── AI.png │ │ │ ├── AIFF.png │ │ │ ├── AU.png │ │ │ ├── AVI.png │ │ │ ├── BAT.png │ │ │ ├── BIN.png │ │ │ ├── BMP.png │ │ │ ├── BUP.png │ │ │ ├── CAB.png │ │ │ ├── CAT.png │ │ │ ├── CHM.png │ │ │ ├── CSS.png │ │ │ ├── CUE.png │ │ │ ├── DAT.png │ │ │ ├── DCR.png │ │ │ ├── DER.png │ │ │ ├── DIC.png │ │ │ ├── DIVX.png │ │ │ ├── DIZ.png │ │ │ ├── DLL.png │ │ │ ├── DOC.png │ │ │ ├── DOCX.png │ │ │ ├── DOS.png │ │ │ ├── DVD.png │ │ │ ├── DWG.png │ │ │ ├── DWT.png │ │ │ ├── Default.png │ │ │ ├── EMF.png │ │ │ ├── EXC.png │ │ │ ├── FLV.png │ │ │ ├── FON.png │ │ │ ├── GIF.png │ │ │ ├── HLP.png │ │ │ ├── HTML.png │ │ │ ├── IFO.png │ │ │ ├── INF.png │ │ │ ├── INI.png │ │ │ ├── INS.png │ │ │ ├── IP.png │ │ │ ├── ISO.png │ │ │ ├── ISP.png │ │ │ ├── JAVA.png │ │ │ ├── JFIF.png │ │ │ ├── JPEG.png │ │ │ ├── JPG.png │ │ │ ├── LOG.png │ │ │ ├── M4A.png │ │ │ ├── MID.png │ │ │ ├── MMF.png │ │ │ ├── MMM.png │ │ │ ├── MOV.png │ │ │ ├── MOVIE.png │ │ │ ├── MP2.png │ │ │ ├── MP2V.png │ │ │ ├── MP3.png │ │ │ ├── MP4.png │ │ │ ├── MPE.png │ │ │ ├── MPEG.png │ │ │ ├── MPG.png │ │ │ ├── MPV2.png │ │ │ ├── NFO.png │ │ │ ├── PDD.png │ │ │ ├── PDF.png │ │ │ ├── PHP.png │ │ │ ├── PNG.png │ │ │ ├── PPT.png │ │ │ ├── PPTX.png │ │ │ ├── PSD.png │ │ │ ├── RAR.png │ │ │ ├── REG.png │ │ │ ├── RTF.png │ │ │ ├── SCP.png │ │ │ ├── THEME.png │ │ │ ├── TIF.png │ │ │ ├── TIFF.png │ │ │ ├── TLB.png │ │ │ ├── TTF.png │ │ │ ├── TXT.png │ │ │ ├── UIS.png │ │ │ ├── URL.png │ │ │ ├── VBS.png │ │ │ ├── VCR.png │ │ │ ├── VOB.png │ │ │ ├── WAV.png │ │ │ ├── WBA.png │ │ │ ├── WEB.png │ │ │ ├── WMA.png │ │ │ ├── WMV.png │ │ │ ├── WPL.png │ │ │ ├── WRI.png │ │ │ ├── WTX.png │ │ │ ├── XLS.png │ │ │ ├── XLSX.png │ │ │ ├── XML.png │ │ │ ├── XSL.png │ │ │ ├── ZAP.png │ │ │ └── ZIP.png │ │ ├── head_logo.png │ │ ├── headback.png │ │ ├── homelogo.png │ │ ├── loading.gif │ │ ├── logo.png │ │ ├── none.png │ │ ├── photo.png │ │ ├── userinfo.png │ │ └── wda.png │ └── lib │ │ ├── bootstrap │ │ ├── 3.0.3 │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ └── respond.min.js │ │ └── kindEditor │ │ ├── jsp │ │ ├── README.txt │ │ ├── demo.jsp │ │ ├── file_manager_json.jsp │ │ ├── lib │ │ │ ├── commons-fileupload-1.2.1.jar │ │ │ ├── commons-io-1.4.jar │ │ │ └── json_simple-1.1.jar │ │ └── upload_json.jsp │ │ ├── kindeditor-all-min.js │ │ ├── kindeditor-all.js │ │ ├── lang │ │ ├── ar.js │ │ ├── en.js │ │ ├── ko.js │ │ ├── ru.js │ │ ├── zh-CN.js │ │ └── zh-TW.js │ │ ├── license.txt │ │ ├── plugins │ │ ├── anchor │ │ │ └── anchor.js │ │ ├── baidumap │ │ │ ├── baidumap.js │ │ │ ├── index.html │ │ │ └── map.html │ │ ├── clearhtml │ │ │ └── clearhtml.js │ │ ├── code │ │ │ ├── code.js │ │ │ ├── prettify.css │ │ │ └── prettify.js │ │ ├── emoticons │ │ │ ├── emoticons.js │ │ │ └── images │ │ │ │ ├── 106.gif │ │ │ │ ├── 114.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 │ │ ├── fixtoolbar │ │ │ └── fixtoolbar.js │ │ ├── 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 │ └── upload └── test ├── Demo.java ├── RedisJava.java ├── RedisTest.java ├── testIkanaly.java ├── testLog.java └── testLunce.java /README.md: -------------------------------------------------------------------------------- 1 | # KBMS 2 | 企业知识库管理系统项目源码 3 | -------------------------------------------------------------------------------- /src/main/java/com/generator/dao/GroupMapper.java: -------------------------------------------------------------------------------- 1 | package com.generator.dao; 2 | 3 | import com.generator.pojo.Group; 4 | 5 | public interface GroupMapper { 6 | /** 7 | * This method was generated by MyBatis Generator. 8 | * This method corresponds to the database table group 9 | * 10 | * @mbggenerated 11 | */ 12 | int insert(Group record); 13 | 14 | /** 15 | * This method was generated by MyBatis Generator. 16 | * This method corresponds to the database table group 17 | * 18 | * @mbggenerated 19 | */ 20 | int insertSelective(Group record); 21 | } -------------------------------------------------------------------------------- /src/main/java/com/generator/dao/KGroupMapper.java: -------------------------------------------------------------------------------- 1 | package com.generator.dao; 2 | 3 | import com.generator.pojo.KGroup; 4 | 5 | public interface KGroupMapper { 6 | /** 7 | * This method was generated by MyBatis Generator. 8 | * This method corresponds to the database table k_group 9 | * 10 | * @mbggenerated 11 | */ 12 | int insert(KGroup record); 13 | 14 | /** 15 | * This method was generated by MyBatis Generator. 16 | * This method corresponds to the database table k_group 17 | * 18 | * @mbggenerated 19 | */ 20 | int insertSelective(KGroup record); 21 | } -------------------------------------------------------------------------------- /src/main/java/com/generator/dao/ReplysMapper.java: -------------------------------------------------------------------------------- 1 | package com.generator.dao; 2 | 3 | import com.generator.pojo.Replys; 4 | 5 | public interface ReplysMapper { 6 | /** 7 | * This method was generated by MyBatis Generator. 8 | * This method corresponds to the database table replys 9 | * 10 | * @mbggenerated 11 | */ 12 | int insert(Replys record); 13 | 14 | /** 15 | * This method was generated by MyBatis Generator. 16 | * This method corresponds to the database table replys 17 | * 18 | * @mbggenerated 19 | */ 20 | int insertSelective(Replys record); 21 | } -------------------------------------------------------------------------------- /src/main/java/com/generator/dao/StypeMapper.java: -------------------------------------------------------------------------------- 1 | package com.generator.dao; 2 | 3 | import com.generator.pojo.Stype; 4 | 5 | public interface StypeMapper { 6 | /** 7 | * This method was generated by MyBatis Generator. 8 | * This method corresponds to the database table stype 9 | * 10 | * @mbggenerated 11 | */ 12 | int insert(Stype record); 13 | 14 | /** 15 | * This method was generated by MyBatis Generator. 16 | * This method corresponds to the database table stype 17 | * 18 | * @mbggenerated 19 | */ 20 | int insertSelective(Stype record); 21 | } -------------------------------------------------------------------------------- /src/main/java/com/generator/dao/UserGroupMapper.java: -------------------------------------------------------------------------------- 1 | package com.generator.dao; 2 | 3 | import com.generator.pojo.UserGroup; 4 | 5 | public interface UserGroupMapper { 6 | /** 7 | * This method was generated by MyBatis Generator. 8 | * This method corresponds to the database table user_group 9 | * 10 | * @mbggenerated 11 | */ 12 | int insert(UserGroup record); 13 | 14 | /** 15 | * This method was generated by MyBatis Generator. 16 | * This method corresponds to the database table user_group 17 | * 18 | * @mbggenerated 19 | */ 20 | int insertSelective(UserGroup record); 21 | } -------------------------------------------------------------------------------- /src/main/java/com/generator/dao/ZanMapper.java: -------------------------------------------------------------------------------- 1 | package com.generator.dao; 2 | 3 | import com.generator.pojo.Zan; 4 | 5 | public interface ZanMapper { 6 | /** 7 | * This method was generated by MyBatis Generator. 8 | * This method corresponds to the database table zan 9 | * 10 | * @mbggenerated 11 | */ 12 | int insert(Zan record); 13 | 14 | /** 15 | * This method was generated by MyBatis Generator. 16 | * This method corresponds to the database table zan 17 | * 18 | * @mbggenerated 19 | */ 20 | int insertSelective(Zan record); 21 | } -------------------------------------------------------------------------------- /src/main/java/com/kbms_module/controller/homeController.java: -------------------------------------------------------------------------------- 1 | package com.kbms_module.controller; 2 | 3 | import org.springframework.stereotype.Controller; 4 | import org.springframework.web.bind.annotation.RequestMapping; 5 | 6 | @Controller 7 | @RequestMapping("/System") 8 | public class homeController { 9 | 10 | //页面跳转 11 | @RequestMapping("/hom" + 12 | "" + 13 | "" + 14 | "e") 15 | public String homepage(){ 16 | //跳转到登录注册页面 17 | 18 | return "user/login"; 19 | } 20 | 21 | 22 | 23 | 24 | } 25 | 26 | -------------------------------------------------------------------------------- /src/main/java/com/kbms_module/dao/AssociationdocMapper.java: -------------------------------------------------------------------------------- 1 | package com.kbms_module.dao; 2 | 3 | 4 | import com.kbms_module.pojo.Doc; 5 | import org.apache.ibatis.annotations.Param; 6 | 7 | import java.util.List; 8 | 9 | /** 10 | * 关联知识的接口 11 | */ 12 | 13 | public interface AssociationdocMapper { 14 | 15 | /** 16 | * 新加的关联 17 | */ 18 | 19 | /** 20 | * 查询已经关联的知识根据id 21 | */ 22 | List selectreleaddoc(@Param("newid") Integer newid, @Param("oldid") Integer oldid); 23 | /** 24 | * 查找主动关联的 25 | */ 26 | List getFirstDoc(Integer newid); 27 | 28 | /** 29 | * 查找被动关联的 30 | */ 31 | List getSenodDoc(Integer oldid); 32 | } -------------------------------------------------------------------------------- /src/main/java/com/kbms_module/dao/BtypeMapper.java: -------------------------------------------------------------------------------- 1 | package com.kbms_module.dao; 2 | 3 | 4 | import com.kbms_module.pojo.Btype; 5 | import com.kbms_module.pojo.Stype; 6 | import org.apache.ibatis.annotations.Param; 7 | 8 | import java.util.List; 9 | 10 | public interface BtypeMapper { 11 | /** 12 | * This method was generated by MyBatis Generator. 13 | * This method corresponds to the database table btype 14 | * 15 | * @mbggenerated 16 | */ 17 | int insert(Btype record); 18 | 19 | /** 20 | * This method was generated by MyBatis Generator. 21 | * This method corresponds to the database table btype 22 | * 23 | * @mbggenerated 24 | */ 25 | int insertSelective(Btype record); 26 | /** 27 | * 查找所有的类别 28 | */ 29 | List selectAllbyte(); 30 | /** 31 | * 根据大类别的id查找所有的小id,需要参数绑定 32 | */ 33 | List selectAllbyBtype(@Param("id") int id); 34 | /** 35 | * 36 | * 得到type 37 | */ 38 | Btype selectTypebyId(int id); 39 | 40 | void updatednums(@Param("bid") Integer integer, @Param("bdocnums") Integer bdocnums); 41 | } -------------------------------------------------------------------------------- /src/main/java/com/kbms_module/dao/DocMapper.java: -------------------------------------------------------------------------------- 1 | package com.kbms_module.dao; 2 | 3 | import com.generator.pojo.Doc; 4 | 5 | public interface DocMapper { 6 | /** 7 | * This method was generated by MyBatis Generator. 8 | * This method corresponds to the database table doc 9 | * 10 | * @mbggenerated 11 | */ 12 | int insert(Doc record); 13 | 14 | /** 15 | * This method was generated by MyBatis Generator. 16 | * This method corresponds to the database table doc 17 | * 18 | * @mbggenerated 19 | */ 20 | int insertSelective(Doc record); 21 | } -------------------------------------------------------------------------------- /src/main/java/com/kbms_module/dao/DocTagMapper.java: -------------------------------------------------------------------------------- 1 | package com.kbms_module.dao; 2 | 3 | 4 | import com.kbms_module.pojo.Doc; 5 | import org.apache.ibatis.annotations.Param; 6 | 7 | /** 8 | * 知识标签处理类 9 | */ 10 | public interface DocTagMapper { 11 | /** 12 | * 为知识打上标签 13 | */ 14 | public void insertDocTag(@Param("did") Integer did, @Param("tid") Integer tid); 15 | /** 16 | * 根据一篇知识得到所有的标签并封装成一个对象级联查询 17 | */ 18 | public Doc getDocByidWithTags(Integer did); 19 | 20 | 21 | 22 | } -------------------------------------------------------------------------------- /src/main/java/com/kbms_module/dao/FiledocMapper.java: -------------------------------------------------------------------------------- 1 | package com.kbms_module.dao; 2 | 3 | import com.kbms_module.pojo.Filedoc; 4 | import org.apache.ibatis.annotations.Param; 5 | 6 | public interface FiledocMapper { 7 | /** 8 | * This method was generated by MyBatis Generator. 9 | * This method corresponds to the database table filedoc 10 | * 11 | * @mbggenerated 12 | */ 13 | int insert(Filedoc record); 14 | 15 | /** 16 | * This method was generated by MyBatis Generator. 17 | * This method corresponds to the database table filedoc 18 | * 19 | * @mbggenerated 20 | */ 21 | int insertSelective(Filedoc record); 22 | 23 | /** 24 | * 添加附件 25 | * @param id 26 | * @param id1 27 | */ 28 | 29 | 30 | void createFileForDoc(Filedoc filedoc); 31 | } -------------------------------------------------------------------------------- /src/main/java/com/kbms_module/dao/GroupMapper.java: -------------------------------------------------------------------------------- 1 | package com.kbms_module.dao; 2 | 3 | 4 | import com.kbms_module.pojo.Doc; 5 | import com.kbms_module.pojo.Group; 6 | import org.apache.ibatis.annotations.Param; 7 | 8 | import java.util.List; 9 | 10 | public interface GroupMapper { 11 | /** 12 | * This method was generated by MyBatis Generator. 13 | * This method corresponds to the database table group 14 | * 15 | * @mbggenerated 16 | */ 17 | int insert(Group record); 18 | 19 | /** 20 | * This method was generated by MyBatis Generator. 21 | * This method corresponds to the database table group 22 | * 23 | * @mbggenerated 24 | */ 25 | int insertSelective(Group record); 26 | 27 | List getlastestgroup(Integer i); 28 | 29 | List getAllGroup(); 30 | 31 | Group getUserForGroup(Integer gid); 32 | 33 | List getDocsbyGid(Integer gid); 34 | 35 | void createGroup(Group group); 36 | 37 | void createUserGroup(@Param("userId") Integer userId, @Param("id") Integer id); 38 | } -------------------------------------------------------------------------------- /src/main/java/com/kbms_module/dao/ReplysMapper.java: -------------------------------------------------------------------------------- 1 | package com.kbms_module.dao; 2 | 3 | import com.generator.pojo.Replys; 4 | 5 | public interface ReplysMapper { 6 | /** 7 | * This method was generated by MyBatis Generator. 8 | * This method corresponds to the database table replys 9 | * 10 | * @mbggenerated 11 | */ 12 | int insert(Replys record); 13 | 14 | /** 15 | * This method was generated by MyBatis Generator. 16 | * This method corresponds to the database table replys 17 | * 18 | * @mbggenerated 19 | */ 20 | int insertSelective(Replys record); 21 | } -------------------------------------------------------------------------------- /src/main/java/com/kbms_module/dao/StypeMapper.java: -------------------------------------------------------------------------------- 1 | package com.kbms_module.dao; 2 | 3 | import com.kbms_module.pojo.Stype; 4 | import org.apache.ibatis.annotations.Param; 5 | 6 | public interface StypeMapper { 7 | /** 8 | * This method was generated by MyBatis Generator. 9 | * This method corresponds to the database table stype 10 | * 11 | * @mbggenerated 12 | */ 13 | int insert(Stype record); 14 | 15 | /** 16 | * This method was generated by MyBatis Generator. 17 | * This method corresponds to the database table stype 18 | * 19 | * @mbggenerated 20 | */ 21 | int insertSelective(Stype record); 22 | 23 | /** 24 | * 25 | * @return根据小分类的id查找出所有信息 26 | */ 27 | Stype selectById(int id); 28 | 29 | void uodatenums(@Param("sid") Integer integer, @Param("sdocnums") Integer sdocnums); 30 | } -------------------------------------------------------------------------------- /src/main/java/com/kbms_module/dao/TagsMapper.java: -------------------------------------------------------------------------------- 1 | package com.kbms_module.dao; 2 | 3 | import com.kbms_module.pojo.Tags; 4 | import org.apache.ibatis.annotations.Param; 5 | 6 | public interface TagsMapper { 7 | /** 8 | * This method was generated by MyBatis Generator. 9 | * This method corresponds to the database table tags 10 | * 11 | * @mbggenerated 12 | */ 13 | int insert(Tags record); 14 | 15 | /** 16 | * This method was generated by MyBatis Generator. 17 | * This method corresponds to the database table tags 18 | * 19 | * @mbggenerated 20 | */ 21 | int insertSelective(Tags record); 22 | 23 | /** 24 | * 25 | * @param t 26 | * @return 27 | */ 28 | com.kbms_module.pojo.Tags selectTagbyname(String t); 29 | 30 | void updatePost(@Param("tid") int tid, @Param("tagnum") int tagnum); 31 | 32 | 33 | 34 | void createTag(Tags tagg); 35 | } -------------------------------------------------------------------------------- /src/main/java/com/kbms_module/dao/UserDao.java: -------------------------------------------------------------------------------- 1 | package com.kbms_module.dao; 2 | 3 | 4 | import com.kbms_module.pojo.Collection; 5 | import com.kbms_module.pojo.User; 6 | import org.apache.ibatis.annotations.Param; 7 | 8 | import java.util.List; 9 | 10 | public interface UserDao { 11 | /** 12 | * 根据用户名选择出用户的属性(全部属性) 13 | * @param username 14 | * @return 15 | */ 16 | User selectUserbyname(@Param("username") String username) ; 17 | 18 | User selectUsernamebyEmail(@Param("email")String email); 19 | 20 | User selectUserbyId(int id); 21 | 22 | void insert_user(User user); 23 | 24 | int selectcountbycode(String acode); 25 | 26 | void updateactive(String acode); 27 | 28 | List selectAllCollection(Integer userId); 29 | } 30 | -------------------------------------------------------------------------------- /src/main/java/com/kbms_module/exception/LoginUserNoExistException.java: -------------------------------------------------------------------------------- 1 | package com.kbms_module.exception; 2 | 3 | public class LoginUserNoExistException extends Exception { 4 | 5 | 6 | public LoginUserNoExistException(String message) { 7 | super(message); 8 | } 9 | //private static final long serialVersionUID = 6482296763929242398L; 10 | } 11 | -------------------------------------------------------------------------------- /src/main/java/com/kbms_module/mapper/BtypeMapper.java: -------------------------------------------------------------------------------- 1 | package com.kbms_module.mapper; 2 | 3 | 4 | import com.kbms_module.pojo.Btype; 5 | 6 | import java.util.List; 7 | 8 | public interface BtypeMapper { 9 | /** 10 | * This method was generated by MyBatis Generator. 11 | * This method corresponds to the database table btype 12 | * 13 | * @mbggenerated 14 | */ 15 | int insert(Btype record); 16 | 17 | /** 18 | * This method was generated by MyBatis Generator. 19 | * This method corresponds to the database table btype 20 | * 21 | * @mbggenerated 22 | */ 23 | int insertSelective(Btype record); 24 | /** 25 | * 查找所有的类别 26 | */ 27 | List selectAllbyte(); 28 | } -------------------------------------------------------------------------------- /src/main/java/com/kbms_module/mapper/LuceneDaoTest.java: -------------------------------------------------------------------------------- 1 | package com.kbms_module.mapper; 2 | 3 | import com.kbms_module.dao.UserDao; 4 | import org.springframework.beans.factory.annotation.Autowired; 5 | 6 | /** 7 | * Created by warkey on 2018-03-21. 8 | */ 9 | public class LuceneDaoTest { 10 | @Autowired 11 | private UserDao userDao; 12 | 13 | } 14 | -------------------------------------------------------------------------------- /src/main/java/com/kbms_module/pojo/LuceneDemo.java: -------------------------------------------------------------------------------- 1 | package com.kbms_module.pojo; 2 | 3 | /** 4 | * Created by warkey on 2018-03-18. 5 | * 数据库的demo 6 | */ 7 | public class LuceneDemo { 8 | public static final String INDEX_PATH="E:\\lucene-demo"; 9 | /** 10 | * 创建索引 11 | */ 12 | public void createIndex() 13 | { 14 | // IndexWriter indexWriter=null; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/main/java/com/kbms_module/pojo/Score.java: -------------------------------------------------------------------------------- 1 | package com.kbms_module.pojo; 2 | 3 | /** 4 | * Created by warkey on 2018-04-18. 5 | */ 6 | public class Score { 7 | public String key; 8 | public float significance; 9 | 10 | @Override 11 | public String toString() { 12 | return "关键词=" + key + 13 | ", 重要程度=" + significance; 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/main/java/com/kbms_module/service/CommentsService.java: -------------------------------------------------------------------------------- 1 | package com.kbms_module.service; 2 | 3 | import com.kbms_module.pojo.Comments; 4 | import com.kbms_module.pojo.Replys; 5 | 6 | import java.sql.Timestamp; 7 | import java.util.List; 8 | 9 | /** 10 | * Created by warkey on 2018-02-28. 11 | * 评论服务接口 12 | */ 13 | public interface CommentsService { 14 | 15 | List getComments(Integer i); 16 | 17 | /* 18 | 得到评论 19 | */ 20 | List findComment(Integer did,Integer uid); 21 | 22 | List findReplys(Integer id, Integer cid); 23 | 24 | /** 25 | * 插入评论 26 | * @param did 27 | * @param uid 28 | * @param content 29 | * @param timestamp 30 | * @return 31 | */ 32 | int addcomment(Integer did, Integer uid, String content, Timestamp timestamp); 33 | 34 | /** 35 | * 得到被采纳的回答的问题 36 | * @param qid 37 | * @return 38 | */ 39 | Comments getSureCommentsForQuestion(Integer qid); 40 | 41 | /** 42 | * 所有没有被采纳的问题 43 | * @param qid 44 | * @return 45 | */ 46 | List getUsureCommentsForQuestion(Integer qid); 47 | } 48 | -------------------------------------------------------------------------------- /src/main/java/com/kbms_module/service/GroupService.java: -------------------------------------------------------------------------------- 1 | package com.kbms_module.service; 2 | 3 | import com.kbms_module.pojo.Doc; 4 | import com.kbms_module.pojo.Group; 5 | 6 | import java.util.List; 7 | 8 | /** 9 | * Created by warkey on 2018-02-28. 10 | */ 11 | public interface GroupService { 12 | List getgroup(Integer i); 13 | 14 | //得到所有的小组 15 | List getAllGroup(); 16 | //包装组类成员信息 17 | Group getUserForGroup(Integer gid); 18 | //得到小组下所有的分类 19 | List getDocForGroup(Integer gid); 20 | 21 | void createGroup(Group group); 22 | 23 | void createUserGroup(Integer userId, Integer id); 24 | } 25 | -------------------------------------------------------------------------------- /src/main/java/com/kbms_module/service/Impl/TagServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.kbms_module.service.Impl; 2 | 3 | import com.kbms_module.dao.TagsMapper; 4 | import com.kbms_module.pojo.Tags; 5 | import com.kbms_module.service.TagService; 6 | import org.springframework.beans.factory.annotation.Autowired; 7 | import org.springframework.stereotype.Service; 8 | 9 | /** 10 | * Created by warkey on 2018-03-16. 11 | */ 12 | @Service 13 | public class TagServiceImpl implements TagService { 14 | 15 | 16 | @Autowired 17 | private TagsMapper tagsMapper; 18 | @Override 19 | public Tags selectTagbyname(String t) { 20 | Tags tag=tagsMapper.selectTagbyname(t); 21 | return tag; 22 | } 23 | 24 | @Override 25 | public void updatePost(int tid, int tagnum) { 26 | //更新书铁数量 27 | tagsMapper.updatePost(tid,tagnum); 28 | 29 | 30 | 31 | } 32 | 33 | 34 | 35 | 36 | @Override 37 | public void createTags(Tags tagg) { 38 | tagsMapper.createTag(tagg); 39 | 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /src/main/java/com/kbms_module/service/Impl/ZanServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.kbms_module.service.Impl; 2 | 3 | import com.kbms_module.dao.ZanMapper; 4 | import com.kbms_module.pojo.Zan; 5 | import com.kbms_module.service.ZanService; 6 | import org.springframework.beans.factory.annotation.Autowired; 7 | import org.springframework.stereotype.Service; 8 | 9 | import java.util.List; 10 | 11 | /** 12 | * Created by warkey on 2018-03-12. 13 | * 点赞服务 14 | */ 15 | @Service 16 | public class ZanServiceImpl implements ZanService { 17 | @Autowired 18 | private ZanMapper zanMapper; 19 | 20 | @Override 21 | public List getdianzan(Integer uid, Integer did) { 22 | List list= zanMapper.getDianzan(uid,did); 23 | return list; 24 | } 25 | 26 | @Override 27 | public void insertzan(Integer uid, Integer did) { 28 | zanMapper.insertdianzan(uid,did); 29 | 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/main/java/com/kbms_module/service/LuceneDao.java: -------------------------------------------------------------------------------- 1 | package com.kbms_module.service; 2 | 3 | import com.kbms_module.pojo.PageBean; 4 | import org.apache.lucene.document.Document; 5 | import org.apache.lucene.queryparser.classic.ParseException; 6 | import org.apache.lucene.search.highlight.InvalidTokenOffsetsException; 7 | 8 | import java.io.IOException; 9 | 10 | /** 11 | * Created by warkey on 2018-03-18. 12 | */ 13 | public interface LuceneDao { 14 | /** 15 | * 增加索引 16 | **/ 17 | 18 | void addIndex(Document document); 19 | /** 20 | * 删除索引 21 | */ 22 | void deleteIndex(String id); 23 | /** 24 | * 更新索引 25 | */ 26 | void updateIndex(Document document) throws IOException; 27 | /** 28 | * 搜索根据id 查到与子对应的dcument的索引 29 | */ 30 | Document findIndexById(String id); 31 | 32 | PageBean findIndex(String keyword, Integer currentpage, Integer searchListSize) throws ParseException, IOException, InvalidTokenOffsetsException; 33 | /** 34 | * 根据关键字搜索,并且返回搜索后的分页结果 35 | */ 36 | 37 | 38 | 39 | 40 | 41 | } 42 | -------------------------------------------------------------------------------- /src/main/java/com/kbms_module/service/LuceneService.java: -------------------------------------------------------------------------------- 1 | package com.kbms_module.service; 2 | 3 | import com.kbms_module.pojo.Doc; 4 | import com.kbms_module.pojo.PageBean; 5 | import org.apache.lucene.queryparser.classic.ParseException; 6 | import org.apache.lucene.search.highlight.InvalidTokenOffsetsException; 7 | 8 | import java.io.IOException; 9 | 10 | /** 11 | * Created by warkey on 2018-03-19. 12 | */ 13 | public interface LuceneService { 14 | /** 15 | * 根据分页查找关键字 16 | * @param currentpage 17 | * @param searchListSize 18 | * @param keyword 19 | * @param sort 20 | * @return 21 | */ 22 | PageBean getPageSearchList(Integer currentpage, Integer searchListSize, String keyword, Integer sort) throws ParseException, InvalidTokenOffsetsException, IOException; 23 | /** 24 | * 创建索引 25 | */ 26 | public void addindex(); 27 | /** 28 | * 添加一个索引 29 | */ 30 | public void addOneindex(Doc d); 31 | /** 32 | * 更新索引 33 | */ 34 | public void updateindex(Doc d); 35 | /** 36 | * 删除索引 37 | */ 38 | public void deleteindex(); 39 | 40 | } 41 | -------------------------------------------------------------------------------- /src/main/java/com/kbms_module/service/TagService.java: -------------------------------------------------------------------------------- 1 | package com.kbms_module.service; 2 | 3 | import com.kbms_module.pojo.Tags; 4 | 5 | /** 6 | * Created by warkey on 2018-03-16. 7 | * 标签服务接口 8 | */ 9 | public interface TagService { 10 | /** 11 | * 根据名字查找标签类 12 | * @param t 13 | * @return 14 | */ 15 | Tags selectTagbyname(String t); 16 | 17 | /** 18 | * 更新标签的发贴数量 19 | * @param tid 20 | * @param tagnum 21 | */ 22 | void updatePost(int tid, int tagnum); 23 | 24 | /** 25 | * 插入标签 26 | * @param t 27 | */ 28 | 29 | 30 | void createTags(Tags tagg); 31 | } 32 | -------------------------------------------------------------------------------- /src/main/java/com/kbms_module/shiro/authc/AccountAuthenticationInfo.java: -------------------------------------------------------------------------------- 1 | package com.kbms_module.shiro.authc; 2 | 3 | import com.kbms_module.pojo.AccountProfile; 4 | import org.apache.shiro.authc.SimpleAuthenticationInfo; 5 | 6 | /** 7 | * Created by warkey on 2018-02-26. 8 | * 封装账户信息对象, 9 | */ 10 | public class AccountAuthenticationInfo extends SimpleAuthenticationInfo { 11 | private static final long serialVersionUID = 3405356595200877071L; 12 | 13 | private AccountProfile profile;//账号信息对象 14 | 15 | public AccountAuthenticationInfo(){ 16 | } 17 | 18 | public AccountAuthenticationInfo(Object principal, Object credentials, String realmName){ 19 | super(principal, credentials, realmName); 20 | } 21 | 22 | public AccountProfile getProfile() { 23 | return profile; 24 | } 25 | 26 | public void setProfile(AccountProfile profile) { 27 | this.profile = profile; 28 | } 29 | 30 | } -------------------------------------------------------------------------------- /src/main/resources/mybatis/mybatis-config.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /src/main/resources/properties.jdbc.properties: -------------------------------------------------------------------------------- 1 | validation_query=SELECT 1 2 | data_source_url=jdbc:mysql://localhost:3306/kbms?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&allowMultiQueries=true 3 | data_source_username=root 4 | data_source_password= -------------------------------------------------------------------------------- /src/main/resources/properties/jdbc.properties: -------------------------------------------------------------------------------- 1 | validation_query=SELECT 1 2 | data_source_url=jdbc:mysql://localhost:3306/kbms?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&allowMultiQueries=true 3 | data_source_username=root 4 | data_source_password= -------------------------------------------------------------------------------- /src/main/resources/rebel.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /src/main/webapp/248差评.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/248差评.png -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/IKAnalyzer2012FF_u1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/WEB-INF/lib/IKAnalyzer2012FF_u1.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/WEB-INF/lib/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/jstl-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/WEB-INF/lib/jstl-1.2.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/junit-3.8.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/WEB-INF/lib/junit-3.8.1.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/lucene-analyzers-common-4.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/WEB-INF/lib/lucene-analyzers-common-4.4.0.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/lucene-core-4.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/WEB-INF/lib/lucene-core-4.4.0.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/lucene-highlighter-4.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/WEB-INF/lib/lucene-highlighter-4.4.0.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/lucene-memory-4.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/WEB-INF/lib/lucene-memory-4.4.0.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/lucene-queryparser-4.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/WEB-INF/lib/lucene-queryparser-4.4.0.jar -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/common/tagPage.jsp: -------------------------------------------------------------------------------- 1 | <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> 2 | <%@taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %> 3 | <%@taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %> 4 | <%@ page trimDirectiveWhitespaces="true" %> 5 | <% 6 | response.setHeader("cache-control", "max-age=5,public,must-revalidate"); //one day 7 | response.setDateHeader("expires", -1); 8 | String cdntime = String.valueOf(System.currentTimeMillis()); 9 | request.setAttribute("cdntime",cdntime); 10 | %> 11 | <%----%> 12 | <% 13 | String webRoot = "http://" + request.getServerName() + ":" + request.getServerPort(); 14 | request.setAttribute("webRoot",webRoot); 15 | %> -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/user/activeResult.jsp: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 2 | <%-- 3 | Created by IntelliJ IDEA. 4 | User: hncta 5 | Date: 2018-01-30 6 | Time: 19:37 7 | To change this template use File | Settings | File Templates. 8 | --%> 9 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 10 | 11 | 12 | 13 | 17 | 邮箱验证结果 18 | 19 | 20 | 21 | 邮箱激活失败 22 | 23 | 24 | 邮箱激活成功 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view/user/rego.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Created by IntelliJ IDEA. 3 | User: hncta 4 | Date: 2018-01-24 5 | Time: 15:31 6 | To change this template use File | Settings | File Templates. 7 | --%> 8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 9 | 10 | 11 | 注册界面 12 | 13 | 14 | 欢迎注册 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view1/common/tagPage.jsp: -------------------------------------------------------------------------------- 1 | <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> 2 | <%@taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %> 3 | <%@taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %> 4 | <%@ page trimDirectiveWhitespaces="true" %> 5 | <% 6 | response.setHeader("cache-control", "max-age=5,public,must-revalidate"); //one day 7 | response.setDateHeader("expires", -1); 8 | String cdntime = String.valueOf(System.currentTimeMillis()); 9 | request.setAttribute("cdntime",cdntime); 10 | %> 11 | <%----%> 12 | <% 13 | String webRoot = "http://" + request.getServerName() + ":" + request.getServerPort(); 14 | request.setAttribute("webRoot",webRoot); 15 | %> -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view1/user/activeResult.jsp: -------------------------------------------------------------------------------- 1 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> 2 | <%-- 3 | Created by IntelliJ IDEA. 4 | User: hncta 5 | Date: 2018-01-30 6 | Time: 19:37 7 | To change this template use File | Settings | File Templates. 8 | --%> 9 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 10 | 11 | 12 | 13 | 17 | 邮箱验证结果 18 | 19 | 20 | 21 | 邮箱激活失败 22 | 23 | 24 | 邮箱激活成功12aaa 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/view1/user/rego.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Created by IntelliJ IDEA. 3 | User: hncta 4 | Date: 2018-01-24 5 | Time: 15:31 6 | To change this template use File | Settings | File Templates. 7 | --%> 8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 9 | 10 | 11 | 注册界面 12 | 13 | 14 | 欢迎注册 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/main/webapp/boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/boy.png -------------------------------------------------------------------------------- /src/main/webapp/index.jsp: -------------------------------------------------------------------------------- 1 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 2 | 3 | -------------------------------------------------------------------------------- /src/main/webapp/ll.jsp: -------------------------------------------------------------------------------- 1 | <%-- 2 | Created by IntelliJ IDEA. 3 | User: hncta 4 | Date: 2018-01-24 5 | Time: 12:02 6 | To change this template use File | Settings | File Templates. 7 | --%> 8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %> 9 | 10 | 11 | Title 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/main/webapp/resource/amazeui/css/app.css: -------------------------------------------------------------------------------- 1 | /* Write your styles */ -------------------------------------------------------------------------------- /src/main/webapp/resource/amazeui/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/amazeui/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/main/webapp/resource/amazeui/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/amazeui/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/webapp/resource/amazeui/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/amazeui/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/webapp/resource/amazeui/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/amazeui/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/webapp/resource/amazeui/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/amazeui/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/main/webapp/resource/amazeui/i/app-icon72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/amazeui/i/app-icon72x72@2x.png -------------------------------------------------------------------------------- /src/main/webapp/resource/amazeui/i/examples/admin-chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/amazeui/i/examples/admin-chrome.png -------------------------------------------------------------------------------- /src/main/webapp/resource/amazeui/i/examples/admin-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/amazeui/i/examples/admin-firefox.png -------------------------------------------------------------------------------- /src/main/webapp/resource/amazeui/i/examples/admin-ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/amazeui/i/examples/admin-ie.png -------------------------------------------------------------------------------- /src/main/webapp/resource/amazeui/i/examples/admin-opera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/amazeui/i/examples/admin-opera.png -------------------------------------------------------------------------------- /src/main/webapp/resource/amazeui/i/examples/admin-safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/amazeui/i/examples/admin-safari.png -------------------------------------------------------------------------------- /src/main/webapp/resource/amazeui/i/examples/adminPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/amazeui/i/examples/adminPage.png -------------------------------------------------------------------------------- /src/main/webapp/resource/amazeui/i/examples/blogPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/amazeui/i/examples/blogPage.png -------------------------------------------------------------------------------- /src/main/webapp/resource/amazeui/i/examples/landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/amazeui/i/examples/landing.png -------------------------------------------------------------------------------- /src/main/webapp/resource/amazeui/i/examples/landingPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/amazeui/i/examples/landingPage.png -------------------------------------------------------------------------------- /src/main/webapp/resource/amazeui/i/examples/loginPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/amazeui/i/examples/loginPage.png -------------------------------------------------------------------------------- /src/main/webapp/resource/amazeui/i/examples/sidebarPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/amazeui/i/examples/sidebarPage.png -------------------------------------------------------------------------------- /src/main/webapp/resource/amazeui/i/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/amazeui/i/favicon.png -------------------------------------------------------------------------------- /src/main/webapp/resource/amazeui/i/startup-640x1096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/amazeui/i/startup-640x1096.png -------------------------------------------------------------------------------- /src/main/webapp/resource/amazeui/js/app.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 'use strict'; 3 | 4 | $(function() { 5 | var $fullText = $('.admin-fullText'); 6 | $('#admin-fullscreen').on('click', function() { 7 | $.AMUI.fullscreen.toggle(); 8 | }); 9 | 10 | $(document).on($.AMUI.fullscreen.raw.fullscreenchange, function() { 11 | $fullText.text($.AMUI.fullscreen.isFullscreen ? '退出全屏' : '开启全屏'); 12 | }); 13 | }); 14 | })(jQuery); 15 | -------------------------------------------------------------------------------- /src/main/webapp/resource/ckplayer/cklogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ckplayer/cklogo.png -------------------------------------------------------------------------------- /src/main/webapp/resource/ckplayer/ckplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ckplayer/ckplayer.swf -------------------------------------------------------------------------------- /src/main/webapp/resource/ckplayer/share/feixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ckplayer/share/feixin.png -------------------------------------------------------------------------------- /src/main/webapp/resource/ckplayer/share/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ckplayer/share/google.png -------------------------------------------------------------------------------- /src/main/webapp/resource/ckplayer/share/kaixin001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ckplayer/share/kaixin001.png -------------------------------------------------------------------------------- /src/main/webapp/resource/ckplayer/share/msn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ckplayer/share/msn.png -------------------------------------------------------------------------------- /src/main/webapp/resource/ckplayer/share/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ckplayer/share/qq.png -------------------------------------------------------------------------------- /src/main/webapp/resource/ckplayer/share/qq2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ckplayer/share/qq2.png -------------------------------------------------------------------------------- /src/main/webapp/resource/ckplayer/share/qzone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ckplayer/share/qzone.png -------------------------------------------------------------------------------- /src/main/webapp/resource/ckplayer/share/rr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ckplayer/share/rr.png -------------------------------------------------------------------------------- /src/main/webapp/resource/ckplayer/share/sina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ckplayer/share/sina.png -------------------------------------------------------------------------------- /src/main/webapp/resource/ckplayer/share/sohu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ckplayer/share/sohu.png -------------------------------------------------------------------------------- /src/main/webapp/resource/ckplayer/share/tianya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ckplayer/share/tianya.png -------------------------------------------------------------------------------- /src/main/webapp/resource/ckplayer/style.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ckplayer/style.swf -------------------------------------------------------------------------------- /src/main/webapp/resource/ckplayer/画板 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ckplayer/画板 2.png -------------------------------------------------------------------------------- /src/main/webapp/resource/ffmpeg/drv43260.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ffmpeg/drv43260.dll -------------------------------------------------------------------------------- /src/main/webapp/resource/ffmpeg/ffmpeg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ffmpeg/ffmpeg.exe -------------------------------------------------------------------------------- /src/main/webapp/resource/ffmpeg/ffplay.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ffmpeg/ffplay.exe -------------------------------------------------------------------------------- /src/main/webapp/resource/ffmpeg/mencoder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ffmpeg/mencoder.exe -------------------------------------------------------------------------------- /src/main/webapp/resource/ffmpeg/pncrt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ffmpeg/pncrt.dll -------------------------------------------------------------------------------- /src/main/webapp/resource/ffmpeg/pthreadGC2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ffmpeg/pthreadGC2.dll -------------------------------------------------------------------------------- /src/main/webapp/resource/image/bitbug_favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/image/bitbug_favicon.ico -------------------------------------------------------------------------------- /src/main/webapp/resource/image/bitbug_favicon_3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/image/bitbug_favicon_3.ico -------------------------------------------------------------------------------- /src/main/webapp/resource/image/educational.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/image/educational.png -------------------------------------------------------------------------------- /src/main/webapp/resource/image/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/image/help.png -------------------------------------------------------------------------------- /src/main/webapp/resource/script/._file-view.js4282457421280719477.tmp: -------------------------------------------------------------------------------- 1 | /** 2 | */ 3 | //判断是哪种浏览方式在网页中呈现 4 | var viewJudge = { 5 | //office类型,用pdf呈现 6 | pdf : function(ext) { 7 | if (ext == "doc" || ext == "docx" || ext == "xls" || ext == "xlsx" || ext == "ppt" || ext == "pptx" || ext == "pdf") { 8 | return true; 9 | } 10 | else { 11 | return false; 12 | } 13 | }, 14 | //图片类型 15 | jpg : function(ext) { 16 | if (ext == "png" || ext == "gif" || ext == "jpg" || ext == "jpeg" || ext == "bmp" || ext == "pptx" || ext == "pdf") { 17 | return true; 18 | } 19 | else { 20 | return false; 21 | } 22 | }, 23 | //视频类型 24 | flv : function(ext) { 25 | if (ext == "mp4" || ext == "avi" || ext == "flv" || ext == "rmvb" || ext == "wmv" || ext == "mkv") { 26 | return true; 27 | } 28 | else { 29 | return false; 30 | } 31 | }, 32 | txt : function(ext) { 33 | if (ext == "txt") { 34 | return true; 35 | } 36 | else { 37 | return false; 38 | } 39 | }, 40 | mp3 : function(ext) { 41 | if (ext == "mp3") { 42 | return true; 43 | } 44 | else { 45 | return false; 46 | } 47 | } 48 | } 49 | 50 | -------------------------------------------------------------------------------- /src/main/webapp/resource/script/._file-view.js602220794557420745.tmp: -------------------------------------------------------------------------------- 1 | /** 2 | */ 3 | //判断是哪种浏览方式在网页中呈现 4 | var viewJudge = { 5 | //office类型,用pdf呈现 6 | pdf : function(ext) { 7 | if (ext == "doc" || ext == "docx" || ext == "xls" || ext == "xlsx" || ext == "ppt" || ext == "pptx" || ext == "pdf") { 8 | return true; 9 | } 10 | else { 11 | return false; 12 | } 13 | }, 14 | //图片类型 15 | jpg : function(ext) { 16 | if (ext == "png" || ext == "gif" || ext == "jpg" || ext == "jpeg" || ext == "bmp" || ext == "pptx" || ext == "pdf") { 17 | return true; 18 | } 19 | else { 20 | return false; 21 | } 22 | }, 23 | //视频类型 24 | flv : function(ext) { 25 | if (ext == "mp4" || ext == "avi" || ext == "flv" || ext == "rmvb" || ext == "wmv" || ext == "mkv") { 26 | return true; 27 | } 28 | else { 29 | return false; 30 | } 31 | }, 32 | txt : function(ext) { 33 | if (ext == "txt") { 34 | return true; 35 | } 36 | else { 37 | return false; 38 | } 39 | }, 40 | mp3 : function(ext) { 41 | if (ext == "mp3") { 42 | return true; 43 | } 44 | else { 45 | return false; 46 | } 47 | } 48 | } 49 | 50 | -------------------------------------------------------------------------------- /src/main/webapp/resource/script/._file-view.js6760950377400576792.tmp: -------------------------------------------------------------------------------- 1 | /** 2 | */ 3 | //判断是哪种浏览方式在网页中呈现 4 | var viewJudge = { 5 | //office类型,用pdf呈现 6 | pdf : function(ext) { 7 | if (ext == "doc" || ext == "docx" || ext == "xls" || ext == "xlsx" || ext == "ppt" || ext == "pptx" || ext == "pdf") { 8 | return true; 9 | } 10 | else { 11 | return false; 12 | } 13 | }, 14 | //图片类型 15 | jpg : function(ext) { 16 | if (ext == "png" || ext == "gif" || ext == "jpg" || ext == "jpeg" || ext == "bmp" || ext == "pptx" || ext == "pdf") { 17 | return true; 18 | } 19 | else { 20 | return false; 21 | } 22 | }, 23 | //视频类型 24 | flv : function(ext) { 25 | if (ext == "mp4" || ext == "avi" || ext == "flv" || ext == "rmvb" || ext == "wmv" || ext == "mkv") { 26 | return true; 27 | } 28 | else { 29 | return false; 30 | } 31 | }, 32 | txt : function(ext) { 33 | if (ext == "txt") { 34 | return true; 35 | } 36 | else { 37 | return false; 38 | } 39 | }, 40 | mp3 : function(ext) { 41 | if (ext == "mp3") { 42 | return true; 43 | } 44 | else { 45 | return false; 46 | } 47 | } 48 | } 49 | 50 | -------------------------------------------------------------------------------- /src/main/webapp/resource/script/common.js: -------------------------------------------------------------------------------- 1 | /** 2 | */ 3 | -------------------------------------------------------------------------------- /src/main/webapp/resource/ueditor/jsp/controller.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=UTF-8" 2 | import="com.baidu.ueditor.ActionEnter" 3 | pageEncoding="UTF-8"%> 4 | <%@ page trimDirectiveWhitespaces="true" %> 5 | <% 6 | 7 | request.setCharacterEncoding( "utf-8" ); 8 | response.setHeader("Content-Type" , "text/html"); 9 | 10 | String rootPath = application.getRealPath( "/" ); 11 | 12 | out.write( new ActionEnter( request, rootPath ).exec() ); 13 | 14 | %> -------------------------------------------------------------------------------- /src/main/webapp/resource/ueditor/jsp/lib/._uedtior-soklib-1.0.jar2093711396755639643.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ueditor/jsp/lib/._uedtior-soklib-1.0.jar2093711396755639643.tmp -------------------------------------------------------------------------------- /src/main/webapp/resource/ueditor/jsp/lib/commons-codec-1.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ueditor/jsp/lib/commons-codec-1.9.jar -------------------------------------------------------------------------------- /src/main/webapp/resource/ueditor/jsp/lib/json.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ueditor/jsp/lib/json.jar -------------------------------------------------------------------------------- /src/main/webapp/resource/ueditor/jsp/lib/uedtior-soklib-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ueditor/jsp/lib/uedtior-soklib-1.0.jar -------------------------------------------------------------------------------- /src/main/webapp/resource/ueditor/jsp/lib/uedtior-soklib-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ueditor/jsp/lib/uedtior-soklib-1.1.jar -------------------------------------------------------------------------------- /src/main/webapp/resource/ueditor/lang/en/images/addimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ueditor/lang/en/images/addimage.png -------------------------------------------------------------------------------- /src/main/webapp/resource/ueditor/lang/en/images/alldeletebtnupskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ueditor/lang/en/images/alldeletebtnupskin.png -------------------------------------------------------------------------------- /src/main/webapp/resource/ueditor/lang/en/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ueditor/lang/en/images/background.png -------------------------------------------------------------------------------- /src/main/webapp/resource/ueditor/lang/en/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ueditor/lang/en/images/button.png -------------------------------------------------------------------------------- /src/main/webapp/resource/ueditor/lang/en/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ueditor/lang/en/images/copy.png -------------------------------------------------------------------------------- /src/main/webapp/resource/ueditor/lang/en/images/deletedisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ueditor/lang/en/images/deletedisable.png -------------------------------------------------------------------------------- /src/main/webapp/resource/ueditor/lang/en/images/deleteenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ueditor/lang/en/images/deleteenable.png -------------------------------------------------------------------------------- /src/main/webapp/resource/ueditor/lang/en/images/listbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ueditor/lang/en/images/listbackground.png -------------------------------------------------------------------------------- /src/main/webapp/resource/ueditor/lang/en/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ueditor/lang/en/images/localimage.png -------------------------------------------------------------------------------- /src/main/webapp/resource/ueditor/lang/en/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ueditor/lang/en/images/music.png -------------------------------------------------------------------------------- /src/main/webapp/resource/ueditor/lang/en/images/rotateleftdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ueditor/lang/en/images/rotateleftdisable.png -------------------------------------------------------------------------------- /src/main/webapp/resource/ueditor/lang/en/images/rotateleftenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ueditor/lang/en/images/rotateleftenable.png -------------------------------------------------------------------------------- /src/main/webapp/resource/ueditor/lang/en/images/rotaterightenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ueditor/lang/en/images/rotaterightenable.png -------------------------------------------------------------------------------- /src/main/webapp/resource/ueditor/lang/en/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/resource/ueditor/lang/en/images/upload.png -------------------------------------------------------------------------------- /src/main/webapp/statics/.idea/knowAll.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/main/webapp/statics/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/webapp/statics/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/main/webapp/statics/UEditor/third-party/snapscreen/UEditorSnapscreen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/UEditor/third-party/snapscreen/UEditorSnapscreen.exe -------------------------------------------------------------------------------- /src/main/webapp/statics/UEditor/third-party/webuploader/Uploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/UEditor/third-party/webuploader/Uploader.swf -------------------------------------------------------------------------------- /src/main/webapp/statics/UEditor/third-party/webuploader/webuploader.css: -------------------------------------------------------------------------------- 1 | .webuploader-container { 2 | position: relative; 3 | } 4 | .webuploader-element-invisible { 5 | position: absolute !important; 6 | clip: rect(1px 1px 1px 1px); /* IE6, IE7 */ 7 | clip: rect(1px,1px,1px,1px); 8 | } 9 | .webuploader-pick { 10 | position: relative; 11 | display: inline-block; 12 | cursor: pointer; 13 | background: #00b7ee; 14 | padding: 10px 15px; 15 | color: #fff; 16 | text-align: center; 17 | border-radius: 3px; 18 | overflow: hidden; 19 | } 20 | .webuploader-pick-hover { 21 | background: #00a2d4; 22 | } 23 | 24 | .webuploader-pick-disable { 25 | opacity: 0.6; 26 | pointer-events:none; 27 | } 28 | 29 | -------------------------------------------------------------------------------- /src/main/webapp/statics/UEditor/third-party/zeroclipboard/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/UEditor/third-party/zeroclipboard/ZeroClipboard.swf -------------------------------------------------------------------------------- /src/main/webapp/statics/admin/.idea/.name: -------------------------------------------------------------------------------- 1 | admin_new -------------------------------------------------------------------------------- /src/main/webapp/statics/admin/.idea/admin_new.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/main/webapp/statics/admin/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/main/webapp/statics/admin/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/main/webapp/statics/admin/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/main/webapp/statics/admin/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /src/main/webapp/statics/admin/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/HELP-US-OUT.txt: -------------------------------------------------------------------------------- 1 | I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, 2 | Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, 3 | comprehensive icon sets or copy and paste your own. 4 | 5 | Please. Check it out. 6 | 7 | -Dave Gandy 8 | -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/less/animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .@{fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .@{fa-css-prefix}-pull-left { float: left; } 11 | .@{fa-css-prefix}-pull-right { float: right; } 12 | 13 | .@{fa-css-prefix} { 14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .@{fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "animated.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | @import "screen-reader.less"; 19 | -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/less/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); 7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), 8 | url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), 9 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), 10 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), 11 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .#{$fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .#{$fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/scss/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), 9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /src/main/webapp/statics/font-awesome-4.7.0/font-awesome-4.7.0/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "animated"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | @import "screen-reader"; 19 | -------------------------------------------------------------------------------- /src/main/webapp/statics/img/65acb3aa46193bc0a19acf4a0bed12f0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/img/65acb3aa46193bc0a19acf4a0bed12f0.jpg -------------------------------------------------------------------------------- /src/main/webapp/statics/img/820格式_音频mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/img/820格式_音频mp3.png -------------------------------------------------------------------------------- /src/main/webapp/statics/img/c14a56ae7f7d0b3313288516b19ad74c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/img/c14a56ae7f7d0b3313288516b19ad74c.jpg -------------------------------------------------------------------------------- /src/main/webapp/statics/img/cd-icons.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /src/main/webapp/statics/img/dianzan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/img/dianzan.png -------------------------------------------------------------------------------- /src/main/webapp/statics/img/fd5dc70f7bf53954e1a97d8160878266.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/img/fd5dc70f7bf53954e1a97d8160878266.jpg -------------------------------------------------------------------------------- /src/main/webapp/statics/img/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/img/group.png -------------------------------------------------------------------------------- /src/main/webapp/statics/img/hibernate-release-5.3.0.CR1.zip.lrgtswp.partial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/img/hibernate-release-5.3.0.CR1.zip.lrgtswp.partial -------------------------------------------------------------------------------- /src/main/webapp/statics/img/loading.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/main/webapp/statics/img/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/img/picture.png -------------------------------------------------------------------------------- /src/main/webapp/statics/img/unknown.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 10 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/main/webapp/statics/img/yuhangyuan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/img/yuhangyuan.jpg -------------------------------------------------------------------------------- /src/main/webapp/statics/img/zhixiang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/img/zhixiang.png -------------------------------------------------------------------------------- /src/main/webapp/statics/img/数据统计.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/img/数据统计.png -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - node 4 | dist: trusty 5 | addons: 6 | sauce_connect: 7 | username: layui 8 | jwt: 9 | secure: "c+I/AGPj+9cdZOtwGv9eFBdFNlo/BtSEnZ/mGXBLM2+FUn8Dptvhqy1XalRBul3sNiCyv2lNtcZPGw0kirI4EjGiXFfqghq9psvwOchkNM+bFxAiH+uRYCVb1ouDbpAh0w4d/nxpB11fPdVNzudwbiI/ii8LNm1sDDnJOklHiuzWBgOVN2jkzNRapacLfto6bWjnyS4r/zElLwnKpXlN6cIJFzYBU1f/RS68xaHwr/9+wvf5gNzL7OmmiIxl+UJJMejoK3G7I6DTiXyosJxsnljSxG0zbDSDL9lzPeQjFClya25ubbCFPv/UADlVAlz5Y4SLIaTUaRWD7tVphpku5S9XBwIopRQBdtp6y1Ebh/F7pDAiuN8lHzvkr6z++ld9nVcSJppSWN/tyibN7b+C7m6TyreVMHFjw+egAbd3wPVgrD30Vswu9vQXyVydcRJiP295VclgaHobdZKEwrqK7mujsOVOlZEoZWm2B+MLGfvYIjhVdpcRGlAZN+VvA+ea93t/poY1LB1/qH0vF2jMNa3ZI6AWrZaaTbToMUEj6QB9tnOGnGvINOGJDamMMB6aeCLaEgZzRqvTYXgzJAi1kYQKkCL//v3Z6od5eDBUVgMEOkTIchPjSDX5lwMedroPwnFql9ArIWnm7mLHQToEArOoKQhSlFOx+sA/nortCL4=" 10 | sudo: false 11 | cache: 12 | directories: 13 | - node_modules 14 | script: 15 | - npm run test:cov 16 | - npm run test:sauce 17 | after_script: 18 | - npm install coveralls && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage 19 | -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 layui 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "layui", 3 | "main": "src/layui.js", 4 | "version": "2.4.5", 5 | "homepage": "https://github.com/sentsin/layui", 6 | "authors": [ 7 | "sentsin " 8 | ], 9 | "description": "Classic modular front-end component library", 10 | "moduleType": [ 11 | "amd", 12 | "globals" 13 | ], 14 | "keywords": [ 15 | "layui", 16 | "ui", 17 | "JavaScript Framework", 18 | "toolkit", 19 | "front-end component library" 20 | ], 21 | "license": "MIT" 22 | } 23 | -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/dist/css/modules/code.css: -------------------------------------------------------------------------------- 1 | /** layui-v2.4.5 MIT License By https://www.layui.com */ 2 | html #layuicss-skincodecss{display:none;position:absolute;width:1989px}.layui-code-h3,.layui-code-view{position:relative;font-size:12px}.layui-code-view{display:block;margin:10px 0;padding:0;border:1px solid #e2e2e2;border-left-width:6px;background-color:#F2F2F2;color:#333;font-family:Courier New}.layui-code-h3{padding:0 10px;height:32px;line-height:32px;border-bottom:1px solid #e2e2e2}.layui-code-h3 a{position:absolute;right:10px;top:0;color:#999}.layui-code-view .layui-code-ol{position:relative;overflow:auto}.layui-code-view .layui-code-ol li{position:relative;margin-left:45px;line-height:20px;padding:0 5px;border-left:1px solid #e2e2e2;list-style-type:decimal-leading-zero;*list-style-type:decimal;background-color:#fff}.layui-code-view pre{margin:0}.layui-code-notepad{border:1px solid #0C0C0C;border-left-color:#3F3F3F;background-color:#0C0C0C;color:#C2BE9E}.layui-code-notepad .layui-code-h3{border-bottom:none}.layui-code-notepad .layui-code-ol li{background-color:#3F3F3F;border-left:none} -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/dist/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/dist/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/dist/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/dist/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/dist/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/dist/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/dist/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/dist/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/dist/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/dist/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/dist/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/dist/font/iconfont.eot -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/dist/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/dist/font/iconfont.ttf -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/dist/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/dist/font/iconfont.woff -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/dist/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/dist/images/face/11.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/dist/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/dist/images/face/12.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/dist/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/dist/images/face/21.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/dist/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/dist/images/face/29.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/dist/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/dist/images/face/47.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/dist/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/dist/images/face/5.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/dist/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/dist/images/face/6.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/dist/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/dist/images/face/64.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/dist/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/dist/images/face/7.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/doc/Git仓库.url: -------------------------------------------------------------------------------- 1 | [{000214A0-0000-0000-C000-000000000046}] 2 | Prop3=19,11 3 | [InternetShortcut] 4 | URL=https://github.com/sentsin/layui/ 5 | IDList= 6 | HotKey=0 7 | -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/doc/README.md: -------------------------------------------------------------------------------- 1 | # 注意事项: 2 | * 页面的HTML代码必须是 `` 开头 3 | * 除IE6、7外,所有浏览器均支持 4 | 5 | # 在线文档 6 | [http://www.layui.com/doc/](http://www.layui.com/doc/) 7 | -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/doc/在线演示.url: -------------------------------------------------------------------------------- 1 | [{000214A0-0000-0000-C000-000000000046}] 2 | Prop3=19,2 3 | [InternetShortcut] 4 | URL=http://www.layui.com/demo/ 5 | IDList= 6 | HotKey=0 7 | IconIndex=0 8 | IconFile=C:\Program Files (x86)\Google\Chrome\Application\chrome.exe 9 | -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/doc/快速上手.url: -------------------------------------------------------------------------------- 1 | [{000214A0-0000-0000-C000-000000000046}] 2 | Prop3=19,2 3 | [InternetShortcut] 4 | URL=http://www.layui.com/doc/ 5 | IDList= 6 | HotKey=0 7 | IconIndex=0 8 | IconFile=C:\Program Files (x86)\Google\Chrome\Application\chrome.exe 9 | -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/karma.conf.unit.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @file karma配置 3 | * @author fe.xiaowu@gmail.com 4 | */ 5 | 6 | var base = require('./karma.conf.base.js'); 7 | 8 | module.exports = function (config) { 9 | var options = Object.assign(base(config), {}); 10 | 11 | config.set(options); 12 | }; 13 | -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/font/iconfont.eot -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/font/iconfont.ttf -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/font/iconfont.woff -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/0.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/1.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/10.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/11.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/12.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/13.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/14.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/16.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/17.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/18.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/19.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/2.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/20.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/21.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/22.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/23.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/24.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/25.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/26.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/27.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/28.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/29.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/3.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/30.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/31.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/32.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/33.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/34.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/35.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/36.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/37.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/38.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/39.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/4.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/40.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/41.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/42.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/43.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/44.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/45.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/46.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/47.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/48.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/49.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/5.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/50.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/51.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/52.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/53.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/54.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/55.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/56.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/57.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/58.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/59.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/6.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/60.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/61.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/62.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/63.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/64.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/65.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/66.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/67.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/68.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/7.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/70.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/71.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/8.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/statics/layui-master/src/images/face/9.gif -------------------------------------------------------------------------------- /src/main/webapp/statics/layui-master/src/lay/modules/mobile/layim-mobile-open.js: -------------------------------------------------------------------------------- 1 | /** 2 | 3 | @Name:layim mobile 开源包 4 | @Author:贤心 5 | @License:MIT 6 | 7 | */ 8 | 9 | layui.define(function(exports){ 10 | exports('layim-mobile', layui.v); 11 | }); -------------------------------------------------------------------------------- /src/main/webapp/text/img/bgLogin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/bgLogin.jpg -------------------------------------------------------------------------------- /src/main/webapp/text/img/consoleIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/consoleIcon.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/AC3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/AC3.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/ACE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/ACE.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/ADE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/ADE.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/ADP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/ADP.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/AI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/AI.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/AIFF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/AIFF.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/AU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/AU.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/AVI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/AVI.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/BAT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/BAT.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/BIN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/BIN.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/BMP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/BMP.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/BUP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/BUP.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/CAB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/CAB.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/CAT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/CAT.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/CHM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/CHM.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/CSS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/CSS.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/CUE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/CUE.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/DAT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/DAT.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/DCR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/DCR.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/DER.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/DER.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/DIC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/DIC.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/DIVX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/DIVX.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/DIZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/DIZ.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/DLL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/DLL.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/DOC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/DOC.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/DOCX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/DOCX.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/DOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/DOS.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/DVD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/DVD.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/DWG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/DWG.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/DWT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/DWT.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/Default.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/EMF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/EMF.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/EXC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/EXC.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/FLV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/FLV.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/FON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/FON.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/GIF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/GIF.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/HLP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/HLP.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/HTML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/HTML.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/IFO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/IFO.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/INF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/INF.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/INI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/INI.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/INS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/INS.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/IP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/IP.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/ISO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/ISO.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/ISP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/ISP.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/JAVA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/JAVA.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/JFIF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/JFIF.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/JPEG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/JPEG.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/JPG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/JPG.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/LOG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/LOG.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/M4A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/M4A.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/MID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/MID.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/MMF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/MMF.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/MMM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/MMM.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/MOV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/MOV.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/MOVIE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/MOVIE.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/MP2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/MP2.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/MP2V.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/MP2V.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/MP3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/MP3.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/MP4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/MP4.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/MPE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/MPE.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/MPEG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/MPEG.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/MPG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/MPG.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/MPV2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/MPV2.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/NFO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/NFO.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/PDD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/PDD.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/PDF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/PDF.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/PHP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/PHP.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/PNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/PNG.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/PPT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/PPT.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/PPTX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/PPTX.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/PSD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/PSD.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/RAR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/RAR.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/REG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/REG.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/RTF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/RTF.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/SCP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/SCP.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/THEME.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/THEME.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/TIF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/TIF.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/TIFF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/TIFF.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/TLB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/TLB.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/TTF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/TTF.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/TXT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/TXT.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/UIS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/UIS.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/URL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/URL.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/VBS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/VBS.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/VCR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/VCR.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/VOB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/VOB.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/WAV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/WAV.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/WBA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/WBA.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/WEB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/WEB.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/WMA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/WMA.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/WMV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/WMV.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/WPL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/WPL.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/WRI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/WRI.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/WTX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/WTX.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/XLS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/XLS.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/XLSX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/XLSX.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/XML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/XML.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/XSL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/XSL.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/ZAP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/ZAP.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/fileicon/ZIP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/fileicon/ZIP.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/head_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/head_logo.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/headback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/headback.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/homelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/homelogo.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/loading.gif -------------------------------------------------------------------------------- /src/main/webapp/text/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/logo.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/none.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/photo.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/userinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/userinfo.png -------------------------------------------------------------------------------- /src/main/webapp/text/img/wda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/img/wda.png -------------------------------------------------------------------------------- /src/main/webapp/text/lib/bootstrap/3.0.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/bootstrap/3.0.3 -------------------------------------------------------------------------------- /src/main/webapp/text/lib/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/webapp/text/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/webapp/text/lib/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/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/text/lib/kindEditor/jsp/lib/commons-fileupload-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/jsp/lib/commons-fileupload-1.2.1.jar -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/jsp/lib/commons-io-1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/jsp/lib/commons-io-1.4.jar -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/jsp/lib/json_simple-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/jsp/lib/json_simple-1.1.jar -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/code/prettify.css: -------------------------------------------------------------------------------- 1 | .pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} 2 | 3 | pre.prettyprint { 4 | border: 0; 5 | border-left: 3px solid rgb(204, 204, 204); 6 | margin-left: 2em; 7 | padding: 0.5em; 8 | font-size: 110%; 9 | display: block; 10 | font-family: "Consolas", "Monaco", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace; 11 | margin: 1em 0px; 12 | white-space: pre; 13 | } 14 | -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/106.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/106.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/114.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/114.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/119.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/119.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/12.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/120.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/120.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/121.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/121.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/122.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/122.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/123.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/123.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/124.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/124.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/125.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/125.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/126.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/126.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/127.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/127.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/128.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/128.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/129.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/129.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/13.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/130.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/130.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/131.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/131.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/132.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/132.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/133.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/133.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/134.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/134.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/14.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/15.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/16.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/17.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/18.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/19.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/2.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/20.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/21.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/22.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/23.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/24.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/25.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/26.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/27.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/28.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/29.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/3.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/30.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/31.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/32.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/33.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/34.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/35.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/36.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/37.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/38.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/39.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/4.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/40.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/41.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/42.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/43.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/44.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/45.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/46.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/47.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/48.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/49.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/5.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/50.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/51.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/52.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/53.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/54.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/55.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/56.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/57.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/58.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/59.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/6.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/60.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/61.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/62.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/63.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/64.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/65.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/66.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/67.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/68.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/69.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/7.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/70.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/71.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/72.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/72.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/73.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/73.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/74.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/74.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/75.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/75.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/76.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/76.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/77.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/77.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/78.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/78.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/79.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/79.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/8.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/80.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/81.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/81.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/82.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/82.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/83.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/83.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/84.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/84.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/85.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/85.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/86.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/86.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/87.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/87.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/88.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/88.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/89.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/89.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/9.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/90.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/90.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/91.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/91.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/92.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/92.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/93.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/93.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/94.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/94.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/95.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/95.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/96.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/96.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/97.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/97.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/98.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/98.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/99.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/99.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/static.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/emoticons/images/static.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/filemanager/images/file-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/filemanager/images/file-16.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/filemanager/images/file-64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/filemanager/images/file-64.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/filemanager/images/folder-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/filemanager/images/folder-16.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/filemanager/images/folder-64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/filemanager/images/folder-64.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/filemanager/images/go-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/filemanager/images/go-up.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/fixtoolbar/fixtoolbar.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by chenyihong on 14/12/4. 3 | */ 4 | 5 | KindEditor.plugin('fixtoolbar', function (K) { 6 | var self = this; 7 | if (!self.fixToolBar) { 8 | return; 9 | } 10 | 11 | function init() { 12 | var toolbar = K('.ke-toolbar'); 13 | var originY = toolbar.pos().y; 14 | K(window).bind('scroll', function () { 15 | if (toolbar.css('position') == 'fixed') { 16 | if(document.body.scrollTop - originY < 0){ 17 | toolbar.css('position', 'static'); 18 | toolbar.css('top', 'auto'); 19 | } 20 | } else { 21 | if (toolbar.pos().y - document.body.scrollTop < 0) { 22 | toolbar.css('position', 'fixed'); 23 | toolbar.css('top', 0); 24 | } 25 | } 26 | }); 27 | } 28 | 29 | if (self.isCreated) { 30 | init(); 31 | } else { 32 | self.afterCreate(init); 33 | } 34 | 35 | }); 36 | -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/image/images/align_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/image/images/align_left.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/image/images/align_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/image/images/align_right.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/image/images/align_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/image/images/align_top.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/image/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/image/images/refresh.png -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/multiimage/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/multiimage/images/image.png -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/multiimage/images/select-files-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/multiimage/images/select-files-en.png -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/multiimage/images/select-files-zh-CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/multiimage/images/select-files-zh-CN.png -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/multiimage/images/swfupload.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/plugins/multiimage/images/swfupload.swf -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/pagebreak/pagebreak.js: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * KindEditor - WYSIWYG HTML Editor for Internet 3 | * Copyright (C) 2006-2011 kindsoft.net 4 | * 5 | * @author Roddy 6 | * @site http://www.kindsoft.net/ 7 | * @licence http://www.kindsoft.net/license.php 8 | *******************************************************************************/ 9 | 10 | KindEditor.plugin('pagebreak', function(K) { 11 | var self = this; 12 | var name = 'pagebreak'; 13 | var pagebreakHtml = K.undef(self.pagebreakHtml, '
'); 14 | 15 | self.clickToolbar(name, function() { 16 | var cmd = self.cmd, range = cmd.range; 17 | self.focus(); 18 | var tail = self.newlineTag == 'br' || K.WEBKIT ? '' : ''; 19 | self.insertHtml(pagebreakHtml + tail); 20 | if (tail !== '') { 21 | var p = K('#__kindeditor_tail_tag__', self.edit.doc); 22 | range.selectNodeContents(p[0]); 23 | p.removeAttr('id'); 24 | cmd.select(); 25 | } 26 | }); 27 | }); 28 | -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/plugins/template/html/1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

8 | 在此处输入标题 9 |

10 |

11 | 在此处输入内容 12 |

13 | 14 | -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/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/text/lib/kindEditor/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/text/lib/kindEditor/themes/common/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/themes/common/anchor.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/themes/common/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/themes/common/blank.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/themes/common/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/themes/common/flash.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/themes/common/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/themes/common/loading.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/themes/common/media.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/themes/common/media.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/themes/common/rm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/themes/common/rm.gif -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/themes/default/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/themes/default/background.png -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/themes/default/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/themes/default/default.png -------------------------------------------------------------------------------- /src/main/webapp/text/lib/kindEditor/themes/qq/editor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/text/lib/kindEditor/themes/qq/editor.gif -------------------------------------------------------------------------------- /src/main/webapp/upload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gb1998/KBMS/b186fbaf71797251b6ba791e546816b08f116e00/src/main/webapp/upload -------------------------------------------------------------------------------- /src/test/testIkanaly.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by warkey on 2018-03-24. 3 | * 查看分词效果 4 | */ 5 | 6 | 7 | import org.apache.lucene.analysis.Analyzer; 8 | import org.apache.lucene.analysis.TokenStream; 9 | import org.apache.lucene.analysis.tokenattributes.OffsetAttribute; 10 | import org.junit.Test; 11 | import org.wltea.analyzer.lucene.IKAnalyzer; 12 | 13 | import java.io.IOException; 14 | import java.io.StringReader; 15 | 16 | public class testIkanaly { 17 | @Test 18 | public void testIKanalysiser() throws IOException { 19 | 20 | Analyzer analyzer = new IKAnalyzer(); 21 | TokenStream ts = analyzer.tokenStream("field", 22 | new StringReader("popo孩子")); 23 | OffsetAttribute offsetAtt = ts.addAttribute(OffsetAttribute.class); 24 | try { 25 | ts.reset(); 26 | while (ts.incrementToken()) { 27 | System.out.println(offsetAtt.toString()); 28 | } 29 | ts.end(); 30 | } finally { 31 | ts.close(); 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /src/test/testLunce.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by warkey on 2018-03-24. 3 | */ 4 | 5 | import org.junit.Test; 6 | 7 | import java.io.IOException; 8 | 9 | public class testLunce { 10 | @Test 11 | public void testLunce() throws IOException { 12 | /*IndexWriter indexWriter = LuceneUtil.getIndexWriter(); 13 | indexWriter.close(); 14 | LuceneUtil.getIndexWriter(); 15 | */ 16 | } 17 | } 18 | --------------------------------------------------------------------------------