├── .gitattributes ├── README.md ├── home.png ├── neo4j.zip └── recommend ├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── news │ │ ├── recommend │ │ ├── RecommendApplication.java │ │ ├── Toneo4j │ │ │ ├── BNews.java │ │ │ ├── JsonRead.java │ │ │ └── Jsonto.java │ │ ├── controller │ │ │ ├── AdminController.java │ │ │ ├── CaptchaController.java │ │ │ ├── IndexController.java │ │ │ ├── NewsController.java │ │ │ ├── TagController.java │ │ │ └── UserController.java │ │ ├── dao │ │ │ ├── NewsRepository.java │ │ │ ├── RWeightRepository.java │ │ │ ├── TagRepository.java │ │ │ └── UserRepository.java │ │ ├── entity │ │ │ ├── Attention.java │ │ │ ├── News.java │ │ │ ├── NewsLog.java │ │ │ ├── PrefWord.java │ │ │ ├── RecommendedWeight.java │ │ │ ├── Tag.java │ │ │ ├── TagToNew.java │ │ │ ├── User.java │ │ │ └── result │ │ │ │ ├── CollectNews.java │ │ │ │ ├── Comment.java │ │ │ │ ├── DataResponse.java │ │ │ │ ├── RecommendNews.java │ │ │ │ ├── ShowNews.java │ │ │ │ ├── ShowUser.java │ │ │ │ └── TagAndNews.java │ │ └── service │ │ │ ├── NewService.java │ │ │ ├── RecommendService.java │ │ │ ├── TagService.java │ │ │ └── UserService.java │ │ └── util │ │ ├── IdGen.java │ │ ├── PrefWordsGen.java │ │ ├── Util.java │ │ └── captcha │ │ ├── Captcha.java │ │ ├── Encoder.java │ │ ├── GifCaptcha.java │ │ ├── GifEncoder.java │ │ ├── Quant.java │ │ ├── Randoms.java │ │ └── SpecCaptcha.java └── resources │ ├── application.properties │ ├── static │ ├── bootstrap │ │ ├── css │ │ │ └── bootstrap.css │ │ └── js │ │ │ └── bootstrap.min.js │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ ├── font-awesome.css.map │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── index.html │ ├── layuiAdmin │ │ ├── config.js │ │ ├── layui │ │ │ ├── css │ │ │ │ ├── layui.css │ │ │ │ ├── layui.mobile.css │ │ │ │ └── modules │ │ │ │ │ ├── code.css │ │ │ │ │ ├── laydate │ │ │ │ │ └── default │ │ │ │ │ │ └── laydate.css │ │ │ │ │ └── layer │ │ │ │ │ └── default │ │ │ │ │ ├── icon-ext.png │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── layer.css │ │ │ │ │ ├── loading-0.gif │ │ │ │ │ ├── loading-1.gif │ │ │ │ │ └── loading-2.gif │ │ │ ├── font │ │ │ │ ├── iconfont.eot │ │ │ │ ├── iconfont.svg │ │ │ │ ├── iconfont.ttf │ │ │ │ └── iconfont.woff │ │ │ ├── images │ │ │ │ └── face │ │ │ │ │ ├── 0.gif │ │ │ │ │ ├── 1.gif │ │ │ │ │ ├── 10.gif │ │ │ │ │ ├── 11.gif │ │ │ │ │ ├── 12.gif │ │ │ │ │ ├── 13.gif │ │ │ │ │ ├── 14.gif │ │ │ │ │ ├── 15.gif │ │ │ │ │ ├── 16.gif │ │ │ │ │ ├── 17.gif │ │ │ │ │ ├── 18.gif │ │ │ │ │ ├── 19.gif │ │ │ │ │ ├── 2.gif │ │ │ │ │ ├── 20.gif │ │ │ │ │ ├── 21.gif │ │ │ │ │ ├── 22.gif │ │ │ │ │ ├── 23.gif │ │ │ │ │ ├── 24.gif │ │ │ │ │ ├── 25.gif │ │ │ │ │ ├── 26.gif │ │ │ │ │ ├── 27.gif │ │ │ │ │ ├── 28.gif │ │ │ │ │ ├── 29.gif │ │ │ │ │ ├── 3.gif │ │ │ │ │ ├── 30.gif │ │ │ │ │ ├── 31.gif │ │ │ │ │ ├── 32.gif │ │ │ │ │ ├── 33.gif │ │ │ │ │ ├── 34.gif │ │ │ │ │ ├── 35.gif │ │ │ │ │ ├── 36.gif │ │ │ │ │ ├── 37.gif │ │ │ │ │ ├── 38.gif │ │ │ │ │ ├── 39.gif │ │ │ │ │ ├── 4.gif │ │ │ │ │ ├── 40.gif │ │ │ │ │ ├── 41.gif │ │ │ │ │ ├── 42.gif │ │ │ │ │ ├── 43.gif │ │ │ │ │ ├── 44.gif │ │ │ │ │ ├── 45.gif │ │ │ │ │ ├── 46.gif │ │ │ │ │ ├── 47.gif │ │ │ │ │ ├── 48.gif │ │ │ │ │ ├── 49.gif │ │ │ │ │ ├── 5.gif │ │ │ │ │ ├── 50.gif │ │ │ │ │ ├── 51.gif │ │ │ │ │ ├── 52.gif │ │ │ │ │ ├── 53.gif │ │ │ │ │ ├── 54.gif │ │ │ │ │ ├── 55.gif │ │ │ │ │ ├── 56.gif │ │ │ │ │ ├── 57.gif │ │ │ │ │ ├── 58.gif │ │ │ │ │ ├── 59.gif │ │ │ │ │ ├── 6.gif │ │ │ │ │ ├── 60.gif │ │ │ │ │ ├── 61.gif │ │ │ │ │ ├── 62.gif │ │ │ │ │ ├── 63.gif │ │ │ │ │ ├── 64.gif │ │ │ │ │ ├── 65.gif │ │ │ │ │ ├── 66.gif │ │ │ │ │ ├── 67.gif │ │ │ │ │ ├── 68.gif │ │ │ │ │ ├── 69.gif │ │ │ │ │ ├── 7.gif │ │ │ │ │ ├── 70.gif │ │ │ │ │ ├── 71.gif │ │ │ │ │ ├── 8.gif │ │ │ │ │ └── 9.gif │ │ │ ├── lay │ │ │ │ └── modules │ │ │ │ │ ├── carousel.js │ │ │ │ │ ├── code.js │ │ │ │ │ ├── colorpicker.js │ │ │ │ │ ├── element.js │ │ │ │ │ ├── flow.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── laydate.js │ │ │ │ │ ├── layedit.js │ │ │ │ │ ├── layer.js │ │ │ │ │ ├── laypage.js │ │ │ │ │ ├── laytpl.js │ │ │ │ │ ├── mobile.js │ │ │ │ │ ├── rate.js │ │ │ │ │ ├── slider.js │ │ │ │ │ ├── table.js │ │ │ │ │ ├── tree.js │ │ │ │ │ ├── upload.js │ │ │ │ │ └── util.js │ │ │ ├── layui.all.js │ │ │ └── layui.js │ │ ├── lib │ │ │ ├── admin.js │ │ │ ├── extend │ │ │ │ ├── echarts.js │ │ │ │ └── echartsTheme.js │ │ │ ├── index.js │ │ │ └── view.js │ │ ├── modules │ │ │ ├── common.js │ │ │ ├── console.js │ │ │ ├── contlist.js │ │ │ ├── forum.js │ │ │ ├── message.js │ │ │ ├── sample.js │ │ │ ├── senior.js │ │ │ ├── set.js │ │ │ ├── user.js │ │ │ ├── useradmin.js │ │ │ └── workorder.js │ │ └── style │ │ │ ├── admin.css │ │ │ ├── login.css │ │ │ ├── res │ │ │ ├── layui-logo.jpg │ │ │ ├── logo.png │ │ │ └── template │ │ │ │ ├── character.jpg │ │ │ │ ├── huge.jpg │ │ │ │ └── portrait.png │ │ │ └── template.css │ ├── login.html │ ├── pc_theme │ │ ├── css │ │ │ ├── account.css │ │ │ ├── article.css │ │ │ ├── editor.css │ │ │ ├── global.css │ │ │ ├── index.css │ │ │ ├── people.css │ │ │ ├── question.css │ │ │ ├── share.css │ │ │ └── topics.css │ │ ├── images │ │ │ ├── ad │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ └── 3.jpg │ │ │ ├── avatar │ │ │ │ ├── 1.jpg │ │ │ │ └── default.jpg │ │ │ ├── login_bj.jpg │ │ │ ├── logo.svg │ │ │ └── logo │ │ │ │ └── avatar_logo.jpg │ │ └── js │ │ │ ├── jquery.min.js │ │ │ ├── modules │ │ │ ├── account.js │ │ │ ├── answer-editor.js │ │ │ ├── editor.js │ │ │ ├── forget-password.js │ │ │ ├── index.js │ │ │ ├── login.js │ │ │ ├── loginbox.js │ │ │ ├── main.js │ │ │ ├── post.js │ │ │ ├── topic.js │ │ │ └── ucenter.js │ │ │ ├── sea.config.js │ │ │ └── sea.js │ └── user │ │ ├── reg.html │ │ └── user │ │ ├── list.html │ │ └── userform.html │ └── templates │ └── web │ ├── category.html │ ├── index-attention.html │ ├── index-hot.html │ ├── index.html │ ├── login.html │ ├── newsdetail.html │ ├── reg.html │ ├── search.html │ ├── topics.html │ ├── userMessage-attention.html │ ├── userMessage-readLog.html │ ├── userMessage-topics.html │ ├── userMessage.html │ └── usermessage-collect.html └── test └── java └── com └── news └── recommend ├── RecommendApplicationTests.java ├── Toneo4j └── JsonReadTest.java └── service ├── NewServiceTest.java ├── TagServiceTest.java └── UserServiceTest.java /.gitattributes: -------------------------------------------------------------------------------- 1 | *.html linguist-language=java 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/README.md -------------------------------------------------------------------------------- /home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/home.png -------------------------------------------------------------------------------- /neo4j.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/neo4j.zip -------------------------------------------------------------------------------- /recommend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/.gitignore -------------------------------------------------------------------------------- /recommend/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /recommend/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /recommend/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/mvnw -------------------------------------------------------------------------------- /recommend/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/mvnw.cmd -------------------------------------------------------------------------------- /recommend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/pom.xml -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/RecommendApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/RecommendApplication.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/Toneo4j/BNews.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/Toneo4j/BNews.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/Toneo4j/JsonRead.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/Toneo4j/JsonRead.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/Toneo4j/Jsonto.java: -------------------------------------------------------------------------------- 1 | package com.news.recommend.Toneo4j; 2 | 3 | public class Jsonto { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/controller/AdminController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/controller/AdminController.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/controller/CaptchaController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/controller/CaptchaController.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/controller/IndexController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/controller/IndexController.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/controller/NewsController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/controller/NewsController.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/controller/TagController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/controller/TagController.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/controller/UserController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/controller/UserController.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/dao/NewsRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/dao/NewsRepository.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/dao/RWeightRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/dao/RWeightRepository.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/dao/TagRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/dao/TagRepository.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/dao/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/dao/UserRepository.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/entity/Attention.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/entity/Attention.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/entity/News.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/entity/News.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/entity/NewsLog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/entity/NewsLog.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/entity/PrefWord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/entity/PrefWord.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/entity/RecommendedWeight.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/entity/RecommendedWeight.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/entity/Tag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/entity/Tag.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/entity/TagToNew.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/entity/TagToNew.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/entity/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/entity/User.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/entity/result/CollectNews.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/entity/result/CollectNews.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/entity/result/Comment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/entity/result/Comment.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/entity/result/DataResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/entity/result/DataResponse.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/entity/result/RecommendNews.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/entity/result/RecommendNews.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/entity/result/ShowNews.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/entity/result/ShowNews.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/entity/result/ShowUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/entity/result/ShowUser.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/entity/result/TagAndNews.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/entity/result/TagAndNews.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/service/NewService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/service/NewService.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/service/RecommendService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/service/RecommendService.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/service/TagService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/service/TagService.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/recommend/service/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/recommend/service/UserService.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/util/IdGen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/util/IdGen.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/util/PrefWordsGen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/util/PrefWordsGen.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/util/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/util/Util.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/util/captcha/Captcha.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/util/captcha/Captcha.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/util/captcha/Encoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/util/captcha/Encoder.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/util/captcha/GifCaptcha.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/util/captcha/GifCaptcha.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/util/captcha/GifEncoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/util/captcha/GifEncoder.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/util/captcha/Quant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/util/captcha/Quant.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/util/captcha/Randoms.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/util/captcha/Randoms.java -------------------------------------------------------------------------------- /recommend/src/main/java/com/news/util/captcha/SpecCaptcha.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/java/com/news/util/captcha/SpecCaptcha.java -------------------------------------------------------------------------------- /recommend/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/application.properties -------------------------------------------------------------------------------- /recommend/src/main/resources/static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /recommend/src/main/resources/static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /recommend/src/main/resources/static/font-awesome/css/font-awesome.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/font-awesome/css/font-awesome.css.map -------------------------------------------------------------------------------- /recommend/src/main/resources/static/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /recommend/src/main/resources/static/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /recommend/src/main/resources/static/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /recommend/src/main/resources/static/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /recommend/src/main/resources/static/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /recommend/src/main/resources/static/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /recommend/src/main/resources/static/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /recommend/src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/index.html -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/config.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/css/layui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/css/layui.css -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/css/layui.mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/css/layui.mobile.css -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/css/modules/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/css/modules/code.css -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/css/modules/laydate/default/laydate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/css/modules/laydate/default/laydate.css -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/css/modules/layer/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/css/modules/layer/default/layer.css -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/font/iconfont.eot -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/font/iconfont.svg -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/font/iconfont.woff -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/0.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/1.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/10.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/11.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/12.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/13.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/14.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/15.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/16.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/17.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/18.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/19.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/2.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/20.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/21.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/22.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/23.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/24.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/25.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/26.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/27.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/28.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/29.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/3.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/30.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/31.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/32.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/33.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/34.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/35.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/36.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/37.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/38.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/39.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/4.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/40.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/41.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/42.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/43.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/44.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/45.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/46.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/47.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/48.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/49.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/5.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/50.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/51.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/52.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/53.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/54.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/55.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/56.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/57.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/58.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/59.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/6.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/60.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/61.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/62.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/63.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/64.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/65.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/66.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/67.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/68.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/69.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/7.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/70.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/71.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/8.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/images/face/9.gif -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/carousel.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/code.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/colorpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/colorpicker.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/element.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/flow.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/form.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/jquery.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/laydate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/laydate.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/layedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/layedit.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/layer.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/laypage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/laypage.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/laytpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/laytpl.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/mobile.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/rate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/rate.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/slider.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/table.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/tree.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/upload.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/lay/modules/util.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/layui.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/layui.all.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/layui/layui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/layui/layui.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/lib/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/lib/admin.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/lib/extend/echarts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/lib/extend/echarts.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/lib/extend/echartsTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/lib/extend/echartsTheme.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/lib/index.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/lib/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/lib/view.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/modules/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/modules/common.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/modules/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/modules/console.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/modules/contlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/modules/contlist.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/modules/forum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/modules/forum.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/modules/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/modules/message.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/modules/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/modules/sample.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/modules/senior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/modules/senior.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/modules/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/modules/set.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/modules/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/modules/user.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/modules/useradmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/modules/useradmin.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/modules/workorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/modules/workorder.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/style/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/style/admin.css -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/style/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/style/login.css -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/style/res/layui-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/style/res/layui-logo.jpg -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/style/res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/style/res/logo.png -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/style/res/template/character.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/style/res/template/character.jpg -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/style/res/template/huge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/style/res/template/huge.jpg -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/style/res/template/portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/style/res/template/portrait.png -------------------------------------------------------------------------------- /recommend/src/main/resources/static/layuiAdmin/style/template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/layuiAdmin/style/template.css -------------------------------------------------------------------------------- /recommend/src/main/resources/static/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/login.html -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/css/account.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/css/account.css -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/css/article.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/css/article.css -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/css/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/css/editor.css -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/css/global.css -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/css/index.css -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/css/people.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/css/people.css -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/css/question.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/css/question.css -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/css/share.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/css/share.css -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/css/topics.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/css/topics.css -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/images/ad/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/images/ad/1.jpg -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/images/ad/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/images/ad/2.jpg -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/images/ad/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/images/ad/3.jpg -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/images/avatar/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/images/avatar/1.jpg -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/images/avatar/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/images/avatar/default.jpg -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/images/login_bj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/images/login_bj.jpg -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/images/logo.svg -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/images/logo/avatar_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/images/logo/avatar_logo.jpg -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/js/jquery.min.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/js/modules/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/js/modules/account.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/js/modules/answer-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/js/modules/answer-editor.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/js/modules/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/js/modules/editor.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/js/modules/forget-password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/js/modules/forget-password.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/js/modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/js/modules/index.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/js/modules/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/js/modules/login.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/js/modules/loginbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/js/modules/loginbox.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/js/modules/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/js/modules/main.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/js/modules/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/js/modules/post.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/js/modules/topic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/js/modules/topic.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/js/modules/ucenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/js/modules/ucenter.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/js/sea.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/js/sea.config.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/pc_theme/js/sea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/pc_theme/js/sea.js -------------------------------------------------------------------------------- /recommend/src/main/resources/static/user/reg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/user/reg.html -------------------------------------------------------------------------------- /recommend/src/main/resources/static/user/user/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/user/user/list.html -------------------------------------------------------------------------------- /recommend/src/main/resources/static/user/user/userform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/static/user/user/userform.html -------------------------------------------------------------------------------- /recommend/src/main/resources/templates/web/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/templates/web/category.html -------------------------------------------------------------------------------- /recommend/src/main/resources/templates/web/index-attention.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/templates/web/index-attention.html -------------------------------------------------------------------------------- /recommend/src/main/resources/templates/web/index-hot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/templates/web/index-hot.html -------------------------------------------------------------------------------- /recommend/src/main/resources/templates/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/templates/web/index.html -------------------------------------------------------------------------------- /recommend/src/main/resources/templates/web/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/templates/web/login.html -------------------------------------------------------------------------------- /recommend/src/main/resources/templates/web/newsdetail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/templates/web/newsdetail.html -------------------------------------------------------------------------------- /recommend/src/main/resources/templates/web/reg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/templates/web/reg.html -------------------------------------------------------------------------------- /recommend/src/main/resources/templates/web/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/templates/web/search.html -------------------------------------------------------------------------------- /recommend/src/main/resources/templates/web/topics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/templates/web/topics.html -------------------------------------------------------------------------------- /recommend/src/main/resources/templates/web/userMessage-attention.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/templates/web/userMessage-attention.html -------------------------------------------------------------------------------- /recommend/src/main/resources/templates/web/userMessage-readLog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/templates/web/userMessage-readLog.html -------------------------------------------------------------------------------- /recommend/src/main/resources/templates/web/userMessage-topics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/templates/web/userMessage-topics.html -------------------------------------------------------------------------------- /recommend/src/main/resources/templates/web/userMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/templates/web/userMessage.html -------------------------------------------------------------------------------- /recommend/src/main/resources/templates/web/usermessage-collect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/main/resources/templates/web/usermessage-collect.html -------------------------------------------------------------------------------- /recommend/src/test/java/com/news/recommend/RecommendApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/test/java/com/news/recommend/RecommendApplicationTests.java -------------------------------------------------------------------------------- /recommend/src/test/java/com/news/recommend/Toneo4j/JsonReadTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/test/java/com/news/recommend/Toneo4j/JsonReadTest.java -------------------------------------------------------------------------------- /recommend/src/test/java/com/news/recommend/service/NewServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/test/java/com/news/recommend/service/NewServiceTest.java -------------------------------------------------------------------------------- /recommend/src/test/java/com/news/recommend/service/TagServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/test/java/com/news/recommend/service/TagServiceTest.java -------------------------------------------------------------------------------- /recommend/src/test/java/com/news/recommend/service/UserServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsolator/personalizedNewsRecommendationSystem/HEAD/recommend/src/test/java/com/news/recommend/service/UserServiceTest.java --------------------------------------------------------------------------------