├── README.md ├── api ├── common.go ├── feed.go ├── result.go └── system.go ├── global ├── config.ini.go └── global.go ├── images ├── qreader_on_phone.jpg ├── screenshot_android_opera_01.png ├── screenshot_android_opera_01_original.png ├── screenshot_android_opera_01_small.png ├── screenshot_android_opera_02.png ├── screenshot_android_opera_02_original.png ├── screenshot_android_opera_02_small.png ├── screenshot_windows_chrome_01.png ├── screenshot_windows_chrome_01_small.png ├── screenshot_windows_chrome_02.png ├── screenshot_windows_chrome_02_small.png ├── screenshot_windows_chrome_03.png ├── screenshot_windows_chrome_03_small.png ├── screenshot_windows_chrome_04.png ├── screenshot_windows_chrome_04_small.png ├── screenshot_windows_chrome_05.png ├── screenshot_windows_chrome_05_small.png ├── screenshot_windows_chrome_06.png ├── screenshot_windows_chrome_06_small.png ├── screenshot_windows_chrome_07.png ├── screenshot_windows_chrome_07_small.png ├── screenshot_windows_chrome_08.png └── screenshot_windows_chrome_08_small.png ├── model ├── core.go ├── error.go ├── feed.go ├── fetchfeed.go ├── initdb.go ├── misc.go └── search.go ├── qreader.go ├── server └── server.go ├── sitedata ├── cert │ ├── cert.pem │ └── key.pem └── client │ ├── include │ ├── article.tpl.html │ ├── article_list.tpl.html │ ├── feed_info.tpl.html │ ├── feed_list.tpl.html │ ├── login.css │ ├── login.js │ ├── qreader.auth.js │ ├── qreader.js │ ├── settings.tpl.html │ ├── style.css │ ├── tags_list.tpl.html │ └── utils.js │ ├── index.html │ ├── libs │ ├── angular-1.3.15.min.js │ ├── angular-route-1.3.15.min.js │ ├── angular-sanitize-1.3.15.min.js │ ├── font-awesome-4.3.0 │ │ ├── css │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── forge-0.6.21.min.js │ ├── jquery-2.1.3.min.js │ ├── mousetrap1.4.6-min.js │ └── normalize-3.0.2.css │ └── login.html └── utils └── utils.go /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/README.md -------------------------------------------------------------------------------- /api/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/api/common.go -------------------------------------------------------------------------------- /api/feed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/api/feed.go -------------------------------------------------------------------------------- /api/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/api/result.go -------------------------------------------------------------------------------- /api/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/api/system.go -------------------------------------------------------------------------------- /global/config.ini.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/global/config.ini.go -------------------------------------------------------------------------------- /global/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/global/global.go -------------------------------------------------------------------------------- /images/qreader_on_phone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/images/qreader_on_phone.jpg -------------------------------------------------------------------------------- /images/screenshot_android_opera_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/images/screenshot_android_opera_01.png -------------------------------------------------------------------------------- /images/screenshot_android_opera_01_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/images/screenshot_android_opera_01_original.png -------------------------------------------------------------------------------- /images/screenshot_android_opera_01_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/images/screenshot_android_opera_01_small.png -------------------------------------------------------------------------------- /images/screenshot_android_opera_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/images/screenshot_android_opera_02.png -------------------------------------------------------------------------------- /images/screenshot_android_opera_02_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/images/screenshot_android_opera_02_original.png -------------------------------------------------------------------------------- /images/screenshot_android_opera_02_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/images/screenshot_android_opera_02_small.png -------------------------------------------------------------------------------- /images/screenshot_windows_chrome_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/images/screenshot_windows_chrome_01.png -------------------------------------------------------------------------------- /images/screenshot_windows_chrome_01_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/images/screenshot_windows_chrome_01_small.png -------------------------------------------------------------------------------- /images/screenshot_windows_chrome_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/images/screenshot_windows_chrome_02.png -------------------------------------------------------------------------------- /images/screenshot_windows_chrome_02_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/images/screenshot_windows_chrome_02_small.png -------------------------------------------------------------------------------- /images/screenshot_windows_chrome_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/images/screenshot_windows_chrome_03.png -------------------------------------------------------------------------------- /images/screenshot_windows_chrome_03_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/images/screenshot_windows_chrome_03_small.png -------------------------------------------------------------------------------- /images/screenshot_windows_chrome_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/images/screenshot_windows_chrome_04.png -------------------------------------------------------------------------------- /images/screenshot_windows_chrome_04_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/images/screenshot_windows_chrome_04_small.png -------------------------------------------------------------------------------- /images/screenshot_windows_chrome_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/images/screenshot_windows_chrome_05.png -------------------------------------------------------------------------------- /images/screenshot_windows_chrome_05_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/images/screenshot_windows_chrome_05_small.png -------------------------------------------------------------------------------- /images/screenshot_windows_chrome_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/images/screenshot_windows_chrome_06.png -------------------------------------------------------------------------------- /images/screenshot_windows_chrome_06_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/images/screenshot_windows_chrome_06_small.png -------------------------------------------------------------------------------- /images/screenshot_windows_chrome_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/images/screenshot_windows_chrome_07.png -------------------------------------------------------------------------------- /images/screenshot_windows_chrome_07_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/images/screenshot_windows_chrome_07_small.png -------------------------------------------------------------------------------- /images/screenshot_windows_chrome_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/images/screenshot_windows_chrome_08.png -------------------------------------------------------------------------------- /images/screenshot_windows_chrome_08_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/images/screenshot_windows_chrome_08_small.png -------------------------------------------------------------------------------- /model/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/model/core.go -------------------------------------------------------------------------------- /model/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/model/error.go -------------------------------------------------------------------------------- /model/feed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/model/feed.go -------------------------------------------------------------------------------- /model/fetchfeed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/model/fetchfeed.go -------------------------------------------------------------------------------- /model/initdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/model/initdb.go -------------------------------------------------------------------------------- /model/misc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/model/misc.go -------------------------------------------------------------------------------- /model/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/model/search.go -------------------------------------------------------------------------------- /qreader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/qreader.go -------------------------------------------------------------------------------- /server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/server/server.go -------------------------------------------------------------------------------- /sitedata/cert/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/cert/cert.pem -------------------------------------------------------------------------------- /sitedata/cert/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/cert/key.pem -------------------------------------------------------------------------------- /sitedata/client/include/article.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/include/article.tpl.html -------------------------------------------------------------------------------- /sitedata/client/include/article_list.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/include/article_list.tpl.html -------------------------------------------------------------------------------- /sitedata/client/include/feed_info.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/include/feed_info.tpl.html -------------------------------------------------------------------------------- /sitedata/client/include/feed_list.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/include/feed_list.tpl.html -------------------------------------------------------------------------------- /sitedata/client/include/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/include/login.css -------------------------------------------------------------------------------- /sitedata/client/include/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/include/login.js -------------------------------------------------------------------------------- /sitedata/client/include/qreader.auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/include/qreader.auth.js -------------------------------------------------------------------------------- /sitedata/client/include/qreader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/include/qreader.js -------------------------------------------------------------------------------- /sitedata/client/include/settings.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/include/settings.tpl.html -------------------------------------------------------------------------------- /sitedata/client/include/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/include/style.css -------------------------------------------------------------------------------- /sitedata/client/include/tags_list.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/include/tags_list.tpl.html -------------------------------------------------------------------------------- /sitedata/client/include/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/include/utils.js -------------------------------------------------------------------------------- /sitedata/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/index.html -------------------------------------------------------------------------------- /sitedata/client/libs/angular-1.3.15.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/libs/angular-1.3.15.min.js -------------------------------------------------------------------------------- /sitedata/client/libs/angular-route-1.3.15.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/libs/angular-route-1.3.15.min.js -------------------------------------------------------------------------------- /sitedata/client/libs/angular-sanitize-1.3.15.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/libs/angular-sanitize-1.3.15.min.js -------------------------------------------------------------------------------- /sitedata/client/libs/font-awesome-4.3.0/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/libs/font-awesome-4.3.0/css/font-awesome.min.css -------------------------------------------------------------------------------- /sitedata/client/libs/font-awesome-4.3.0/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/libs/font-awesome-4.3.0/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /sitedata/client/libs/font-awesome-4.3.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/libs/font-awesome-4.3.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /sitedata/client/libs/font-awesome-4.3.0/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/libs/font-awesome-4.3.0/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /sitedata/client/libs/font-awesome-4.3.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/libs/font-awesome-4.3.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /sitedata/client/libs/font-awesome-4.3.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/libs/font-awesome-4.3.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /sitedata/client/libs/font-awesome-4.3.0/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/libs/font-awesome-4.3.0/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /sitedata/client/libs/forge-0.6.21.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/libs/forge-0.6.21.min.js -------------------------------------------------------------------------------- /sitedata/client/libs/jquery-2.1.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/libs/jquery-2.1.3.min.js -------------------------------------------------------------------------------- /sitedata/client/libs/mousetrap1.4.6-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/libs/mousetrap1.4.6-min.js -------------------------------------------------------------------------------- /sitedata/client/libs/normalize-3.0.2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/libs/normalize-3.0.2.css -------------------------------------------------------------------------------- /sitedata/client/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/sitedata/client/login.html -------------------------------------------------------------------------------- /utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m3ng9i/qreader/HEAD/utils/utils.go --------------------------------------------------------------------------------