├── .gitignore ├── README.md ├── common ├── common.iml ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── ldb │ └── utils │ ├── ConfigStrUtil.java │ ├── DateUtil.java │ ├── JacksonUtil.java │ ├── PostServerUtil.java │ ├── QiNiuUploadUtil.java │ └── StringUtil.java ├── dao ├── dao.iml ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── ldb │ ├── config │ ├── MyBatisConfig.java │ └── MyBatisMapperScannerConfig.java │ ├── dao │ ├── AdminDAO.java │ ├── BlogAdviceDAO.java │ ├── BlogAdviceReplyDAO.java │ ├── BlogDAO.java │ ├── BlogTagDAO.java │ ├── BlogTypeDAO.java │ ├── CommentDAO.java │ ├── CommentReplyDAO.java │ ├── LikeDAO.java │ ├── LinkDAO.java │ ├── LoginHistoryDAO.java │ ├── MoodDAO.java │ ├── MottoDAO.java │ ├── SignatureDAO.java │ └── VisitorDAO.java │ └── mappers │ ├── AdminMapper.xml │ ├── BlogAdviceMapper.xml │ ├── BlogAdviceReplyMapper.xml │ ├── BlogMapper.xml │ ├── BlogTagMapper.xml │ ├── BlogTypeMapper.xml │ ├── CommentMapper.xml │ ├── CommentReplyMapper.xml │ ├── LikeMapper.xml │ ├── LinkMapper.xml │ ├── LoginHistoryMapper.xml │ ├── MoodMapper.xml │ ├── MottoMapper.xml │ ├── SignatureMapper.xml │ └── VisitorMapper.xml ├── plugin ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── baidu │ │ └── ueditor │ │ ├── ActionEnter.java │ │ ├── ConfigManager.java │ │ ├── Encoder.java │ │ ├── PathFormat.java │ │ ├── define │ │ ├── ActionMap.java │ │ ├── ActionState.java │ │ ├── AppInfo.java │ │ ├── BaseState.java │ │ ├── FileType.java │ │ ├── MIMEType.java │ │ ├── MultiState.java │ │ └── State.java │ │ ├── hunter │ │ ├── FileManager.java │ │ └── ImageHunter.java │ │ └── upload │ │ ├── Base64Uploader.java │ │ ├── BinaryUploader.java │ │ ├── StorageManager.java │ │ └── Uploader.java │ └── resources │ └── config.json ├── pojo ├── pojo.iml ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── ldb │ └── pojo │ ├── bo │ └── PageBeanBO.java │ ├── po │ ├── AdminPO.java │ ├── BlogAdvicePO.java │ ├── BlogAdviceReplyPO.java │ ├── BlogPO.java │ ├── BlogTagPO.java │ ├── BlogTypePO.java │ ├── CommentPO.java │ ├── CommentReplyPO.java │ ├── LikePO.java │ ├── LinkPO.java │ ├── LoginHistoryPO.java │ ├── MoodPO.java │ ├── MottoPO.java │ ├── SignaturePO.java │ └── VisitorPO.java │ └── vo │ ├── BlogAdviceReplyVO.java │ ├── BlogCommentVO.java │ ├── BlogDateArchiveVO.java │ ├── BlogVO.java │ ├── CommentReplyVO.java │ ├── CommentVO.java │ ├── LinkVO.java │ ├── MoodVO.java │ └── TimeLineVO.java ├── pom.xml ├── service ├── pom.xml ├── service.iml └── src │ └── main │ └── java │ └── com │ └── ldb │ └── service │ ├── AdminService.java │ ├── BlogAdviceReplyService.java │ ├── BlogAdviceService.java │ ├── BlogService.java │ ├── BlogTagService.java │ ├── BlogTypeService.java │ ├── CommentReplyService.java │ ├── CommentService.java │ ├── LikeService.java │ ├── LinkService.java │ ├── MottoService.java │ ├── SignatureService.java │ ├── TimeLineService.java │ ├── VisitorService.java │ ├── impl │ ├── AdminServiceImpl.java │ ├── BlogAdviceReplyServiceImpl.java │ ├── BlogAdviceServiceImpl.java │ ├── BlogServiceImpl.java │ ├── BlogTagServiceImpl.java │ ├── BlogTypeServiceImpl.java │ ├── CommentReplyServiceImpl.java │ ├── CommentServiceImpl.java │ ├── LikeServiceImpl.java │ ├── LinkServiceImpl.java │ ├── MottoServiceImpl.java │ ├── SignatureServiceImpl.java │ ├── TimeLineServiceImpl.java │ └── VisitorServiceImpl.java │ └── utils │ ├── BlogAdviceUtil.java │ ├── BlogUtil.java │ └── CommentUtil.java ├── sql └── blog.sql └── web ├── pom.xml ├── src ├── main │ ├── java │ │ └── com │ │ │ └── ldb │ │ │ ├── Application.java │ │ │ ├── cache │ │ │ └── InitCache.java │ │ │ ├── config │ │ │ ├── DruidConfig.java │ │ │ ├── ErrorPageConfig.java │ │ │ └── ShiroConfig.java │ │ │ ├── controller │ │ │ ├── BlogAdviceController.java │ │ │ ├── BlogController.java │ │ │ ├── BlogListController.java │ │ │ ├── DiaryController.java │ │ │ ├── IndexController.java │ │ │ ├── admin │ │ │ │ ├── BlogAdviceManageController.java │ │ │ │ ├── BlogManageController.java │ │ │ │ ├── BlogTagManageController.java │ │ │ │ ├── BlogTypeManageController.java │ │ │ │ ├── CommentManageController.java │ │ │ │ ├── LinkManageController.java │ │ │ │ ├── LoginController.java │ │ │ │ ├── MainController.java │ │ │ │ ├── MottoManageController.java │ │ │ │ ├── SignatureManageController.java │ │ │ │ ├── SystemController.java │ │ │ │ ├── TimeLineManageController.java │ │ │ │ └── UEditorController.java │ │ │ └── utils │ │ │ │ ├── PageUtil.java │ │ │ │ └── RequestUtil.java │ │ │ └── realm │ │ │ └── ShiroRealm.java │ └── resources │ │ ├── application.properties │ │ ├── banner.txt │ │ ├── static │ │ ├── background │ │ │ ├── css │ │ │ │ ├── animate.min.css │ │ │ │ ├── index.css │ │ │ │ └── main.css │ │ │ ├── images │ │ │ │ ├── Logo_40.png │ │ │ │ ├── background.jpg │ │ │ │ └── logo.jpg │ │ │ ├── js │ │ │ │ ├── blogManage.js │ │ │ │ ├── index.js │ │ │ │ ├── main.js │ │ │ │ └── pagesize.js │ │ │ └── plugin │ │ │ │ ├── font-awesome │ │ │ │ ├── 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 │ │ │ │ │ ├── mixins.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 │ │ │ │ ├── layui │ │ │ │ ├── css │ │ │ │ │ ├── layui.css │ │ │ │ │ ├── layui.mobile.css │ │ │ │ │ └── modules │ │ │ │ │ │ ├── code.css │ │ │ │ │ │ ├── laydate │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ └── 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 │ │ │ │ │ │ ├── 0.gif │ │ │ │ │ │ ├── 1.gif │ │ │ │ │ │ ├── 10.gif │ │ │ │ │ │ ├── 11.gif │ │ │ │ │ │ ├── 12.gif │ │ │ │ │ │ ├── 13.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 │ │ │ │ │ │ ├── 8.gif │ │ │ │ │ │ └── 9.gif │ │ │ │ ├── lay │ │ │ │ │ ├── dest │ │ │ │ │ │ └── layui.all.js │ │ │ │ │ ├── lib │ │ │ │ │ │ └── jquery.js │ │ │ │ │ └── modules │ │ │ │ │ │ ├── code.js │ │ │ │ │ │ ├── element.js │ │ │ │ │ │ ├── flow.js │ │ │ │ │ │ ├── form.js │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── laydate.js │ │ │ │ │ │ ├── layedit.js │ │ │ │ │ │ ├── layer.js │ │ │ │ │ │ ├── laypage.js │ │ │ │ │ │ ├── laytpl.js │ │ │ │ │ │ ├── mobile.js │ │ │ │ │ │ ├── pagesize.js │ │ │ │ │ │ ├── tree.js │ │ │ │ │ │ ├── upload.js │ │ │ │ │ │ └── util.js │ │ │ │ └── layui.js │ │ │ │ └── ueditor │ │ │ │ ├── dialogs │ │ │ │ ├── anchor │ │ │ │ │ └── anchor.html │ │ │ │ ├── attachment │ │ │ │ │ ├── attachment.css │ │ │ │ │ ├── attachment.html │ │ │ │ │ ├── attachment.js │ │ │ │ │ ├── fileTypeImages │ │ │ │ │ │ ├── icon_chm.gif │ │ │ │ │ │ ├── icon_default.png │ │ │ │ │ │ ├── icon_doc.gif │ │ │ │ │ │ ├── icon_exe.gif │ │ │ │ │ │ ├── icon_jpg.gif │ │ │ │ │ │ ├── icon_mp3.gif │ │ │ │ │ │ ├── icon_mv.gif │ │ │ │ │ │ ├── icon_pdf.gif │ │ │ │ │ │ ├── icon_ppt.gif │ │ │ │ │ │ ├── icon_psd.gif │ │ │ │ │ │ ├── icon_rar.gif │ │ │ │ │ │ ├── icon_txt.gif │ │ │ │ │ │ └── icon_xls.gif │ │ │ │ │ └── images │ │ │ │ │ │ ├── alignicon.gif │ │ │ │ │ │ ├── alignicon.png │ │ │ │ │ │ ├── bg.png │ │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ │ ├── file-icons.png │ │ │ │ │ │ ├── icons.gif │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ ├── progress.png │ │ │ │ │ │ ├── success.gif │ │ │ │ │ │ └── success.png │ │ │ │ ├── background │ │ │ │ │ ├── background.css │ │ │ │ │ ├── background.html │ │ │ │ │ ├── background.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── bg.png │ │ │ │ │ │ └── success.png │ │ │ │ ├── charts │ │ │ │ │ ├── chart.config.js │ │ │ │ │ ├── charts.css │ │ │ │ │ ├── charts.html │ │ │ │ │ ├── charts.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── charts0.png │ │ │ │ │ │ ├── charts1.png │ │ │ │ │ │ ├── charts2.png │ │ │ │ │ │ ├── charts3.png │ │ │ │ │ │ ├── charts4.png │ │ │ │ │ │ └── charts5.png │ │ │ │ ├── emotion │ │ │ │ │ ├── emotion.css │ │ │ │ │ ├── emotion.html │ │ │ │ │ ├── emotion.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── 0.gif │ │ │ │ │ │ ├── bface.gif │ │ │ │ │ │ ├── cface.gif │ │ │ │ │ │ ├── fface.gif │ │ │ │ │ │ ├── jxface2.gif │ │ │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ │ │ ├── tface.gif │ │ │ │ │ │ ├── wface.gif │ │ │ │ │ │ └── yface.gif │ │ │ │ ├── gmap │ │ │ │ │ └── gmap.html │ │ │ │ ├── help │ │ │ │ │ ├── help.css │ │ │ │ │ ├── help.html │ │ │ │ │ └── help.js │ │ │ │ ├── image │ │ │ │ │ ├── image.css │ │ │ │ │ ├── image.html │ │ │ │ │ ├── image.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── alignicon.jpg │ │ │ │ │ │ ├── bg.png │ │ │ │ │ │ ├── icons.gif │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ ├── progress.png │ │ │ │ │ │ ├── success.gif │ │ │ │ │ │ └── success.png │ │ │ │ ├── insertframe │ │ │ │ │ └── insertframe.html │ │ │ │ ├── internal.js │ │ │ │ ├── link │ │ │ │ │ └── link.html │ │ │ │ ├── map │ │ │ │ │ ├── map.html │ │ │ │ │ └── show.html │ │ │ │ ├── music │ │ │ │ │ ├── music.css │ │ │ │ │ ├── music.html │ │ │ │ │ └── music.js │ │ │ │ ├── preview │ │ │ │ │ └── preview.html │ │ │ │ ├── scrawl │ │ │ │ │ ├── images │ │ │ │ │ │ ├── addimg.png │ │ │ │ │ │ ├── brush.png │ │ │ │ │ │ ├── delimg.png │ │ │ │ │ │ ├── delimgH.png │ │ │ │ │ │ ├── empty.png │ │ │ │ │ │ ├── emptyH.png │ │ │ │ │ │ ├── eraser.png │ │ │ │ │ │ ├── redo.png │ │ │ │ │ │ ├── redoH.png │ │ │ │ │ │ ├── scale.png │ │ │ │ │ │ ├── scaleH.png │ │ │ │ │ │ ├── size.png │ │ │ │ │ │ ├── undo.png │ │ │ │ │ │ └── undoH.png │ │ │ │ │ ├── scrawl.css │ │ │ │ │ ├── scrawl.html │ │ │ │ │ └── scrawl.js │ │ │ │ ├── searchreplace │ │ │ │ │ ├── searchreplace.html │ │ │ │ │ └── searchreplace.js │ │ │ │ ├── snapscreen │ │ │ │ │ └── snapscreen.html │ │ │ │ ├── spechars │ │ │ │ │ ├── spechars.html │ │ │ │ │ └── spechars.js │ │ │ │ ├── table │ │ │ │ │ ├── dragicon.png │ │ │ │ │ ├── edittable.css │ │ │ │ │ ├── edittable.html │ │ │ │ │ ├── edittable.js │ │ │ │ │ ├── edittd.html │ │ │ │ │ └── edittip.html │ │ │ │ ├── template │ │ │ │ │ ├── config.js │ │ │ │ │ ├── images │ │ │ │ │ │ ├── bg.gif │ │ │ │ │ │ ├── pre0.png │ │ │ │ │ │ ├── pre1.png │ │ │ │ │ │ ├── pre2.png │ │ │ │ │ │ ├── pre3.png │ │ │ │ │ │ └── pre4.png │ │ │ │ │ ├── template.css │ │ │ │ │ ├── template.html │ │ │ │ │ └── template.js │ │ │ │ ├── video │ │ │ │ │ ├── images │ │ │ │ │ │ ├── bg.png │ │ │ │ │ │ ├── center_focus.jpg │ │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ │ ├── file-icons.png │ │ │ │ │ │ ├── icons.gif │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ ├── left_focus.jpg │ │ │ │ │ │ ├── none_focus.jpg │ │ │ │ │ │ ├── progress.png │ │ │ │ │ │ ├── right_focus.jpg │ │ │ │ │ │ ├── success.gif │ │ │ │ │ │ └── success.png │ │ │ │ │ ├── video.css │ │ │ │ │ ├── video.html │ │ │ │ │ └── video.js │ │ │ │ ├── webapp │ │ │ │ │ └── webapp.html │ │ │ │ └── wordimage │ │ │ │ │ ├── fClipboard_ueditor.swf │ │ │ │ │ ├── imageUploader.swf │ │ │ │ │ ├── tangram.js │ │ │ │ │ ├── wordimage.html │ │ │ │ │ └── wordimage.js │ │ │ │ ├── image │ │ │ │ └── u=4126257507,3957500859&fm=23&gp=0.jpg │ │ │ │ ├── lang │ │ │ │ ├── en │ │ │ │ │ ├── en.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── addimage.png │ │ │ │ │ │ ├── alldeletebtnhoverskin.png │ │ │ │ │ │ ├── alldeletebtnupskin.png │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ ├── button.png │ │ │ │ │ │ ├── copy.png │ │ │ │ │ │ ├── deletedisable.png │ │ │ │ │ │ ├── deleteenable.png │ │ │ │ │ │ ├── listbackground.png │ │ │ │ │ │ ├── localimage.png │ │ │ │ │ │ ├── music.png │ │ │ │ │ │ ├── rotateleftdisable.png │ │ │ │ │ │ ├── rotateleftenable.png │ │ │ │ │ │ ├── rotaterightdisable.png │ │ │ │ │ │ ├── rotaterightenable.png │ │ │ │ │ │ └── upload.png │ │ │ │ └── zh-cn │ │ │ │ │ ├── images │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── localimage.png │ │ │ │ │ ├── music.png │ │ │ │ │ └── upload.png │ │ │ │ │ └── zh-cn.js │ │ │ │ ├── static │ │ │ │ └── image │ │ │ │ │ └── 20170410 │ │ │ │ │ ├── 1491814665191001287.jpg │ │ │ │ │ ├── 1491814732432092610.jpg │ │ │ │ │ └── 1491814832803045037.jpg │ │ │ │ ├── themes │ │ │ │ ├── default │ │ │ │ │ ├── css │ │ │ │ │ │ ├── ueditor.css │ │ │ │ │ │ └── ueditor.min.css │ │ │ │ │ ├── dialogbase.css │ │ │ │ │ └── images │ │ │ │ │ │ ├── anchor.gif │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ │ ├── arrow_up.png │ │ │ │ │ │ ├── button-bg.gif │ │ │ │ │ │ ├── cancelbutton.gif │ │ │ │ │ │ ├── charts.png │ │ │ │ │ │ ├── cursor_h.gif │ │ │ │ │ │ ├── cursor_h.png │ │ │ │ │ │ ├── cursor_v.gif │ │ │ │ │ │ ├── cursor_v.png │ │ │ │ │ │ ├── dialog-title-bg.png │ │ │ │ │ │ ├── filescan.png │ │ │ │ │ │ ├── highlighted.gif │ │ │ │ │ │ ├── icons-all.gif │ │ │ │ │ │ ├── icons.gif │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ ├── loaderror.png │ │ │ │ │ │ ├── loading.gif │ │ │ │ │ │ ├── lock.gif │ │ │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ │ │ ├── pagebreak.gif │ │ │ │ │ │ ├── scale.png │ │ │ │ │ │ ├── sortable.png │ │ │ │ │ │ ├── spacer.gif │ │ │ │ │ │ ├── sparator_v.png │ │ │ │ │ │ ├── table-cell-align.png │ │ │ │ │ │ ├── tangram-colorpicker.png │ │ │ │ │ │ ├── toolbar_bg.png │ │ │ │ │ │ ├── unhighlighted.gif │ │ │ │ │ │ ├── upload.png │ │ │ │ │ │ ├── videologo.gif │ │ │ │ │ │ ├── word.gif │ │ │ │ │ │ └── wordpaste.png │ │ │ │ └── iframe.css │ │ │ │ ├── third-party │ │ │ │ ├── SyntaxHighlighter │ │ │ │ │ ├── shCore.js │ │ │ │ │ └── shCoreDefault.css │ │ │ │ ├── codemirror │ │ │ │ │ ├── codemirror.css │ │ │ │ │ └── codemirror.js │ │ │ │ ├── highcharts │ │ │ │ │ ├── adapters │ │ │ │ │ │ ├── mootools-adapter.js │ │ │ │ │ │ ├── mootools-adapter.src.js │ │ │ │ │ │ ├── prototype-adapter.js │ │ │ │ │ │ ├── prototype-adapter.src.js │ │ │ │ │ │ ├── standalone-framework.js │ │ │ │ │ │ └── standalone-framework.src.js │ │ │ │ │ ├── highcharts-more.js │ │ │ │ │ ├── highcharts-more.src.js │ │ │ │ │ ├── highcharts.js │ │ │ │ │ ├── highcharts.src.js │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── annotations.js │ │ │ │ │ │ ├── annotations.src.js │ │ │ │ │ │ ├── canvas-tools.js │ │ │ │ │ │ ├── canvas-tools.src.js │ │ │ │ │ │ ├── data.js │ │ │ │ │ │ ├── data.src.js │ │ │ │ │ │ ├── drilldown.js │ │ │ │ │ │ ├── drilldown.src.js │ │ │ │ │ │ ├── exporting.js │ │ │ │ │ │ ├── exporting.src.js │ │ │ │ │ │ ├── funnel.js │ │ │ │ │ │ ├── funnel.src.js │ │ │ │ │ │ ├── heatmap.js │ │ │ │ │ │ ├── heatmap.src.js │ │ │ │ │ │ ├── map.js │ │ │ │ │ │ ├── map.src.js │ │ │ │ │ │ ├── no-data-to-display.js │ │ │ │ │ │ └── no-data-to-display.src.js │ │ │ │ │ └── themes │ │ │ │ │ │ ├── dark-blue.js │ │ │ │ │ │ ├── dark-green.js │ │ │ │ │ │ ├── gray.js │ │ │ │ │ │ ├── grid.js │ │ │ │ │ │ └── skies.js │ │ │ │ ├── jquery-1.10.2.js │ │ │ │ ├── jquery-1.10.2.min.js │ │ │ │ ├── jquery-1.10.2.min.map │ │ │ │ ├── snapscreen │ │ │ │ │ └── UEditorSnapscreen.exe │ │ │ │ ├── video-js │ │ │ │ │ ├── font │ │ │ │ │ │ ├── vjs.eot │ │ │ │ │ │ ├── vjs.svg │ │ │ │ │ │ ├── vjs.ttf │ │ │ │ │ │ └── vjs.woff │ │ │ │ │ ├── video-js.css │ │ │ │ │ ├── video-js.min.css │ │ │ │ │ ├── video-js.swf │ │ │ │ │ ├── video.dev.js │ │ │ │ │ └── video.js │ │ │ │ ├── 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 │ │ │ │ ├── xss.min.js │ │ │ │ └── zeroclipboard │ │ │ │ │ ├── ZeroClipboard.js │ │ │ │ │ ├── ZeroClipboard.min.js │ │ │ │ │ └── ZeroClipboard.swf │ │ │ │ ├── ueditor.all.js │ │ │ │ ├── ueditor.config.js │ │ │ │ └── ueditor.parse.js │ │ ├── errorPage │ │ │ ├── 401.html │ │ │ ├── 404.html │ │ │ └── 500.html │ │ └── foreground │ │ │ ├── css │ │ │ ├── animate.min.css │ │ │ ├── bootstrap.css │ │ │ ├── chocolat.css │ │ │ ├── component.css │ │ │ ├── dropdown.css │ │ │ ├── jquery.eeyellow.Timeline.css │ │ │ ├── jquery.emoji.css │ │ │ ├── jquery.mCustomScrollbar.min.css │ │ │ ├── mystyle.css │ │ │ └── style.css │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ ├── images │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── banner-1.jpg │ │ │ ├── blog.ico │ │ │ ├── cat01.jpeg │ │ │ ├── cat02.jpeg │ │ │ ├── cat03.jpeg │ │ │ ├── close.png │ │ │ ├── dog01.jpeg │ │ │ ├── dog02.jpeg │ │ │ ├── dog03.jpeg │ │ │ ├── f1.jpg │ │ │ ├── f2.jpg │ │ │ ├── f3.jpg │ │ │ ├── f4.jpg │ │ │ ├── g1.jpg │ │ │ ├── g2.jpg │ │ │ ├── g3.jpg │ │ │ ├── g4.jpg │ │ │ ├── g5.jpg │ │ │ ├── g6.jpg │ │ │ ├── g7.jpg │ │ │ ├── g8.jpg │ │ │ ├── img-sp.png │ │ │ ├── key2.png │ │ │ ├── left.png │ │ │ ├── loading.png │ │ │ ├── m1.jpg │ │ │ ├── m2.jpg │ │ │ ├── m3.jpg │ │ │ ├── m4.jpg │ │ │ ├── m5.jpg │ │ │ ├── nature01.jpeg │ │ │ ├── qq │ │ │ │ ├── 1.gif │ │ │ │ ├── 10.gif │ │ │ │ ├── 11.gif │ │ │ │ ├── 12.gif │ │ │ │ ├── 13.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 │ │ │ ├── rabbit01.jpeg │ │ │ ├── right.png │ │ │ ├── search-icon.png │ │ │ ├── search.png │ │ │ ├── si.png │ │ │ ├── sin1.jpg │ │ │ ├── sin2.jpg │ │ │ ├── sing-1.jpg │ │ │ ├── social-icons.png │ │ │ ├── social.png │ │ │ ├── t1.jpg │ │ │ ├── t2.jpg │ │ │ ├── t3.jpg │ │ │ ├── t4.jpg │ │ │ ├── web_heart_animation.png │ │ │ └── xiaolongbao.gif │ │ │ ├── js │ │ │ ├── bootstrap.min.js │ │ │ ├── classie.js │ │ │ ├── jquery.chocolat.js │ │ │ ├── jquery.dropdown.js │ │ │ ├── jquery.eeyellow.Timeline.js │ │ │ ├── jquery.emoji.js │ │ │ ├── jquery.mCustomScrollbar.min.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.mousewheel-3.0.6.min.js │ │ │ ├── jquery.svg3dtagcloud.min.js │ │ │ ├── modernizr.custom.63321.js │ │ │ ├── modernizr.custom.js │ │ │ ├── myjs.js │ │ │ ├── time.js │ │ │ ├── uisearch.js │ │ │ ├── wow.min.js │ │ │ └── xiaolongbao.js │ │ │ └── plugin │ │ │ └── layer │ │ │ ├── layer.js │ │ │ ├── mobile │ │ │ ├── layer.js │ │ │ └── need │ │ │ │ └── layer.css │ │ │ └── skin │ │ │ └── default │ │ │ ├── icon-ext.png │ │ │ ├── icon.png │ │ │ ├── layer.css │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ │ └── templates │ │ ├── background │ │ ├── adminManage.html │ │ ├── blogAdviceManage.html │ │ ├── blogManage.html │ │ ├── blogTagManage.html │ │ ├── blogTypeManage.html │ │ ├── commentManage.html │ │ ├── index.html │ │ ├── linkManage.html │ │ ├── main.html │ │ ├── mottoManage.html │ │ ├── signatureManage.html │ │ ├── timeLineManage.html │ │ └── writeBlog.html │ │ └── foreground │ │ ├── blog.html │ │ ├── blogAdvice.html │ │ ├── blogList.html │ │ ├── common.html │ │ ├── diary.html │ │ └── index.html └── test │ └── java │ └── com │ └── ldb │ └── test │ ├── controller │ └── IndexControllerTest.java │ └── service │ ├── BlogAdviceServiceTest.java │ ├── BlogPageServiceTest.java │ ├── DiaryServiceTest.java │ ├── IndexServiceTest.java │ └── InitServiceTest.java └── web.iml /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | !.mvn/wrapper/maven-wrapper.jar 3 | 4 | ### STS ### 5 | .apt_generated 6 | .classpath 7 | .factorypath 8 | .project 9 | .settings 10 | .springBeans 11 | 12 | ### IntelliJ IDEA ### 13 | .idea 14 | *.iws 15 | *.iml 16 | *.ipr 17 | 18 | ### NetBeans ### 19 | nbproject/private/ 20 | build/ 21 | nbbuild/ 22 | dist/ 23 | nbdist/ 24 | .nb-gradle/ 25 | common/src/main/resources/ 26 | common/src/test/ 27 | dao/src/main/resources/ 28 | dao/src/test/ 29 | plugin/src/test/ 30 | pojo/src/main/resources/ 31 | pojo/src/test/ 32 | service/src/main/resources/ 33 | service/src/test/ 34 | web/src/main/resources/static/background/plugin/layui/css/css/ 35 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Blog3.0 2 | 博客项目3.0 3 | -------------------------------------------------------------------------------- /common/src/main/java/com/ldb/utils/ConfigStrUtil.java: -------------------------------------------------------------------------------- 1 | package com.ldb.utils; 2 | 3 | /** 4 | * Created by ldb on 2017/4/17. 5 | * 项目通用常量 6 | */ 7 | public class ConfigStrUtil { 8 | 9 | public static final String SUCCESS="{success:true}"; 10 | public static final String ERROR="{success:false}"; 11 | public static final int BLOGADVICEPAGESIZE=15; 12 | public static final int BLOGLISTPAGESIZE=6; 13 | public static final String QINIU_URL="http://oohpa87x2.bkt.clouddn.com/"; 14 | } 15 | -------------------------------------------------------------------------------- /common/src/main/java/com/ldb/utils/StringUtil.java: -------------------------------------------------------------------------------- 1 | package com.ldb.utils; 2 | 3 | /** 4 | * Created by ldb on 2017/4/19. 5 | */ 6 | public class StringUtil { 7 | public static Boolean isEmpty(String str){ 8 | if(str==null||str.isEmpty()){ 9 | return true; 10 | }else{ 11 | return false; 12 | } 13 | } 14 | public static Boolean isNotEmpty(String str){ 15 | if(str!=null&&!str.isEmpty()){ 16 | return true; 17 | }else{ 18 | return false; 19 | } 20 | } 21 | 22 | public static String formatLikeSQL(String str){ 23 | return str+"%"; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /dao/src/main/java/com/ldb/config/MyBatisMapperScannerConfig.java: -------------------------------------------------------------------------------- 1 | package com.ldb.config; 2 | 3 | import org.mybatis.spring.annotation.MapperScan; 4 | import org.mybatis.spring.mapper.MapperScannerConfigurer; 5 | import org.springframework.boot.autoconfigure.AutoConfigureAfter; 6 | import org.springframework.context.annotation.Configuration; 7 | 8 | 9 | @Configuration 10 | @MapperScan("com.ldb.dao") 11 | @AutoConfigureAfter(MyBatisConfig.class) 12 | public class MyBatisMapperScannerConfig { 13 | public MapperScannerConfigurer mapperScannerConfigurer(){ 14 | MapperScannerConfigurer mapperScannerConfigurer = new MapperScannerConfigurer(); 15 | mapperScannerConfigurer.setSqlSessionFactoryBeanName("sqlSessionFactory"); 16 | mapperScannerConfigurer.setBasePackage("com.ldb.dao"); 17 | return mapperScannerConfigurer; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /dao/src/main/java/com/ldb/dao/AdminDAO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.dao; 2 | 3 | import com.ldb.pojo.po.AdminPO; 4 | import org.apache.ibatis.annotations.Param; 5 | 6 | /** 7 | * Created by ldb on 2017/4/20. 8 | */ 9 | public interface AdminDAO { 10 | 11 | AdminPO checkLogin(AdminPO adminPO); 12 | 13 | AdminPO getAdminPOByUserName(@Param("userName") String userName); 14 | 15 | int updateAdmin(AdminPO adminPO); 16 | } 17 | -------------------------------------------------------------------------------- /dao/src/main/java/com/ldb/dao/BlogAdviceDAO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.dao; 2 | 3 | import com.ldb.pojo.bo.PageBeanBO; 4 | import com.ldb.pojo.po.BlogAdvicePO; 5 | import org.apache.ibatis.annotations.Param; 6 | 7 | import java.util.List; 8 | 9 | /** 10 | * Created by ldb on 2017/4/19. 11 | */ 12 | public interface BlogAdviceDAO { 13 | 14 | List listBlogAdvicePO(PageBeanBO pageBeanBO); 15 | 16 | Long getBlogAdviceCount(); 17 | 18 | int addBlogAdvice(BlogAdvicePO blogAdvicePO); 19 | 20 | Long getNotReplyCount(); 21 | 22 | int deleteBlogAdvice(@Param("id")Integer id); 23 | 24 | 25 | } 26 | -------------------------------------------------------------------------------- /dao/src/main/java/com/ldb/dao/BlogAdviceReplyDAO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.dao; 2 | 3 | import com.ldb.pojo.po.BlogAdviceReplyPO; 4 | import com.ldb.pojo.vo.BlogAdviceReplyVO; 5 | import org.apache.ibatis.annotations.Param; 6 | 7 | import java.util.List; 8 | 9 | /** 10 | * Created by ldb on 2017/4/19. 11 | */ 12 | public interface BlogAdviceReplyDAO { 13 | 14 | List listBlogAdviceReplyVO(@Param("blogAdviceId")Integer blogAdviceId); 15 | 16 | int addBlogAdviceReply(BlogAdviceReplyPO blogAdviceReplyPO); 17 | 18 | int deleteBlogAdviceReply(@Param("blogAdviceId") Integer blogAdviceId); 19 | 20 | } 21 | -------------------------------------------------------------------------------- /dao/src/main/java/com/ldb/dao/BlogDAO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.dao; 2 | 3 | import com.ldb.pojo.po.BlogPO; 4 | import com.ldb.pojo.vo.BlogCommentVO; 5 | import com.ldb.pojo.vo.BlogDateArchiveVO; 6 | import com.ldb.pojo.vo.BlogVO; 7 | import org.apache.ibatis.annotations.Param; 8 | 9 | import java.util.HashMap; 10 | import java.util.List; 11 | 12 | /** 13 | * Created by ldb on 2017/4/16. 14 | */ 15 | public interface BlogDAO { 16 | 17 | List listBlogDateArchiveVO(); 18 | 19 | BlogVO getRecommendBlogVO(); 20 | 21 | List listNewBlog(); 22 | 23 | List listHotBlog(); 24 | 25 | BlogPO getBlog(Integer id); 26 | 27 | int updateBlogReadNum(Integer id); 28 | 29 | List listBlog(HashMap param); 30 | 31 | Long getBlogCount(HashMap param); 32 | 33 | List listBlogPO(HashMap param); 34 | 35 | int addBlog(BlogPO blogPO); 36 | 37 | int updateBlog(BlogPO blogPO); 38 | 39 | int deleteBlog(Integer id); 40 | 41 | BlogCommentVO getBlogCommentVO(@Param("id") Integer id); 42 | 43 | } 44 | -------------------------------------------------------------------------------- /dao/src/main/java/com/ldb/dao/BlogTagDAO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.dao; 2 | 3 | import com.ldb.pojo.po.BlogTagPO; 4 | import org.apache.ibatis.annotations.Param; 5 | 6 | import java.util.HashMap; 7 | import java.util.List; 8 | 9 | /** 10 | * Created by ldb on 2017/4/16. 11 | */ 12 | public interface BlogTagDAO { 13 | 14 | List listBlogTagPO(HashMap param); 15 | 16 | BlogTagPO getBlogTag(@Param("blogTagId")Integer blogTagId); 17 | 18 | int updateBlogTag(BlogTagPO blogTagPO); 19 | 20 | int deleteBlogTag(@Param("id") Integer id); 21 | 22 | int addBlogTag(BlogTagPO blogTagPO); 23 | 24 | Long getBlogTagCount(); 25 | 26 | } 27 | -------------------------------------------------------------------------------- /dao/src/main/java/com/ldb/dao/BlogTypeDAO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.dao; 2 | 3 | import com.ldb.pojo.po.BlogTypePO; 4 | import org.apache.ibatis.annotations.Param; 5 | 6 | import java.util.List; 7 | 8 | /** 9 | * Created by ldb on 2017/4/16. 10 | */ 11 | public interface BlogTypeDAO { 12 | 13 | List listBlogTypePO(); 14 | 15 | BlogTypePO getBlogType(@Param("blogTypeId")Integer blogTypeId); 16 | 17 | int updateBlogType(BlogTypePO blogTypePO); 18 | 19 | int deleteBlogType(@Param("id") Integer id); 20 | 21 | int addBlogType(BlogTypePO blogTypePO); 22 | 23 | } 24 | -------------------------------------------------------------------------------- /dao/src/main/java/com/ldb/dao/CommentDAO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.dao; 2 | 3 | import com.ldb.pojo.po.CommentPO; 4 | import com.ldb.pojo.vo.CommentVO; 5 | import org.apache.ibatis.annotations.Param; 6 | 7 | import java.util.HashMap; 8 | import java.util.List; 9 | 10 | /** 11 | * Created by ldb on 2017/4/16. 12 | */ 13 | public interface CommentDAO { 14 | 15 | Long getCommentCount(@Param("blogId") Integer blogId); 16 | 17 | List listNewCommentVO(); 18 | 19 | List listCommentPO(HashMap param); 20 | 21 | int addComment(CommentPO commentPO); 22 | 23 | int deleteComment(HashMap param); 24 | 25 | 26 | } 27 | -------------------------------------------------------------------------------- /dao/src/main/java/com/ldb/dao/CommentReplyDAO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.dao; 2 | 3 | import com.ldb.pojo.po.CommentReplyPO; 4 | import com.ldb.pojo.vo.CommentReplyVO; 5 | import org.apache.ibatis.annotations.Param; 6 | 7 | import java.util.List; 8 | 9 | /** 10 | * Created by ldb on 2017/4/18. 11 | */ 12 | public interface CommentReplyDAO { 13 | 14 | List listCommentReply(@Param("commentId") Integer commentId); 15 | 16 | int addCommentReply(CommentReplyPO commentReplyPO); 17 | 18 | int deleteCommentReply(@Param("commentId")Integer commentId); 19 | } 20 | -------------------------------------------------------------------------------- /dao/src/main/java/com/ldb/dao/LikeDAO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.dao; 2 | 3 | import org.apache.ibatis.annotations.Param; 4 | 5 | /** 6 | * Created by ldb on 2017/4/15. 7 | */ 8 | public interface LikeDAO { 9 | 10 | Long getLikeCount(); 11 | 12 | int addLike(@Param("userIP")String userIP); 13 | 14 | Long getTodayLike(@Param("today") String today); 15 | } 16 | -------------------------------------------------------------------------------- /dao/src/main/java/com/ldb/dao/LinkDAO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.dao; 2 | 3 | import com.ldb.pojo.po.LinkPO; 4 | import org.apache.ibatis.annotations.Param; 5 | 6 | import java.util.HashMap; 7 | import java.util.List; 8 | 9 | /** 10 | * Created by ldb on 2017/4/15. 11 | */ 12 | public interface LinkDAO { 13 | 14 | List listLinkPO(HashMap param); 15 | 16 | int updateLink(LinkPO linkPO); 17 | 18 | int deleteLink(@Param("id") Integer id); 19 | 20 | int addLink(LinkPO linkPO); 21 | 22 | Long getLinkCount(); 23 | } 24 | -------------------------------------------------------------------------------- /dao/src/main/java/com/ldb/dao/LoginHistoryDAO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.dao; 2 | 3 | import com.ldb.pojo.po.LoginHistoryPO; 4 | 5 | /** 6 | * Created by ldb on 2017/4/21. 7 | */ 8 | public interface LoginHistoryDAO { 9 | 10 | int addLoginHistory(LoginHistoryPO loginHistoryPO); 11 | 12 | LoginHistoryPO getLoginHistory(); 13 | } 14 | -------------------------------------------------------------------------------- /dao/src/main/java/com/ldb/dao/MoodDAO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.dao; 2 | 3 | import com.ldb.pojo.po.MoodPO; 4 | import com.ldb.pojo.vo.MoodVO; 5 | 6 | import java.util.HashMap; 7 | import java.util.List; 8 | 9 | /** 10 | * Created by ldb on 2017/4/19. 11 | */ 12 | public interface MoodDAO { 13 | 14 | List listMoodVO(HashMap param); 15 | 16 | List listMoodArchiveDate(); 17 | 18 | List listMoodPO(HashMap param); 19 | 20 | Long getMoodCount(); 21 | 22 | int updateMood(MoodPO moodPO); 23 | 24 | int addMood(MoodPO moodPO); 25 | } 26 | -------------------------------------------------------------------------------- /dao/src/main/java/com/ldb/dao/MottoDAO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.dao; 2 | 3 | import com.ldb.pojo.po.MottoPO; 4 | 5 | import java.util.HashMap; 6 | import java.util.List; 7 | 8 | /** 9 | * Created by ldb on 2017/4/16. 10 | */ 11 | public interface MottoDAO { 12 | 13 | MottoPO getMottoPO(); 14 | 15 | int updateMotto(MottoPO mottoPO); 16 | 17 | int addMotto(MottoPO mottoPO); 18 | 19 | int deleteMotto(Integer id); 20 | 21 | Long getMottoCount(); 22 | 23 | List listMotto(HashMap param); 24 | } 25 | -------------------------------------------------------------------------------- /dao/src/main/java/com/ldb/dao/SignatureDAO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.dao; 2 | 3 | import com.ldb.pojo.po.SignaturePO; 4 | 5 | import java.util.HashMap; 6 | import java.util.List; 7 | 8 | /** 9 | * Created by ldb on 2017/4/16. 10 | */ 11 | public interface SignatureDAO { 12 | 13 | SignaturePO getSignaturePO(); 14 | 15 | int updateSignature(SignaturePO signaturePO); 16 | 17 | int addSignature(SignaturePO signaturePO); 18 | 19 | int deleteSignature(Integer id); 20 | 21 | Long getSignatureCount(); 22 | 23 | List listSignature(HashMap param); 24 | 25 | } 26 | -------------------------------------------------------------------------------- /dao/src/main/java/com/ldb/dao/VisitorDAO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.dao; 2 | 3 | import com.ldb.pojo.po.VisitorPO; 4 | import org.apache.ibatis.annotations.Param; 5 | 6 | /** 7 | * Created by ldb on 2017/4/17. 8 | */ 9 | public interface VisitorDAO { 10 | 11 | int addVisitor(VisitorPO visitorPO); 12 | 13 | Long getReadNum(); 14 | 15 | Long getTodayReadNum(@Param("today") String today); 16 | } 17 | -------------------------------------------------------------------------------- /dao/src/main/java/com/ldb/mappers/LikeMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 13 | 14 | 15 | insert into `like` values(null,#{userIP},now()) 16 | 17 | 18 | 21 | 22 | -------------------------------------------------------------------------------- /dao/src/main/java/com/ldb/mappers/LoginHistoryMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | insert into login_history values(null,#{ip},#{ipName},#{loginTime}) 17 | 18 | 19 | 22 | 23 | -------------------------------------------------------------------------------- /dao/src/main/java/com/ldb/mappers/VisitorMapper.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | insert into visitor values(null,#{userIP},#{userBrowser},#{userOS},now()) 10 | 11 | 12 | 13 | 16 | 17 | 20 | -------------------------------------------------------------------------------- /plugin/src/main/java/com/baidu/ueditor/Encoder.java: -------------------------------------------------------------------------------- 1 | package com.baidu.ueditor; 2 | 3 | public class Encoder { 4 | 5 | public static String toUnicode ( String input ) { 6 | 7 | StringBuilder builder = new StringBuilder(); 8 | char[] chars = input.toCharArray(); 9 | 10 | for ( char ch : chars ) { 11 | 12 | if ( ch < 256 ) { 13 | builder.append( ch ); 14 | } else { 15 | builder.append( "\\u" + Integer.toHexString( ch& 0xffff ) ); 16 | } 17 | 18 | } 19 | 20 | return builder.toString(); 21 | 22 | } 23 | 24 | } -------------------------------------------------------------------------------- /plugin/src/main/java/com/baidu/ueditor/define/ActionState.java: -------------------------------------------------------------------------------- 1 | package com.baidu.ueditor.define; 2 | 3 | public enum ActionState { 4 | UNKNOW_ERROR 5 | } 6 | -------------------------------------------------------------------------------- /plugin/src/main/java/com/baidu/ueditor/define/FileType.java: -------------------------------------------------------------------------------- 1 | package com.baidu.ueditor.define; 2 | 3 | import java.util.HashMap; 4 | import java.util.Map; 5 | 6 | public class FileType { 7 | 8 | public static final String JPG = "JPG"; 9 | 10 | private static final Map types = new HashMap(){{ 11 | 12 | put( FileType.JPG, ".jpg" ); 13 | 14 | }}; 15 | 16 | public static String getSuffix ( String key ) { 17 | return FileType.types.get( key ); 18 | } 19 | 20 | /** 21 | * 根据给定的文件名,获取其后缀信息 22 | * @param filename 23 | * @return 24 | */ 25 | public static String getSuffixByFilename ( String filename ) { 26 | 27 | return filename.substring( filename.lastIndexOf( "." ) ).toLowerCase(); 28 | 29 | } 30 | 31 | } 32 | -------------------------------------------------------------------------------- /plugin/src/main/java/com/baidu/ueditor/define/MIMEType.java: -------------------------------------------------------------------------------- 1 | package com.baidu.ueditor.define; 2 | 3 | import java.util.HashMap; 4 | import java.util.Map; 5 | 6 | public class MIMEType { 7 | 8 | public static final Map types = new HashMap(){{ 9 | put( "image/gif", ".gif" ); 10 | put( "image/jpeg", ".jpg" ); 11 | put( "image/jpg", ".jpg" ); 12 | put( "image/png", ".png" ); 13 | put( "image/bmp", ".bmp" ); 14 | }}; 15 | 16 | public static String getSuffix ( String mime ) { 17 | return MIMEType.types.get( mime ); 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /plugin/src/main/java/com/baidu/ueditor/define/State.java: -------------------------------------------------------------------------------- 1 | package com.baidu.ueditor.define; 2 | 3 | /** 4 | * 处理状态接口 5 | * @author hancong03@baidu.com 6 | * 7 | */ 8 | public interface State { 9 | 10 | public boolean isSuccess(); 11 | 12 | public void putInfo(String name, String val); 13 | 14 | public void putInfo(String name, long val); 15 | 16 | public String toJSONString(); 17 | 18 | } 19 | -------------------------------------------------------------------------------- /plugin/src/main/java/com/baidu/ueditor/upload/Uploader.java: -------------------------------------------------------------------------------- 1 | package com.baidu.ueditor.upload; 2 | 3 | import com.baidu.ueditor.define.State; 4 | 5 | import javax.servlet.http.HttpServletRequest; 6 | import java.util.Map; 7 | 8 | public class Uploader { 9 | private HttpServletRequest request = null; 10 | private Map conf = null; 11 | 12 | public Uploader(HttpServletRequest request, Map conf) { 13 | this.request = request; 14 | this.conf = conf; 15 | } 16 | 17 | public final State doExec() { 18 | String filedName = (String) this.conf.get("fieldName"); 19 | State state = null; 20 | 21 | if ("true".equals(this.conf.get("isBase64"))) { 22 | state = Base64Uploader.save(this.request.getParameter(filedName), 23 | this.conf); 24 | } else { 25 | state = BinaryUploader.save(this.request, this.conf); 26 | } 27 | 28 | return state; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /pojo/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | Blog 7 | com.ldb 8 | 1.0-SNAPSHOT 9 | 10 | 4.0.0 11 | 12 | pojo 13 | 14 | 15 | 16 | com.ldb 17 | common 18 | 1.0-SNAPSHOT 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /pojo/src/main/java/com/ldb/pojo/bo/PageBeanBO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.pojo.bo; 2 | 3 | public class PageBeanBO { 4 | 5 | private int page; 6 | private int pageSize; 7 | private int start; 8 | public int getPage() { 9 | return page; 10 | } 11 | public void setPage(int page) { 12 | this.page = page; 13 | } 14 | public int getPageSize() { 15 | return pageSize; 16 | } 17 | public void setPageSize(int pageSize) { 18 | this.pageSize = pageSize; 19 | } 20 | public int getStart() { 21 | return (page-1)*pageSize; 22 | } 23 | public void setStart(int start) { 24 | this.start = start; 25 | } 26 | public PageBeanBO() { 27 | super(); 28 | } 29 | public PageBeanBO(int page, int pageSize) { 30 | super(); 31 | this.page = page; 32 | this.pageSize = pageSize; 33 | } 34 | 35 | 36 | } 37 | -------------------------------------------------------------------------------- /pojo/src/main/java/com/ldb/pojo/po/AdminPO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.pojo.po; 2 | 3 | /** 4 | * Created by ldb on 2017/4/20. 5 | */ 6 | public class AdminPO { 7 | private Integer id; 8 | private String userName; 9 | private String password; 10 | private String role; 11 | 12 | public Integer getId() { 13 | return id; 14 | } 15 | 16 | public void setId(Integer id) { 17 | this.id = id; 18 | } 19 | 20 | public String getUserName() { 21 | return userName; 22 | } 23 | 24 | public void setUserName(String userName) { 25 | this.userName = userName; 26 | } 27 | 28 | public String getPassword() { 29 | return password; 30 | } 31 | 32 | public void setPassword(String password) { 33 | this.password = password; 34 | } 35 | 36 | public String getRole() { 37 | return role; 38 | } 39 | 40 | public void setRole(String role) { 41 | this.role = role; 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /pojo/src/main/java/com/ldb/pojo/po/BlogTagPO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.pojo.po; 2 | 3 | /** 4 | * Created by ldb on 2017/4/16. 5 | */ 6 | public class BlogTagPO { 7 | 8 | Integer id; 9 | String tagName; 10 | 11 | public Integer getId() { 12 | return id; 13 | } 14 | 15 | public void setId(Integer id) { 16 | this.id = id; 17 | } 18 | 19 | public String getTagName() { 20 | return tagName; 21 | } 22 | 23 | public void setTagName(String tagName) { 24 | this.tagName = tagName; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /pojo/src/main/java/com/ldb/pojo/po/BlogTypePO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.pojo.po; 2 | 3 | /** 4 | * Created by ldb on 2017/4/16. 5 | */ 6 | public class BlogTypePO { 7 | 8 | private Integer id; 9 | private String typeName; 10 | 11 | public Integer getId() { 12 | return id; 13 | } 14 | 15 | public void setId(Integer id) { 16 | this.id = id; 17 | } 18 | 19 | public String getTypeName() { 20 | return typeName; 21 | } 22 | 23 | public void setTypeName(String typeName) { 24 | this.typeName = typeName; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /pojo/src/main/java/com/ldb/pojo/po/LikePO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.pojo.po; 2 | 3 | import java.util.Date; 4 | 5 | public class LikePO { 6 | 7 | private Integer id; 8 | 9 | private String userIP; 10 | 11 | private Date clickTime; 12 | 13 | public Integer getId() { 14 | return id; 15 | } 16 | 17 | public void setId(Integer id) { 18 | this.id = id; 19 | } 20 | 21 | public String getUserIP() { 22 | return userIP; 23 | } 24 | 25 | public void setUserIP(String userIP) { 26 | this.userIP = userIP; 27 | } 28 | 29 | public Date getClickTime() { 30 | return clickTime; 31 | } 32 | 33 | public void setClickTime(Date clickTime) { 34 | this.clickTime = clickTime; 35 | } 36 | } -------------------------------------------------------------------------------- /pojo/src/main/java/com/ldb/pojo/po/LinkPO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.pojo.po; 2 | 3 | /** 4 | * Created by ldb on 2017/4/15. 5 | */ 6 | public class LinkPO { 7 | private Integer id; 8 | private String linkName; 9 | private String linkUrl; 10 | private String orderNum; 11 | 12 | public Integer getId() { 13 | return id; 14 | } 15 | 16 | public void setId(Integer id) { 17 | this.id = id; 18 | } 19 | 20 | public String getLinkName() { 21 | return linkName; 22 | } 23 | 24 | public void setLinkName(String linkName) { 25 | this.linkName = linkName; 26 | } 27 | 28 | public String getLinkUrl() { 29 | return linkUrl; 30 | } 31 | 32 | public void setLinkUrl(String linkUrl) { 33 | this.linkUrl = linkUrl; 34 | } 35 | 36 | public String getOrderNum() { 37 | return orderNum; 38 | } 39 | 40 | public void setOrderNum(String orderNum) { 41 | this.orderNum = orderNum; 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /pojo/src/main/java/com/ldb/pojo/po/LoginHistoryPO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.pojo.po; 2 | 3 | import java.util.Date; 4 | 5 | /** 6 | * Created by ldb on 2017/4/21. 7 | */ 8 | public class LoginHistoryPO { 9 | private Integer id; 10 | private String ip; 11 | private String ipName; 12 | private Date loginTime; 13 | 14 | public Integer getId() { 15 | return id; 16 | } 17 | 18 | public void setId(Integer id) { 19 | this.id = id; 20 | } 21 | 22 | public String getIp() { 23 | return ip; 24 | } 25 | 26 | public void setIp(String ip) { 27 | this.ip = ip; 28 | } 29 | 30 | public String getIpName() { 31 | return ipName; 32 | } 33 | 34 | public void setIpName(String ipName) { 35 | this.ipName = ipName; 36 | } 37 | 38 | public Date getLoginTime() { 39 | return loginTime; 40 | } 41 | 42 | public void setLoginTime(Date loginTime) { 43 | this.loginTime = loginTime; 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /pojo/src/main/java/com/ldb/pojo/vo/BlogAdviceReplyVO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.pojo.vo; 2 | 3 | import java.util.Date; 4 | 5 | /** 6 | * Created by ldb on 2017/4/19. 7 | */ 8 | public class BlogAdviceReplyVO { 9 | 10 | private String content; 11 | private Date publishTime; 12 | private Boolean role; 13 | 14 | public String getContent() { 15 | return content; 16 | } 17 | 18 | public void setContent(String content) { 19 | this.content = content; 20 | } 21 | 22 | public Date getPublishTime() { 23 | return publishTime; 24 | } 25 | 26 | public void setPublishTime(Date publishTime) { 27 | this.publishTime = publishTime; 28 | } 29 | 30 | public Boolean getRole() { 31 | return role; 32 | } 33 | 34 | public void setRole(Boolean role) { 35 | this.role = role; 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /pojo/src/main/java/com/ldb/pojo/vo/BlogCommentVO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.pojo.vo; 2 | 3 | /** 4 | * Created by ldb on 2017/4/26. 5 | */ 6 | public class BlogCommentVO { 7 | private Integer id; 8 | private String title; 9 | 10 | public Integer getId() { 11 | return id; 12 | } 13 | 14 | public void setId(Integer id) { 15 | this.id = id; 16 | } 17 | 18 | public String getTitle() { 19 | return title; 20 | } 21 | 22 | public void setTitle(String title) { 23 | this.title = title; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /pojo/src/main/java/com/ldb/pojo/vo/BlogDateArchiveVO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.pojo.vo; 2 | 3 | import com.fasterxml.jackson.annotation.JsonFormat; 4 | 5 | import java.util.Date; 6 | 7 | /** 8 | * Created by ldb on 2017/4/16. 9 | */ 10 | public class BlogDateArchiveVO { 11 | 12 | @JsonFormat(pattern="yyyy月MM") 13 | private Date archiveDate; 14 | private Integer totalNum; 15 | 16 | public Date getArchiveDate() { 17 | return archiveDate; 18 | } 19 | 20 | public void setArchiveDate(Date archiveDate) { 21 | this.archiveDate = archiveDate; 22 | } 23 | 24 | public Integer getTotalNum() { 25 | return totalNum; 26 | } 27 | 28 | public void setTotalNum(Integer totalNum) { 29 | this.totalNum = totalNum; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /pojo/src/main/java/com/ldb/pojo/vo/CommentReplyVO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.pojo.vo; 2 | 3 | import java.util.Date; 4 | 5 | /** 6 | * Created by ldb on 2017/4/18. 7 | */ 8 | public class CommentReplyVO { 9 | 10 | private String content; 11 | 12 | private Date publishTime; 13 | 14 | private Boolean role; 15 | 16 | public String getContent() { 17 | return content; 18 | } 19 | 20 | public void setContent(String content) { 21 | this.content = content; 22 | } 23 | 24 | public Date getPublishTime() { 25 | return publishTime; 26 | } 27 | 28 | public void setPublishTime(Date publishTime) { 29 | this.publishTime = publishTime; 30 | } 31 | 32 | public Boolean getRole() { 33 | return role; 34 | } 35 | 36 | public void setRole(Boolean role) { 37 | this.role = role; 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /pojo/src/main/java/com/ldb/pojo/vo/CommentVO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.pojo.vo; 2 | 3 | import java.util.Date; 4 | 5 | /** 6 | * Created by ldb on 2017/4/17. 7 | */ 8 | public class CommentVO { 9 | private String nickName; 10 | private Date publishTime; 11 | private String content; 12 | 13 | 14 | public String getNickName() { 15 | return nickName; 16 | } 17 | 18 | public void setNickName(String nickName) { 19 | this.nickName = nickName; 20 | } 21 | 22 | public Date getPublishTime() { 23 | return publishTime; 24 | } 25 | 26 | public void setPublishTime(Date publishTime) { 27 | this.publishTime = publishTime; 28 | } 29 | 30 | public String getContent() { 31 | return content; 32 | } 33 | 34 | public void setContent(String content) { 35 | this.content = content; 36 | } 37 | 38 | 39 | } 40 | -------------------------------------------------------------------------------- /pojo/src/main/java/com/ldb/pojo/vo/LinkVO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.pojo.vo; 2 | 3 | /** 4 | * Created by ldb on 2017/4/16. 5 | */ 6 | public class LinkVO { 7 | 8 | private String linkName; 9 | private String linkUrl; 10 | 11 | public String getLinkName() { 12 | return linkName; 13 | } 14 | 15 | public void setLinkName(String linkName) { 16 | this.linkName = linkName; 17 | } 18 | 19 | public String getLinkUrl() { 20 | return linkUrl; 21 | } 22 | 23 | public void setLinkUrl(String linkUrl) { 24 | this.linkUrl = linkUrl; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /pojo/src/main/java/com/ldb/pojo/vo/MoodVO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.pojo.vo; 2 | 3 | import java.util.Date; 4 | 5 | /** 6 | * Created by ldb on 2017/4/19. 7 | */ 8 | public class MoodVO { 9 | private String title; 10 | private String content; 11 | 12 | private Date publishTime; 13 | 14 | public String getTitle() { 15 | return title; 16 | } 17 | 18 | public void setTitle(String title) { 19 | this.title = title; 20 | } 21 | 22 | public String getContent() { 23 | return content; 24 | } 25 | 26 | public void setContent(String content) { 27 | this.content = content; 28 | } 29 | 30 | public Date getPublishTime() { 31 | return publishTime; 32 | } 33 | 34 | public void setPublishTime(Date publishTime) { 35 | this.publishTime = publishTime; 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /pojo/src/main/java/com/ldb/pojo/vo/TimeLineVO.java: -------------------------------------------------------------------------------- 1 | package com.ldb.pojo.vo; 2 | 3 | import java.util.List; 4 | 5 | /** 6 | * Created by ldb on 2017/4/19. 7 | */ 8 | public class TimeLineVO { 9 | 10 | private String moodArchiveDate; 11 | List moodVOList; 12 | 13 | public String getMoodArchiveDate() { 14 | return moodArchiveDate; 15 | } 16 | 17 | public void setMoodArchiveDate(String moodArchiveDate) { 18 | this.moodArchiveDate = moodArchiveDate; 19 | } 20 | 21 | public List getMoodVOList() { 22 | return moodVOList; 23 | } 24 | 25 | public void setMoodVOList(List moodVOList) { 26 | this.moodVOList = moodVOList; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /service/pom.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | Blog 7 | com.ldb 8 | 1.0-SNAPSHOT 9 | 10 | 4.0.0 11 | 12 | service 13 | 14 | 15 | 16 | com.ldb 17 | dao 18 | 1.0-SNAPSHOT 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /service/src/main/java/com/ldb/service/AdminService.java: -------------------------------------------------------------------------------- 1 | package com.ldb.service; 2 | 3 | import com.ldb.pojo.po.AdminPO; 4 | import com.ldb.pojo.po.LoginHistoryPO; 5 | 6 | /** 7 | * Created by ldb on 2017/4/20. 8 | */ 9 | public interface AdminService { 10 | 11 | AdminPO checkLogin(AdminPO adminPO); 12 | 13 | int addLoginHistory(LoginHistoryPO loginHistoryPO); 14 | 15 | LoginHistoryPO getLoginHistory(); 16 | 17 | AdminPO getAdminPOByUserName(String userName); 18 | 19 | int updateAdmin(AdminPO adminPO); 20 | 21 | 22 | } 23 | -------------------------------------------------------------------------------- /service/src/main/java/com/ldb/service/BlogAdviceReplyService.java: -------------------------------------------------------------------------------- 1 | package com.ldb.service; 2 | 3 | import com.ldb.pojo.po.BlogAdviceReplyPO; 4 | 5 | /** 6 | * Created by ldb on 2017/4/19. 7 | */ 8 | public interface BlogAdviceReplyService { 9 | 10 | int addBlogAdviceReply(BlogAdviceReplyPO blogAdviceReplyPO); 11 | } 12 | -------------------------------------------------------------------------------- /service/src/main/java/com/ldb/service/BlogAdviceService.java: -------------------------------------------------------------------------------- 1 | package com.ldb.service; 2 | 3 | import com.ldb.pojo.bo.PageBeanBO; 4 | import com.ldb.pojo.po.BlogAdvicePO; 5 | 6 | import java.util.List; 7 | 8 | /** 9 | * Created by ldb on 2017/4/19. 10 | */ 11 | public interface BlogAdviceService { 12 | 13 | List listBlogAdvice(PageBeanBO pageBeanBO); 14 | 15 | Long getBlogAdviceCount(); 16 | 17 | int addBlogAdvice(BlogAdvicePO blogAdvicePO); 18 | 19 | Long getNotReplyCount(); 20 | 21 | int deleteBlogAdvice(Integer id); 22 | } 23 | -------------------------------------------------------------------------------- /service/src/main/java/com/ldb/service/BlogService.java: -------------------------------------------------------------------------------- 1 | package com.ldb.service; 2 | 3 | import com.ldb.pojo.po.BlogPO; 4 | import com.ldb.pojo.vo.BlogCommentVO; 5 | import com.ldb.pojo.vo.BlogDateArchiveVO; 6 | import com.ldb.pojo.vo.BlogVO; 7 | 8 | import java.util.HashMap; 9 | import java.util.List; 10 | 11 | /** 12 | * Created by ldb on 2017/4/16. 13 | */ 14 | public interface BlogService { 15 | 16 | List listBlogDateArchive(); 17 | 18 | BlogVO getRecommendBlog(); 19 | 20 | List listNewBlog(); 21 | 22 | List listHotBlog(); 23 | 24 | BlogPO getBlog(Integer id); 25 | 26 | int updateBlogReadNum(Integer id); 27 | 28 | List listBlog(HashMap param); 29 | 30 | Long getBlogCount(HashMap param); 31 | 32 | List listBlogPO(HashMap param); 33 | 34 | int addBlog(BlogPO blogPO); 35 | 36 | int updateBlog(BlogPO blogPO); 37 | 38 | int deleteBlog(Integer id); 39 | 40 | BlogCommentVO getBlogCommentVO(Integer id); 41 | 42 | 43 | } 44 | -------------------------------------------------------------------------------- /service/src/main/java/com/ldb/service/BlogTagService.java: -------------------------------------------------------------------------------- 1 | package com.ldb.service; 2 | 3 | import com.ldb.pojo.po.BlogTagPO; 4 | 5 | import java.util.HashMap; 6 | import java.util.List; 7 | 8 | /** 9 | * Created by ldb on 2017/4/16. 10 | */ 11 | public interface BlogTagService { 12 | 13 | List listBlogTag(HashMap param); 14 | 15 | int updateBlogTag(BlogTagPO blogTagPO); 16 | 17 | int deleteBlogTag(Integer id); 18 | 19 | int addBlogTag(BlogTagPO blogTagPO); 20 | 21 | Long getBlogTagCount(); 22 | } 23 | -------------------------------------------------------------------------------- /service/src/main/java/com/ldb/service/BlogTypeService.java: -------------------------------------------------------------------------------- 1 | package com.ldb.service; 2 | 3 | import com.ldb.pojo.po.BlogTypePO; 4 | 5 | import java.util.List; 6 | 7 | /** 8 | * Created by ldb on 2017/4/16. 9 | */ 10 | public interface BlogTypeService { 11 | 12 | List listBlogType(); 13 | 14 | int updateBlogType(BlogTypePO blogTypePO); 15 | 16 | int deleteBlogType(Integer id); 17 | 18 | int addBlogType(BlogTypePO blogTypePO); 19 | } 20 | -------------------------------------------------------------------------------- /service/src/main/java/com/ldb/service/CommentReplyService.java: -------------------------------------------------------------------------------- 1 | package com.ldb.service; 2 | 3 | import com.ldb.pojo.po.CommentReplyPO; 4 | 5 | /** 6 | * Created by ldb on 2017/4/18. 7 | */ 8 | public interface CommentReplyService { 9 | 10 | int addCommentReply(CommentReplyPO commentReplyPO); 11 | } 12 | -------------------------------------------------------------------------------- /service/src/main/java/com/ldb/service/CommentService.java: -------------------------------------------------------------------------------- 1 | package com.ldb.service; 2 | 3 | import com.ldb.pojo.po.CommentPO; 4 | import com.ldb.pojo.vo.CommentVO; 5 | 6 | import java.util.HashMap; 7 | import java.util.List; 8 | 9 | /** 10 | * Created by ldb on 2017/4/17. 11 | */ 12 | public interface CommentService { 13 | 14 | List listNewComment(); 15 | 16 | List listComment(HashMap param); 17 | 18 | int addComment(CommentPO commentPO); 19 | 20 | Long getCommentCount(); 21 | 22 | int deleteComment(Integer id); 23 | } 24 | -------------------------------------------------------------------------------- /service/src/main/java/com/ldb/service/LikeService.java: -------------------------------------------------------------------------------- 1 | package com.ldb.service; 2 | 3 | /** 4 | * Created by ldb on 2017/4/15. 5 | */ 6 | public interface LikeService { 7 | 8 | Long getLikeCount(); 9 | 10 | int addLike(String userIP); 11 | 12 | Long getTodayLike(); 13 | } 14 | -------------------------------------------------------------------------------- /service/src/main/java/com/ldb/service/LinkService.java: -------------------------------------------------------------------------------- 1 | package com.ldb.service; 2 | 3 | import com.ldb.pojo.po.LinkPO; 4 | 5 | import java.util.HashMap; 6 | import java.util.List; 7 | 8 | /** 9 | * Created by ldb on 2017/4/15. 10 | */ 11 | public interface LinkService { 12 | 13 | List listLink(HashMap param); 14 | 15 | int updateLink(LinkPO linkPO); 16 | 17 | int deleteLink(Integer id); 18 | 19 | int addLink(LinkPO linkPO); 20 | 21 | Long getLinkCount(); 22 | } 23 | -------------------------------------------------------------------------------- /service/src/main/java/com/ldb/service/MottoService.java: -------------------------------------------------------------------------------- 1 | package com.ldb.service; 2 | 3 | import com.ldb.pojo.po.MottoPO; 4 | 5 | import java.util.HashMap; 6 | import java.util.List; 7 | 8 | /** 9 | * Created by ldb on 2017/4/16. 10 | */ 11 | public interface MottoService { 12 | 13 | MottoPO getMotto(); 14 | 15 | int updateMotto(MottoPO mottoPO); 16 | 17 | int addMotto(MottoPO mottoPO); 18 | 19 | int deleteMotto(Integer id); 20 | 21 | Long getMottoCount(); 22 | 23 | List listMotto(HashMap param); 24 | } 25 | -------------------------------------------------------------------------------- /service/src/main/java/com/ldb/service/SignatureService.java: -------------------------------------------------------------------------------- 1 | package com.ldb.service; 2 | 3 | import com.ldb.pojo.po.SignaturePO; 4 | 5 | import java.util.HashMap; 6 | import java.util.List; 7 | 8 | /** 9 | * Created by ldb on 2017/4/16. 10 | */ 11 | public interface SignatureService { 12 | 13 | SignaturePO getSignature(); 14 | 15 | int updateSignature(SignaturePO signaturePO); 16 | 17 | int addSignature(SignaturePO signaturePO); 18 | 19 | int deleteSignature(Integer id); 20 | 21 | Long getSignatureCount(); 22 | 23 | List listSignature(HashMap param); 24 | } 25 | -------------------------------------------------------------------------------- /service/src/main/java/com/ldb/service/TimeLineService.java: -------------------------------------------------------------------------------- 1 | package com.ldb.service; 2 | 3 | import com.ldb.pojo.po.MoodPO; 4 | import com.ldb.pojo.vo.TimeLineVO; 5 | 6 | import java.util.HashMap; 7 | import java.util.List; 8 | 9 | /** 10 | * Created by ldb on 2017/4/19. 11 | */ 12 | public interface TimeLineService { 13 | 14 | List listTimeLine(); 15 | 16 | List listMoodPO(HashMap param); 17 | 18 | Long getMoodCount(); 19 | 20 | int updateMood(MoodPO moodPO); 21 | 22 | int addMood(MoodPO moodPO); 23 | } 24 | -------------------------------------------------------------------------------- /service/src/main/java/com/ldb/service/VisitorService.java: -------------------------------------------------------------------------------- 1 | package com.ldb.service; 2 | 3 | import com.ldb.pojo.po.VisitorPO; 4 | 5 | /** 6 | * Created by ldb on 2017/4/17. 7 | */ 8 | public interface VisitorService { 9 | 10 | int addVisitor(VisitorPO visitorPO); 11 | 12 | Long getReadNum(); 13 | 14 | Long getTodayReadNum(); 15 | } 16 | -------------------------------------------------------------------------------- /service/src/main/java/com/ldb/service/impl/BlogAdviceReplyServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.ldb.service.impl; 2 | 3 | import com.ldb.dao.BlogAdviceReplyDAO; 4 | import com.ldb.pojo.po.BlogAdviceReplyPO; 5 | import com.ldb.service.BlogAdviceReplyService; 6 | import org.springframework.beans.factory.annotation.Autowired; 7 | import org.springframework.stereotype.Service; 8 | 9 | /** 10 | * Created by ldb on 2017/4/19. 11 | */ 12 | @Service("blogAdviceReplyService") 13 | public class BlogAdviceReplyServiceImpl implements BlogAdviceReplyService { 14 | 15 | @Autowired 16 | private BlogAdviceReplyDAO blogAdviceReplyDAO; 17 | 18 | @Override 19 | public int addBlogAdviceReply(BlogAdviceReplyPO blogAdviceReplyPO) { 20 | return blogAdviceReplyDAO.addBlogAdviceReply(blogAdviceReplyPO); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /service/src/main/java/com/ldb/service/impl/CommentReplyServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.ldb.service.impl; 2 | 3 | import com.ldb.dao.CommentReplyDAO; 4 | import com.ldb.pojo.po.CommentReplyPO; 5 | import com.ldb.service.CommentReplyService; 6 | import org.springframework.beans.factory.annotation.Autowired; 7 | import org.springframework.stereotype.Service; 8 | 9 | /** 10 | * Created by ldb on 2017/4/18. 11 | */ 12 | @Service("commentReplyService") 13 | public class CommentReplyServiceImpl implements CommentReplyService { 14 | 15 | @Autowired 16 | private CommentReplyDAO commentReplyDAO; 17 | 18 | @Override 19 | public int addCommentReply(CommentReplyPO commentReplyPO) { 20 | return commentReplyDAO.addCommentReply(commentReplyPO); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /service/src/main/java/com/ldb/service/impl/LikeServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.ldb.service.impl; 2 | 3 | import com.ldb.dao.LikeDAO; 4 | import com.ldb.service.LikeService; 5 | import com.ldb.utils.DateUtil; 6 | import com.ldb.utils.StringUtil; 7 | import org.springframework.beans.factory.annotation.Autowired; 8 | import org.springframework.stereotype.Service; 9 | 10 | /** 11 | * Created by ldb on 2017/4/17. 12 | */ 13 | @Service("likeService") 14 | public class LikeServiceImpl implements LikeService { 15 | 16 | @Autowired 17 | private LikeDAO likeDAO; 18 | 19 | @Override 20 | public Long getLikeCount(){ 21 | return likeDAO.getLikeCount(); 22 | } 23 | 24 | @Override 25 | public int addLike(String userIP) { 26 | return likeDAO.addLike(userIP); 27 | } 28 | 29 | @Override 30 | public Long getTodayLike() { 31 | String todayDateStr = DateUtil.getTodayDateStr(); 32 | String today= StringUtil.formatLikeSQL(todayDateStr); 33 | return likeDAO.getTodayLike(today); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /service/src/main/java/com/ldb/service/utils/BlogAdviceUtil.java: -------------------------------------------------------------------------------- 1 | package com.ldb.service.utils; 2 | 3 | import com.ldb.dao.BlogAdviceReplyDAO; 4 | import com.ldb.pojo.po.BlogAdvicePO; 5 | import com.ldb.pojo.vo.BlogAdviceReplyVO; 6 | 7 | import java.util.List; 8 | 9 | /** 10 | * Created by ldb on 2017/4/19. 11 | */ 12 | public class BlogAdviceUtil { 13 | 14 | public static void setBlogAdvice(List blogAdviceList, BlogAdviceReplyDAO blogAdviceReplyDAO){ 15 | for(BlogAdvicePO blogAdvicePO:blogAdviceList){ 16 | List blogAdviceReplyVOList = blogAdviceReplyDAO.listBlogAdviceReplyVO(blogAdvicePO.getId()); 17 | blogAdvicePO.setBlogAdviceReplyVOList(blogAdviceReplyVOList); 18 | } 19 | 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /service/src/main/java/com/ldb/service/utils/BlogUtil.java: -------------------------------------------------------------------------------- 1 | package com.ldb.service.utils; 2 | 3 | import com.ldb.dao.CommentDAO; 4 | import com.ldb.pojo.vo.BlogVO; 5 | 6 | /** 7 | * Created by ldb on 2017/4/17. 8 | */ 9 | public class BlogUtil { 10 | 11 | public static void setBlogVO(BlogVO blogVO, CommentDAO commentDAO){ 12 | blogVO.setCommentCount(commentDAO.getCommentCount(blogVO.getId())); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /service/src/main/java/com/ldb/service/utils/CommentUtil.java: -------------------------------------------------------------------------------- 1 | package com.ldb.service.utils; 2 | 3 | import com.ldb.dao.CommentReplyDAO; 4 | import com.ldb.pojo.po.CommentPO; 5 | import com.ldb.pojo.vo.CommentReplyVO; 6 | 7 | import java.util.List; 8 | 9 | /** 10 | * Created by ldb on 2017/4/19. 11 | */ 12 | public class CommentUtil { 13 | 14 | public static void setCommentList(List commentPOList, CommentReplyDAO commentReplyDAO){ 15 | for(CommentPO commentPO:commentPOList){ 16 | List commentReplyVOList = commentReplyDAO.listCommentReply(commentPO.getId()); 17 | commentPO.setCommentReplyVOList(commentReplyVOList); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /web/src/main/java/com/ldb/Application.java: -------------------------------------------------------------------------------- 1 | package com.ldb; 2 | 3 | import org.springframework.boot.SpringApplication; 4 | import org.springframework.boot.autoconfigure.SpringBootApplication; 5 | 6 | /** 7 | * Created by ldb on 2017/3/26. 8 | */ 9 | @SpringBootApplication 10 | public class Application { 11 | 12 | public static void main(String[] args) { 13 | SpringApplication.run(Application.class, args); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /web/src/main/java/com/ldb/config/ErrorPageConfig.java: -------------------------------------------------------------------------------- 1 | package com.ldb.config; 2 | 3 | 4 | import org.springframework.boot.context.embedded.EmbeddedServletContainerCustomizer; 5 | import org.springframework.boot.web.servlet.ErrorPage; 6 | import org.springframework.context.annotation.Bean; 7 | import org.springframework.context.annotation.Configuration; 8 | import org.springframework.http.HttpStatus; 9 | 10 | /** 11 | * Created by ldb on 2017/2/7. 12 | */ 13 | @Configuration 14 | public class ErrorPageConfig { 15 | @Bean 16 | public EmbeddedServletContainerCustomizer containerCustomizer() { 17 | 18 | return (container -> { 19 | ErrorPage error401Page = new ErrorPage(HttpStatus.UNAUTHORIZED, "/errorPage/401.html"); 20 | ErrorPage error404Page = new ErrorPage(HttpStatus.NOT_FOUND, "/errorPage/404.html"); 21 | ErrorPage error500Page = new ErrorPage(HttpStatus.INTERNAL_SERVER_ERROR, "/errorPage/500.html"); 22 | 23 | container.addErrorPages(error401Page, error404Page, error500Page); 24 | }); 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /web/src/main/java/com/ldb/controller/DiaryController.java: -------------------------------------------------------------------------------- 1 | package com.ldb.controller; 2 | 3 | import com.ldb.pojo.vo.TimeLineVO; 4 | import com.ldb.service.TimeLineService; 5 | import org.springframework.beans.factory.annotation.Autowired; 6 | import org.springframework.stereotype.Controller; 7 | import org.springframework.web.bind.annotation.RequestMapping; 8 | import org.springframework.web.servlet.ModelAndView; 9 | 10 | import java.util.List; 11 | 12 | /** 13 | * Created by ldb on 2017/4/19. 14 | */ 15 | @Controller 16 | public class DiaryController { 17 | 18 | @Autowired 19 | private TimeLineService timeLineService; 20 | 21 | @RequestMapping("/diary") 22 | public ModelAndView diary(){ 23 | ModelAndView mav=new ModelAndView("foreground/diary"); 24 | List timeLineList = timeLineService.listTimeLine(); 25 | mav.addObject("timeLineList",timeLineList); 26 | return mav; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /web/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | _____ ____ _ _____ ____ _ ____ _____ 2 | | __ \| _ \( )/ ____| | _ \| | / __ \ / ____| 3 | | | | | |_) |/| (___ | |_) | | | | | | | __ 4 | | | | | _ < \___ \ | _ <| | | | | | | |_ | 5 | | |__| | |_) | ____) | | |_) | |____| |__| | |__| | 6 | |_____/|____/ |_____/ |____/|______|\____/ \_____| -------------------------------------------------------------------------------- /web/src/main/resources/static/background/images/Logo_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/images/Logo_40.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/images/background.jpg -------------------------------------------------------------------------------- /web/src/main/resources/static/background/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/images/logo.jpg -------------------------------------------------------------------------------- /web/src/main/resources/static/background/js/pagesize.js: -------------------------------------------------------------------------------- 1 |  2 | 3 | layui.define('jquery', function (exports) { 4 | var $ = layui.jquery; 5 | function pagesize(id, pageSize) { 6 | $('#' + id + ' .layui-laypage').append('每页 '); 7 | $('#' + id + ' .laypage-extend-pagesize input[class=layui-laypage-skip]').val(pageSize); 8 | var pagesize = { 9 | btn: $('#' + id + ' .laypage-extend-pagesize .layui-laypage-btn'), 10 | callback: function (callback) { 11 | this.ok = callback; 12 | }, 13 | ok: null 14 | }; 15 | $(pagesize.btn).on('click', function () { 16 | pagesize.ok(pagesize.btn.siblings('input[class=layui-laypage-skip]').val()); 17 | }); 18 | return pagesize; 19 | } 20 | exports('pagesize', pagesize); 21 | }); -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/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 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/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 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/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 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/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 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/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 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/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 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/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 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/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 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/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 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/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 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/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 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/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 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/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 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/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 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/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 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/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 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/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 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/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 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/font-awesome/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 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/css/modules/code.css: -------------------------------------------------------------------------------- 1 | /** layui-v1.0.9_rls MIT License By http://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 #ddd;border-left-width:6px;background-color:#F2F2F2;color:#333;font-family:Courier New}.layui-code-h3{padding:0 10px;height:30px;line-height:30px;border-bottom:1px solid #ddd}.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 #ddd;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} -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/css/modules/laydate/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/css/modules/laydate/icon.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/font/iconfont.eot -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/font/iconfont.woff -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/0.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/1.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/10.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/11.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/12.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/13.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/14.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/15.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/16.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/17.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/18.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/19.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/2.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/20.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/21.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/22.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/23.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/24.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/25.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/26.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/27.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/28.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/29.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/3.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/30.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/31.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/32.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/33.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/34.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/35.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/36.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/37.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/38.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/39.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/4.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/40.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/41.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/42.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/43.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/44.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/45.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/46.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/47.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/48.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/49.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/5.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/50.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/51.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/52.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/53.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/54.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/55.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/56.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/57.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/58.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/59.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/6.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/60.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/61.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/62.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/63.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/64.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/65.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/66.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/67.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/68.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/69.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/7.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/70.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/71.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/8.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/layui/images/face/9.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/layui/lay/modules/pagesize.js: -------------------------------------------------------------------------------- 1 |  2 | layui.define('jquery', function (exports) { 3 | var $ = layui.jquery; 4 | function pagesize(id, pageSize) { 5 | $('#' + id + ' .layui-laypage').append('每页 '); 6 | $('#' + id + ' .laypage-extend-pagesize input[class=layui-laypage-skip]').val(pageSize); 7 | var pagesize = { 8 | btn: $('#' + id + ' .laypage-extend-pagesize .layui-laypage-btn'), 9 | callback: function (callback) { 10 | this.ok = callback; 11 | }, 12 | ok: null 13 | }; 14 | $(pagesize.btn).on('click', function () { 15 | pagesize.ok(pagesize.btn.siblings('input[class=layui-laypage-skip]').val()); 16 | }); 17 | return pagesize; 18 | } 19 | exports('pagesize', pagesize); 20 | }); -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/fileTypeImages/icon_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/fileTypeImages/icon_default.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/images/alignicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/images/alignicon.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/images/alignicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/images/alignicon.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/images/bg.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/images/file-icons.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/images/file-icons.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/images/icons.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/images/icons.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/images/image.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/images/progress.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/images/success.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/attachment/images/success.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/background/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/background/images/bg.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/background/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/background/images/success.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/charts/images/charts0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/charts/images/charts0.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/charts/images/charts1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/charts/images/charts1.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/charts/images/charts2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/charts/images/charts2.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/charts/images/charts3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/charts/images/charts3.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/charts/images/charts4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/charts/images/charts4.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/charts/images/charts5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/charts/images/charts5.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/emotion/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/emotion/images/0.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/emotion/images/bface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/emotion/images/bface.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/emotion/images/cface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/emotion/images/cface.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/emotion/images/fface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/emotion/images/fface.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/emotion/images/jxface2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/emotion/images/jxface2.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/emotion/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/emotion/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/emotion/images/tface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/emotion/images/tface.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/emotion/images/wface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/emotion/images/wface.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/emotion/images/yface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/emotion/images/yface.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/help/help.css: -------------------------------------------------------------------------------- 1 | .wrapper{width: 370px;margin: 10px auto;zoom: 1;} 2 | .tabbody{height: 360px;} 3 | .tabbody .panel{width:100%;height: 360px;position: absolute;background: #fff;} 4 | .tabbody .panel h1{font-size:26px;margin: 5px 0 0 5px;} 5 | .tabbody .panel p{font-size:12px;margin: 5px 0 0 5px;} 6 | .tabbody table{width:90%;line-height: 20px;margin: 5px 0 0 5px;;} 7 | .tabbody table thead{font-weight: bold;line-height: 25px;} -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/image/images/alignicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/image/images/alignicon.jpg -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/image/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/image/images/bg.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/image/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/image/images/icons.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/image/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/image/images/icons.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/image/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/image/images/image.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/image/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/image/images/progress.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/image/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/image/images/success.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/image/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/image/images/success.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/addimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/addimg.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/brush.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/delimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/delimg.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/delimgH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/delimgH.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/empty.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/emptyH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/emptyH.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/eraser.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/redo.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/redoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/redoH.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/scale.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/scaleH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/scaleH.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/size.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/undo.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/undoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/scrawl/images/undoH.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/spechars/spechars.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 14 | 15 | 16 |
17 |
18 |
19 | 20 | 21 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/table/dragicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/table/dragicon.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/table/edittip.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 表格删除提示 5 | 6 | 17 | 18 | 19 |
20 |
21 | 22 |
23 |
24 | 25 |
26 |
27 | 32 | 33 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/template/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/template/images/bg.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/template/images/pre0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/template/images/pre0.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/template/images/pre1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/template/images/pre1.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/template/images/pre2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/template/images/pre2.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/template/images/pre3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/template/images/pre3.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/template/images/pre4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/template/images/pre4.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/template/template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
12 |
13 | 14 |
15 |
16 |
17 |
18 | 19 |
20 |
21 |
22 |
23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/video/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/video/images/bg.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/video/images/center_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/video/images/center_focus.jpg -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/video/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/video/images/file-icons.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/video/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/video/images/file-icons.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/video/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/video/images/icons.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/video/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/video/images/icons.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/video/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/video/images/image.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/video/images/left_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/video/images/left_focus.jpg -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/video/images/none_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/video/images/none_focus.jpg -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/video/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/video/images/progress.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/video/images/right_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/video/images/right_focus.jpg -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/video/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/video/images/success.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/video/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/video/images/success.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/wordimage/fClipboard_ueditor.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/wordimage/fClipboard_ueditor.swf -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/dialogs/wordimage/imageUploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/dialogs/wordimage/imageUploader.swf -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/image/u=4126257507,3957500859&fm=23&gp=0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/image/u=4126257507,3957500859&fm=23&gp=0.jpg -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/lang/en/images/addimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/lang/en/images/addimage.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/lang/en/images/alldeletebtnhoverskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/lang/en/images/alldeletebtnhoverskin.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/lang/en/images/alldeletebtnupskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/lang/en/images/alldeletebtnupskin.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/lang/en/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/lang/en/images/background.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/lang/en/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/lang/en/images/button.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/lang/en/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/lang/en/images/copy.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/lang/en/images/deletedisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/lang/en/images/deletedisable.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/lang/en/images/deleteenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/lang/en/images/deleteenable.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/lang/en/images/listbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/lang/en/images/listbackground.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/lang/en/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/lang/en/images/localimage.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/lang/en/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/lang/en/images/music.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/lang/en/images/rotateleftdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/lang/en/images/rotateleftdisable.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/lang/en/images/rotateleftenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/lang/en/images/rotateleftenable.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/lang/en/images/rotaterightdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/lang/en/images/rotaterightdisable.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/lang/en/images/rotaterightenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/lang/en/images/rotaterightenable.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/lang/en/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/lang/en/images/upload.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/lang/zh-cn/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/lang/zh-cn/images/localimage.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/lang/zh-cn/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/lang/zh-cn/images/upload.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/static/image/20170410/1491814665191001287.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/static/image/20170410/1491814665191001287.jpg -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/static/image/20170410/1491814732432092610.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/static/image/20170410/1491814732432092610.jpg -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/static/image/20170410/1491814832803045037.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/static/image/20170410/1491814832803045037.jpg -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/anchor.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/arrow.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/arrow_down.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/arrow_up.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/button-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/button-bg.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/cancelbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/cancelbutton.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/charts.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/cursor_h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/cursor_h.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/cursor_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/cursor_h.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/cursor_v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/cursor_v.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/cursor_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/cursor_v.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/dialog-title-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/dialog-title-bg.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/filescan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/filescan.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/highlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/highlighted.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/icons-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/icons-all.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/icons.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/icons.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/loaderror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/loaderror.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/loading.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/lock.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/pagebreak.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/scale.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/sortable.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/spacer.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/sparator_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/sparator_v.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/table-cell-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/table-cell-align.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/tangram-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/tangram-colorpicker.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/toolbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/toolbar_bg.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/unhighlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/unhighlighted.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/upload.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/videologo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/videologo.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/word.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/word.gif -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/default/images/wordpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llldddbbb/Blog2/db881e24e04a4fcf8a9fedf7f6592316a55ea59e/web/src/main/resources/static/background/plugin/ueditor/themes/default/images/wordpaste.png -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | img { 3 | max-width: 100%; /*图片自适应宽度*/ 4 | } 5 | -------------------------------------------------------------------------------- /web/src/main/resources/static/background/plugin/ueditor/third-party/highcharts/modules/heatmap.js: -------------------------------------------------------------------------------- 1 | (function(b){var k=b.seriesTypes,l=b.each;k.heatmap=b.extendClass(k.map,{colorKey:"z",useMapGeometry:!1,pointArrayMap:["y","z"],translate:function(){var c=this,b=c.options,i=Number.MAX_VALUE,j=Number.MIN_VALUE;c.generatePoints();l(c.data,function(a){var e=a.x,f=a.y,d=a.z,g=(b.colsize||1)/2,h=(b.rowsize||1)/2;a.path=["M",e-g,f-h,"L",e+g,f-h,"L",e+g,f+h,"L",e-g,f+h,"Z"];a.shapeType="path";a.shapeArgs={d:c.translatePath(a.path)};typeof d==="number"&&(d>j?j=d:d