├── .classpath ├── .gitattributes ├── .gitignore ├── .project ├── .settings ├── .jsdtscope ├── org.eclipse.core.resources.prefs ├── org.eclipse.jdt.core.prefs ├── org.eclipse.wst.common.component ├── org.eclipse.wst.common.project.facet.core.xml ├── org.eclipse.wst.jsdt.ui.superType.container └── org.eclipse.wst.jsdt.ui.superType.name ├── README.md ├── WebContent ├── META-INF │ └── MANIFEST.MF ├── WEB-INF │ ├── jsp │ │ ├── blog │ │ │ ├── about.jsp │ │ │ ├── article.jsp │ │ │ ├── blog.jsp │ │ │ ├── codingEvent.jsp │ │ │ ├── common │ │ │ │ ├── blogHeader.jsp │ │ │ │ ├── blogPage.jsp │ │ │ │ ├── footerSideBar.jsp │ │ │ │ ├── rightSideBar.jsp │ │ │ │ └── topSideBar.jsp │ │ │ └── leaveYourMind.jsp │ │ ├── common │ │ │ ├── page.jsp │ │ │ └── taglibs.jsp │ │ ├── demo │ │ │ └── uploadDemo.jsp │ │ ├── kindeditor │ │ │ ├── demo.jsp │ │ │ ├── fileManagerJson.jsp │ │ │ └── uploadJson.jsp │ │ ├── system │ │ │ ├── Copy of index.jsp │ │ │ ├── Copy of login.jsp │ │ │ ├── addArticle.jsp │ │ │ ├── blogArticleList.jsp │ │ │ ├── calendar.jsp │ │ │ ├── common │ │ │ │ ├── Copy of leftSideBar.jsp │ │ │ │ ├── footerSideBar.jsp │ │ │ │ ├── leftSideBar.jsp │ │ │ │ └── topSideBar.jsp │ │ │ ├── delArticle.jsp │ │ │ ├── hashEncryptPage.jsp │ │ │ ├── index.jsp │ │ │ ├── login.jsp │ │ │ ├── map.jsp │ │ │ ├── question_img_href.jsp │ │ │ └── updateArticle.jsp │ │ ├── test │ │ │ └── mylove.jsp │ │ └── user │ │ │ ├── common │ │ │ ├── leftSideBar.jsp │ │ │ └── topSideBar.jsp │ │ │ ├── login.jsp │ │ │ └── siteMap.jsp │ ├── jstltags │ │ └── licfn.tld │ ├── lib │ │ ├── aopalliance-1.0.jar │ │ ├── aspectjweaver-1.5.0.jar │ │ ├── cglib-nodep-2.1_3.jar │ │ ├── commons-codec-1.6.jar │ │ ├── commons-collections-3.1.jar │ │ ├── commons-dbcp.jar │ │ ├── commons-fileupload-1.2.jar │ │ ├── commons-httpclient-3.0.1.jar │ │ ├── commons-io-1.4.jar │ │ ├── commons-lang-2.2.jar │ │ ├── commons-logging-1.0.4.jar │ │ ├── commons-pool.jar │ │ ├── dom4j-1.6.1.jar │ │ ├── gson-2.2.4.jar │ │ ├── httpcore-4.3.jar │ │ ├── jackson-core-asl-1.9.13.jar │ │ ├── jackson-mapper-asl-1.9.13.jar │ │ ├── jaudiotagger-2.2.0-20130321.145334-2.jar │ │ ├── jaxen-1.1-beta-6.jar │ │ ├── json-lib-2.3-jdk15.jar │ │ ├── json-simple-1.1.1.jar │ │ ├── jstl.jar │ │ ├── junit-4.11.jar │ │ ├── log4j-1.2.17.jar │ │ ├── lucene-analyzers-common-4.10.2.jar │ │ ├── lucene-core-4.10.2.jar │ │ ├── lucene-queryparser-4.10.2.jar │ │ ├── mysql-connector-java-5.0.8.jar │ │ ├── poi-3.10-FINAL-20140208.jar │ │ ├── servlet-api.jar │ │ ├── slf4j-api-1.6.6.jar │ │ ├── slf4j-log4j12-1.6.6.jar │ │ ├── spring-aop-3.2.5.RELEASE.jar │ │ ├── spring-beans-3.2.5.RELEASE.jar │ │ ├── spring-context-3.2.5.RELEASE.jar │ │ ├── spring-context-support-3.2.5.RELEASE.jar │ │ ├── spring-core-3.2.5.RELEASE.jar │ │ ├── spring-expression-3.2.5.RELEASE.jar │ │ ├── spring-jdbc-3.2.5.RELEASE.jar │ │ ├── spring-jms-3.2.5.RELEASE.jar │ │ ├── spring-orm-3.2.5.RELEASE.jar │ │ ├── spring-test-3.2.5.RELEASE.jar │ │ ├── spring-tx-3.2.5.RELEASE.jar │ │ ├── spring-web-3.2.5.RELEASE.jar │ │ ├── spring-webmvc-3.2.5.RELEASE.jar │ │ ├── spring-webmvc-portlet-3.2.5.RELEASE.jar │ │ └── standard.jar │ ├── static │ │ ├── Font-Awesome-3.2.1 │ │ │ ├── css │ │ │ │ └── font-awesome.min.css │ │ │ └── font │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ ├── My97DatePicker │ │ │ ├── WdatePicker.js │ │ │ ├── calendar.js │ │ │ ├── lang │ │ │ │ ├── en.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh-tw.js │ │ │ ├── readme.htm │ │ │ └── skin │ │ │ │ ├── WdatePicker.css │ │ │ │ ├── datePicker.gif │ │ │ │ ├── default │ │ │ │ ├── datepicker.css │ │ │ │ └── img.gif │ │ │ │ └── whyGreen │ │ │ │ ├── bg.jpg │ │ │ │ ├── datepicker.css │ │ │ │ └── img.gif │ │ ├── css │ │ │ ├── audioplayer │ │ │ │ └── audioplayer.css │ │ │ ├── blog │ │ │ │ ├── blog.css │ │ │ │ └── screen.css │ │ │ ├── common │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.min3.2.css │ │ │ │ └── site.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ ├── item │ │ │ │ └── detail.css │ │ │ ├── main │ │ │ │ └── carousel.css │ │ │ ├── system │ │ │ │ ├── addArticle.css │ │ │ │ ├── dashboard.css │ │ │ │ ├── index.css │ │ │ │ └── login.css │ │ │ ├── test │ │ │ │ └── mylove.css │ │ │ └── user │ │ │ │ ├── index.css │ │ │ │ ├── login.css │ │ │ │ └── register.css │ │ ├── img │ │ │ ├── alipay.png │ │ │ ├── body-bg.png │ │ │ ├── codingyun.png │ │ │ ├── codingyun_logo.png │ │ │ ├── glyphicons-halflings-white.png │ │ │ ├── glyphicons-halflings.png │ │ │ ├── headshot.png │ │ │ ├── ico_Original.png │ │ │ ├── ico_Repost.png │ │ │ ├── loading.gif │ │ │ ├── lside.png │ │ │ ├── menu-active.png │ │ │ ├── midmoon_bg.jpg │ │ │ └── qrcode_weixin.jpg │ │ ├── js │ │ │ ├── audioplayer │ │ │ │ └── audioplayer.js │ │ │ ├── blog │ │ │ │ └── article.js │ │ │ ├── common │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── commonFunc.js │ │ │ │ ├── jquery-1.11.1.min.js │ │ │ │ ├── page.js │ │ │ │ ├── stickUp.js │ │ │ │ └── stickUp.min.js │ │ │ ├── demo │ │ │ │ └── uploadDemo.js │ │ │ ├── plugin │ │ │ │ └── xgcalendar │ │ │ │ │ ├── common.js │ │ │ │ │ ├── css │ │ │ │ │ ├── main.css │ │ │ │ │ └── plugin │ │ │ │ │ │ ├── calendar.css │ │ │ │ │ │ ├── dailog.css │ │ │ │ │ │ └── minical.css │ │ │ │ │ ├── image │ │ │ │ │ ├── bg │ │ │ │ │ │ ├── btn_file.png │ │ │ │ │ │ ├── invalid_line.gif │ │ │ │ │ │ ├── panel_bg.gif │ │ │ │ │ │ ├── rightTitle_bg.png │ │ │ │ │ │ ├── tbg.gif │ │ │ │ │ │ ├── text-bg.gif │ │ │ │ │ │ ├── top_bg.png │ │ │ │ │ │ └── topmenu_bg.png │ │ │ │ │ ├── checkmark.png │ │ │ │ │ ├── combined_v40_vr.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── icon │ │ │ │ │ │ └── s.gif │ │ │ │ │ └── plugin │ │ │ │ │ │ ├── dailog │ │ │ │ │ │ ├── app-form.png │ │ │ │ │ │ ├── headbg.gif │ │ │ │ │ │ ├── left-corners.png │ │ │ │ │ │ ├── left-right.png │ │ │ │ │ │ ├── right-corners.png │ │ │ │ │ │ ├── tool-sprites.gif │ │ │ │ │ │ └── top-bottom.png │ │ │ │ │ │ ├── dp │ │ │ │ │ │ ├── btn-arrow-light.gif │ │ │ │ │ │ ├── btn-arrow.gif │ │ │ │ │ │ └── cal.gif │ │ │ │ │ │ ├── dropdown │ │ │ │ │ │ ├── dparrow.png │ │ │ │ │ │ ├── gridth.gif │ │ │ │ │ │ ├── tbg.gif │ │ │ │ │ │ └── uquery.gif │ │ │ │ │ │ ├── share │ │ │ │ │ │ ├── del.gif │ │ │ │ │ │ ├── glass-bg.gif │ │ │ │ │ │ ├── hd-sprite.gif │ │ │ │ │ │ ├── left-btn.gif │ │ │ │ │ │ ├── right-btn.gif │ │ │ │ │ │ └── tool-sprites.gif │ │ │ │ │ │ └── validate │ │ │ │ │ │ ├── accept.png │ │ │ │ │ │ ├── exclamation.png │ │ │ │ │ │ ├── tooltop.gif │ │ │ │ │ │ ├── tooltop2.gif │ │ │ │ │ │ ├── up_arrow.gif │ │ │ │ │ │ └── warning.gif │ │ │ │ │ ├── lib │ │ │ │ │ └── jquery │ │ │ │ │ │ └── 1.6 │ │ │ │ │ │ └── jquery.js │ │ │ │ │ ├── locales │ │ │ │ │ └── zh-cn.js │ │ │ │ │ ├── page │ │ │ │ │ ├── editcal.js │ │ │ │ │ └── index.js │ │ │ │ │ ├── plugin │ │ │ │ │ ├── jquery.datepicker.js │ │ │ │ │ ├── jquery.dropdown.js │ │ │ │ │ ├── jquery.form.js │ │ │ │ │ ├── jquery.ifrmdailog.js │ │ │ │ │ ├── jquery.validate.js │ │ │ │ │ ├── minicalendar.js │ │ │ │ │ └── xgcalendar.js │ │ │ │ │ ├── sea.js │ │ │ │ │ └── seaconfig.js │ │ │ ├── system │ │ │ │ ├── .js │ │ │ │ ├── blogArticle.js │ │ │ │ ├── index.js │ │ │ │ ├── login.js │ │ │ │ └── tool │ │ │ │ │ ├── hashEncrypt.js │ │ │ │ │ └── md5.js │ │ │ ├── test │ │ │ │ ├── mylove-function.js │ │ │ │ └── mylove.js │ │ │ └── user │ │ │ │ ├── index.js │ │ │ │ ├── login.js │ │ │ │ └── register.js │ │ ├── kindeditor-4.1.7 │ │ │ ├── kindeditor.js │ │ │ ├── lang │ │ │ │ ├── en.js │ │ │ │ └── zh_CN.js │ │ │ ├── license.txt │ │ │ ├── plugins │ │ │ │ ├── anchor │ │ │ │ │ └── anchor.js │ │ │ │ ├── autoheight │ │ │ │ │ └── autoheight.js │ │ │ │ ├── baidumap │ │ │ │ │ ├── baidumap.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── map.html │ │ │ │ ├── clearhtml │ │ │ │ │ └── clearhtml.js │ │ │ │ ├── code │ │ │ │ │ ├── code.js │ │ │ │ │ ├── prettify.css │ │ │ │ │ └── prettify.js │ │ │ │ ├── emoticons │ │ │ │ │ ├── emoticons.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── 0.gif │ │ │ │ │ │ ├── 1.gif │ │ │ │ │ │ ├── 10.gif │ │ │ │ │ │ ├── 100.gif │ │ │ │ │ │ ├── 101.gif │ │ │ │ │ │ ├── 102.gif │ │ │ │ │ │ ├── 103.gif │ │ │ │ │ │ ├── 104.gif │ │ │ │ │ │ ├── 105.gif │ │ │ │ │ │ ├── 106.gif │ │ │ │ │ │ ├── 107.gif │ │ │ │ │ │ ├── 108.gif │ │ │ │ │ │ ├── 109.gif │ │ │ │ │ │ ├── 11.gif │ │ │ │ │ │ ├── 110.gif │ │ │ │ │ │ ├── 111.gif │ │ │ │ │ │ ├── 112.gif │ │ │ │ │ │ ├── 113.gif │ │ │ │ │ │ ├── 114.gif │ │ │ │ │ │ ├── 115.gif │ │ │ │ │ │ ├── 116.gif │ │ │ │ │ │ ├── 117.gif │ │ │ │ │ │ ├── 118.gif │ │ │ │ │ │ ├── 119.gif │ │ │ │ │ │ ├── 12.gif │ │ │ │ │ │ ├── 120.gif │ │ │ │ │ │ ├── 121.gif │ │ │ │ │ │ ├── 122.gif │ │ │ │ │ │ ├── 123.gif │ │ │ │ │ │ ├── 124.gif │ │ │ │ │ │ ├── 125.gif │ │ │ │ │ │ ├── 126.gif │ │ │ │ │ │ ├── 127.gif │ │ │ │ │ │ ├── 128.gif │ │ │ │ │ │ ├── 129.gif │ │ │ │ │ │ ├── 13.gif │ │ │ │ │ │ ├── 130.gif │ │ │ │ │ │ ├── 131.gif │ │ │ │ │ │ ├── 132.gif │ │ │ │ │ │ ├── 133.gif │ │ │ │ │ │ ├── 134.gif │ │ │ │ │ │ ├── 14.gif │ │ │ │ │ │ ├── 15.gif │ │ │ │ │ │ ├── 16.gif │ │ │ │ │ │ ├── 17.gif │ │ │ │ │ │ ├── 18.gif │ │ │ │ │ │ ├── 19.gif │ │ │ │ │ │ ├── 2.gif │ │ │ │ │ │ ├── 20.gif │ │ │ │ │ │ ├── 21.gif │ │ │ │ │ │ ├── 22.gif │ │ │ │ │ │ ├── 23.gif │ │ │ │ │ │ ├── 24.gif │ │ │ │ │ │ ├── 25.gif │ │ │ │ │ │ ├── 26.gif │ │ │ │ │ │ ├── 27.gif │ │ │ │ │ │ ├── 28.gif │ │ │ │ │ │ ├── 29.gif │ │ │ │ │ │ ├── 3.gif │ │ │ │ │ │ ├── 30.gif │ │ │ │ │ │ ├── 31.gif │ │ │ │ │ │ ├── 32.gif │ │ │ │ │ │ ├── 33.gif │ │ │ │ │ │ ├── 34.gif │ │ │ │ │ │ ├── 35.gif │ │ │ │ │ │ ├── 36.gif │ │ │ │ │ │ ├── 37.gif │ │ │ │ │ │ ├── 38.gif │ │ │ │ │ │ ├── 39.gif │ │ │ │ │ │ ├── 4.gif │ │ │ │ │ │ ├── 40.gif │ │ │ │ │ │ ├── 41.gif │ │ │ │ │ │ ├── 42.gif │ │ │ │ │ │ ├── 43.gif │ │ │ │ │ │ ├── 44.gif │ │ │ │ │ │ ├── 45.gif │ │ │ │ │ │ ├── 46.gif │ │ │ │ │ │ ├── 47.gif │ │ │ │ │ │ ├── 48.gif │ │ │ │ │ │ ├── 49.gif │ │ │ │ │ │ ├── 5.gif │ │ │ │ │ │ ├── 50.gif │ │ │ │ │ │ ├── 51.gif │ │ │ │ │ │ ├── 52.gif │ │ │ │ │ │ ├── 53.gif │ │ │ │ │ │ ├── 54.gif │ │ │ │ │ │ ├── 55.gif │ │ │ │ │ │ ├── 56.gif │ │ │ │ │ │ ├── 57.gif │ │ │ │ │ │ ├── 58.gif │ │ │ │ │ │ ├── 59.gif │ │ │ │ │ │ ├── 6.gif │ │ │ │ │ │ ├── 60.gif │ │ │ │ │ │ ├── 61.gif │ │ │ │ │ │ ├── 62.gif │ │ │ │ │ │ ├── 63.gif │ │ │ │ │ │ ├── 64.gif │ │ │ │ │ │ ├── 65.gif │ │ │ │ │ │ ├── 66.gif │ │ │ │ │ │ ├── 67.gif │ │ │ │ │ │ ├── 68.gif │ │ │ │ │ │ ├── 69.gif │ │ │ │ │ │ ├── 7.gif │ │ │ │ │ │ ├── 70.gif │ │ │ │ │ │ ├── 71.gif │ │ │ │ │ │ ├── 72.gif │ │ │ │ │ │ ├── 73.gif │ │ │ │ │ │ ├── 74.gif │ │ │ │ │ │ ├── 75.gif │ │ │ │ │ │ ├── 76.gif │ │ │ │ │ │ ├── 77.gif │ │ │ │ │ │ ├── 78.gif │ │ │ │ │ │ ├── 79.gif │ │ │ │ │ │ ├── 8.gif │ │ │ │ │ │ ├── 80.gif │ │ │ │ │ │ ├── 81.gif │ │ │ │ │ │ ├── 82.gif │ │ │ │ │ │ ├── 83.gif │ │ │ │ │ │ ├── 84.gif │ │ │ │ │ │ ├── 85.gif │ │ │ │ │ │ ├── 86.gif │ │ │ │ │ │ ├── 87.gif │ │ │ │ │ │ ├── 88.gif │ │ │ │ │ │ ├── 89.gif │ │ │ │ │ │ ├── 9.gif │ │ │ │ │ │ ├── 90.gif │ │ │ │ │ │ ├── 91.gif │ │ │ │ │ │ ├── 92.gif │ │ │ │ │ │ ├── 93.gif │ │ │ │ │ │ ├── 94.gif │ │ │ │ │ │ ├── 95.gif │ │ │ │ │ │ ├── 96.gif │ │ │ │ │ │ ├── 97.gif │ │ │ │ │ │ ├── 98.gif │ │ │ │ │ │ ├── 99.gif │ │ │ │ │ │ └── static.gif │ │ │ │ ├── filemanager │ │ │ │ │ ├── filemanager.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── file-16.gif │ │ │ │ │ │ ├── file-64.gif │ │ │ │ │ │ ├── folder-16.gif │ │ │ │ │ │ ├── folder-64.gif │ │ │ │ │ │ └── go-up.gif │ │ │ │ ├── flash │ │ │ │ │ └── flash.js │ │ │ │ ├── image │ │ │ │ │ ├── image.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── align_left.gif │ │ │ │ │ │ ├── align_right.gif │ │ │ │ │ │ ├── align_top.gif │ │ │ │ │ │ └── refresh.png │ │ │ │ ├── insertfile │ │ │ │ │ └── insertfile.js │ │ │ │ ├── lineheight │ │ │ │ │ └── lineheight.js │ │ │ │ ├── link │ │ │ │ │ └── link.js │ │ │ │ ├── map │ │ │ │ │ ├── map.html │ │ │ │ │ └── map.js │ │ │ │ ├── media │ │ │ │ │ └── media.js │ │ │ │ ├── multiimage │ │ │ │ │ ├── images │ │ │ │ │ │ ├── image.png │ │ │ │ │ │ ├── select-files-en.png │ │ │ │ │ │ ├── select-files-zh_CN.png │ │ │ │ │ │ └── swfupload.swf │ │ │ │ │ └── multiimage.js │ │ │ │ ├── pagebreak │ │ │ │ │ └── pagebreak.js │ │ │ │ ├── plainpaste │ │ │ │ │ └── plainpaste.js │ │ │ │ ├── preview │ │ │ │ │ └── preview.js │ │ │ │ ├── quickformat │ │ │ │ │ └── quickformat.js │ │ │ │ ├── table │ │ │ │ │ └── table.js │ │ │ │ ├── template │ │ │ │ │ ├── html │ │ │ │ │ │ ├── 1.html │ │ │ │ │ │ ├── 2.html │ │ │ │ │ │ └── 3.html │ │ │ │ │ └── template.js │ │ │ │ └── wordpaste │ │ │ │ │ └── wordpaste.js │ │ │ └── themes │ │ │ │ ├── common │ │ │ │ ├── anchor.gif │ │ │ │ ├── blank.gif │ │ │ │ ├── flash.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── media.gif │ │ │ │ └── rm.gif │ │ │ │ ├── default │ │ │ │ ├── background.png │ │ │ │ ├── default.css │ │ │ │ └── default.png │ │ │ │ ├── qq │ │ │ │ ├── editor.gif │ │ │ │ └── qq.css │ │ │ │ └── simple │ │ │ │ └── simple.css │ │ ├── loginCss │ │ │ ├── adminia-responsive.css │ │ │ ├── adminia.css │ │ │ ├── dashboard.css │ │ │ └── login.css │ │ └── syntaxhighlighter_3.0.83 │ │ │ ├── LGPL-LICENSE │ │ │ ├── MIT-LICENSE │ │ │ ├── compass │ │ │ ├── _theme_template.scss │ │ │ ├── config.rb │ │ │ ├── shCore.scss │ │ │ ├── shCoreDefault.scss │ │ │ ├── shCoreDjango.scss │ │ │ ├── shCoreEclipse.scss │ │ │ ├── shCoreEmacs.scss │ │ │ ├── shCoreFadeToGrey.scss │ │ │ ├── shCoreMDUltra.scss │ │ │ ├── shCoreMidnight.scss │ │ │ ├── shCoreRDark.scss │ │ │ ├── shThemeDefault.scss │ │ │ ├── shThemeDjango.scss │ │ │ ├── shThemeEclipse.scss │ │ │ ├── shThemeEmacs.scss │ │ │ ├── shThemeFadeToGrey.scss │ │ │ ├── shThemeMDUltra.scss │ │ │ ├── shThemeMidnight.scss │ │ │ └── shThemeRDark.scss │ │ │ ├── readMe.txt │ │ │ ├── scripts │ │ │ ├── shAutoloader.js │ │ │ ├── shBrushAS3.js │ │ │ ├── shBrushAppleScript.js │ │ │ ├── shBrushBash.js │ │ │ ├── shBrushCSharp.js │ │ │ ├── shBrushColdFusion.js │ │ │ ├── shBrushCpp.js │ │ │ ├── shBrushCss.js │ │ │ ├── shBrushDelphi.js │ │ │ ├── shBrushDiff.js │ │ │ ├── shBrushErlang.js │ │ │ ├── shBrushGroovy.js │ │ │ ├── shBrushJScript.js │ │ │ ├── shBrushJava.js │ │ │ ├── shBrushJavaFX.js │ │ │ ├── shBrushPerl.js │ │ │ ├── shBrushPhp.js │ │ │ ├── shBrushPlain.js │ │ │ ├── shBrushPowerShell.js │ │ │ ├── shBrushPython.js │ │ │ ├── shBrushRuby.js │ │ │ ├── shBrushSass.js │ │ │ ├── shBrushScala.js │ │ │ ├── shBrushSql.js │ │ │ ├── shBrushVb.js │ │ │ ├── shBrushXml.js │ │ │ ├── shCore.js │ │ │ └── shLegacy.js │ │ │ ├── src │ │ │ ├── shAutoloader.js │ │ │ ├── shCore.js │ │ │ └── shLegacy.js │ │ │ └── styles │ │ │ ├── shCore.css │ │ │ ├── shCoreDefault.css │ │ │ ├── shCoreDjango.css │ │ │ ├── shCoreEclipse.css │ │ │ ├── shCoreEmacs.css │ │ │ ├── shCoreFadeToGrey.css │ │ │ ├── shCoreMDUltra.css │ │ │ ├── shCoreMidnight.css │ │ │ ├── shCoreRDark.css │ │ │ ├── shThemeDefault.css │ │ │ ├── shThemeDjango.css │ │ │ ├── shThemeEclipse.css │ │ │ ├── shThemeEmacs.css │ │ │ ├── shThemeFadeToGrey.css │ │ │ ├── shThemeMDUltra.css │ │ │ ├── shThemeMidnight.css │ │ │ └── shThemeRDark.css │ └── web.xml ├── error.jsp ├── page404.html └── static │ ├── Font-Awesome-3.2.1 │ ├── css │ │ └── font-awesome.min.css │ └── font │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── My97DatePicker │ ├── WdatePicker.js │ ├── calendar.js │ ├── lang │ │ ├── en.js │ │ ├── zh-cn.js │ │ └── zh-tw.js │ ├── readme.htm │ └── skin │ │ ├── WdatePicker.css │ │ ├── datePicker.gif │ │ ├── default │ │ ├── datepicker.css │ │ └── img.gif │ │ └── whyGreen │ │ ├── bg.jpg │ │ ├── datepicker.css │ │ └── img.gif │ ├── css │ ├── audioplayer │ │ └── audioplayer.css │ ├── blog │ │ ├── blog.css │ │ └── screen.css │ ├── common │ │ ├── bootstrap.css │ │ ├── bootstrap.min3.2.css │ │ └── site.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── item │ │ └── detail.css │ ├── main │ │ └── carousel.css │ ├── system │ │ ├── addArticle.css │ │ ├── dashboard.css │ │ ├── index.css │ │ └── login.css │ ├── test │ │ └── mylove.css │ └── user │ │ ├── index.css │ │ ├── login.css │ │ └── register.css │ ├── img │ ├── alipay.png │ ├── body-bg.png │ ├── codingyun.png │ ├── codingyun_logo.png │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings.png │ ├── headshot.png │ ├── ico_Original.png │ ├── ico_Repost.png │ ├── loading.gif │ ├── lside.png │ ├── menu-active.png │ ├── midmoon_bg.jpg │ └── qrcode_weixin.jpg │ ├── js │ ├── audioplayer │ │ └── audioplayer.js │ ├── blog │ │ └── article.js │ ├── common │ │ ├── bootstrap.min.js │ │ ├── commonFunc.js │ │ ├── jquery-1.11.1.min.js │ │ ├── page.js │ │ ├── stickUp.js │ │ └── stickUp.min.js │ ├── demo │ │ └── uploadDemo.js │ ├── plugin │ │ └── xgcalendar │ │ │ ├── common.js │ │ │ ├── css │ │ │ ├── main.css │ │ │ └── plugin │ │ │ │ ├── calendar.css │ │ │ │ ├── dailog.css │ │ │ │ └── minical.css │ │ │ ├── image │ │ │ ├── bg │ │ │ │ ├── btn_file.png │ │ │ │ ├── invalid_line.gif │ │ │ │ ├── panel_bg.gif │ │ │ │ ├── rightTitle_bg.png │ │ │ │ ├── tbg.gif │ │ │ │ ├── text-bg.gif │ │ │ │ ├── top_bg.png │ │ │ │ └── topmenu_bg.png │ │ │ ├── checkmark.png │ │ │ ├── combined_v40_vr.png │ │ │ ├── favicon.ico │ │ │ ├── icon │ │ │ │ └── s.gif │ │ │ └── plugin │ │ │ │ ├── dailog │ │ │ │ ├── app-form.png │ │ │ │ ├── headbg.gif │ │ │ │ ├── left-corners.png │ │ │ │ ├── left-right.png │ │ │ │ ├── right-corners.png │ │ │ │ ├── tool-sprites.gif │ │ │ │ └── top-bottom.png │ │ │ │ ├── dp │ │ │ │ ├── btn-arrow-light.gif │ │ │ │ ├── btn-arrow.gif │ │ │ │ └── cal.gif │ │ │ │ ├── dropdown │ │ │ │ ├── dparrow.png │ │ │ │ ├── gridth.gif │ │ │ │ ├── tbg.gif │ │ │ │ └── uquery.gif │ │ │ │ ├── share │ │ │ │ ├── del.gif │ │ │ │ ├── glass-bg.gif │ │ │ │ ├── hd-sprite.gif │ │ │ │ ├── left-btn.gif │ │ │ │ ├── right-btn.gif │ │ │ │ └── tool-sprites.gif │ │ │ │ └── validate │ │ │ │ ├── accept.png │ │ │ │ ├── exclamation.png │ │ │ │ ├── tooltop.gif │ │ │ │ ├── tooltop2.gif │ │ │ │ ├── up_arrow.gif │ │ │ │ └── warning.gif │ │ │ ├── lib │ │ │ └── jquery │ │ │ │ └── 1.6 │ │ │ │ └── jquery.js │ │ │ ├── locales │ │ │ └── zh-cn.js │ │ │ ├── page │ │ │ ├── editcal.js │ │ │ └── index.js │ │ │ ├── plugin │ │ │ ├── jquery.datepicker.js │ │ │ ├── jquery.dropdown.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.ifrmdailog.js │ │ │ ├── jquery.validate.js │ │ │ ├── minicalendar.js │ │ │ └── xgcalendar.js │ │ │ ├── sea.js │ │ │ └── seaconfig.js │ ├── system │ │ ├── .js │ │ ├── blogArticle.js │ │ ├── index.js │ │ ├── login.js │ │ └── tool │ │ │ ├── hashEncrypt.js │ │ │ └── md5.js │ ├── test │ │ ├── mylove-function.js │ │ └── mylove.js │ └── user │ │ ├── index.js │ │ ├── login.js │ │ └── register.js │ ├── kindeditor-4.1.7 │ ├── kindeditor.js │ ├── lang │ │ ├── en.js │ │ └── zh_CN.js │ ├── license.txt │ ├── plugins │ │ ├── anchor │ │ │ └── anchor.js │ │ ├── autoheight │ │ │ └── autoheight.js │ │ ├── baidumap │ │ │ ├── baidumap.js │ │ │ ├── index.html │ │ │ └── map.html │ │ ├── clearhtml │ │ │ └── clearhtml.js │ │ ├── code │ │ │ ├── code.js │ │ │ ├── prettify.css │ │ │ └── prettify.js │ │ ├── emoticons │ │ │ ├── emoticons.js │ │ │ └── images │ │ │ │ ├── 0.gif │ │ │ │ ├── 1.gif │ │ │ │ ├── 10.gif │ │ │ │ ├── 100.gif │ │ │ │ ├── 101.gif │ │ │ │ ├── 102.gif │ │ │ │ ├── 103.gif │ │ │ │ ├── 104.gif │ │ │ │ ├── 105.gif │ │ │ │ ├── 106.gif │ │ │ │ ├── 107.gif │ │ │ │ ├── 108.gif │ │ │ │ ├── 109.gif │ │ │ │ ├── 11.gif │ │ │ │ ├── 110.gif │ │ │ │ ├── 111.gif │ │ │ │ ├── 112.gif │ │ │ │ ├── 113.gif │ │ │ │ ├── 114.gif │ │ │ │ ├── 115.gif │ │ │ │ ├── 116.gif │ │ │ │ ├── 117.gif │ │ │ │ ├── 118.gif │ │ │ │ ├── 119.gif │ │ │ │ ├── 12.gif │ │ │ │ ├── 120.gif │ │ │ │ ├── 121.gif │ │ │ │ ├── 122.gif │ │ │ │ ├── 123.gif │ │ │ │ ├── 124.gif │ │ │ │ ├── 125.gif │ │ │ │ ├── 126.gif │ │ │ │ ├── 127.gif │ │ │ │ ├── 128.gif │ │ │ │ ├── 129.gif │ │ │ │ ├── 13.gif │ │ │ │ ├── 130.gif │ │ │ │ ├── 131.gif │ │ │ │ ├── 132.gif │ │ │ │ ├── 133.gif │ │ │ │ ├── 134.gif │ │ │ │ ├── 14.gif │ │ │ │ ├── 15.gif │ │ │ │ ├── 16.gif │ │ │ │ ├── 17.gif │ │ │ │ ├── 18.gif │ │ │ │ ├── 19.gif │ │ │ │ ├── 2.gif │ │ │ │ ├── 20.gif │ │ │ │ ├── 21.gif │ │ │ │ ├── 22.gif │ │ │ │ ├── 23.gif │ │ │ │ ├── 24.gif │ │ │ │ ├── 25.gif │ │ │ │ ├── 26.gif │ │ │ │ ├── 27.gif │ │ │ │ ├── 28.gif │ │ │ │ ├── 29.gif │ │ │ │ ├── 3.gif │ │ │ │ ├── 30.gif │ │ │ │ ├── 31.gif │ │ │ │ ├── 32.gif │ │ │ │ ├── 33.gif │ │ │ │ ├── 34.gif │ │ │ │ ├── 35.gif │ │ │ │ ├── 36.gif │ │ │ │ ├── 37.gif │ │ │ │ ├── 38.gif │ │ │ │ ├── 39.gif │ │ │ │ ├── 4.gif │ │ │ │ ├── 40.gif │ │ │ │ ├── 41.gif │ │ │ │ ├── 42.gif │ │ │ │ ├── 43.gif │ │ │ │ ├── 44.gif │ │ │ │ ├── 45.gif │ │ │ │ ├── 46.gif │ │ │ │ ├── 47.gif │ │ │ │ ├── 48.gif │ │ │ │ ├── 49.gif │ │ │ │ ├── 5.gif │ │ │ │ ├── 50.gif │ │ │ │ ├── 51.gif │ │ │ │ ├── 52.gif │ │ │ │ ├── 53.gif │ │ │ │ ├── 54.gif │ │ │ │ ├── 55.gif │ │ │ │ ├── 56.gif │ │ │ │ ├── 57.gif │ │ │ │ ├── 58.gif │ │ │ │ ├── 59.gif │ │ │ │ ├── 6.gif │ │ │ │ ├── 60.gif │ │ │ │ ├── 61.gif │ │ │ │ ├── 62.gif │ │ │ │ ├── 63.gif │ │ │ │ ├── 64.gif │ │ │ │ ├── 65.gif │ │ │ │ ├── 66.gif │ │ │ │ ├── 67.gif │ │ │ │ ├── 68.gif │ │ │ │ ├── 69.gif │ │ │ │ ├── 7.gif │ │ │ │ ├── 70.gif │ │ │ │ ├── 71.gif │ │ │ │ ├── 72.gif │ │ │ │ ├── 73.gif │ │ │ │ ├── 74.gif │ │ │ │ ├── 75.gif │ │ │ │ ├── 76.gif │ │ │ │ ├── 77.gif │ │ │ │ ├── 78.gif │ │ │ │ ├── 79.gif │ │ │ │ ├── 8.gif │ │ │ │ ├── 80.gif │ │ │ │ ├── 81.gif │ │ │ │ ├── 82.gif │ │ │ │ ├── 83.gif │ │ │ │ ├── 84.gif │ │ │ │ ├── 85.gif │ │ │ │ ├── 86.gif │ │ │ │ ├── 87.gif │ │ │ │ ├── 88.gif │ │ │ │ ├── 89.gif │ │ │ │ ├── 9.gif │ │ │ │ ├── 90.gif │ │ │ │ ├── 91.gif │ │ │ │ ├── 92.gif │ │ │ │ ├── 93.gif │ │ │ │ ├── 94.gif │ │ │ │ ├── 95.gif │ │ │ │ ├── 96.gif │ │ │ │ ├── 97.gif │ │ │ │ ├── 98.gif │ │ │ │ ├── 99.gif │ │ │ │ └── static.gif │ │ ├── filemanager │ │ │ ├── filemanager.js │ │ │ └── images │ │ │ │ ├── file-16.gif │ │ │ │ ├── file-64.gif │ │ │ │ ├── folder-16.gif │ │ │ │ ├── folder-64.gif │ │ │ │ └── go-up.gif │ │ ├── flash │ │ │ └── flash.js │ │ ├── image │ │ │ ├── image.js │ │ │ └── images │ │ │ │ ├── align_left.gif │ │ │ │ ├── align_right.gif │ │ │ │ ├── align_top.gif │ │ │ │ └── refresh.png │ │ ├── insertfile │ │ │ └── insertfile.js │ │ ├── lineheight │ │ │ └── lineheight.js │ │ ├── link │ │ │ └── link.js │ │ ├── map │ │ │ ├── map.html │ │ │ └── map.js │ │ ├── media │ │ │ └── media.js │ │ ├── multiimage │ │ │ ├── images │ │ │ │ ├── image.png │ │ │ │ ├── select-files-en.png │ │ │ │ ├── select-files-zh_CN.png │ │ │ │ └── swfupload.swf │ │ │ └── multiimage.js │ │ ├── pagebreak │ │ │ └── pagebreak.js │ │ ├── plainpaste │ │ │ └── plainpaste.js │ │ ├── preview │ │ │ └── preview.js │ │ ├── quickformat │ │ │ └── quickformat.js │ │ ├── table │ │ │ └── table.js │ │ ├── template │ │ │ ├── html │ │ │ │ ├── 1.html │ │ │ │ ├── 2.html │ │ │ │ └── 3.html │ │ │ └── template.js │ │ └── wordpaste │ │ │ └── wordpaste.js │ └── themes │ │ ├── common │ │ ├── anchor.gif │ │ ├── blank.gif │ │ ├── flash.gif │ │ ├── loading.gif │ │ ├── media.gif │ │ └── rm.gif │ │ ├── default │ │ ├── background.png │ │ ├── default.css │ │ └── default.png │ │ ├── qq │ │ ├── editor.gif │ │ └── qq.css │ │ └── simple │ │ └── simple.css │ ├── loginCss │ ├── adminia-responsive.css │ ├── adminia.css │ ├── dashboard.css │ └── login.css │ └── syntaxhighlighter_3.0.83 │ ├── LGPL-LICENSE │ ├── MIT-LICENSE │ ├── compass │ ├── _theme_template.scss │ ├── config.rb │ ├── shCore.scss │ ├── shCoreDefault.scss │ ├── shCoreDjango.scss │ ├── shCoreEclipse.scss │ ├── shCoreEmacs.scss │ ├── shCoreFadeToGrey.scss │ ├── shCoreMDUltra.scss │ ├── shCoreMidnight.scss │ ├── shCoreRDark.scss │ ├── shThemeDefault.scss │ ├── shThemeDjango.scss │ ├── shThemeEclipse.scss │ ├── shThemeEmacs.scss │ ├── shThemeFadeToGrey.scss │ ├── shThemeMDUltra.scss │ ├── shThemeMidnight.scss │ └── shThemeRDark.scss │ ├── readMe.txt │ ├── scripts │ ├── shAutoloader.js │ ├── shBrushAS3.js │ ├── shBrushAppleScript.js │ ├── shBrushBash.js │ ├── shBrushCSharp.js │ ├── shBrushColdFusion.js │ ├── shBrushCpp.js │ ├── shBrushCss.js │ ├── shBrushDelphi.js │ ├── shBrushDiff.js │ ├── shBrushErlang.js │ ├── shBrushGroovy.js │ ├── shBrushJScript.js │ ├── shBrushJava.js │ ├── shBrushJavaFX.js │ ├── shBrushPerl.js │ ├── shBrushPhp.js │ ├── shBrushPlain.js │ ├── shBrushPowerShell.js │ ├── shBrushPython.js │ ├── shBrushRuby.js │ ├── shBrushSass.js │ ├── shBrushScala.js │ ├── shBrushSql.js │ ├── shBrushVb.js │ ├── shBrushXml.js │ ├── shCore.js │ └── shLegacy.js │ ├── src │ ├── shAutoloader.js │ ├── shCore.js │ └── shLegacy.js │ └── styles │ ├── shCore.css │ ├── shCoreDefault.css │ ├── shCoreDjango.css │ ├── shCoreEclipse.css │ ├── shCoreEmacs.css │ ├── shCoreFadeToGrey.css │ ├── shCoreMDUltra.css │ ├── shCoreMidnight.css │ ├── shCoreRDark.css │ ├── shThemeDefault.css │ ├── shThemeDjango.css │ ├── shThemeEclipse.css │ ├── shThemeEmacs.css │ ├── shThemeFadeToGrey.css │ ├── shThemeMDUltra.css │ ├── shThemeMidnight.css │ └── shThemeRDark.css ├── pic ├── about.png ├── backend.png ├── content.png ├── index.png └── liuyan.png ├── sql ├── blog.sql ├── blog_article.sql ├── blog_article_tag.sql ├── category.sql ├── sys_user.sql ├── user_base.sql ├── validCode.sql └── xgcalendar.sql ├── src-Resource ├── META-INF │ ├── jdbc-context.xml │ └── springMvc3-servlet.xml ├── database.properties ├── log4j.properties └── model.html └── src └── cn └── kee └── core ├── action ├── BaseController.java ├── IndexController.java ├── blog │ ├── ArticleController.java │ ├── BlogIndexController.java │ ├── CategoryController.java │ └── TagController.java ├── demo │ └── UploadController.java ├── system │ ├── CalendarController.java │ ├── SysArticleController.java │ ├── SysIndexController.java │ ├── SysLoginController.java │ └── SysTestController.java ├── test │ └── TestController.java └── user │ ├── HomeController.java │ ├── MyLoveController.java │ └── UserController.java ├── constant ├── ConstantUtil.java └── TableConstant.java ├── dao ├── BlogArticleDao.java ├── CalendarDao.java ├── GeneralDao.java ├── UserDao.java └── impl │ ├── BlogArticleDaoImpl.java │ ├── CalendarDaoImpl.java │ ├── GeneralDaoImpl.java │ └── UserDaoImpl.java ├── entity ├── CalendarJsonResult.java ├── JsonResult.java ├── PageBean.java ├── QueryCondition.java ├── User.java ├── bo │ ├── AlipayEventUser.java │ ├── BlogArticleBo.java │ ├── CalendarBo.java │ ├── HandoutBo.java │ └── SysUserBo.java └── vo │ ├── AlipayEventUserVo.java │ ├── BlogArticleVo.java │ ├── CalendarQueryVo.java │ ├── FeedbackVo.java │ ├── HandoutVo.java │ ├── UploadDemoVo.java │ └── UserVo.java ├── exception ├── DaoException.java └── ServiceException.java ├── filter └── FrameworkFilter.java ├── interceptor ├── SysAdminInterceptor.java └── UserInterceptor.java ├── service ├── BlogArticleService.java ├── CalendarService.java ├── CodingEventService.java ├── UploadDemoService.java ├── UploadFileService.java ├── UserService.java └── impl │ ├── BlogArticleServiceImpl.java │ ├── CalendarServiceImpl.java │ ├── CodingEventServiceImpl.java │ ├── UploadDemoServiceImpl.java │ ├── UploadFileServiceImpl.java │ └── UserServiceImpl.java ├── test ├── AlipayEventOrderTest.java ├── CreateLuceneIndexTest.java ├── GetAmrDuration.java ├── SearchLuceneIndexTest.java ├── Test.java ├── WordTest.java └── userServiceTest.java └── util ├── AudioUtil.java ├── CookieUtil.java ├── CreateLuceneIndex.java ├── DateUtil.java ├── FileUtil.java ├── LuceneIndexUtil.java ├── LuceneSearchUtil.java ├── MD5Util.java ├── ObjectUtil.java ├── SearchFiles.java └── StringUtil.java /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=java 2 | *.css linguist-language=java 3 | *.html linguist-language=java -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | -------------------------------------------------------------------------------- /.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//sql/blog_article.sql=UTF-8 3 | encoding//sql/category.sql=UTF-8 4 | encoding//sql/xgcalendar.sql=UTF-8 5 | encoding/src=UTF-8 6 | encoding/src-Resource=UTF-8 7 | -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate 4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 5 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 6 | org.eclipse.jdt.core.compiler.compliance=1.7 7 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate 8 | org.eclipse.jdt.core.compiler.debug.localVariable=generate 9 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate 10 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 11 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 12 | org.eclipse.jdt.core.compiler.source=1.7 13 | -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.common.project.facet.core.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 博客系统 2 | > 3 | ##前端 4 | > BootStrap 5 | > 6 | ##后端 7 | >spring mvc 8 | > 9 | ##数据库 10 | >mysql 11 | > 12 | ##前台页面 13 | 14 | *主页 15 | 16 | ![image](https://raw.githubusercontent.com/jinhang/Blog/master/pic/index.png) 17 | 18 | *博客页面 19 | 20 | ![image](https://raw.githubusercontent.com/jinhang/Blog/master/pic/content.png) 21 | 22 | *留言板 23 | 24 | ![image](https://raw.githubusercontent.com/jinhang/Blog/master/pic/liuyan.png) 25 | 26 | *关于我 27 | 28 | ![image](https://raw.githubusercontent.com/jinhang/Blog/master/pic/about.png) 29 | 30 | ##后台页面 31 | 32 | *后台管理 33 | 34 | ![image](https://raw.githubusercontent.com/jinhang/Blog/master/pic/backend.png) 35 | 36 | -------------------------------------------------------------------------------- /WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /WebContent/WEB-INF/jsp/blog/common/blogHeader.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%> 2 | 3 |
4 |

Kee博客

5 |

路漫漫其修远兮,吾将上下而求索。

6 |
7 | 8 | -------------------------------------------------------------------------------- /WebContent/WEB-INF/jsp/blog/common/topSideBar.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%> 2 |
3 |
4 | 11 |
12 |
-------------------------------------------------------------------------------- /WebContent/WEB-INF/jsp/common/taglibs.jsp: -------------------------------------------------------------------------------- 1 | <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> 2 | <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%> 3 | <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%> 4 | -------------------------------------------------------------------------------- /WebContent/WEB-INF/jsp/system/common/footerSideBar.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%> 2 | -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/aopalliance-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/aopalliance-1.0.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/aspectjweaver-1.5.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/aspectjweaver-1.5.0.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/cglib-nodep-2.1_3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/cglib-nodep-2.1_3.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/commons-codec-1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/commons-codec-1.6.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/commons-collections-3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/commons-collections-3.1.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/commons-dbcp.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/commons-dbcp.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/commons-fileupload-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/commons-fileupload-1.2.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/commons-httpclient-3.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/commons-httpclient-3.0.1.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/commons-io-1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/commons-io-1.4.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/commons-lang-2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/commons-lang-2.2.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/commons-logging-1.0.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/commons-logging-1.0.4.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/commons-pool.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/commons-pool.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/gson-2.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/gson-2.2.4.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/httpcore-4.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/httpcore-4.3.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/jackson-core-asl-1.9.13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/jackson-core-asl-1.9.13.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/jackson-mapper-asl-1.9.13.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/jackson-mapper-asl-1.9.13.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/jaudiotagger-2.2.0-20130321.145334-2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/jaudiotagger-2.2.0-20130321.145334-2.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/jaxen-1.1-beta-6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/jaxen-1.1-beta-6.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/json-lib-2.3-jdk15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/json-lib-2.3-jdk15.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/json-simple-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/json-simple-1.1.1.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/jstl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/jstl.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/junit-4.11.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/junit-4.11.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/log4j-1.2.17.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/log4j-1.2.17.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/lucene-analyzers-common-4.10.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/lucene-analyzers-common-4.10.2.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/lucene-core-4.10.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/lucene-core-4.10.2.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/lucene-queryparser-4.10.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/lucene-queryparser-4.10.2.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/mysql-connector-java-5.0.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/mysql-connector-java-5.0.8.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/poi-3.10-FINAL-20140208.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/poi-3.10-FINAL-20140208.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/servlet-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/servlet-api.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/slf4j-api-1.6.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/slf4j-api-1.6.6.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/slf4j-log4j12-1.6.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/slf4j-log4j12-1.6.6.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-aop-3.2.5.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/spring-aop-3.2.5.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-beans-3.2.5.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/spring-beans-3.2.5.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-context-3.2.5.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/spring-context-3.2.5.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-context-support-3.2.5.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/spring-context-support-3.2.5.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-core-3.2.5.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/spring-core-3.2.5.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-expression-3.2.5.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/spring-expression-3.2.5.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-jdbc-3.2.5.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/spring-jdbc-3.2.5.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-jms-3.2.5.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/spring-jms-3.2.5.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-orm-3.2.5.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/spring-orm-3.2.5.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-test-3.2.5.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/spring-test-3.2.5.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-tx-3.2.5.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/spring-tx-3.2.5.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-web-3.2.5.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/spring-web-3.2.5.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-webmvc-3.2.5.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/spring-webmvc-3.2.5.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/spring-webmvc-portlet-3.2.5.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/spring-webmvc-portlet-3.2.5.RELEASE.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/lib/standard.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/lib/standard.jar -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/Font-Awesome-3.2.1/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/Font-Awesome-3.2.1/font/FontAwesome.otf -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/Font-Awesome-3.2.1/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/Font-Awesome-3.2.1/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/Font-Awesome-3.2.1/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/Font-Awesome-3.2.1/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/Font-Awesome-3.2.1/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/Font-Awesome-3.2.1/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/My97DatePicker/lang/en.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "Invalid date or the date out of range,redo or not?", 3 | aWeekStr: ["wk", "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 4 | aLongWeekStr:["wk","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"], 5 | aMonStr: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 6 | aLongMonStr: ["January","February","March","April","May","June","July","August","September","October","November","December"], 7 | clearStr: "Clear", 8 | todayStr: "Today", 9 | okStr: "OK", 10 | updateStr: "OK", 11 | timeStr: "Time", 12 | quickStr: "Quick Selection", 13 | err_1: 'MinDate Cannot be bigger than MaxDate!' 14 | } -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/My97DatePicker/readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/My97DatePicker/readme.htm -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/My97DatePicker/skin/WdatePicker.css: -------------------------------------------------------------------------------- 1 | .Wdate{ 2 | border:#999 1px solid; 3 | height:20px; 4 | background:#fff url(datePicker.gif) no-repeat right; 5 | } 6 | .Wdate::-ms-clear{display:none;} 7 | 8 | .WdateFmtErr{ 9 | font-weight:bold; 10 | color:red; 11 | } -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/My97DatePicker/skin/datePicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/My97DatePicker/skin/datePicker.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/My97DatePicker/skin/default/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/My97DatePicker/skin/default/img.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/My97DatePicker/skin/whyGreen/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/My97DatePicker/skin/whyGreen/bg.jpg -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/My97DatePicker/skin/whyGreen/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/My97DatePicker/skin/whyGreen/img.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/css/blog/blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/css/blog/blog.css -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/css/blog/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/css/blog/screen.css -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/css/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/css/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/css/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/css/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/css/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/css/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/css/item/detail.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/css/item/detail.css -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/css/system/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/css/system/dashboard.css -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/css/system/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/css/system/index.css -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/css/test/mylove.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/css/test/mylove.css -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/css/user/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/css/user/login.css -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/img/alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/img/alipay.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/img/body-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/img/body-bg.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/img/codingyun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/img/codingyun.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/img/codingyun_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/img/codingyun_logo.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/img/headshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/img/headshot.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/img/ico_Original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/img/ico_Original.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/img/ico_Repost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/img/ico_Repost.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/img/loading.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/img/lside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/img/lside.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/img/menu-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/img/menu-active.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/img/midmoon_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/img/midmoon_bg.jpg -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/img/qrcode_weixin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/img/qrcode_weixin.jpg -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/common/commonFunc.js: -------------------------------------------------------------------------------- 1 | /*=======================================*/ 2 | /* 通用js,日后有各个页面公用的js的话,请加到这里,记得加注释! */ 3 | /* @author 王勇 */ 4 | /* 2014年5月30日16:24:02 */ 5 | /*=======================================*/ 6 | 7 | /** 8 | * 将form表单的input数据序列化为json对象 9 | */ 10 | $.fn.serializeObject = function() { 11 | var o = {}; 12 | var a = this.serializeArray(); 13 | $.each(a, function() { 14 | if (o[this.name]) { 15 | if (!o[this.name].push) { 16 | o[this.name] = [ o[this.name] ]; 17 | } 18 | o[this.name].push(this.value || ''); 19 | } else { 20 | o[this.name] = this.value || ''; 21 | } 22 | }); 23 | return o; 24 | }; 25 | -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/demo/uploadDemo.js: -------------------------------------------------------------------------------- 1 | /*=======================================*/ 2 | /* uploadDemo功能的js */ 3 | /* @author 王勇 */ 4 | /* 2014年9月1日21:36:07 */ 5 | /*=======================================*/ 6 | $(document).ready(function(){ 7 | 8 | }); 9 | 10 | //表单提交新增失败后,返回回调函数,传回错误信息 11 | function uploadSucced(msg){ 12 | // var btn = $("#createPeriadBtn"); 13 | // btn.button('reset'); 14 | $("#firstUploadSucceedMsg").html(msg); 15 | $("#firstUploadSucceed").show(); 16 | $("#firstUploadFailed").hide(); 17 | } 18 | //表单提交修改失败后,传回提示信息 19 | function uploadFailed(msg){ 20 | // var btn = $("#updateperiadBtn"); 21 | // btn.button('reset'); 22 | $("#firstUploadFailedMsg").html(msg); 23 | $("#firstUploadFailed").show(); 24 | $("#firstUploadSucceed").hide(); 25 | } -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/bg/btn_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/bg/btn_file.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/bg/invalid_line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/bg/invalid_line.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/bg/panel_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/bg/panel_bg.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/bg/rightTitle_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/bg/rightTitle_bg.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/bg/tbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/bg/tbg.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/bg/text-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/bg/text-bg.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/bg/top_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/bg/top_bg.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/bg/topmenu_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/bg/topmenu_bg.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/checkmark.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/combined_v40_vr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/combined_v40_vr.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/favicon.ico -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/icon/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/icon/s.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dailog/app-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dailog/app-form.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dailog/headbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dailog/headbg.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dailog/left-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dailog/left-corners.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dailog/left-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dailog/left-right.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dailog/right-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dailog/right-corners.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dailog/tool-sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dailog/tool-sprites.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dailog/top-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dailog/top-bottom.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dp/btn-arrow-light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dp/btn-arrow-light.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dp/btn-arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dp/btn-arrow.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dp/cal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dp/cal.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dropdown/dparrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dropdown/dparrow.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dropdown/gridth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dropdown/gridth.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dropdown/tbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dropdown/tbg.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dropdown/uquery.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/dropdown/uquery.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/share/del.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/share/del.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/share/glass-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/share/glass-bg.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/share/hd-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/share/hd-sprite.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/share/left-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/share/left-btn.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/share/right-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/share/right-btn.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/share/tool-sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/share/tool-sprites.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/validate/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/validate/accept.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/validate/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/validate/exclamation.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/validate/tooltop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/validate/tooltop.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/validate/tooltop2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/validate/tooltop2.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/validate/up_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/validate/up_arrow.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/validate/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/plugin/xgcalendar/image/plugin/validate/warning.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/plugin/xgcalendar/seaconfig.js: -------------------------------------------------------------------------------- 1 | seajs.config({ 2 | alias: { 3 | 'jquery': 'lib/jquery/1.6/jquery.js', 4 | 'form': 'plugin/jquery.form.js', 5 | 'datepicker': 'plugin/jquery.datepicker.js', 6 | 'validate': 'plugin/jquery.validate.js', 7 | 'dropdown': 'plugin/jquery.dropdown.js', 8 | 'dailog': 'plugin/jquery.ifrmdailog.js', 9 | 'common': 'common.js' 10 | }, 11 | preload: [ 12 | 'jquery', 13 | 'common' 14 | ], 15 | debug: true, 16 | map: [ 17 | [/^(.*\/static\/js\/page\/.*\.(?:js))(?:.*)$/i, '$1?2013010801'], 18 | [/^(.*\/static\/js\/plugin\/.*\.(?:js))(?:.*)$/i, '$1?2013010801'] 19 | ], 20 | //base: 'http://example.com/path/to/libs/', 21 | charset: 'utf-8', 22 | timeout: 20000 23 | }); -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/system/.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/js/system/.js -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/system/index.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | $(document).ready(function(){ 4 | $("#logout").on('click',function(){ 5 | login(); 6 | }); 7 | }); 8 | 9 | function login(){ 10 | window.location.href="/system/login/logout"; 11 | } 12 | 13 | 14 | //左侧菜单切换 15 | jQuery(document).on('click', '#lside .menubar li', function(elem) { 16 | var menu = jQuery(this); 17 | if (menu.is('.cascade')) { 18 | menu.toggleClass('open'); 19 | }else { 20 | menu.closest('.menubar').find('li').removeClass('active'); 21 | menu.closest('.menubar').find('.cascade').removeClass('open'); 22 | menu.closest('.cascade').addClass('open'); 23 | menu.addClass('active'); 24 | } 25 | var href = elem.attr("href"); 26 | // HACK IE outline 27 | menu.find('a').blur(); 28 | return false; 29 | }); 30 | -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/js/user/register.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | $("#saveBtn").on('click',function(){ 3 | queryEpPage(); 4 | }); 5 | }); 6 | 7 | function queryEpPage(){ 8 | // var datasent = {"userName":"test","userPass":"admin","userEmail":"2238481706@qq.com"}; 9 | var datasent = $("#registerForm").serializeObject(); 10 | params = JSON.stringify(datasent); 11 | $.ajax({ 12 | type : "POST", 13 | url : "../../user/register", 14 | dataType : "json", 15 | contentType : "application/json;charset=utf-8", 16 | data : params, 17 | async : false, 18 | success : function(data) { 19 | alert(data.resultMessage); 20 | } 21 | }); 22 | } 23 | -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/0.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/1.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/10.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/100.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/101.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/101.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/102.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/102.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/103.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/103.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/104.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/104.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/105.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/105.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/106.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/106.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/107.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/107.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/108.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/108.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/109.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/109.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/11.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/110.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/110.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/111.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/111.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/112.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/112.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/113.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/113.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/114.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/114.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/115.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/115.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/116.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/116.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/117.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/117.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/118.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/118.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/119.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/119.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/12.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/120.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/120.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/121.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/121.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/122.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/122.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/123.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/123.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/124.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/124.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/125.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/125.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/126.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/126.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/127.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/127.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/128.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/128.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/129.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/129.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/13.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/130.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/130.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/131.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/131.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/132.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/132.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/133.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/133.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/134.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/134.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/14.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/15.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/16.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/17.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/18.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/19.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/2.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/20.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/21.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/22.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/23.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/24.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/25.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/26.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/27.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/28.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/29.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/3.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/30.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/31.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/32.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/33.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/34.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/35.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/36.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/37.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/38.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/39.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/4.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/40.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/41.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/42.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/43.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/44.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/45.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/46.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/47.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/48.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/49.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/5.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/50.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/51.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/52.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/53.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/54.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/55.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/56.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/57.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/58.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/59.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/6.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/60.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/61.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/62.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/63.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/64.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/65.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/66.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/67.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/68.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/69.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/7.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/70.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/71.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/72.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/72.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/73.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/73.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/74.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/74.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/75.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/75.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/76.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/76.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/77.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/77.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/78.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/78.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/79.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/79.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/8.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/80.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/81.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/81.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/82.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/82.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/83.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/83.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/84.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/84.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/85.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/85.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/86.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/86.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/87.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/87.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/88.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/88.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/89.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/89.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/9.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/90.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/90.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/91.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/91.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/92.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/92.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/93.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/93.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/94.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/94.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/95.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/95.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/96.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/96.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/97.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/97.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/98.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/98.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/99.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/99.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/static.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/emoticons/images/static.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/filemanager/images/file-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/filemanager/images/file-16.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/filemanager/images/file-64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/filemanager/images/file-64.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/filemanager/images/folder-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/filemanager/images/folder-16.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/filemanager/images/folder-64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/filemanager/images/folder-64.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/filemanager/images/go-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/filemanager/images/go-up.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/image/images/align_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/image/images/align_left.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/image/images/align_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/image/images/align_right.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/image/images/align_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/image/images/align_top.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/image/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/image/images/refresh.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/multiimage/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/multiimage/images/image.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/multiimage/images/select-files-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/multiimage/images/select-files-en.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/multiimage/images/select-files-zh_CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/multiimage/images/select-files-zh_CN.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/multiimage/images/swfupload.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/multiimage/images/swfupload.swf -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/template/html/1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

8 | 在此处输入标题 9 |

10 |

11 | 在此处输入内容 12 |

13 | 14 | -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/template/html/2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

8 | 标题 9 |

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

标题1

15 |
17 |

标题1

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

39 | 表格说明 40 |

41 | 42 | -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/plugins/template/html/3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

8 | 在此处输入内容 9 |

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

22 | 在此处输入内容 23 |

24 | 35 | 36 | -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/themes/common/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/themes/common/anchor.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/themes/common/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/themes/common/blank.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/themes/common/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/themes/common/flash.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/themes/common/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/themes/common/loading.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/themes/common/media.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/themes/common/media.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/themes/common/rm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/themes/common/rm.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/themes/default/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/themes/default/background.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/themes/default/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/themes/default/default.png -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/kindeditor-4.1.7/themes/qq/editor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/WEB-INF/static/kindeditor-4.1.7/themes/qq/editor.gif -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/syntaxhighlighter_3.0.83/compass/config.rb: -------------------------------------------------------------------------------- 1 | environment = :production 2 | project_type = :stand_alone 3 | http_path = "/" 4 | css_dir = "../styles" 5 | sass_dir = "." 6 | images_dir = "images" 7 | sass_options = { 8 | :line_numbers => false, 9 | :debug_info => false 10 | } 11 | 12 | # output_style = :compressed 13 | # output_style = :compact 14 | output_style = :expanded 15 | -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/syntaxhighlighter_3.0.83/compass/shCoreDefault.scss: -------------------------------------------------------------------------------- 1 | @import "shCore.scss"; 2 | @import "shThemeDefault.scss"; 3 | -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/syntaxhighlighter_3.0.83/compass/shCoreDjango.scss: -------------------------------------------------------------------------------- 1 | @import "shCore.scss"; 2 | @import "shThemeDjango.scss"; 3 | -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/syntaxhighlighter_3.0.83/compass/shCoreEclipse.scss: -------------------------------------------------------------------------------- 1 | @import "shCore.scss"; 2 | @import "shThemeEclipse.scss"; 3 | -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/syntaxhighlighter_3.0.83/compass/shCoreEmacs.scss: -------------------------------------------------------------------------------- 1 | @import "shCore.scss"; 2 | @import "shThemeEmacs.scss"; 3 | -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/syntaxhighlighter_3.0.83/compass/shCoreFadeToGrey.scss: -------------------------------------------------------------------------------- 1 | @import "shCore.scss"; 2 | @import "shThemeFadeToGrey.scss"; 3 | -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/syntaxhighlighter_3.0.83/compass/shCoreMDUltra.scss: -------------------------------------------------------------------------------- 1 | @import "shCore.scss"; 2 | @import "shThemeMDUltra.scss"; 3 | -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/syntaxhighlighter_3.0.83/compass/shCoreMidnight.scss: -------------------------------------------------------------------------------- 1 | @import "shCore.scss"; 2 | @import "shThemeMidnight.scss"; 3 | -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/syntaxhighlighter_3.0.83/compass/shCoreRDark.scss: -------------------------------------------------------------------------------- 1 | @import "shCore.scss"; 2 | @import "shThemeRDark.scss"; 3 | -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/syntaxhighlighter_3.0.83/compass/shThemeDefault.scss: -------------------------------------------------------------------------------- 1 | // Default Syntax Highlighter theme. 2 | 3 | @import "_theme_template.scss"; 4 | 5 | .syntaxhighlighter { 6 | .keyword { font-weight: bold !important; } 7 | } 8 | -------------------------------------------------------------------------------- /WebContent/WEB-INF/static/syntaxhighlighter_3.0.83/readMe.txt: -------------------------------------------------------------------------------- 1 | author:jack 2 | 需要改样式,否则显示代码区域会有偏下! 3 | 去掉样式文件中的 4 | vertical-align: baseline !important; -------------------------------------------------------------------------------- /WebContent/error.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 2 | <% 3 | String path = request.getContextPath(); 4 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 5 | %> 6 | 7 | 8 | 9 | 10 | Spring MVC 3.0 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |

spring mvc3.0 —— It's works!


21 | 22 | 23 | -------------------------------------------------------------------------------- /WebContent/static/Font-Awesome-3.2.1/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/Font-Awesome-3.2.1/font/FontAwesome.otf -------------------------------------------------------------------------------- /WebContent/static/Font-Awesome-3.2.1/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/Font-Awesome-3.2.1/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /WebContent/static/Font-Awesome-3.2.1/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/Font-Awesome-3.2.1/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /WebContent/static/Font-Awesome-3.2.1/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/Font-Awesome-3.2.1/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /WebContent/static/My97DatePicker/lang/en.js: -------------------------------------------------------------------------------- 1 | var $lang={ 2 | errAlertMsg: "Invalid date or the date out of range,redo or not?", 3 | aWeekStr: ["wk", "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], 4 | aLongWeekStr:["wk","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"], 5 | aMonStr: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], 6 | aLongMonStr: ["January","February","March","April","May","June","July","August","September","October","November","December"], 7 | clearStr: "Clear", 8 | todayStr: "Today", 9 | okStr: "OK", 10 | updateStr: "OK", 11 | timeStr: "Time", 12 | quickStr: "Quick Selection", 13 | err_1: 'MinDate Cannot be bigger than MaxDate!' 14 | } -------------------------------------------------------------------------------- /WebContent/static/My97DatePicker/readme.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/My97DatePicker/readme.htm -------------------------------------------------------------------------------- /WebContent/static/My97DatePicker/skin/WdatePicker.css: -------------------------------------------------------------------------------- 1 | .Wdate{ 2 | border:#999 1px solid; 3 | height:20px; 4 | background:#fff url(datePicker.gif) no-repeat right; 5 | } 6 | .Wdate::-ms-clear{display:none;} 7 | 8 | .WdateFmtErr{ 9 | font-weight:bold; 10 | color:red; 11 | } -------------------------------------------------------------------------------- /WebContent/static/My97DatePicker/skin/datePicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/My97DatePicker/skin/datePicker.gif -------------------------------------------------------------------------------- /WebContent/static/My97DatePicker/skin/default/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/My97DatePicker/skin/default/img.gif -------------------------------------------------------------------------------- /WebContent/static/My97DatePicker/skin/whyGreen/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/My97DatePicker/skin/whyGreen/bg.jpg -------------------------------------------------------------------------------- /WebContent/static/My97DatePicker/skin/whyGreen/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/My97DatePicker/skin/whyGreen/img.gif -------------------------------------------------------------------------------- /WebContent/static/css/blog/blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/css/blog/blog.css -------------------------------------------------------------------------------- /WebContent/static/css/blog/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/css/blog/screen.css -------------------------------------------------------------------------------- /WebContent/static/css/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/css/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /WebContent/static/css/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/css/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /WebContent/static/css/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/css/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /WebContent/static/css/item/detail.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/css/item/detail.css -------------------------------------------------------------------------------- /WebContent/static/css/system/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/css/system/dashboard.css -------------------------------------------------------------------------------- /WebContent/static/css/system/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/css/system/index.css -------------------------------------------------------------------------------- /WebContent/static/css/test/mylove.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/css/test/mylove.css -------------------------------------------------------------------------------- /WebContent/static/css/user/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/css/user/login.css -------------------------------------------------------------------------------- /WebContent/static/img/alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/img/alipay.png -------------------------------------------------------------------------------- /WebContent/static/img/body-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/img/body-bg.png -------------------------------------------------------------------------------- /WebContent/static/img/codingyun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/img/codingyun.png -------------------------------------------------------------------------------- /WebContent/static/img/codingyun_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/img/codingyun_logo.png -------------------------------------------------------------------------------- /WebContent/static/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /WebContent/static/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /WebContent/static/img/headshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/img/headshot.png -------------------------------------------------------------------------------- /WebContent/static/img/ico_Original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/img/ico_Original.png -------------------------------------------------------------------------------- /WebContent/static/img/ico_Repost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/img/ico_Repost.png -------------------------------------------------------------------------------- /WebContent/static/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/img/loading.gif -------------------------------------------------------------------------------- /WebContent/static/img/lside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/img/lside.png -------------------------------------------------------------------------------- /WebContent/static/img/menu-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/img/menu-active.png -------------------------------------------------------------------------------- /WebContent/static/img/midmoon_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/img/midmoon_bg.jpg -------------------------------------------------------------------------------- /WebContent/static/img/qrcode_weixin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/img/qrcode_weixin.jpg -------------------------------------------------------------------------------- /WebContent/static/js/common/commonFunc.js: -------------------------------------------------------------------------------- 1 | /*=======================================*/ 2 | /* 通用js,日后有各个页面公用的js的话,请加到这里,记得加注释! */ 3 | /* @author 王勇 */ 4 | /* 2014年5月30日16:24:02 */ 5 | /*=======================================*/ 6 | 7 | /** 8 | * 将form表单的input数据序列化为json对象 9 | */ 10 | $.fn.serializeObject = function() { 11 | var o = {}; 12 | var a = this.serializeArray(); 13 | $.each(a, function() { 14 | if (o[this.name]) { 15 | if (!o[this.name].push) { 16 | o[this.name] = [ o[this.name] ]; 17 | } 18 | o[this.name].push(this.value || ''); 19 | } else { 20 | o[this.name] = this.value || ''; 21 | } 22 | }); 23 | return o; 24 | }; 25 | -------------------------------------------------------------------------------- /WebContent/static/js/demo/uploadDemo.js: -------------------------------------------------------------------------------- 1 | /*=======================================*/ 2 | /* uploadDemo功能的js */ 3 | /* @author 王勇 */ 4 | /* 2014年9月1日21:36:07 */ 5 | /*=======================================*/ 6 | $(document).ready(function(){ 7 | 8 | }); 9 | 10 | //表单提交新增失败后,返回回调函数,传回错误信息 11 | function uploadSucced(msg){ 12 | // var btn = $("#createPeriadBtn"); 13 | // btn.button('reset'); 14 | $("#firstUploadSucceedMsg").html(msg); 15 | $("#firstUploadSucceed").show(); 16 | $("#firstUploadFailed").hide(); 17 | } 18 | //表单提交修改失败后,传回提示信息 19 | function uploadFailed(msg){ 20 | // var btn = $("#updateperiadBtn"); 21 | // btn.button('reset'); 22 | $("#firstUploadFailedMsg").html(msg); 23 | $("#firstUploadFailed").show(); 24 | $("#firstUploadSucceed").hide(); 25 | } -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/bg/btn_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/bg/btn_file.png -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/bg/invalid_line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/bg/invalid_line.gif -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/bg/panel_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/bg/panel_bg.gif -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/bg/rightTitle_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/bg/rightTitle_bg.png -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/bg/tbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/bg/tbg.gif -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/bg/text-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/bg/text-bg.gif -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/bg/top_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/bg/top_bg.png -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/bg/topmenu_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/bg/topmenu_bg.png -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/checkmark.png -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/combined_v40_vr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/combined_v40_vr.png -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/favicon.ico -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/icon/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/icon/s.gif -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/plugin/dailog/app-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/plugin/dailog/app-form.png -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/plugin/dailog/headbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/plugin/dailog/headbg.gif -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/plugin/dailog/left-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/plugin/dailog/left-corners.png -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/plugin/dailog/left-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/plugin/dailog/left-right.png -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/plugin/dailog/right-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/plugin/dailog/right-corners.png -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/plugin/dailog/tool-sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/plugin/dailog/tool-sprites.gif -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/plugin/dailog/top-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/plugin/dailog/top-bottom.png -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/plugin/dp/btn-arrow-light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/plugin/dp/btn-arrow-light.gif -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/plugin/dp/btn-arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/plugin/dp/btn-arrow.gif -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/plugin/dp/cal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/plugin/dp/cal.gif -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/plugin/dropdown/dparrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/plugin/dropdown/dparrow.png -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/plugin/dropdown/gridth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/plugin/dropdown/gridth.gif -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/plugin/dropdown/tbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/plugin/dropdown/tbg.gif -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/plugin/dropdown/uquery.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/plugin/dropdown/uquery.gif -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/plugin/share/del.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/plugin/share/del.gif -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/plugin/share/glass-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/plugin/share/glass-bg.gif -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/plugin/share/hd-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/plugin/share/hd-sprite.gif -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/plugin/share/left-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/plugin/share/left-btn.gif -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/plugin/share/right-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/plugin/share/right-btn.gif -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/plugin/share/tool-sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/plugin/share/tool-sprites.gif -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/plugin/validate/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/plugin/validate/accept.png -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/plugin/validate/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/plugin/validate/exclamation.png -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/plugin/validate/tooltop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/plugin/validate/tooltop.gif -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/plugin/validate/tooltop2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/plugin/validate/tooltop2.gif -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/plugin/validate/up_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/plugin/validate/up_arrow.gif -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/image/plugin/validate/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/plugin/xgcalendar/image/plugin/validate/warning.gif -------------------------------------------------------------------------------- /WebContent/static/js/plugin/xgcalendar/seaconfig.js: -------------------------------------------------------------------------------- 1 | seajs.config({ 2 | alias: { 3 | 'jquery': 'lib/jquery/1.6/jquery.js', 4 | 'form': 'plugin/jquery.form.js', 5 | 'datepicker': 'plugin/jquery.datepicker.js', 6 | 'validate': 'plugin/jquery.validate.js', 7 | 'dropdown': 'plugin/jquery.dropdown.js', 8 | 'dailog': 'plugin/jquery.ifrmdailog.js', 9 | 'common': 'common.js' 10 | }, 11 | preload: [ 12 | 'jquery', 13 | 'common' 14 | ], 15 | debug: true, 16 | map: [ 17 | [/^(.*\/static\/js\/page\/.*\.(?:js))(?:.*)$/i, '$1?2013010801'], 18 | [/^(.*\/static\/js\/plugin\/.*\.(?:js))(?:.*)$/i, '$1?2013010801'] 19 | ], 20 | //base: 'http://example.com/path/to/libs/', 21 | charset: 'utf-8', 22 | timeout: 20000 23 | }); -------------------------------------------------------------------------------- /WebContent/static/js/system/.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/js/system/.js -------------------------------------------------------------------------------- /WebContent/static/js/user/register.js: -------------------------------------------------------------------------------- 1 | /*=======================================*/ 2 | /* 注册测试功能的js */ 3 | /* @author 王勇 */ 4 | /* 2014年5月30日16:27:41 */ 5 | /*=======================================*/ 6 | 7 | $(document).ready(function(){ 8 | $("#saveBtn").on('click',function(){ 9 | queryEpPage(); 10 | }); 11 | }); 12 | 13 | function queryEpPage(){ 14 | // var datasent = {"userName":"王test","userPass":"admin","userEmail":"wangyong@qq.com"}; 15 | var datasent = $("#registerForm").serializeObject(); 16 | params = JSON.stringify(datasent); 17 | $.ajax({ 18 | type : "POST", 19 | url : "../../user/register", 20 | dataType : "json", 21 | contentType : "application/json;charset=utf-8", 22 | data : params, 23 | async : false, 24 | success : function(data) { 25 | alert(data.resultMessage); 26 | } 27 | }); 28 | } 29 | -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/autoheight/autoheight.js: -------------------------------------------------------------------------------- 1 | /******************************************************************************* 2 | * KindEditor - WYSIWYG HTML Editor for Internet 3 | * Copyright (C) 2006-2011 kindsoft.net 4 | * 5 | * @author Roddy 6 | * @site http://www.kindsoft.net/ 7 | * @licence http://www.kindsoft.net/license.php 8 | *******************************************************************************/ 9 | 10 | KindEditor.plugin('autoheight', function(K) { 11 | var self = this; 12 | 13 | if (!self.autoHeightMode) { 14 | return; 15 | } 16 | 17 | var edit = self.edit; 18 | var body = edit.doc.body; 19 | var minHeight = K.removeUnit(self.height); 20 | 21 | edit.iframe[0].scroll = 'no'; 22 | body.style.overflowY = 'hidden'; 23 | 24 | edit.afterChange(function() { 25 | self.resize(null, Math.max((K.IE ? body.scrollHeight : body.offsetHeight) + 62, minHeight)); 26 | }); 27 | }); 28 | -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/0.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/1.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/10.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/100.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/101.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/101.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/102.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/102.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/103.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/103.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/104.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/104.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/105.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/105.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/106.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/106.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/107.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/107.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/108.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/108.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/109.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/109.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/11.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/110.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/110.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/111.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/111.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/112.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/112.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/113.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/113.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/114.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/114.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/115.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/115.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/116.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/116.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/117.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/117.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/118.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/118.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/119.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/119.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/12.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/120.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/120.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/121.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/121.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/122.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/122.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/123.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/123.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/124.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/124.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/125.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/125.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/126.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/126.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/127.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/127.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/128.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/128.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/129.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/129.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/13.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/130.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/130.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/131.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/131.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/132.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/132.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/133.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/133.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/134.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/134.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/14.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/15.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/16.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/17.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/18.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/19.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/2.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/20.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/21.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/22.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/23.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/24.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/25.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/26.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/27.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/28.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/29.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/3.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/30.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/31.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/32.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/33.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/34.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/35.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/36.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/37.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/38.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/39.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/4.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/40.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/41.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/42.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/43.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/44.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/45.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/46.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/47.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/48.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/49.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/5.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/50.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/51.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/52.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/53.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/54.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/55.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/56.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/57.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/58.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/59.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/6.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/60.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/61.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/62.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/63.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/64.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/65.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/66.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/67.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/68.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/69.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/7.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/70.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/71.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/72.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/72.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/73.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/73.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/74.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/74.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/75.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/75.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/76.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/76.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/77.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/77.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/78.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/78.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/79.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/79.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/8.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/80.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/80.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/81.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/81.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/82.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/82.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/83.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/83.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/84.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/84.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/85.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/85.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/86.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/86.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/87.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/87.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/88.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/88.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/89.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/89.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/9.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/90.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/90.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/91.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/91.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/92.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/92.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/93.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/93.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/94.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/94.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/95.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/95.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/96.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/96.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/97.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/97.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/98.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/98.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/99.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/99.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/static.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/emoticons/images/static.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/filemanager/images/file-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/filemanager/images/file-16.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/filemanager/images/file-64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/filemanager/images/file-64.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/filemanager/images/folder-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/filemanager/images/folder-16.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/filemanager/images/folder-64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/filemanager/images/folder-64.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/filemanager/images/go-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/filemanager/images/go-up.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/image/images/align_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/image/images/align_left.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/image/images/align_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/image/images/align_right.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/image/images/align_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/image/images/align_top.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/image/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/image/images/refresh.png -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/multiimage/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/multiimage/images/image.png -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/multiimage/images/select-files-en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/multiimage/images/select-files-en.png -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/multiimage/images/select-files-zh_CN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/multiimage/images/select-files-zh_CN.png -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/multiimage/images/swfupload.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/plugins/multiimage/images/swfupload.swf -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/template/html/1.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

8 | 在此处输入标题 9 |

10 |

11 | 在此处输入内容 12 |

13 | 14 | -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/template/html/2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

8 | 标题 9 |

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

标题1

15 |
17 |

标题1

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

39 | 表格说明 40 |

41 | 42 | -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/plugins/template/html/3.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

8 | 在此处输入内容 9 |

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

22 | 在此处输入内容 23 |

24 | 35 | 36 | -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/themes/common/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/themes/common/anchor.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/themes/common/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/themes/common/blank.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/themes/common/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/themes/common/flash.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/themes/common/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/themes/common/loading.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/themes/common/media.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/themes/common/media.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/themes/common/rm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/themes/common/rm.gif -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/themes/default/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/themes/default/background.png -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/themes/default/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/themes/default/default.png -------------------------------------------------------------------------------- /WebContent/static/kindeditor-4.1.7/themes/qq/editor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/WebContent/static/kindeditor-4.1.7/themes/qq/editor.gif -------------------------------------------------------------------------------- /WebContent/static/syntaxhighlighter_3.0.83/compass/config.rb: -------------------------------------------------------------------------------- 1 | environment = :production 2 | project_type = :stand_alone 3 | http_path = "/" 4 | css_dir = "../styles" 5 | sass_dir = "." 6 | images_dir = "images" 7 | sass_options = { 8 | :line_numbers => false, 9 | :debug_info => false 10 | } 11 | 12 | # output_style = :compressed 13 | # output_style = :compact 14 | output_style = :expanded 15 | -------------------------------------------------------------------------------- /WebContent/static/syntaxhighlighter_3.0.83/compass/shCoreDefault.scss: -------------------------------------------------------------------------------- 1 | @import "shCore.scss"; 2 | @import "shThemeDefault.scss"; 3 | -------------------------------------------------------------------------------- /WebContent/static/syntaxhighlighter_3.0.83/compass/shCoreDjango.scss: -------------------------------------------------------------------------------- 1 | @import "shCore.scss"; 2 | @import "shThemeDjango.scss"; 3 | -------------------------------------------------------------------------------- /WebContent/static/syntaxhighlighter_3.0.83/compass/shCoreEclipse.scss: -------------------------------------------------------------------------------- 1 | @import "shCore.scss"; 2 | @import "shThemeEclipse.scss"; 3 | -------------------------------------------------------------------------------- /WebContent/static/syntaxhighlighter_3.0.83/compass/shCoreEmacs.scss: -------------------------------------------------------------------------------- 1 | @import "shCore.scss"; 2 | @import "shThemeEmacs.scss"; 3 | -------------------------------------------------------------------------------- /WebContent/static/syntaxhighlighter_3.0.83/compass/shCoreFadeToGrey.scss: -------------------------------------------------------------------------------- 1 | @import "shCore.scss"; 2 | @import "shThemeFadeToGrey.scss"; 3 | -------------------------------------------------------------------------------- /WebContent/static/syntaxhighlighter_3.0.83/compass/shCoreMDUltra.scss: -------------------------------------------------------------------------------- 1 | @import "shCore.scss"; 2 | @import "shThemeMDUltra.scss"; 3 | -------------------------------------------------------------------------------- /WebContent/static/syntaxhighlighter_3.0.83/compass/shCoreMidnight.scss: -------------------------------------------------------------------------------- 1 | @import "shCore.scss"; 2 | @import "shThemeMidnight.scss"; 3 | -------------------------------------------------------------------------------- /WebContent/static/syntaxhighlighter_3.0.83/compass/shCoreRDark.scss: -------------------------------------------------------------------------------- 1 | @import "shCore.scss"; 2 | @import "shThemeRDark.scss"; 3 | -------------------------------------------------------------------------------- /WebContent/static/syntaxhighlighter_3.0.83/compass/shThemeDefault.scss: -------------------------------------------------------------------------------- 1 | // Default Syntax Highlighter theme. 2 | 3 | @import "_theme_template.scss"; 4 | 5 | .syntaxhighlighter { 6 | .keyword { font-weight: bold !important; } 7 | } 8 | -------------------------------------------------------------------------------- /WebContent/static/syntaxhighlighter_3.0.83/readMe.txt: -------------------------------------------------------------------------------- 1 | author:jack 2 | 需要改样式,否则显示代码区域会有偏下! 3 | 去掉样式文件中的 4 | vertical-align: baseline !important; -------------------------------------------------------------------------------- /pic/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/pic/about.png -------------------------------------------------------------------------------- /pic/backend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/pic/backend.png -------------------------------------------------------------------------------- /pic/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/pic/content.png -------------------------------------------------------------------------------- /pic/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/pic/index.png -------------------------------------------------------------------------------- /pic/liuyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/pic/liuyan.png -------------------------------------------------------------------------------- /sql/blog_article_tag.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinhang/Blog/9925ba8e2e125f8df2fda3f6fd96f458a847e871/sql/blog_article_tag.sql -------------------------------------------------------------------------------- /sql/category.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `category` VALUES (1, 'java探考'); 2 | INSERT INTO `category` VALUES (2, '服务器技术'); 3 | INSERT INTO `category` VALUES (3, '应用框架'); 4 | INSERT INTO `category` VALUES (4, '杂谈'); 5 | -------------------------------------------------------------------------------- /sql/sys_user.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `sys_user` VALUES (2, 'admin1', 'AD0234829205B9033196BA818F7A872B', '2014-10-10 14:04:56'); 2 | INSERT INTO `sys_user` VALUES (16, 'admin2', '202CB962AC59075B964B07152D234B70', '2014-10-10 14:14:33'); 3 | -------------------------------------------------------------------------------- /sql/user_base.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `user_base` VALUES (2, 'admin', '202cb962ac59075b964b07152d234b70', NULL, NULL, NULL, 1, NULL, NULL, 1, 1, NULL, NULL, '0000-0-0 00:00:00', '', '0000-0-0 00:00:00', NULL, NULL, NULL); 2 | -------------------------------------------------------------------------------- /src-Resource/database.properties: -------------------------------------------------------------------------------- 1 | mysql.driverclass=com.mysql.jdbc.Driver 2 | mysql.jdbcurl=jdbc:mysql://115.28.87.95:3306/codingyunDemo?autoReconnect=true&useUnicode=true&characterEncoding=utf8 3 | mysql.user=codingyunDemo 4 | mysql.password=codingyun 5 | -------------------------------------------------------------------------------- /src-Resource/log4j.properties: -------------------------------------------------------------------------------- 1 | log4j.rootLogger=INFO,console,R 2 | 3 | log4j.appender.console=org.apache.log4j.ConsoleAppender 4 | log4j.appender.console.Target=System.out 5 | log4j.appender.console.layout=org.apache.log4j.PatternLayout 6 | log4j.appender.console.layout.conversionPattern=%d{yyyy-MM-dd HH:mm:ss} [%5p] - %c -%F(%L) -%m%n 7 | log4j.appender.console.threshold=INFO 8 | 9 | log4j.appender.R=org.apache.log4j.RollingFileAppender 10 | log4j.appender.R.layout=org.apache.log4j.PatternLayout 11 | log4j.appender.R.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} [%5p] - %c -%F(%L) -%m%n 12 | log4j.appender.R.File=/alidata/zkyj/web/zkyj-web.log 13 | log4j.appender.R.Append=true 14 | log4j.appender.R.Threshold=INFO 15 | log4j.appender.R.MaxFileSize=20MB 16 | log4j.appender.LOGFILE.MaxBackupIndex=100 17 | log4j.org.springframework.web=INFO 18 | -------------------------------------------------------------------------------- /src-Resource/model.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 在线HTML编辑器 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /src/cn/kee/core/action/system/SysIndexController.java: -------------------------------------------------------------------------------- 1 | package cn.kee.core.action.system; 2 | 3 | import javax.servlet.http.HttpServletRequest; 4 | 5 | import org.springframework.stereotype.Controller; 6 | import org.springframework.web.bind.annotation.RequestMapping; 7 | import org.springframework.web.bind.annotation.RequestMethod; 8 | 9 | import cn.kee.core.action.BaseController; 10 | 11 | @Controller 12 | @RequestMapping("/system") 13 | public class SysIndexController extends BaseController { 14 | 15 | /** 16 | * 初始页面默认到系统管理员主页 17 | * jinhang 18 | * 2014-6-4 16:46:32 19 | */ 20 | @RequestMapping(value = "", method = RequestMethod.GET) 21 | public String index(HttpServletRequest request){ 22 | return "system/index"; 23 | } 24 | @RequestMapping(value = "map", method = RequestMethod.GET) 25 | public String map(HttpServletRequest request){ 26 | return "system/map"; 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /src/cn/kee/core/action/test/TestController.java: -------------------------------------------------------------------------------- 1 | package cn.kee.core.action.test; 2 | 3 | import javax.servlet.http.HttpServletRequest; 4 | 5 | import org.springframework.stereotype.Controller; 6 | import org.springframework.web.bind.annotation.RequestMapping; 7 | import org.springframework.web.bind.annotation.RequestMethod; 8 | 9 | import cn.kee.core.entity.QueryCondition; 10 | import cn.kee.core.util.CreateLuceneIndex; 11 | 12 | @Controller 13 | @RequestMapping("/test") 14 | public class TestController { 15 | 16 | /** 17 | * 建立lucence索引 18 | * @user 博客 19 | * 2014年12月17日 20 | */ 21 | @RequestMapping(value = "createLuceneIndex", method = RequestMethod.GET) 22 | public void createLuceneIndex(HttpServletRequest request, QueryCondition queryCondition) throws Exception{ 23 | CreateLuceneIndex.main(new String[]{}); 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /src/cn/kee/core/action/user/MyLoveController.java: -------------------------------------------------------------------------------- 1 | package cn.kee.core.action.user; 2 | 3 | import javax.servlet.http.HttpServletRequest; 4 | 5 | import org.springframework.stereotype.Controller; 6 | import org.springframework.web.bind.annotation.RequestMapping; 7 | import org.springframework.web.bind.annotation.RequestMethod; 8 | 9 | import cn.kee.core.entity.QueryCondition; 10 | 11 | @Controller 12 | @RequestMapping("/user/mylove") 13 | public class MyLoveController { 14 | 15 | @RequestMapping(value = "", method = RequestMethod.GET) 16 | public String getLove(HttpServletRequest request, QueryCondition queryCondition) throws Exception{ 17 | return "test/mylove"; 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /src/cn/kee/core/dao/CalendarDao.java: -------------------------------------------------------------------------------- 1 | package cn.kee.core.dao; 2 | 3 | import java.util.Date; 4 | import java.util.List; 5 | 6 | import cn.kee.core.entity.bo.CalendarBo; 7 | 8 | public interface CalendarDao { 9 | 10 | public List getCalendar(Date startTime, Date endTime) throws Exception; 11 | 12 | public int quickAdd(CalendarBo calendar) throws Exception; 13 | 14 | public boolean quickUpdate(CalendarBo calendar) throws Exception; 15 | 16 | public boolean quickDel(int calendarId) throws Exception; 17 | 18 | } 19 | -------------------------------------------------------------------------------- /src/cn/kee/core/entity/vo/AlipayEventUserVo.java: -------------------------------------------------------------------------------- 1 | package cn.kee.core.entity.vo; 2 | 3 | import cn.kee.core.entity.bo.AlipayEventUser; 4 | 5 | public class AlipayEventUserVo extends AlipayEventUser { 6 | /** 7 | * 所有捐款金额 8 | */ 9 | private String totalMoney; 10 | 11 | public String getTotalMoney() { 12 | return totalMoney; 13 | } 14 | 15 | public void setTotalMoney(String totalMoney) { 16 | this.totalMoney = totalMoney; 17 | } 18 | 19 | @Override 20 | public String toString() { 21 | return "AlipayEventUserVo [totalMoney=" + totalMoney + "]"; 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /src/cn/kee/core/exception/DaoException.java: -------------------------------------------------------------------------------- 1 | /** 2 | * 3 | */ 4 | package cn.kee.core.exception; 5 | 6 | import org.springframework.core.NestedRuntimeException; 7 | 8 | public class DaoException extends NestedRuntimeException { 9 | 10 | private static final long serialVersionUID = 4027668633550746774L; 11 | 12 | public DaoException(String message) { 13 | super(message); 14 | } 15 | 16 | public DaoException(String message, Throwable throwable) { 17 | super(message, throwable); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/cn/kee/core/exception/ServiceException.java: -------------------------------------------------------------------------------- 1 | package cn.kee.core.exception; 2 | 3 | public class ServiceException extends RuntimeException{ 4 | 5 | private static final long serialVersionUID = -3418272280398021636L; 6 | 7 | public ServiceException(String message){ 8 | super(message); 9 | } 10 | 11 | public ServiceException(String message, Throwable throwable){ 12 | super(message, throwable); 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /src/cn/kee/core/service/CalendarService.java: -------------------------------------------------------------------------------- 1 | package cn.kee.core.service; 2 | 3 | import java.util.Date; 4 | import java.util.List; 5 | 6 | import cn.kee.core.entity.bo.CalendarBo; 7 | import cn.kee.core.entity.vo.CalendarQueryVo; 8 | 9 | public interface CalendarService { 10 | 11 | public List getCalendar(Date startTime, Date endTime) throws Exception; 12 | 13 | public int quickAdd(CalendarQueryVo calendar) throws Exception; 14 | 15 | public boolean quickUpdate(CalendarQueryVo calendar) throws Exception; 16 | 17 | public boolean quickDel(int calendarId) throws Exception; 18 | 19 | } 20 | -------------------------------------------------------------------------------- /src/cn/kee/core/service/CodingEventService.java: -------------------------------------------------------------------------------- 1 | package cn.kee.core.service; 2 | 3 | import java.util.List; 4 | 5 | import cn.kee.core.entity.vo.AlipayEventUserVo; 6 | 7 | /** 8 | * coding活动 9 | * @author jinhang 10 | * 2015年5月15日 11 | */ 12 | public interface CodingEventService { 13 | 14 | /** 15 | * 获取付款用户list 16 | * @user jinhang 17 | * 2015年5月15日 18 | */ 19 | public List getAlipayEventList() throws Exception; 20 | 21 | } 22 | -------------------------------------------------------------------------------- /src/cn/kee/core/service/UploadDemoService.java: -------------------------------------------------------------------------------- 1 | package cn.kee.core.service; 2 | 3 | import cn.kee.core.entity.vo.UploadDemoVo; 4 | 5 | 6 | public interface UploadDemoService { 7 | 8 | public boolean uploadForm(UploadDemoVo demo) throws Exception; 9 | 10 | } 11 | -------------------------------------------------------------------------------- /src/cn/kee/core/service/UploadFileService.java: -------------------------------------------------------------------------------- 1 | package cn.kee.core.service; 2 | 3 | import org.springframework.web.multipart.MultipartFile; 4 | 5 | public interface UploadFileService { 6 | 7 | /** 8 | * 上传文件到指定路径 9 | * destinationDir 目标路径 10 | * @user jinhang 11 | * 2014年6月10日 12 | */ 13 | public boolean uploadFile(String destinationDir, MultipartFile file, String filename) throws Exception; 14 | /** 15 | * 上传讲义图片到指定路径 16 | * @param widthTarget 想把图片宽度变成多宽 17 | * 高度会等比例缩放 18 | * @user jinhang 19 | * 2014年7月14日 20 | */ 21 | public boolean uploadHandoutImg(String destinationDir, MultipartFile file, String filename, int widthTarget) throws Exception; 22 | 23 | } 24 | -------------------------------------------------------------------------------- /src/cn/kee/core/service/impl/CodingEventServiceImpl.java: -------------------------------------------------------------------------------- 1 | package cn.kee.core.service.impl; 2 | 3 | import java.util.List; 4 | 5 | import org.springframework.beans.factory.annotation.Autowired; 6 | import org.springframework.stereotype.Service; 7 | 8 | import cn.kee.core.dao.GeneralDao; 9 | import cn.kee.core.entity.vo.AlipayEventUserVo; 10 | import cn.kee.core.service.CodingEventService; 11 | 12 | @Service 13 | public class CodingEventServiceImpl implements CodingEventService { 14 | 15 | @Autowired 16 | private GeneralDao generalDao; 17 | 18 | @Override 19 | public List getAlipayEventList() throws Exception { 20 | return generalDao.getEntityList( 21 | AlipayEventUserVo.class, 22 | " SELECT *,(SELECT SUM(b.eventMoney) FROM coding_event_user b) AS totalMoney FROM coding_event_user a order by a.createTime", 23 | new Object[]{}); 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /src/cn/kee/core/service/impl/UploadDemoServiceImpl.java: -------------------------------------------------------------------------------- 1 | package cn.kee.core.service.impl; 2 | 3 | import org.springframework.beans.factory.annotation.Autowired; 4 | import org.springframework.stereotype.Service; 5 | 6 | import cn.kee.core.constant.ConstantUtil; 7 | import cn.kee.core.entity.vo.UploadDemoVo; 8 | import cn.kee.core.service.UploadDemoService; 9 | import cn.kee.core.service.UploadFileService; 10 | 11 | @Service 12 | public class UploadDemoServiceImpl implements UploadDemoService { 13 | 14 | @Autowired 15 | private UploadFileService uploadFileService; 16 | 17 | @Override 18 | public boolean uploadForm(UploadDemoVo demo) throws Exception { 19 | demo.validateFile(); 20 | uploadFileService.uploadFile( 21 | ConstantUtil.DATA_REAL_PATH_DEMO_DEMOFILE, demo.getImgFile(), demo.getImgFile().getOriginalFilename()); 22 | return true; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /src/cn/kee/core/test/SearchLuceneIndexTest.java: -------------------------------------------------------------------------------- 1 | package cn.kee.core.test; 2 | 3 | import org.junit.Test; 4 | 5 | import cn.kee.core.util.LuceneSearchUtil; 6 | 7 | public class SearchLuceneIndexTest { 8 | 9 | // @Test 10 | // public void test() throws Exception{ 11 | // LuceneSearchUtil.searchLuceneIndex( 12 | // "F:\\lucene-4.10.2\\test", 13 | // "titleIndex", //查询标题的title所建立的索引 14 | // "阿里云ubuntu", //索引中包含的关键字 15 | // 5 16 | // ); 17 | // } 18 | 19 | @Test 20 | public void testSpanSearch() throws Exception{ 21 | LuceneSearchUtil.spanSearch( 22 | "F:\\lucene-4.10.2\\test", 23 | "titleIndex", //查询标题的title所建立的索引 24 | 33, //不同的关键字的间隔距离 25 | 25, 26 | new String[]{"阿", "里"} //索引中包含的关键字 27 | ); 28 | } 29 | 30 | } 31 | -------------------------------------------------------------------------------- /src/cn/kee/core/test/WordTest.java: -------------------------------------------------------------------------------- 1 | package cn.kee.core.test; 2 | 3 | public class WordTest { 4 | 5 | public static void main(String[] args) { 6 | String word = "窝宅在家两只巧手定乾坤"; 7 | for(int i = 0; i< word.length(); i++){ 8 | System.out.println("

" + word.charAt(i) + "

"); 9 | } 10 | } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /src/cn/kee/core/test/userServiceTest.java: -------------------------------------------------------------------------------- 1 | package cn.kee.core.test; 2 | 3 | import static org.junit.Assert.fail; 4 | 5 | import org.junit.Test; 6 | import org.springframework.context.support.ClassPathXmlApplicationContext; 7 | 8 | public class userServiceTest { 9 | 10 | public static ClassPathXmlApplicationContext ctx = 11 | new ClassPathXmlApplicationContext(new String[] {"META-INF/jdbc-context.xml","META-INF/springMvc3-servlet.xml"}); 12 | 13 | @Test 14 | public void testGetUserByUserId() { 15 | fail("Not yet implemented"); 16 | } 17 | 18 | @Test 19 | public void testGetUserByUserName() { 20 | fail("Not yet implemented"); 21 | } 22 | 23 | @Test 24 | public void testSaveUser() { 25 | fail("Not yet implemented"); 26 | } 27 | 28 | @Test 29 | public void testUpdateUser() { 30 | fail("Not yet implemented"); 31 | } 32 | 33 | } 34 | --------------------------------------------------------------------------------