├── .classpath ├── .gitattributes ├── .mymetadata ├── .project ├── .settings ├── .jsdtscope ├── com.genuitec.eclipse.core.prefs ├── 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 ├── WebRoot ├── Admin │ ├── add-scheme.jsp │ ├── add-sport.jsp │ ├── article.jsp │ ├── css │ │ ├── bootstrap.min.css │ │ ├── font-awesome.min.css │ │ ├── login.css │ │ └── style.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── TaurusNormal.svg │ │ ├── TaurusNormal.ttf │ │ ├── TaurusNormal.woff │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── images │ │ ├── backtop.png │ │ ├── loading.gif │ │ └── news-icon.png │ ├── index.jsp │ ├── js │ │ ├── admin-scripts.js │ │ ├── bootstrap.min.js │ │ ├── html5shiv.min.js │ │ ├── respond.min.js │ │ └── selectivizr-min.js │ ├── question.jsp │ ├── show-user.jsp │ ├── special-scheme-user.jsp │ ├── special-scheme.jsp │ └── sport.jsp ├── Article │ ├── articleShowAll.jsp │ └── articleShowDetail.jsp ├── META-INF │ └── MANIFEST.MF ├── RecommendForYou │ └── recommendForYou.jsp ├── Search │ └── showSearchResult.jsp ├── SpecialScheme │ ├── css │ │ ├── jquery.fullPage.css │ │ ├── specialScheme.css │ │ └── style.css │ ├── images │ │ ├── bbb.png │ │ ├── bg1-s.jpg │ │ ├── bg1.jpg │ │ ├── bg2.jpg │ │ ├── bg3-s.jpg │ │ ├── bg3-xs.jpg │ │ ├── bg3.jpg │ │ ├── bg4.jpg │ │ ├── bg5.jpg │ │ ├── bg7-s.jpg │ │ ├── bg7.jpg │ │ ├── bg9.jpg │ │ ├── card.jpg │ │ ├── cc-a.png │ │ ├── cc-b.png │ │ ├── logo.jpg │ │ ├── meilannote2_logo.png │ │ ├── p1.png │ │ ├── p2.png │ │ ├── p3.png │ │ ├── phone-blue.png │ │ ├── phone-white.png │ │ ├── playgame.png │ │ ├── screen.png │ │ └── title.png │ ├── js │ │ └── area.js │ ├── specialScheme.jsp │ └── specialSchemeDetail.jsp ├── Sport │ ├── sportShowAll.jsp │ └── sportShowDetail.jsp ├── Talk │ ├── showQuestionAll.jsp │ └── showQuestionDetail.jsp ├── User │ ├── Login.jsp │ ├── userDetail.jsp │ └── userDetailUpdate.jsp ├── WEB-INF │ ├── classes │ │ ├── Struts │ │ │ ├── article.xml │ │ │ ├── tag.xml │ │ │ ├── talk.xml │ │ │ ├── user.xml │ │ │ └── userArticle.xml │ │ ├── applicationContext.xml │ │ ├── com │ │ │ ├── Action │ │ │ │ ├── AdminStatisticsAction.class │ │ │ │ ├── ArticleAction.class │ │ │ │ ├── ArticleGreatAction.class │ │ │ │ ├── CacheTagAction.class │ │ │ │ ├── QuestionFocusAction.class │ │ │ │ ├── SportAction.class │ │ │ │ ├── SportWantToAction.class │ │ │ │ ├── TagAction.class │ │ │ │ ├── TalkAction.class │ │ │ │ ├── UserAction.class │ │ │ │ └── UserArticleAction.class │ │ │ ├── Algorithm │ │ │ │ ├── Arrange.class │ │ │ │ ├── CRList.class │ │ │ │ ├── DateJsonValueProcessor.class │ │ │ │ ├── EliminateHtml.class │ │ │ │ ├── KeywordSplit.class │ │ │ │ ├── Mn.class │ │ │ │ ├── MnService.class │ │ │ │ ├── Pager.class │ │ │ │ └── PagerService.class │ │ │ ├── Dao │ │ │ │ ├── AdminStatisticsDao.class │ │ │ │ ├── ArticleDao.class │ │ │ │ ├── ArticleGreatDao.class │ │ │ │ ├── CacheTagDao.class │ │ │ │ ├── NewsDao.class │ │ │ │ ├── OtherToTagDao.class │ │ │ │ ├── QuestionFocusDao.class │ │ │ │ ├── SportDao.class │ │ │ │ ├── SportWantToDao.class │ │ │ │ ├── TalkDao.class │ │ │ │ └── UserDao.class │ │ │ ├── DaoImpl │ │ │ │ ├── AdminStatisticsDaoImpl.class │ │ │ │ ├── ArticleDaoImpl.class │ │ │ │ ├── ArticleGreatImpl.class │ │ │ │ ├── CacheTagDaoImpl.class │ │ │ │ ├── NewsDaoImpl.class │ │ │ │ ├── OtherToTagDaoImpl.class │ │ │ │ ├── QuestionFocusDaoImpl.class │ │ │ │ ├── SporDaoImpl.class │ │ │ │ ├── SportWantToImpl.class │ │ │ │ ├── TackDaoImpl.class │ │ │ │ └── UserDaoImpl.class │ │ │ ├── Entity │ │ │ │ ├── Answer.class │ │ │ │ ├── Answer.hbm.xml │ │ │ │ ├── AnswerGreat.class │ │ │ │ ├── AnswerGreat.hbm.xml │ │ │ │ ├── ArticleGreat.class │ │ │ │ ├── ArticleGreat.hbm.xml │ │ │ │ ├── CacheTag.class │ │ │ │ ├── CacheTag.hbm.xml │ │ │ │ ├── Category1.class │ │ │ │ ├── Category1.hbm.xml │ │ │ │ ├── Category2.class │ │ │ │ ├── Category2.hbm.xml │ │ │ │ ├── News.class │ │ │ │ ├── News.hbm.xml │ │ │ │ ├── OtherToTag.class │ │ │ │ ├── OtherToTag.hbm.xml │ │ │ │ ├── PageView.class │ │ │ │ ├── PageView.hbm.xml │ │ │ │ ├── Question.class │ │ │ │ ├── Question.hbm.xml │ │ │ │ ├── QuestionFocus.class │ │ │ │ ├── QuestionFocus.hbm.xml │ │ │ │ ├── SpecialScheme.class │ │ │ │ ├── SpecialScheme.hbm.xml │ │ │ │ ├── SpecialSchemeUser.class │ │ │ │ ├── SpecialSchemeUser.hbm.xml │ │ │ │ ├── Sport.class │ │ │ │ ├── Sport.hbm.xml │ │ │ │ ├── SportComment.class │ │ │ │ ├── SportComment.hbm.xml │ │ │ │ ├── SportReply.class │ │ │ │ ├── SportReply.hbm.xml │ │ │ │ ├── SportWantTo.class │ │ │ │ ├── SportWantTo.hbm.xml │ │ │ │ ├── Tag.class │ │ │ │ ├── Tag.hbm.xml │ │ │ │ ├── User.class │ │ │ │ ├── User.hbm.xml │ │ │ │ ├── UserArticle.class │ │ │ │ ├── UserArticle.hbm.xml │ │ │ │ ├── UserArticleComment.class │ │ │ │ ├── UserArticleComment.hbm.xml │ │ │ │ ├── UserArticleReply.class │ │ │ │ ├── UserArticleReply.hbm.xml │ │ │ │ ├── UserFocus.class │ │ │ │ ├── UserFocus.hbm.xml │ │ │ │ ├── UserUpdate.class │ │ │ │ └── UserUpdate.hbm.xml │ │ │ ├── Filter │ │ │ │ └── Filter.class │ │ │ ├── Service │ │ │ │ ├── AdminStatisticsService.class │ │ │ │ ├── ArticleGreatService.class │ │ │ │ ├── ArticleService.class │ │ │ │ ├── CacheTagService.class │ │ │ │ ├── NewsService.class │ │ │ │ ├── OtherToTagService.class │ │ │ │ ├── QuestionFocusService.class │ │ │ │ ├── SportService.class │ │ │ │ ├── SportWantToService.class │ │ │ │ ├── TalkService.class │ │ │ │ └── UserService.class │ │ │ ├── ServiceImpl │ │ │ │ ├── AdminStatisticsServiceImpl.class │ │ │ │ ├── ArticleGreatServiceImpl.class │ │ │ │ ├── ArticleServiceImpl.class │ │ │ │ ├── CacheTagServiceImpl.class │ │ │ │ ├── NewsServiceImpl.class │ │ │ │ ├── OtherToTagServiceImpl.class │ │ │ │ ├── QuestionFocusServiceImpl.class │ │ │ │ ├── SportServiceImpl.class │ │ │ │ ├── SportWantToServiceImpl.class │ │ │ │ ├── TalkServiceImpl.class │ │ │ │ └── UserServiceImpl.class │ │ │ └── test │ │ │ │ └── sqlserverTest.class │ │ ├── hibernate.cfg.xml │ │ └── struts.xml │ ├── lib │ │ ├── antlr-2.7.7.jar │ │ ├── com.springsource.net.sf.cglib-2.2.0.jar │ │ ├── com.springsource.org.aopalliance-1.0.0.jar │ │ ├── com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar │ │ ├── commons-beanutils-1.8.0.jar │ │ ├── commons-codec-1.9.jar │ │ ├── commons-collections-3.2.1.jar │ │ ├── commons-dbcp-1.4.jar │ │ ├── commons-fileupload-1.3.2.jar │ │ ├── commons-io-2.2.jar │ │ ├── commons-lang-2.6.jar │ │ ├── commons-lang3-3.1.jar │ │ ├── commons-logging-1.2.jar │ │ ├── commons-pool-1.6.jar │ │ ├── dom4j-1.6.1.jar │ │ ├── ezmorph-1.0.6.jar │ │ ├── freemarker-2.3.22.jar │ │ ├── hibernate-commons-annotations-4.0.5.Final.jar │ │ ├── hibernate-core-4.3.10.Final.jar │ │ ├── hibernate-jpa-2.1-api-1.0.0.Final.jar │ │ ├── jandex-1.1.0.Final.jar │ │ ├── javassist-3.18.1-GA.jar │ │ ├── jboss-logging-3.1.3.GA.jar │ │ ├── jboss-logging-annotations-1.2.0.Beta1.jar │ │ ├── jboss-transaction-api_1.2_spec-1.0.0.Final.jar │ │ ├── json-lib-2.4-jdk15.jar │ │ ├── json.jar │ │ ├── ognl-3.0.19.jar │ │ ├── spring-aop-4.3.2.RELEASE.jar │ │ ├── spring-aspects-4.3.2.RELEASE.jar │ │ ├── spring-beans-4.3.2.RELEASE.jar │ │ ├── spring-context-4.3.2.RELEASE.jar │ │ ├── spring-core-4.3.2.RELEASE.jar │ │ ├── spring-expression-4.3.2.RELEASE.jar │ │ ├── spring-jdbc-4.3.2.RELEASE.jar │ │ ├── spring-orm-4.3.2.RELEASE.jar │ │ ├── spring-tx-4.3.2.RELEASE.jar │ │ ├── spring-web-4.3.2.RELEASE.jar │ │ ├── spring-webmvc-4.3.2.RELEASE.jar │ │ ├── sqljdbc41.jar │ │ ├── struts2-core-2.3.32.jar │ │ ├── struts2-spring-plugin-2.3.32.jar │ │ ├── ueditor-1.1.2.jar │ │ └── xwork-core-2.3.32.jar │ └── web.xml ├── css │ ├── animate │ │ └── animate.min.css │ ├── avatar │ │ └── avatar.css │ ├── blog │ │ ├── blog.css │ │ └── font │ │ │ ├── fontello.eot │ │ │ ├── fontello.svg │ │ │ ├── fontello.ttf │ │ │ └── fontello.woff │ ├── bootstrap │ │ └── bootstrap.min.css │ ├── button │ │ └── button.css │ ├── checkbox │ │ └── checkbox.css │ ├── comment │ │ ├── bootstrap.css │ │ └── style.css │ ├── dropdown │ │ ├── checkbox.css │ │ ├── cs-select.css │ │ ├── cs-skin-border.css │ │ ├── demo.css │ │ ├── noJS.css │ │ ├── normalize.css │ │ ├── radio.css │ │ └── style.css │ ├── elite-user-rank │ │ └── elite-user-rank.css │ ├── emotion │ │ └── jquery-sinaEmotion-2.1.0.min.css │ ├── fluent │ │ ├── bootstrap.min.css │ │ ├── hero-slider-style.css │ │ ├── magnific-popup.css │ │ └── templatemo-style.css │ ├── form │ │ └── form.css │ ├── go-top │ │ ├── go-top.css │ │ └── images │ │ │ └── cd-top-arrow.svg │ ├── index-css │ │ ├── allinone_carousel.css │ │ ├── blue.css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── fwslider.css │ │ ├── green.css │ │ ├── jquery.fancybox.css │ │ ├── owl.carousel.css │ │ ├── responsive.css │ │ ├── style.css │ │ ├── violet.css │ │ └── zerogrid.css │ ├── index-show-recommend │ │ ├── easyResponsiveTabs.js │ │ └── style.css │ ├── input-file │ │ └── input-file.css │ ├── input │ │ └── input.css │ ├── loading │ │ └── loading.css │ ├── login.css │ ├── pagination │ │ └── style.css │ ├── recommend-for-you │ │ └── recommend-for-you.css │ ├── search-result-search │ │ └── search-result-search.css │ ├── search │ │ └── search.css │ ├── show-question │ │ ├── images │ │ │ ├── Descr.WD3 │ │ │ ├── calendar-icon.png │ │ │ ├── category-icon.png │ │ │ ├── category-main-icon.png │ │ │ ├── comment.png │ │ │ ├── devine-art.png │ │ │ ├── facebook.png │ │ │ ├── faq-minus.png │ │ │ ├── faq-plus.png │ │ │ ├── favicon.png │ │ │ ├── flickr.png │ │ │ ├── footer-bg.png │ │ │ ├── glyphicons-halflings-white.png │ │ │ ├── glyphicons-halflings.png │ │ │ ├── google.png │ │ │ ├── image-large.png │ │ │ ├── image.png │ │ │ ├── li-arrow.png │ │ │ ├── like-btn.png │ │ │ ├── like.png │ │ │ ├── linked-in.png │ │ │ ├── loading.gif │ │ │ ├── logo.png │ │ │ ├── main-bg.jpg │ │ │ ├── plus-minus.png │ │ │ ├── question-large.png │ │ │ ├── question.png │ │ │ ├── quote.png │ │ │ ├── rss.png │ │ │ ├── scroll-top.png │ │ │ ├── search-loader.gif │ │ │ ├── skype.png │ │ │ ├── standard-large.png │ │ │ ├── standard.png │ │ │ ├── stumble.png │ │ │ ├── support.png │ │ │ ├── temp │ │ │ │ ├── Descr.WD3 │ │ │ │ ├── living-room-770x501.jpg │ │ │ │ └── man.png │ │ │ ├── twitter.png │ │ │ ├── user.png │ │ │ ├── video-large.png │ │ │ └── video.png │ │ └── show-question.css │ ├── showSport-detail │ │ └── showSport-detail.css │ ├── sport-show │ │ ├── animate.css │ │ ├── bootstrap.css │ │ ├── flexslider.css │ │ └── style.css │ ├── sweetalert │ │ └── sweetalert.css │ └── user-home │ │ └── user-home.css ├── image │ ├── 00.jpg │ ├── 1.jpeg │ ├── 1.jpg │ ├── 11.jpg │ ├── 2.jpg │ ├── 22.png │ ├── 3.jpg │ ├── 33.png │ ├── 4.jpg │ ├── BingWallpaper-2017-07-07.jpg │ ├── Chrysanthemum.jpg │ ├── Desert.jpg │ ├── Hydrangeas.jpg │ ├── Jellyfish.jpg │ ├── Koala.jpg │ ├── Lighthouse.jpg │ ├── Penguins.jpg │ ├── Tulips.jpg │ ├── answer-count.png │ ├── article.png │ ├── background.jpg │ ├── comment.png │ ├── delete.png │ ├── focus-count-grey.png │ ├── focus-count.png │ ├── focus.png │ ├── focusNo.png │ ├── great.png │ ├── index-images │ │ ├── article-slider1.jpg │ │ ├── article-slider2.jpg │ │ ├── article-slider3.jpg │ │ ├── body11.jpg │ │ ├── body12.jpg │ │ ├── body13.jpg │ │ ├── body21.jpg │ │ ├── body22.jpg │ │ ├── body23.jpg │ │ ├── body31.jpg │ │ ├── body32.jpg │ │ ├── body33.jpg │ │ ├── custom.jpg │ │ ├── health.jpg │ │ ├── hill.jpg │ │ ├── history.jpg │ │ ├── leisure.jpg │ │ ├── logo.png │ │ ├── slider1.jpg │ │ ├── slider2.jpg │ │ ├── slider5.jpg │ │ ├── special-scheme1.jpg │ │ └── special-scheme2.jpg │ ├── login-body.jpg │ ├── login.jpeg │ ├── page-view-grey.png │ ├── reply.png │ ├── report.png │ ├── revice.png │ ├── search-dark.png │ ├── switch.png │ ├── time.png │ ├── view-count.png │ └── want-go.png ├── index.jsp ├── indexShow.jsp ├── jquery │ ├── bootstrap │ │ └── bootstrap.min.js │ ├── dropdown │ │ └── modernizr.custom.79639.js │ ├── echarts.js │ ├── go-top │ │ └── go-top.js │ ├── index-js │ │ ├── allinone_carousel.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── css3-mediaqueries.js │ │ ├── fliplightbox.min.js │ │ ├── fwslider.js │ │ ├── jquery-ui-1.8.16.custom.min.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.easing.min.js │ │ ├── jquery.fancybox-1.2.1.js │ │ ├── jquery.min.js │ │ ├── jquery.mixitup.min.js │ │ ├── jquery.ui.touch-punch.min.js │ │ ├── menu.js │ │ ├── modernizr.custom.js │ │ └── owl.carousel.js │ ├── jquery-3.2.1.min.js │ ├── jquery-sinaEmotion-2.1.0.js │ ├── login.js │ ├── plug.js │ ├── showSport-detail │ │ └── showSport-detail.js │ ├── sport-show │ │ ├── jquery.flexslider-min.js │ │ ├── jquery.waypoints.min.js │ │ ├── main.js │ │ └── modernizr-2.6.2.min.js │ ├── sweetalert │ │ └── sweetalert.min.js │ ├── upload-file │ │ └── ajaxfileupload.js │ └── worldcloud.js └── ueditor │ ├── Question.jsp │ ├── createArticle.jsp │ ├── createSport.jsp │ ├── dialogs │ ├── anchor │ │ └── anchor.html │ ├── attachment │ │ ├── attachment.css │ │ ├── attachment.html │ │ ├── attachment.js │ │ ├── fileTypeImages │ │ │ ├── icon_chm.gif │ │ │ ├── icon_default.png │ │ │ ├── icon_doc.gif │ │ │ ├── icon_exe.gif │ │ │ ├── icon_jpg.gif │ │ │ ├── icon_mp3.gif │ │ │ ├── icon_mv.gif │ │ │ ├── icon_pdf.gif │ │ │ ├── icon_ppt.gif │ │ │ ├── icon_psd.gif │ │ │ ├── icon_rar.gif │ │ │ ├── icon_txt.gif │ │ │ └── icon_xls.gif │ │ └── images │ │ │ ├── alignicon.gif │ │ │ ├── alignicon.png │ │ │ ├── bg.png │ │ │ ├── file-icons.gif │ │ │ ├── file-icons.png │ │ │ ├── icons.gif │ │ │ ├── icons.png │ │ │ ├── image.png │ │ │ ├── progress.png │ │ │ ├── success.gif │ │ │ └── success.png │ ├── background │ │ ├── background.css │ │ ├── background.html │ │ ├── background.js │ │ └── images │ │ │ ├── bg.png │ │ │ └── success.png │ ├── charts │ │ ├── chart.config.js │ │ ├── charts.css │ │ ├── charts.html │ │ ├── charts.js │ │ └── images │ │ │ ├── charts0.png │ │ │ ├── charts1.png │ │ │ ├── charts2.png │ │ │ ├── charts3.png │ │ │ ├── charts4.png │ │ │ └── charts5.png │ ├── emotion │ │ ├── emotion.css │ │ ├── emotion.html │ │ ├── emotion.js │ │ └── images │ │ │ ├── 0.gif │ │ │ ├── bface.gif │ │ │ ├── cface.gif │ │ │ ├── fface.gif │ │ │ ├── jxface2.gif │ │ │ ├── neweditor-tab-bg.png │ │ │ ├── tface.gif │ │ │ ├── wface.gif │ │ │ └── yface.gif │ ├── gmap │ │ └── gmap.html │ ├── help │ │ ├── help.css │ │ ├── help.html │ │ └── help.js │ ├── image │ │ ├── image.css │ │ ├── image.html │ │ ├── image.js │ │ └── images │ │ │ ├── alignicon.jpg │ │ │ ├── bg.png │ │ │ ├── icons.gif │ │ │ ├── icons.png │ │ │ ├── image.png │ │ │ ├── progress.png │ │ │ ├── success.gif │ │ │ └── success.png │ ├── insertframe │ │ └── insertframe.html │ ├── internal.js │ ├── link │ │ └── link.html │ ├── map │ │ ├── map.html │ │ └── show.html │ ├── music │ │ ├── music.css │ │ ├── music.html │ │ └── music.js │ ├── preview │ │ └── preview.html │ ├── scrawl │ │ ├── images │ │ │ ├── addimg.png │ │ │ ├── brush.png │ │ │ ├── delimg.png │ │ │ ├── delimgH.png │ │ │ ├── empty.png │ │ │ ├── emptyH.png │ │ │ ├── eraser.png │ │ │ ├── redo.png │ │ │ ├── redoH.png │ │ │ ├── scale.png │ │ │ ├── scaleH.png │ │ │ ├── size.png │ │ │ ├── undo.png │ │ │ └── undoH.png │ │ ├── scrawl.css │ │ ├── scrawl.html │ │ └── scrawl.js │ ├── searchreplace │ │ ├── searchreplace.html │ │ └── searchreplace.js │ ├── snapscreen │ │ └── snapscreen.html │ ├── spechars │ │ ├── spechars.html │ │ └── spechars.js │ ├── table │ │ ├── dragicon.png │ │ ├── edittable.css │ │ ├── edittable.html │ │ ├── edittable.js │ │ ├── edittd.html │ │ └── edittip.html │ ├── template │ │ ├── config.js │ │ ├── images │ │ │ ├── bg.gif │ │ │ ├── pre0.png │ │ │ ├── pre1.png │ │ │ ├── pre2.png │ │ │ ├── pre3.png │ │ │ └── pre4.png │ │ ├── template.css │ │ ├── template.html │ │ └── template.js │ ├── video │ │ ├── images │ │ │ ├── bg.png │ │ │ ├── center_focus.jpg │ │ │ ├── file-icons.gif │ │ │ ├── file-icons.png │ │ │ ├── icons.gif │ │ │ ├── icons.png │ │ │ ├── image.png │ │ │ ├── left_focus.jpg │ │ │ ├── none_focus.jpg │ │ │ ├── progress.png │ │ │ ├── right_focus.jpg │ │ │ ├── success.gif │ │ │ └── success.png │ │ ├── video.css │ │ ├── video.html │ │ └── video.js │ ├── webapp │ │ └── webapp.html │ └── wordimage │ │ ├── fClipboard_ueditor.swf │ │ ├── imageUploader.swf │ │ ├── tangram.js │ │ ├── wordimage.html │ │ └── wordimage.js │ ├── index.html │ ├── index.jsp │ ├── indexUpdate.jsp │ ├── jsp │ ├── config.json │ ├── controller.jsp │ └── lib │ │ ├── commons-codec-1.9.jar │ │ ├── commons-fileupload-1.3.1.jar │ │ ├── commons-io-2.4.jar │ │ ├── json.jar │ │ └── ueditor-1.1.2.jar │ ├── lang │ ├── en │ │ ├── en.js │ │ └── images │ │ │ ├── addimage.png │ │ │ ├── alldeletebtnhoverskin.png │ │ │ ├── alldeletebtnupskin.png │ │ │ ├── background.png │ │ │ ├── button.png │ │ │ ├── copy.png │ │ │ ├── deletedisable.png │ │ │ ├── deleteenable.png │ │ │ ├── listbackground.png │ │ │ ├── localimage.png │ │ │ ├── music.png │ │ │ ├── rotateleftdisable.png │ │ │ ├── rotateleftenable.png │ │ │ ├── rotaterightdisable.png │ │ │ ├── rotaterightenable.png │ │ │ └── upload.png │ └── zh-cn │ │ ├── images │ │ ├── copy.png │ │ ├── localimage.png │ │ ├── music.png │ │ └── upload.png │ │ └── zh-cn.js │ ├── previewArticle.jsp │ ├── themes │ ├── default │ │ ├── css │ │ │ ├── ueditor.css │ │ │ └── ueditor.min.css │ │ ├── dialogbase.css │ │ └── images │ │ │ ├── anchor.gif │ │ │ ├── arrow.png │ │ │ ├── arrow_down.png │ │ │ ├── arrow_up.png │ │ │ ├── button-bg.gif │ │ │ ├── cancelbutton.gif │ │ │ ├── charts.png │ │ │ ├── cursor_h.gif │ │ │ ├── cursor_h.png │ │ │ ├── cursor_v.gif │ │ │ ├── cursor_v.png │ │ │ ├── dialog-title-bg.png │ │ │ ├── filescan.png │ │ │ ├── highlighted.gif │ │ │ ├── icons-all.gif │ │ │ ├── icons.gif │ │ │ ├── icons.png │ │ │ ├── loaderror.png │ │ │ ├── loading.gif │ │ │ ├── lock.gif │ │ │ ├── neweditor-tab-bg.png │ │ │ ├── pagebreak.gif │ │ │ ├── scale.png │ │ │ ├── sortable.png │ │ │ ├── spacer.gif │ │ │ ├── sparator_v.png │ │ │ ├── table-cell-align.png │ │ │ ├── tangram-colorpicker.png │ │ │ ├── toolbar_bg.png │ │ │ ├── unhighlighted.gif │ │ │ ├── upload.png │ │ │ ├── videologo.gif │ │ │ ├── word.gif │ │ │ └── wordpaste.png │ └── iframe.css │ ├── third-party │ ├── SyntaxHighlighter │ │ ├── shCore.js │ │ └── shCoreDefault.css │ ├── codemirror │ │ ├── codemirror.css │ │ └── codemirror.js │ ├── highcharts │ │ ├── adapters │ │ │ ├── mootools-adapter.js │ │ │ ├── mootools-adapter.src.js │ │ │ ├── prototype-adapter.js │ │ │ ├── prototype-adapter.src.js │ │ │ ├── standalone-framework.js │ │ │ └── standalone-framework.src.js │ │ ├── highcharts-more.js │ │ ├── highcharts-more.src.js │ │ ├── highcharts.js │ │ ├── highcharts.src.js │ │ ├── modules │ │ │ ├── annotations.js │ │ │ ├── annotations.src.js │ │ │ ├── canvas-tools.js │ │ │ ├── canvas-tools.src.js │ │ │ ├── data.js │ │ │ ├── data.src.js │ │ │ ├── drilldown.js │ │ │ ├── drilldown.src.js │ │ │ ├── exporting.js │ │ │ ├── exporting.src.js │ │ │ ├── funnel.js │ │ │ ├── funnel.src.js │ │ │ ├── heatmap.js │ │ │ ├── heatmap.src.js │ │ │ ├── map.js │ │ │ ├── map.src.js │ │ │ ├── no-data-to-display.js │ │ │ └── no-data-to-display.src.js │ │ └── themes │ │ │ ├── dark-blue.js │ │ │ ├── dark-green.js │ │ │ ├── gray.js │ │ │ ├── grid.js │ │ │ └── skies.js │ ├── jquery-1.10.2.js │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ ├── snapscreen │ │ └── UEditorSnapscreen.exe │ ├── video-js │ │ ├── font │ │ │ ├── vjs.eot │ │ │ ├── vjs.svg │ │ │ ├── vjs.ttf │ │ │ └── vjs.woff │ │ ├── video-js.css │ │ ├── video-js.min.css │ │ ├── video-js.swf │ │ ├── video.dev.js │ │ └── video.js │ ├── webuploader │ │ ├── Uploader.swf │ │ ├── webuploader.css │ │ ├── webuploader.custom.js │ │ ├── webuploader.custom.min.js │ │ ├── webuploader.flashonly.js │ │ ├── webuploader.flashonly.min.js │ │ ├── webuploader.html5only.js │ │ ├── webuploader.html5only.min.js │ │ ├── webuploader.js │ │ ├── webuploader.min.js │ │ ├── webuploader.withoutimage.js │ │ └── webuploader.withoutimage.min.js │ ├── xss.min.js │ └── zeroclipboard │ │ ├── ZeroClipboard.js │ │ ├── ZeroClipboard.min.js │ │ └── ZeroClipboard.swf │ ├── ueditor-forAnswer.config.js │ ├── ueditor-forReply.config.js │ ├── ueditor.all.js │ ├── ueditor.all.min.js │ ├── ueditor.config.js │ ├── ueditor.parse.js │ └── ueditor.parse.min.js └── src ├── Struts ├── article.xml ├── tag.xml ├── talk.xml ├── user.xml └── userArticle.xml ├── applicationContext.xml ├── com ├── Action │ ├── AdminStatisticsAction.java │ ├── ArticleAction.java │ ├── ArticleGreatAction.java │ ├── CacheTagAction.java │ ├── QuestionFocusAction.java │ ├── SportAction.java │ ├── SportWantToAction.java │ ├── TagAction.java │ ├── TalkAction.java │ ├── UserAction.java │ └── UserArticleAction.java ├── Algorithm │ ├── Arrange.java │ ├── CRList.java │ ├── DateJsonValueProcessor.java │ ├── EliminateHtml.java │ ├── KeywordSplit.java │ ├── Mn.java │ ├── MnService.java │ ├── Pager.java │ └── PagerService.java ├── Dao │ ├── AdminStatisticsDao.java │ ├── ArticleDao.java │ ├── ArticleGreatDao.java │ ├── CacheTagDao.java │ ├── NewsDao.java │ ├── OtherToTagDao.java │ ├── QuestionFocusDao.java │ ├── SportDao.java │ ├── SportWantToDao.java │ ├── TalkDao.java │ └── UserDao.java ├── DaoImpl │ ├── AdminStatisticsDaoImpl.java │ ├── ArticleDaoImpl.java │ ├── ArticleGreatImpl.java │ ├── CacheTagDaoImpl.java │ ├── NewsDaoImpl.java │ ├── OtherToTagDaoImpl.java │ ├── QuestionFocusDaoImpl.java │ ├── SporDaoImpl.java │ ├── SportWantToImpl.java │ ├── TackDaoImpl.java │ └── UserDaoImpl.java ├── Entity │ ├── Answer.hbm.xml │ ├── Answer.java │ ├── AnswerGreat.hbm.xml │ ├── AnswerGreat.java │ ├── ArticleGreat.hbm.xml │ ├── ArticleGreat.java │ ├── CacheTag.hbm.xml │ ├── CacheTag.java │ ├── Category1.hbm.xml │ ├── Category1.java │ ├── Category2.hbm.xml │ ├── Category2.java │ ├── News.hbm.xml │ ├── News.java │ ├── OtherToTag.hbm.xml │ ├── OtherToTag.java │ ├── PageView.hbm.xml │ ├── PageView.java │ ├── Question.hbm.xml │ ├── Question.java │ ├── QuestionFocus.hbm.xml │ ├── QuestionFocus.java │ ├── SpecialScheme.hbm.xml │ ├── SpecialScheme.java │ ├── SpecialSchemeUser.hbm.xml │ ├── SpecialSchemeUser.java │ ├── Sport.hbm.xml │ ├── Sport.java │ ├── SportComment.hbm.xml │ ├── SportComment.java │ ├── SportReply.hbm.xml │ ├── SportReply.java │ ├── SportWantTo.hbm.xml │ ├── SportWantTo.java │ ├── Tag.hbm.xml │ ├── Tag.java │ ├── User.hbm.xml │ ├── User.java │ ├── UserArticle.hbm.xml │ ├── UserArticle.java │ ├── UserArticleComment.hbm.xml │ ├── UserArticleComment.java │ ├── UserArticleReply.hbm.xml │ ├── UserArticleReply.java │ ├── UserFocus.hbm.xml │ ├── UserFocus.java │ ├── UserUpdate.hbm.xml │ └── UserUpdate.java ├── Filter │ └── Filter.java ├── Service │ ├── AdminStatisticsService.java │ ├── ArticleGreatService.java │ ├── ArticleService.java │ ├── CacheTagService.java │ ├── NewsService.java │ ├── OtherToTagService.java │ ├── QuestionFocusService.java │ ├── SportService.java │ ├── SportWantToService.java │ ├── TalkService.java │ └── UserService.java ├── ServiceImpl │ ├── AdminStatisticsServiceImpl.java │ ├── ArticleGreatServiceImpl.java │ ├── ArticleServiceImpl.java │ ├── CacheTagServiceImpl.java │ ├── NewsServiceImpl.java │ ├── OtherToTagServiceImpl.java │ ├── QuestionFocusServiceImpl.java │ ├── SportServiceImpl.java │ ├── SportWantToServiceImpl.java │ ├── TalkServiceImpl.java │ └── UserServiceImpl.java └── test │ └── sqlserverTest.java ├── hibernate.cfg.xml └── struts.xml /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | *.jar diff=astextplain 19 | *.class diff=astextplain 20 | -------------------------------------------------------------------------------- /.mymetadata: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.settings/com.genuitec.eclipse.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | validator.Checked=WebRoot/Sport/articleShowAllSearch.jsp,WebRoot/Admin,WebRoot/Sport/sportShowDetail.jsp,WebRoot/Search/showSearchResult.jsp,WebRoot/Sport/sportShowAllSearch.jsp,WebRoot/Talk/showQuestionDetail.jsp,WebRoot/jquery,WebRoot/Article/articleShowDetail.jsp,WebRoot/ueditor 3 | validator.Unchecked= 4 | -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//WebRoot/Talk/showQuestionAll.jsp=UTF-8 3 | encoding//WebRoot/css/checkbox/checkbox.css=UTF-8 4 | -------------------------------------------------------------------------------- /.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.targetPlatform=1.5 4 | org.eclipse.jdt.core.compiler.compliance=1.5 5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 7 | org.eclipse.jdt.core.compiler.source=1.5 8 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /.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 | # ssh 2 | 使用struts2+hibernate4+spring4+SQLServer2005 ,实现网站前后台搭建 3 | # 4 | >使用的数据库是SQLServer
5 | >用户登入:用户名cc 密码cc
6 | >管理员登入:用户名 admin 密码 admin
7 | # 8 | * 网站介绍:http://blog.csdn.net/yiyuan_chen/article/details/78402103
9 | * 运行文件下载(文件较大,含图片):http://pan.baidu.com/s/1i4PYWw1 密码:sfb7 10 | * 数据库下载:http://pan.baidu.com/s/1pL1a5lT 密码:cuws 11 | * 源代码(百度云):http://pan.baidu.com/s/1jI6AxnS 密码:sxnf 12 | -------------------------------------------------------------------------------- /WebRoot/Admin/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/Admin/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /WebRoot/Admin/fonts/TaurusNormal.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/Admin/fonts/TaurusNormal.ttf -------------------------------------------------------------------------------- /WebRoot/Admin/fonts/TaurusNormal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/Admin/fonts/TaurusNormal.woff -------------------------------------------------------------------------------- /WebRoot/Admin/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/Admin/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /WebRoot/Admin/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/Admin/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /WebRoot/Admin/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/Admin/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /WebRoot/Admin/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/Admin/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /WebRoot/Admin/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/Admin/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /WebRoot/Admin/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/Admin/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /WebRoot/Admin/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/Admin/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /WebRoot/Admin/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/Admin/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /WebRoot/Admin/images/backtop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/Admin/images/backtop.png -------------------------------------------------------------------------------- /WebRoot/Admin/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/Admin/images/loading.gif -------------------------------------------------------------------------------- /WebRoot/Admin/images/news-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/Admin/images/news-icon.png -------------------------------------------------------------------------------- /WebRoot/Admin/special-scheme-user.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/Admin/special-scheme-user.jsp -------------------------------------------------------------------------------- /WebRoot/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /WebRoot/SpecialScheme/css/specialScheme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/SpecialScheme/css/specialScheme.css -------------------------------------------------------------------------------- /WebRoot/SpecialScheme/images/bbb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/SpecialScheme/images/bbb.png -------------------------------------------------------------------------------- /WebRoot/SpecialScheme/images/bg1-s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/SpecialScheme/images/bg1-s.jpg -------------------------------------------------------------------------------- /WebRoot/SpecialScheme/images/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/SpecialScheme/images/bg1.jpg -------------------------------------------------------------------------------- /WebRoot/SpecialScheme/images/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/SpecialScheme/images/bg2.jpg -------------------------------------------------------------------------------- /WebRoot/SpecialScheme/images/bg3-s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/SpecialScheme/images/bg3-s.jpg -------------------------------------------------------------------------------- /WebRoot/SpecialScheme/images/bg3-xs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/SpecialScheme/images/bg3-xs.jpg -------------------------------------------------------------------------------- /WebRoot/SpecialScheme/images/bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/SpecialScheme/images/bg3.jpg -------------------------------------------------------------------------------- /WebRoot/SpecialScheme/images/bg4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/SpecialScheme/images/bg4.jpg -------------------------------------------------------------------------------- /WebRoot/SpecialScheme/images/bg5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/SpecialScheme/images/bg5.jpg -------------------------------------------------------------------------------- /WebRoot/SpecialScheme/images/bg7-s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/SpecialScheme/images/bg7-s.jpg -------------------------------------------------------------------------------- /WebRoot/SpecialScheme/images/bg7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/SpecialScheme/images/bg7.jpg -------------------------------------------------------------------------------- /WebRoot/SpecialScheme/images/bg9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/SpecialScheme/images/bg9.jpg -------------------------------------------------------------------------------- /WebRoot/SpecialScheme/images/card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/SpecialScheme/images/card.jpg -------------------------------------------------------------------------------- /WebRoot/SpecialScheme/images/cc-a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/SpecialScheme/images/cc-a.png -------------------------------------------------------------------------------- /WebRoot/SpecialScheme/images/cc-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/SpecialScheme/images/cc-b.png -------------------------------------------------------------------------------- /WebRoot/SpecialScheme/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/SpecialScheme/images/logo.jpg -------------------------------------------------------------------------------- /WebRoot/SpecialScheme/images/meilannote2_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/SpecialScheme/images/meilannote2_logo.png -------------------------------------------------------------------------------- /WebRoot/SpecialScheme/images/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/SpecialScheme/images/p1.png -------------------------------------------------------------------------------- /WebRoot/SpecialScheme/images/p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/SpecialScheme/images/p2.png -------------------------------------------------------------------------------- /WebRoot/SpecialScheme/images/p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/SpecialScheme/images/p3.png -------------------------------------------------------------------------------- /WebRoot/SpecialScheme/images/phone-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/SpecialScheme/images/phone-blue.png -------------------------------------------------------------------------------- /WebRoot/SpecialScheme/images/phone-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/SpecialScheme/images/phone-white.png -------------------------------------------------------------------------------- /WebRoot/SpecialScheme/images/playgame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/SpecialScheme/images/playgame.png -------------------------------------------------------------------------------- /WebRoot/SpecialScheme/images/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/SpecialScheme/images/screen.png -------------------------------------------------------------------------------- /WebRoot/SpecialScheme/images/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/SpecialScheme/images/title.png -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/Struts/tag.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Action/AdminStatisticsAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Action/AdminStatisticsAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Action/ArticleAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Action/ArticleAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Action/ArticleGreatAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Action/ArticleGreatAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Action/CacheTagAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Action/CacheTagAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Action/QuestionFocusAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Action/QuestionFocusAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Action/SportAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Action/SportAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Action/SportWantToAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Action/SportWantToAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Action/TagAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Action/TagAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Action/TalkAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Action/TalkAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Action/UserAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Action/UserAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Action/UserArticleAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Action/UserArticleAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Algorithm/Arrange.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Algorithm/Arrange.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Algorithm/CRList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Algorithm/CRList.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Algorithm/DateJsonValueProcessor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Algorithm/DateJsonValueProcessor.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Algorithm/EliminateHtml.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Algorithm/EliminateHtml.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Algorithm/KeywordSplit.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Algorithm/KeywordSplit.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Algorithm/Mn.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Algorithm/Mn.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Algorithm/MnService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Algorithm/MnService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Algorithm/Pager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Algorithm/Pager.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Algorithm/PagerService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Algorithm/PagerService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Dao/AdminStatisticsDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Dao/AdminStatisticsDao.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Dao/ArticleDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Dao/ArticleDao.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Dao/ArticleGreatDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Dao/ArticleGreatDao.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Dao/CacheTagDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Dao/CacheTagDao.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Dao/NewsDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Dao/NewsDao.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Dao/OtherToTagDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Dao/OtherToTagDao.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Dao/QuestionFocusDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Dao/QuestionFocusDao.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Dao/SportDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Dao/SportDao.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Dao/SportWantToDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Dao/SportWantToDao.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Dao/TalkDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Dao/TalkDao.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Dao/UserDao.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Dao/UserDao.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/DaoImpl/AdminStatisticsDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/DaoImpl/AdminStatisticsDaoImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/DaoImpl/ArticleDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/DaoImpl/ArticleDaoImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/DaoImpl/ArticleGreatImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/DaoImpl/ArticleGreatImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/DaoImpl/CacheTagDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/DaoImpl/CacheTagDaoImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/DaoImpl/NewsDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/DaoImpl/NewsDaoImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/DaoImpl/OtherToTagDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/DaoImpl/OtherToTagDaoImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/DaoImpl/QuestionFocusDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/DaoImpl/QuestionFocusDaoImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/DaoImpl/SporDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/DaoImpl/SporDaoImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/DaoImpl/SportWantToImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/DaoImpl/SportWantToImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/DaoImpl/TackDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/DaoImpl/TackDaoImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/DaoImpl/UserDaoImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/DaoImpl/UserDaoImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/Answer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Entity/Answer.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/AnswerGreat.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Entity/AnswerGreat.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/AnswerGreat.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/ArticleGreat.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Entity/ArticleGreat.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/ArticleGreat.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/CacheTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Entity/CacheTag.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/CacheTag.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/Category1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Entity/Category1.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/Category1.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/Category2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Entity/Category2.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/Category2.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/News.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Entity/News.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/OtherToTag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Entity/OtherToTag.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/OtherToTag.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/PageView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Entity/PageView.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/PageView.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/Question.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Entity/Question.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/QuestionFocus.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Entity/QuestionFocus.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/QuestionFocus.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 16 | 17 | 18 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/SpecialScheme.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Entity/SpecialScheme.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/SpecialSchemeUser.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Entity/SpecialSchemeUser.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/SpecialSchemeUser.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/Sport.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Entity/Sport.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/SportComment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Entity/SportComment.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/SportComment.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/SportReply.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Entity/SportReply.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/SportWantTo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Entity/SportWantTo.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/SportWantTo.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/Tag.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Entity/Tag.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/Tag.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/User.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Entity/User.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/UserArticle.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Entity/UserArticle.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/UserArticleComment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Entity/UserArticleComment.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/UserArticleComment.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/UserArticleReply.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Entity/UserArticleReply.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/UserFocus.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Entity/UserFocus.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/UserFocus.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 16 | 17 | 18 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Entity/UserUpdate.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Entity/UserUpdate.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Filter/Filter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Filter/Filter.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Service/AdminStatisticsService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Service/AdminStatisticsService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Service/ArticleGreatService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Service/ArticleGreatService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Service/ArticleService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Service/ArticleService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Service/CacheTagService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Service/CacheTagService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Service/NewsService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Service/NewsService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Service/OtherToTagService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Service/OtherToTagService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Service/QuestionFocusService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Service/QuestionFocusService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Service/SportService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Service/SportService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Service/SportWantToService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Service/SportWantToService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Service/TalkService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Service/TalkService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/Service/UserService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/Service/UserService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/ServiceImpl/AdminStatisticsServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/ServiceImpl/AdminStatisticsServiceImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/ServiceImpl/ArticleGreatServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/ServiceImpl/ArticleGreatServiceImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/ServiceImpl/ArticleServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/ServiceImpl/ArticleServiceImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/ServiceImpl/CacheTagServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/ServiceImpl/CacheTagServiceImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/ServiceImpl/NewsServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/ServiceImpl/NewsServiceImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/ServiceImpl/OtherToTagServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/ServiceImpl/OtherToTagServiceImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/ServiceImpl/QuestionFocusServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/ServiceImpl/QuestionFocusServiceImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/ServiceImpl/SportServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/ServiceImpl/SportServiceImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/ServiceImpl/SportWantToServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/ServiceImpl/SportWantToServiceImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/ServiceImpl/TalkServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/ServiceImpl/TalkServiceImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/ServiceImpl/UserServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/ServiceImpl/UserServiceImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/test/sqlserverTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/classes/com/test/sqlserverTest.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/hibernate.cfg.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | org.hibernate.dialect.SQLServerDialect 9 | 10 | true 11 | update 12 | true 13 | 14 | 15 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/antlr-2.7.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/antlr-2.7.7.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/com.springsource.net.sf.cglib-2.2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/com.springsource.net.sf.cglib-2.2.0.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/com.springsource.org.aopalliance-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/com.springsource.org.aopalliance-1.0.0.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-beanutils-1.8.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/commons-beanutils-1.8.0.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-codec-1.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/commons-codec-1.9.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-collections-3.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/commons-collections-3.2.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-dbcp-1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/commons-dbcp-1.4.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-fileupload-1.3.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/commons-fileupload-1.3.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-io-2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/commons-io-2.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-lang-2.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/commons-lang-2.6.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-lang3-3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/commons-lang3-3.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-logging-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/commons-logging-1.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-pool-1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/commons-pool-1.6.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/ezmorph-1.0.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/ezmorph-1.0.6.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/freemarker-2.3.22.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/freemarker-2.3.22.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/hibernate-commons-annotations-4.0.5.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/hibernate-commons-annotations-4.0.5.Final.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/hibernate-core-4.3.10.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/hibernate-core-4.3.10.Final.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/hibernate-jpa-2.1-api-1.0.0.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/hibernate-jpa-2.1-api-1.0.0.Final.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jandex-1.1.0.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/jandex-1.1.0.Final.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/javassist-3.18.1-GA.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/javassist-3.18.1-GA.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jboss-logging-3.1.3.GA.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/jboss-logging-3.1.3.GA.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jboss-logging-annotations-1.2.0.Beta1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/jboss-logging-annotations-1.2.0.Beta1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jboss-transaction-api_1.2_spec-1.0.0.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/jboss-transaction-api_1.2_spec-1.0.0.Final.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/json-lib-2.4-jdk15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/json-lib-2.4-jdk15.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/json.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/json.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/ognl-3.0.19.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/ognl-3.0.19.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-aop-4.3.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/spring-aop-4.3.2.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-aspects-4.3.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/spring-aspects-4.3.2.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-beans-4.3.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/spring-beans-4.3.2.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-context-4.3.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/spring-context-4.3.2.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-core-4.3.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/spring-core-4.3.2.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-expression-4.3.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/spring-expression-4.3.2.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-jdbc-4.3.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/spring-jdbc-4.3.2.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-orm-4.3.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/spring-orm-4.3.2.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-tx-4.3.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/spring-tx-4.3.2.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-web-4.3.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/spring-web-4.3.2.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring-webmvc-4.3.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/spring-webmvc-4.3.2.RELEASE.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/sqljdbc41.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/sqljdbc41.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/struts2-core-2.3.32.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/struts2-core-2.3.32.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/struts2-spring-plugin-2.3.32.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/struts2-spring-plugin-2.3.32.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/ueditor-1.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/ueditor-1.1.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/xwork-core-2.3.32.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/WEB-INF/lib/xwork-core-2.3.32.jar -------------------------------------------------------------------------------- /WebRoot/css/avatar/avatar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/avatar/avatar.css -------------------------------------------------------------------------------- /WebRoot/css/blog/blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/blog/blog.css -------------------------------------------------------------------------------- /WebRoot/css/blog/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/blog/font/fontello.eot -------------------------------------------------------------------------------- /WebRoot/css/blog/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/blog/font/fontello.ttf -------------------------------------------------------------------------------- /WebRoot/css/blog/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/blog/font/fontello.woff -------------------------------------------------------------------------------- /WebRoot/css/button/button.css: -------------------------------------------------------------------------------- 1 | 2 | .link { 3 | text-decoration: none; 4 | color: #55acee; 5 | border-bottom: 2px dotted #55acee; 6 | transition: .3s; 7 | -webkit-transition: .3s; 8 | -moz-transition: .3s; 9 | -o-transition: .3s; 10 | 11 | } 12 | 13 | 14 | .link:hover { 15 | color: #2ecc71; 16 | border-bottom: 2px dotted #2ecc71; 17 | } 18 | 19 | #buttons { 20 | padding-top: 50px; 21 | text-align: center; 22 | } 23 | 24 | /* start da css for da buttons */ 25 | .more { 26 | border-radius: 5px; 27 | padding: 15px 25px; 28 | font-size: 22px; 29 | text-decoration: none; 30 | margin: 20px; 31 | color: #fff; 32 | position: relative; 33 | display: inline-block; 34 | } 35 | 36 | .more:active { 37 | transform: translate(0px, 5px); 38 | -webkit-transform: translate(0px, 5px); 39 | box-shadow: 0px 1px 0px 0px; 40 | } 41 | 42 | .red { 43 | background-color: rgba(232, 98, 86, 0.8); 44 | box-shadow: 0px 5px 0px 0px #CE3323; 45 | } 46 | 47 | .red:hover { 48 | background-color: #FF6656; 49 | } 50 | -------------------------------------------------------------------------------- /WebRoot/css/dropdown/checkbox.css: -------------------------------------------------------------------------------- 1 | input[type=checkbox]{ 2 | height: 0; 3 | width: 0; 4 | visibility: hidden; 5 | } 6 | 7 | label { 8 | cursor: pointer; 9 | text-indent: -9999px; 10 | width: 50px; 11 | height: 30px; 12 | background: grey; 13 | display: block; 14 | border-radius: 100px; 15 | position: relative; 16 | } 17 | 18 | label:after { 19 | content: ''; 20 | position: absolute; 21 | top: 5px; 22 | left: 5px; 23 | width: 20px; 24 | height: 20px; 25 | background: #fff; 26 | border-radius: 90px; 27 | transition: 0.3s; 28 | } 29 | 30 | input:checked + label { 31 | background: #76C7C0; 32 | } 33 | 34 | input:checked + label:after { 35 | left: calc(100% - 5px); 36 | transform: translateX(-100%); 37 | } 38 | 39 | label:active:after { 40 | width: 10px; 41 | } 42 | 43 | // centering 44 | body { 45 | display: flex; 46 | justify-content: center; 47 | align-items: center; 48 | height: 100vh; 49 | } -------------------------------------------------------------------------------- /WebRoot/css/dropdown/radio.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WebRoot/css/form/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/form/form.css -------------------------------------------------------------------------------- /WebRoot/css/go-top/go-top.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/go-top/go-top.css -------------------------------------------------------------------------------- /WebRoot/css/go-top/images/cd-top-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WebRoot/css/index-css/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/index-css/blue.css -------------------------------------------------------------------------------- /WebRoot/css/index-css/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/index-css/responsive.css -------------------------------------------------------------------------------- /WebRoot/css/index-css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/index-css/style.css -------------------------------------------------------------------------------- /WebRoot/css/input-file/input-file.css: -------------------------------------------------------------------------------- 1 | .file { 2 | position: relative; 3 | display: inline-block; 4 | background: #D0EEFF; 5 | border: 1px solid #99D3F5; 6 | border-radius: 4px; 7 | padding: 4px 12px; 8 | overflow: hidden; 9 | color: #1E88C7; 10 | text-decoration: none; 11 | text-indent: 0; 12 | line-height: 20px; 13 | } 14 | .file input { 15 | position: absolute; 16 | font-size: 100px; 17 | right: 0; 18 | top: 0; 19 | opacity: 0; 20 | } 21 | .file:hover { 22 | background: #AADFFD; 23 | border-color: #78C3F3; 24 | color: #004974; 25 | text-decoration: none; 26 | } -------------------------------------------------------------------------------- /WebRoot/css/loading/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/loading/loading.css -------------------------------------------------------------------------------- /WebRoot/css/search-result-search/search-result-search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/search-result-search/search-result-search.css -------------------------------------------------------------------------------- /WebRoot/css/search/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/search/search.css -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/Descr.WD3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/Descr.WD3 -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/calendar-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/calendar-icon.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/category-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/category-icon.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/category-main-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/category-main-icon.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/comment.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/devine-art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/devine-art.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/facebook.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/faq-minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/faq-minus.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/faq-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/faq-plus.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/favicon.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/flickr.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/footer-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/footer-bg.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/glyphicons-halflings.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/google.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/image-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/image-large.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/image.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/li-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/li-arrow.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/like-btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/like-btn.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/like.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/linked-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/linked-in.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/loading.gif -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/logo.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/main-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/main-bg.jpg -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/plus-minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/plus-minus.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/question-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/question-large.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/question.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/quote.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/rss.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/scroll-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/scroll-top.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/search-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/search-loader.gif -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/skype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/skype.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/standard-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/standard-large.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/standard.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/stumble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/stumble.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/support.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/temp/Descr.WD3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/temp/Descr.WD3 -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/temp/living-room-770x501.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/temp/living-room-770x501.jpg -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/temp/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/temp/man.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/twitter.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/user.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/video-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/video-large.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/images/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/images/video.png -------------------------------------------------------------------------------- /WebRoot/css/show-question/show-question.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/css/show-question/show-question.css -------------------------------------------------------------------------------- /WebRoot/image/00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/00.jpg -------------------------------------------------------------------------------- /WebRoot/image/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/1.jpeg -------------------------------------------------------------------------------- /WebRoot/image/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/1.jpg -------------------------------------------------------------------------------- /WebRoot/image/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/11.jpg -------------------------------------------------------------------------------- /WebRoot/image/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/2.jpg -------------------------------------------------------------------------------- /WebRoot/image/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/22.png -------------------------------------------------------------------------------- /WebRoot/image/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/3.jpg -------------------------------------------------------------------------------- /WebRoot/image/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/33.png -------------------------------------------------------------------------------- /WebRoot/image/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/4.jpg -------------------------------------------------------------------------------- /WebRoot/image/BingWallpaper-2017-07-07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/BingWallpaper-2017-07-07.jpg -------------------------------------------------------------------------------- /WebRoot/image/Chrysanthemum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/Chrysanthemum.jpg -------------------------------------------------------------------------------- /WebRoot/image/Desert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/Desert.jpg -------------------------------------------------------------------------------- /WebRoot/image/Hydrangeas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/Hydrangeas.jpg -------------------------------------------------------------------------------- /WebRoot/image/Jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/Jellyfish.jpg -------------------------------------------------------------------------------- /WebRoot/image/Koala.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/Koala.jpg -------------------------------------------------------------------------------- /WebRoot/image/Lighthouse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/Lighthouse.jpg -------------------------------------------------------------------------------- /WebRoot/image/Penguins.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/Penguins.jpg -------------------------------------------------------------------------------- /WebRoot/image/Tulips.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/Tulips.jpg -------------------------------------------------------------------------------- /WebRoot/image/answer-count.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/answer-count.png -------------------------------------------------------------------------------- /WebRoot/image/article.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/article.png -------------------------------------------------------------------------------- /WebRoot/image/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/background.jpg -------------------------------------------------------------------------------- /WebRoot/image/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/comment.png -------------------------------------------------------------------------------- /WebRoot/image/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/delete.png -------------------------------------------------------------------------------- /WebRoot/image/focus-count-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/focus-count-grey.png -------------------------------------------------------------------------------- /WebRoot/image/focus-count.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/focus-count.png -------------------------------------------------------------------------------- /WebRoot/image/focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/focus.png -------------------------------------------------------------------------------- /WebRoot/image/focusNo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/focusNo.png -------------------------------------------------------------------------------- /WebRoot/image/great.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/great.png -------------------------------------------------------------------------------- /WebRoot/image/index-images/article-slider1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/index-images/article-slider1.jpg -------------------------------------------------------------------------------- /WebRoot/image/index-images/article-slider2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/index-images/article-slider2.jpg -------------------------------------------------------------------------------- /WebRoot/image/index-images/article-slider3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/index-images/article-slider3.jpg -------------------------------------------------------------------------------- /WebRoot/image/index-images/body11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/index-images/body11.jpg -------------------------------------------------------------------------------- /WebRoot/image/index-images/body12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/index-images/body12.jpg -------------------------------------------------------------------------------- /WebRoot/image/index-images/body13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/index-images/body13.jpg -------------------------------------------------------------------------------- /WebRoot/image/index-images/body21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/index-images/body21.jpg -------------------------------------------------------------------------------- /WebRoot/image/index-images/body22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/index-images/body22.jpg -------------------------------------------------------------------------------- /WebRoot/image/index-images/body23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/index-images/body23.jpg -------------------------------------------------------------------------------- /WebRoot/image/index-images/body31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/index-images/body31.jpg -------------------------------------------------------------------------------- /WebRoot/image/index-images/body32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/index-images/body32.jpg -------------------------------------------------------------------------------- /WebRoot/image/index-images/body33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/index-images/body33.jpg -------------------------------------------------------------------------------- /WebRoot/image/index-images/custom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/index-images/custom.jpg -------------------------------------------------------------------------------- /WebRoot/image/index-images/health.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/index-images/health.jpg -------------------------------------------------------------------------------- /WebRoot/image/index-images/hill.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/index-images/hill.jpg -------------------------------------------------------------------------------- /WebRoot/image/index-images/history.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/index-images/history.jpg -------------------------------------------------------------------------------- /WebRoot/image/index-images/leisure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/index-images/leisure.jpg -------------------------------------------------------------------------------- /WebRoot/image/index-images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/index-images/logo.png -------------------------------------------------------------------------------- /WebRoot/image/index-images/slider1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/index-images/slider1.jpg -------------------------------------------------------------------------------- /WebRoot/image/index-images/slider2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/index-images/slider2.jpg -------------------------------------------------------------------------------- /WebRoot/image/index-images/slider5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/index-images/slider5.jpg -------------------------------------------------------------------------------- /WebRoot/image/index-images/special-scheme1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/index-images/special-scheme1.jpg -------------------------------------------------------------------------------- /WebRoot/image/index-images/special-scheme2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/index-images/special-scheme2.jpg -------------------------------------------------------------------------------- /WebRoot/image/login-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/login-body.jpg -------------------------------------------------------------------------------- /WebRoot/image/login.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/login.jpeg -------------------------------------------------------------------------------- /WebRoot/image/page-view-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/page-view-grey.png -------------------------------------------------------------------------------- /WebRoot/image/reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/reply.png -------------------------------------------------------------------------------- /WebRoot/image/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/report.png -------------------------------------------------------------------------------- /WebRoot/image/revice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/revice.png -------------------------------------------------------------------------------- /WebRoot/image/search-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/search-dark.png -------------------------------------------------------------------------------- /WebRoot/image/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/switch.png -------------------------------------------------------------------------------- /WebRoot/image/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/time.png -------------------------------------------------------------------------------- /WebRoot/image/view-count.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/view-count.png -------------------------------------------------------------------------------- /WebRoot/image/want-go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/image/want-go.png -------------------------------------------------------------------------------- /WebRoot/index.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" contentType="text/html; charset=utf-8" %> 2 | <% 3 | String path = request.getContextPath(); 4 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 5 | %> 6 | 7 | 8 | 9 | 10 | 15 | 16 | 17 | 18 |
19 | 20 |
21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /WebRoot/jquery/go-top/go-top.js: -------------------------------------------------------------------------------- 1 | jQuery(document).ready(function($){ 2 | 3 | var offset = 300, 4 | 5 | offset_opacity = 1200, 6 | 7 | scroll_top_duration = 700, 8 | 9 | $back_to_top = $('.cd-top'); 10 | 11 | 12 | $(window).scroll(function(){ 13 | ( $(this).scrollTop() > offset ) ? $back_to_top.addClass('cd-is-visible') : $back_to_top.removeClass('cd-is-visible cd-fade-out'); 14 | if( $(this).scrollTop() > offset_opacity ) { 15 | $back_to_top.addClass('cd-fade-out'); 16 | } 17 | }); 18 | 19 | $back_to_top.on('click', function(event){ 20 | event.preventDefault(); 21 | $('body,html').animate({ 22 | scrollTop: 0 , 23 | }, scroll_top_duration 24 | ); 25 | }); 26 | 27 | }); -------------------------------------------------------------------------------- /WebRoot/jquery/index-js/menu.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){var touch=$('#touch-menu');var menu=$('.menu');$(touch).on('click',function(e){e.preventDefault();menu.slideToggle();});$(window).resize(function(){var w=$(window).width();if(w>767&&menu.is(':hidden')){menu.removeAttr('style');}});}); -------------------------------------------------------------------------------- /WebRoot/jquery/login.js: -------------------------------------------------------------------------------- 1 | 2 | window.onload=function(){ 3 | document.querySelector('.img__btn').addEventListener('click', function() { 4 | document.querySelector('.cont').classList.toggle('s--signup'); 5 | }); 6 | } -------------------------------------------------------------------------------- /WebRoot/jquery/showSport-detail/showSport-detail.js: -------------------------------------------------------------------------------- 1 | // Sticky Header 2 | $(window).scroll(function() { 3 | 4 | if ($(window).scrollTop() > 100) { 5 | $('.main_h').addClass('sticky'); 6 | } else { 7 | $('.main_h').removeClass('sticky'); 8 | } 9 | }); 10 | 11 | // Mobile Navigation 12 | $('.mobile-toggle').click(function() { 13 | if ($('.main_h').hasClass('open-nav')) { 14 | $('.main_h').removeClass('open-nav'); 15 | } else { 16 | $('.main_h').addClass('open-nav'); 17 | } 18 | }); 19 | 20 | $('.main_h li a').click(function() { 21 | if ($('.main_h').hasClass('open-nav')) { 22 | $('.navigation').removeClass('open-nav'); 23 | $('.main_h').removeClass('open-nav'); 24 | } 25 | }); 26 | 27 | $(document).ready(function() { 28 | $("a ").click(function() { 29 | $("html, body").animate({ 30 | scrollTop: $($(this).attr("href")).offset().top + "px" 31 | }, { 32 | duration: 500, 33 | easing: "swing" 34 | }); 35 | return false; 36 | }); 37 | }); -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/attachment/fileTypeImages/icon_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/attachment/fileTypeImages/icon_default.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/attachment/images/alignicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/attachment/images/alignicon.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/attachment/images/alignicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/attachment/images/alignicon.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/attachment/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/attachment/images/bg.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/attachment/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/attachment/images/file-icons.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/attachment/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/attachment/images/file-icons.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/attachment/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/attachment/images/icons.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/attachment/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/attachment/images/icons.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/attachment/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/attachment/images/image.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/attachment/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/attachment/images/progress.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/attachment/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/attachment/images/success.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/attachment/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/attachment/images/success.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/background/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/background/images/bg.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/background/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/background/images/success.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/charts/images/charts0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/charts/images/charts0.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/charts/images/charts1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/charts/images/charts1.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/charts/images/charts2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/charts/images/charts2.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/charts/images/charts3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/charts/images/charts3.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/charts/images/charts4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/charts/images/charts4.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/charts/images/charts5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/charts/images/charts5.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/emotion/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/emotion/images/0.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/emotion/images/bface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/emotion/images/bface.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/emotion/images/cface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/emotion/images/cface.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/emotion/images/fface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/emotion/images/fface.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/emotion/images/jxface2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/emotion/images/jxface2.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/emotion/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/emotion/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/emotion/images/tface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/emotion/images/tface.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/emotion/images/wface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/emotion/images/wface.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/emotion/images/yface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/emotion/images/yface.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/help/help.css: -------------------------------------------------------------------------------- 1 | .wrapper{width: 370px;margin: 10px auto;zoom: 1;} 2 | .tabbody{height: 360px;} 3 | .tabbody .panel{width:100%;height: 360px;position: absolute;background: #fff;} 4 | .tabbody .panel h1{font-size:26px;margin: 5px 0 0 5px;} 5 | .tabbody .panel p{font-size:12px;margin: 5px 0 0 5px;} 6 | .tabbody table{width:90%;line-height: 20px;margin: 5px 0 0 5px;;} 7 | .tabbody table thead{font-weight: bold;line-height: 25px;} -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/image/images/alignicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/image/images/alignicon.jpg -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/image/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/image/images/bg.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/image/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/image/images/icons.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/image/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/image/images/icons.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/image/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/image/images/image.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/image/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/image/images/progress.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/image/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/image/images/success.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/image/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/image/images/success.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/music/music.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 插入音乐 6 | 7 | 8 | 9 | 10 |
11 | 15 |
16 | 17 |
18 |
19 |
20 |
21 | 22 | 31 | 32 | -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/scrawl/images/addimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/scrawl/images/addimg.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/scrawl/images/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/scrawl/images/brush.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/scrawl/images/delimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/scrawl/images/delimg.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/scrawl/images/delimgH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/scrawl/images/delimgH.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/scrawl/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/scrawl/images/empty.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/scrawl/images/emptyH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/scrawl/images/emptyH.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/scrawl/images/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/scrawl/images/eraser.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/scrawl/images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/scrawl/images/redo.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/scrawl/images/redoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/scrawl/images/redoH.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/scrawl/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/scrawl/images/scale.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/scrawl/images/scaleH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/scrawl/images/scaleH.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/scrawl/images/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/scrawl/images/size.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/scrawl/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/scrawl/images/undo.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/scrawl/images/undoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/scrawl/images/undoH.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/spechars/spechars.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 14 | 15 | 16 |
17 |
18 |
19 | 20 | 21 | -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/table/dragicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/table/dragicon.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/table/edittip.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 表格删除提示 5 | 6 | 17 | 18 | 19 |
20 |
21 | 22 |
23 |
24 | 25 |
26 |
27 | 32 | 33 | -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/template/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/template/images/bg.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/template/images/pre0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/template/images/pre0.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/template/images/pre1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/template/images/pre1.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/template/images/pre2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/template/images/pre2.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/template/images/pre3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/template/images/pre3.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/template/images/pre4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/template/images/pre4.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/template/template.css: -------------------------------------------------------------------------------- 1 | .wrap{ padding: 5px;font-size: 14px;} 2 | .left{width:425px;float: left;} 3 | .right{width:160px;border: 1px solid #ccc;float: right;padding: 5px;margin-right: 5px;} 4 | .right .pre{height: 332px;overflow-y: auto;} 5 | .right .preitem{border: white 1px solid;margin: 5px 0;padding: 2px 0;} 6 | .right .preitem:hover{background-color: lemonChiffon;cursor: pointer;border: #ccc 1px solid;} 7 | .right .preitem img{display: block;margin: 0 auto;width:100px;} 8 | .clear{clear: both;} 9 | .top{height:26px;line-height: 26px;padding: 5px;} 10 | .bottom{height:320px;width:100%;margin: 0 auto;} 11 | .transparent{ background: url("images/bg.gif") repeat;} 12 | .bottom table tr td{border:1px dashed #ccc;} 13 | #colorPicker{width: 17px;height: 17px;border: 1px solid #CCC;display: inline-block;border-radius: 3px;box-shadow: 2px 2px 5px #D3D6DA;} 14 | .border_style1{padding:2px;border: 1px solid #ccc;border-radius: 5px;box-shadow:2px 2px 5px #d3d6da;} 15 | p{margin: 5px 0} 16 | table{clear:both;margin-bottom:10px;border-collapse:collapse;word-break:break-all;} 17 | li{clear:both} 18 | ol{padding-left:40px; } -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/template/template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
12 |
13 | 14 |
15 |
16 |
17 |
18 | 19 |
20 |
21 |
22 |
23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/video/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/video/images/bg.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/video/images/center_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/video/images/center_focus.jpg -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/video/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/video/images/file-icons.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/video/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/video/images/file-icons.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/video/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/video/images/icons.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/video/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/video/images/icons.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/video/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/video/images/image.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/video/images/left_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/video/images/left_focus.jpg -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/video/images/none_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/video/images/none_focus.jpg -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/video/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/video/images/progress.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/video/images/right_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/video/images/right_focus.jpg -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/video/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/video/images/success.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/video/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/video/images/success.png -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/wordimage/fClipboard_ueditor.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/wordimage/fClipboard_ueditor.swf -------------------------------------------------------------------------------- /WebRoot/ueditor/dialogs/wordimage/imageUploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/dialogs/wordimage/imageUploader.swf -------------------------------------------------------------------------------- /WebRoot/ueditor/jsp/controller.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=UTF-8" 2 | import="com.baidu.ueditor.ActionEnter" 3 | pageEncoding="UTF-8"%> 4 | <%@ page trimDirectiveWhitespaces="true" %> 5 | <% 6 | 7 | request.setCharacterEncoding( "utf-8" ); 8 | response.setHeader("Content-Type" , "text/html"); 9 | 10 | String rootPath = application.getRealPath( "/" ); 11 | //System.out.println("------------------------------"+rootPath); 12 | out.write( new ActionEnter( request, rootPath ).exec() ); 13 | 14 | %> -------------------------------------------------------------------------------- /WebRoot/ueditor/jsp/lib/commons-codec-1.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/jsp/lib/commons-codec-1.9.jar -------------------------------------------------------------------------------- /WebRoot/ueditor/jsp/lib/commons-fileupload-1.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/jsp/lib/commons-fileupload-1.3.1.jar -------------------------------------------------------------------------------- /WebRoot/ueditor/jsp/lib/commons-io-2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/jsp/lib/commons-io-2.4.jar -------------------------------------------------------------------------------- /WebRoot/ueditor/jsp/lib/json.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/jsp/lib/json.jar -------------------------------------------------------------------------------- /WebRoot/ueditor/jsp/lib/ueditor-1.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/jsp/lib/ueditor-1.1.2.jar -------------------------------------------------------------------------------- /WebRoot/ueditor/lang/en/images/addimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/lang/en/images/addimage.png -------------------------------------------------------------------------------- /WebRoot/ueditor/lang/en/images/alldeletebtnhoverskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/lang/en/images/alldeletebtnhoverskin.png -------------------------------------------------------------------------------- /WebRoot/ueditor/lang/en/images/alldeletebtnupskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/lang/en/images/alldeletebtnupskin.png -------------------------------------------------------------------------------- /WebRoot/ueditor/lang/en/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/lang/en/images/background.png -------------------------------------------------------------------------------- /WebRoot/ueditor/lang/en/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/lang/en/images/button.png -------------------------------------------------------------------------------- /WebRoot/ueditor/lang/en/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/lang/en/images/copy.png -------------------------------------------------------------------------------- /WebRoot/ueditor/lang/en/images/deletedisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/lang/en/images/deletedisable.png -------------------------------------------------------------------------------- /WebRoot/ueditor/lang/en/images/deleteenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/lang/en/images/deleteenable.png -------------------------------------------------------------------------------- /WebRoot/ueditor/lang/en/images/listbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/lang/en/images/listbackground.png -------------------------------------------------------------------------------- /WebRoot/ueditor/lang/en/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/lang/en/images/localimage.png -------------------------------------------------------------------------------- /WebRoot/ueditor/lang/en/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/lang/en/images/music.png -------------------------------------------------------------------------------- /WebRoot/ueditor/lang/en/images/rotateleftdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/lang/en/images/rotateleftdisable.png -------------------------------------------------------------------------------- /WebRoot/ueditor/lang/en/images/rotateleftenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/lang/en/images/rotateleftenable.png -------------------------------------------------------------------------------- /WebRoot/ueditor/lang/en/images/rotaterightdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/lang/en/images/rotaterightdisable.png -------------------------------------------------------------------------------- /WebRoot/ueditor/lang/en/images/rotaterightenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/lang/en/images/rotaterightenable.png -------------------------------------------------------------------------------- /WebRoot/ueditor/lang/en/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/lang/en/images/upload.png -------------------------------------------------------------------------------- /WebRoot/ueditor/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /WebRoot/ueditor/lang/zh-cn/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/lang/zh-cn/images/localimage.png -------------------------------------------------------------------------------- /WebRoot/ueditor/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /WebRoot/ueditor/lang/zh-cn/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/lang/zh-cn/images/upload.png -------------------------------------------------------------------------------- /WebRoot/ueditor/previewArticle.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" contentType="text/html; charset=utf-8" %> 2 | <% 3 | String path = request.getContextPath(); 4 | String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 5 | %> 6 | 7 | <% 8 | String article = request.getParameter("editorValue"); 9 | 10 | %> 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | <%= article %> 21 | 22 | 23 | -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/anchor.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/arrow.png -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/arrow_down.png -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/arrow_up.png -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/button-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/button-bg.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/cancelbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/cancelbutton.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/charts.png -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/cursor_h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/cursor_h.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/cursor_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/cursor_h.png -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/cursor_v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/cursor_v.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/cursor_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/cursor_v.png -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/dialog-title-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/dialog-title-bg.png -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/filescan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/filescan.png -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/highlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/highlighted.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/icons-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/icons-all.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/icons.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/icons.png -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/loaderror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/loaderror.png -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/loading.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/lock.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/pagebreak.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/scale.png -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/sortable.png -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/spacer.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/sparator_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/sparator_v.png -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/table-cell-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/table-cell-align.png -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/tangram-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/tangram-colorpicker.png -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/toolbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/toolbar_bg.png -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/unhighlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/unhighlighted.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/upload.png -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/videologo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/videologo.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/word.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/word.gif -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/default/images/wordpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/default/images/wordpaste.png -------------------------------------------------------------------------------- /WebRoot/ueditor/themes/iframe.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/WebRoot/ueditor/themes/iframe.css -------------------------------------------------------------------------------- /WebRoot/ueditor/third-party/highcharts/modules/heatmap.js: -------------------------------------------------------------------------------- 1 | (function(b){var k=b.seriesTypes,l=b.each;k.heatmap=b.extendClass(k.map,{colorKey:"z",useMapGeometry:!1,pointArrayMap:["y","z"],translate:function(){var c=this,b=c.options,i=Number.MAX_VALUE,j=Number.MIN_VALUE;c.generatePoints();l(c.data,function(a){var e=a.x,f=a.y,d=a.z,g=(b.colsize||1)/2,h=(b.rowsize||1)/2;a.path=["M",e-g,f-h,"L",e+g,f-h,"L",e+g,f+h,"L",e-g,f+h,"Z"];a.shapeType="path";a.shapeArgs={d:c.translatePath(a.path)};typeof d==="number"&&(d>j?j=d:d 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/com/Action/AdminStatisticsAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Action/AdminStatisticsAction.java -------------------------------------------------------------------------------- /src/com/Action/ArticleAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Action/ArticleAction.java -------------------------------------------------------------------------------- /src/com/Action/ArticleGreatAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Action/ArticleGreatAction.java -------------------------------------------------------------------------------- /src/com/Action/CacheTagAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Action/CacheTagAction.java -------------------------------------------------------------------------------- /src/com/Action/QuestionFocusAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Action/QuestionFocusAction.java -------------------------------------------------------------------------------- /src/com/Action/SportAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Action/SportAction.java -------------------------------------------------------------------------------- /src/com/Action/SportWantToAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Action/SportWantToAction.java -------------------------------------------------------------------------------- /src/com/Action/TagAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Action/TagAction.java -------------------------------------------------------------------------------- /src/com/Action/TalkAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Action/TalkAction.java -------------------------------------------------------------------------------- /src/com/Action/UserAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Action/UserAction.java -------------------------------------------------------------------------------- /src/com/Action/UserArticleAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Action/UserArticleAction.java -------------------------------------------------------------------------------- /src/com/Algorithm/Arrange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Algorithm/Arrange.java -------------------------------------------------------------------------------- /src/com/Algorithm/CRList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Algorithm/CRList.java -------------------------------------------------------------------------------- /src/com/Algorithm/DateJsonValueProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Algorithm/DateJsonValueProcessor.java -------------------------------------------------------------------------------- /src/com/Algorithm/EliminateHtml.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Algorithm/EliminateHtml.java -------------------------------------------------------------------------------- /src/com/Algorithm/KeywordSplit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Algorithm/KeywordSplit.java -------------------------------------------------------------------------------- /src/com/Algorithm/Mn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Algorithm/Mn.java -------------------------------------------------------------------------------- /src/com/Algorithm/MnService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Algorithm/MnService.java -------------------------------------------------------------------------------- /src/com/Algorithm/Pager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Algorithm/Pager.java -------------------------------------------------------------------------------- /src/com/Algorithm/PagerService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Algorithm/PagerService.java -------------------------------------------------------------------------------- /src/com/Dao/AdminStatisticsDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Dao/AdminStatisticsDao.java -------------------------------------------------------------------------------- /src/com/Dao/ArticleDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Dao/ArticleDao.java -------------------------------------------------------------------------------- /src/com/Dao/ArticleGreatDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Dao/ArticleGreatDao.java -------------------------------------------------------------------------------- /src/com/Dao/CacheTagDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Dao/CacheTagDao.java -------------------------------------------------------------------------------- /src/com/Dao/NewsDao.java: -------------------------------------------------------------------------------- 1 | package com.Dao; 2 | 3 | import java.util.List; 4 | 5 | import com.Entity.News; 6 | 7 | public interface NewsDao { 8 | public void saveNews(News news); 9 | 10 | public List getNewsAllRead(Integer id); 11 | public List getNewsAllUnread(Integer id); 12 | 13 | public List getNewsAll(Integer id); 14 | 15 | public News getNewsDetail(Integer id); 16 | } 17 | -------------------------------------------------------------------------------- /src/com/Dao/OtherToTagDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Dao/OtherToTagDao.java -------------------------------------------------------------------------------- /src/com/Dao/QuestionFocusDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Dao/QuestionFocusDao.java -------------------------------------------------------------------------------- /src/com/Dao/SportDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Dao/SportDao.java -------------------------------------------------------------------------------- /src/com/Dao/SportWantToDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Dao/SportWantToDao.java -------------------------------------------------------------------------------- /src/com/Dao/TalkDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Dao/TalkDao.java -------------------------------------------------------------------------------- /src/com/Dao/UserDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Dao/UserDao.java -------------------------------------------------------------------------------- /src/com/DaoImpl/ArticleDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/DaoImpl/ArticleDaoImpl.java -------------------------------------------------------------------------------- /src/com/DaoImpl/CacheTagDaoImpl.java: -------------------------------------------------------------------------------- 1 | package com.DaoImpl; 2 | 3 | import java.util.List; 4 | 5 | import javax.annotation.Resource; 6 | 7 | import org.hibernate.Session; 8 | import org.hibernate.SessionFactory; 9 | import org.springframework.stereotype.Repository; 10 | 11 | import com.Dao.CacheTagDao; 12 | import com.Entity.CacheTag; 13 | @Repository("cacheTagDao") 14 | public class CacheTagDaoImpl implements CacheTagDao { 15 | 16 | @Resource 17 | private SessionFactory sessionFactory; 18 | 19 | private Session getSession(){ 20 | return sessionFactory.getCurrentSession(); 21 | } 22 | 23 | public void save(CacheTag cacheTag) { 24 | getSession().saveOrUpdate(cacheTag); 25 | } 26 | 27 | @SuppressWarnings("unchecked") 28 | public List getUserCacheTagList(Integer userId) { 29 | String hql = "from CacheTag where userId = ?0"; 30 | return getSession().createQuery(hql).setInteger("0", userId).list(); 31 | } 32 | 33 | } 34 | -------------------------------------------------------------------------------- /src/com/DaoImpl/SporDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/DaoImpl/SporDaoImpl.java -------------------------------------------------------------------------------- /src/com/DaoImpl/UserDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/DaoImpl/UserDaoImpl.java -------------------------------------------------------------------------------- /src/com/Entity/Answer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Entity/Answer.java -------------------------------------------------------------------------------- /src/com/Entity/AnswerGreat.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /src/com/Entity/AnswerGreat.java: -------------------------------------------------------------------------------- 1 | package com.Entity; 2 | 3 | public class AnswerGreat { 4 | 5 | private Integer id; 6 | private Answer answer; 7 | private User user; 8 | public Integer getId() { 9 | return id; 10 | } 11 | public void setId(Integer id) { 12 | this.id = id; 13 | } 14 | public Answer getAnswer() { 15 | return answer; 16 | } 17 | public void setAnswer(Answer answer) { 18 | this.answer = answer; 19 | } 20 | public User getUser() { 21 | return user; 22 | } 23 | public void setUser(User user) { 24 | this.user = user; 25 | } 26 | public AnswerGreat(Answer answer, User user) { 27 | //super(); 28 | this.answer = answer; 29 | this.user = user; 30 | } 31 | public AnswerGreat(){ 32 | 33 | } 34 | 35 | } 36 | -------------------------------------------------------------------------------- /src/com/Entity/ArticleGreat.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /src/com/Entity/ArticleGreat.java: -------------------------------------------------------------------------------- 1 | package com.Entity; 2 | 3 | public class ArticleGreat { 4 | 5 | private Integer id; 6 | private UserArticle userArticle; 7 | private User user; 8 | 9 | 10 | public Integer getId() { 11 | return id; 12 | } 13 | public void setId(Integer id) { 14 | this.id = id; 15 | } 16 | public UserArticle getUserArticle() { 17 | return userArticle; 18 | } 19 | public void setUserArticle(UserArticle userArticle) { 20 | this.userArticle = userArticle; 21 | } 22 | public User getUser() { 23 | return user; 24 | } 25 | public void setUser(User user) { 26 | this.user = user; 27 | } 28 | 29 | public ArticleGreat(){ 30 | 31 | } 32 | public ArticleGreat(UserArticle userArticle, User user) { 33 | //super(); 34 | this.userArticle = userArticle; 35 | this.user = user; 36 | } 37 | 38 | 39 | 40 | 41 | } 42 | -------------------------------------------------------------------------------- /src/com/Entity/CacheTag.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /src/com/Entity/CacheTag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Entity/CacheTag.java -------------------------------------------------------------------------------- /src/com/Entity/Category1.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /src/com/Entity/Category1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Entity/Category1.java -------------------------------------------------------------------------------- /src/com/Entity/Category2.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /src/com/Entity/Category2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Entity/Category2.java -------------------------------------------------------------------------------- /src/com/Entity/News.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Entity/News.java -------------------------------------------------------------------------------- /src/com/Entity/OtherToTag.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/com/Entity/OtherToTag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Entity/OtherToTag.java -------------------------------------------------------------------------------- /src/com/Entity/PageView.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /src/com/Entity/PageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Entity/PageView.java -------------------------------------------------------------------------------- /src/com/Entity/QuestionFocus.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 16 | 17 | 18 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/com/Entity/QuestionFocus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Entity/QuestionFocus.java -------------------------------------------------------------------------------- /src/com/Entity/SpecialScheme.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Entity/SpecialScheme.java -------------------------------------------------------------------------------- /src/com/Entity/SpecialSchemeUser.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /src/com/Entity/SpecialSchemeUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Entity/SpecialSchemeUser.java -------------------------------------------------------------------------------- /src/com/Entity/Sport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Entity/Sport.java -------------------------------------------------------------------------------- /src/com/Entity/SportComment.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/com/Entity/SportComment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Entity/SportComment.java -------------------------------------------------------------------------------- /src/com/Entity/SportReply.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /src/com/Entity/SportReply.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Entity/SportReply.java -------------------------------------------------------------------------------- /src/com/Entity/SportWantTo.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /src/com/Entity/SportWantTo.java: -------------------------------------------------------------------------------- 1 | package com.Entity; 2 | 3 | public class SportWantTo { 4 | 5 | private Integer id; 6 | private Sport sport; 7 | private User user; 8 | public Integer getId() { 9 | return id; 10 | } 11 | public void setId(Integer id) { 12 | this.id = id; 13 | } 14 | public Sport getSport() { 15 | return sport; 16 | } 17 | public void setSport(Sport sport) { 18 | this.sport = sport; 19 | } 20 | public User getUser() { 21 | return user; 22 | } 23 | public void setUser(User user) { 24 | this.user = user; 25 | } 26 | 27 | public SportWantTo(){ 28 | 29 | } 30 | public SportWantTo(Sport sport, User user) { 31 | //super(); 32 | this.sport = sport; 33 | this.user = user; 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /src/com/Entity/Tag.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /src/com/Entity/Tag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Entity/Tag.java -------------------------------------------------------------------------------- /src/com/Entity/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Entity/User.java -------------------------------------------------------------------------------- /src/com/Entity/UserArticle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Entity/UserArticle.java -------------------------------------------------------------------------------- /src/com/Entity/UserArticleComment.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/com/Entity/UserArticleReply.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Entity/UserArticleReply.java -------------------------------------------------------------------------------- /src/com/Entity/UserFocus.hbm.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 16 | 17 | 18 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/com/Entity/UserFocus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Entity/UserFocus.java -------------------------------------------------------------------------------- /src/com/Entity/UserUpdate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Entity/UserUpdate.java -------------------------------------------------------------------------------- /src/com/Filter/Filter.java: -------------------------------------------------------------------------------- 1 | package com.Filter; 2 | 3 | import java.io.IOException; 4 | 5 | import javax.servlet.FilterChain; 6 | import javax.servlet.ServletException; 7 | import javax.servlet.ServletRequest; 8 | import javax.servlet.ServletResponse; 9 | import javax.servlet.http.HttpServletRequest; 10 | 11 | import org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter; 12 | 13 | public class Filter extends StrutsPrepareAndExecuteFilter { 14 | 15 | public void doFilter(ServletRequest req, ServletResponse res,FilterChain chain) throws IOException, ServletException { 16 | HttpServletRequest request = (HttpServletRequest) req; 17 | // HttpServletResponse response = (HttpServletResponse) res; 18 | 19 | request.setCharacterEncoding("utf-8"); 20 | 21 | 22 | String url = request.getRequestURI(); 23 | if ("/City/ueditor/jsp/controller.jsp".equals(url)) { 24 | chain.doFilter(req, res); 25 | } 26 | else if(url.equals("/City/null")){ 27 | 28 | } 29 | else{ 30 | super.doFilter(req, res, chain); 31 | } 32 | } 33 | } -------------------------------------------------------------------------------- /src/com/Service/AdminStatisticsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Service/AdminStatisticsService.java -------------------------------------------------------------------------------- /src/com/Service/ArticleGreatService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Service/ArticleGreatService.java -------------------------------------------------------------------------------- /src/com/Service/ArticleService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Service/ArticleService.java -------------------------------------------------------------------------------- /src/com/Service/CacheTagService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Service/CacheTagService.java -------------------------------------------------------------------------------- /src/com/Service/NewsService.java: -------------------------------------------------------------------------------- 1 | package com.Service; 2 | 3 | import java.util.List; 4 | 5 | import com.Entity.News; 6 | 7 | public interface NewsService { 8 | public void saveNews(News news); 9 | 10 | public List getNewsAllRead(Integer id); 11 | public List getNewsAllUnread(Integer id); 12 | 13 | public List getNewsAll(Integer id); 14 | 15 | public News getNewsDetail(Integer id); 16 | } 17 | -------------------------------------------------------------------------------- /src/com/Service/OtherToTagService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Service/OtherToTagService.java -------------------------------------------------------------------------------- /src/com/Service/QuestionFocusService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Service/QuestionFocusService.java -------------------------------------------------------------------------------- /src/com/Service/SportService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Service/SportService.java -------------------------------------------------------------------------------- /src/com/Service/SportWantToService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Service/SportWantToService.java -------------------------------------------------------------------------------- /src/com/Service/TalkService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Service/TalkService.java -------------------------------------------------------------------------------- /src/com/Service/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/Service/UserService.java -------------------------------------------------------------------------------- /src/com/ServiceImpl/ArticleGreatServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.ServiceImpl; 2 | 3 | import java.util.List; 4 | 5 | import javax.annotation.Resource; 6 | 7 | import org.springframework.stereotype.Service; 8 | 9 | import com.Dao.ArticleGreatDao; 10 | import com.Entity.ArticleGreat; 11 | 12 | @Service("articleGreatService") 13 | public class ArticleGreatServiceImpl implements com.Service.ArticleGreatService { 14 | 15 | @Resource 16 | private ArticleGreatDao articleGreatDao; 17 | 18 | public List checkIsGreat(Integer article_id, Integer user_id) { 19 | 20 | return articleGreatDao.checkIsGreat(article_id, user_id); 21 | } 22 | 23 | public void deleteGreat(Integer userArticle_id, Integer user_id) { 24 | articleGreatDao.deleteGreat(userArticle_id, user_id); 25 | 26 | } 27 | 28 | public void saveGreat(ArticleGreat articleGreat) { 29 | articleGreatDao.saveGreat(articleGreat); 30 | } 31 | 32 | public void deleteArticleToGreat(Integer userArticle_id) { 33 | articleGreatDao.deleteArticleToGreat(userArticle_id); 34 | 35 | } 36 | 37 | } 38 | -------------------------------------------------------------------------------- /src/com/ServiceImpl/CacheTagServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.ServiceImpl; 2 | 3 | import java.util.List; 4 | 5 | import javax.annotation.Resource; 6 | 7 | import org.springframework.stereotype.Service; 8 | 9 | import com.Dao.CacheTagDao; 10 | import com.Entity.CacheTag; 11 | import com.Service.CacheTagService; 12 | @Service("cacheTagService") 13 | public class CacheTagServiceImpl implements CacheTagService { 14 | 15 | @Resource 16 | private CacheTagDao cacheTagDao; 17 | 18 | public void save(CacheTag cacheTag) { 19 | cacheTagDao.save(cacheTag); 20 | } 21 | 22 | public List getUserCacheTagList(Integer userId) { 23 | return cacheTagDao.getUserCacheTagList(userId); 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /src/com/ServiceImpl/NewsServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.ServiceImpl; 2 | 3 | import java.util.List; 4 | 5 | import javax.annotation.Resource; 6 | 7 | import org.springframework.stereotype.Service; 8 | 9 | import com.Dao.NewsDao; 10 | import com.Entity.News; 11 | import com.Service.NewsService; 12 | @Service("newsService") 13 | public class NewsServiceImpl implements NewsService { 14 | 15 | @Resource 16 | private NewsDao newsDao; 17 | 18 | public void saveNews(News news) { 19 | newsDao.saveNews(news); 20 | } 21 | 22 | public List getNewsAllRead(Integer id) { 23 | 24 | return newsDao.getNewsAllRead(id); 25 | } 26 | 27 | public List getNewsAllUnread(Integer id) { 28 | 29 | return newsDao.getNewsAllUnread(id); 30 | } 31 | 32 | public List getNewsAll(Integer id) { 33 | 34 | return newsDao.getNewsAll(id); 35 | } 36 | 37 | public News getNewsDetail(Integer id) { 38 | 39 | return newsDao.getNewsDetail(id); 40 | } 41 | 42 | } 43 | -------------------------------------------------------------------------------- /src/com/ServiceImpl/SportWantToServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.ServiceImpl; 2 | 3 | import java.util.List; 4 | 5 | import javax.annotation.Resource; 6 | 7 | import org.springframework.stereotype.Service; 8 | 9 | import com.Dao.SportWantToDao; 10 | import com.Entity.SportWantTo; 11 | import com.Service.SportWantToService; 12 | 13 | @Service("sportWantToService") 14 | public class SportWantToServiceImpl implements SportWantToService { 15 | 16 | @Resource 17 | private SportWantToDao sportWantToDao; 18 | 19 | public List checkIsWant(Integer sport_id, Integer user_id) { 20 | 21 | return sportWantToDao.checkIsWant(sport_id, user_id); 22 | } 23 | 24 | public void deleteWant(Integer sport_id, Integer user_id) { 25 | sportWantToDao.deleteWant(sport_id, user_id); 26 | } 27 | 28 | public void saveWant(SportWantTo sportWantTo) { 29 | sportWantToDao.saveWant(sportWantTo); 30 | 31 | } 32 | 33 | public List getOneSportAll(Integer sportId) { 34 | 35 | return sportWantToDao.getOneSportAll(sportId); 36 | } 37 | 38 | public void deleteSportWantTo(Integer id) { 39 | sportWantToDao.deleteSportWantTo(id); 40 | } 41 | 42 | } 43 | -------------------------------------------------------------------------------- /src/com/test/sqlserverTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YuYanXiaoJi/ssh/667ab1b3e294d378288666e5c895abc37198283a/src/com/test/sqlserverTest.java -------------------------------------------------------------------------------- /src/hibernate.cfg.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | org.hibernate.dialect.SQLServerDialect 9 | 10 | true 11 | update 12 | true 13 | 14 | 15 | --------------------------------------------------------------------------------