├── .circleci └── config.yml ├── .codacy.yml ├── .gitattributes ├── .gitignore ├── .travis.yml ├── BUILDING.md ├── CMakeLists.txt ├── FORMAT.md ├── INSTALLING_UBUNTU.md ├── INSTALLING_WINDOWS.md ├── LICENSE ├── LICENSES.md ├── README.md ├── RScraperConfig.cmake.in ├── RScraperConfigVersion.cmake.in ├── annoying ├── CMakeLists.txt ├── README.md └── src │ └── annoying.cpp ├── clang-format-this ├── guides └── hub.md ├── hub ├── .gitignore ├── CMakeLists.txt ├── README.md ├── hub.pro ├── qtdl.sh └── src │ ├── .gitignore │ ├── 3rdparty │ ├── codeeditor.cpp │ ├── codeeditor.hpp │ ├── donutbreakdownchart.cpp │ ├── donutbreakdownchart.h │ ├── linenumberarea.hpp │ ├── mainslice.cpp │ └── mainslice.h │ ├── add_sub2tag_btn.cpp │ ├── add_sub2tag_btn.hpp │ ├── btn_with_id.cpp │ ├── btn_with_id.hpp │ ├── cat_doughnut.cpp │ ├── cat_doughnut.hpp │ ├── cat_pie.cpp │ ├── cat_pie.hpp │ ├── categorytab.cpp │ ├── categorytab.hpp │ ├── clbtn.cpp │ ├── clbtn.hpp │ ├── io_tab.cpp │ ├── io_tab.hpp │ ├── main.cpp │ ├── main_tab.cpp │ ├── main_tab.hpp │ ├── mainwindow.cpp │ ├── mainwindow.hpp │ ├── msgbox.cpp │ ├── msgbox.hpp │ ├── mysql_declarations.hpp │ ├── name_dialog.cpp │ ├── name_dialog.hpp │ ├── notfound.cpp │ ├── notfound.hpp │ ├── reason_tab.cpp │ ├── reason_tab.hpp │ ├── regex_editor │ ├── editor.cpp │ └── editor.hpp │ ├── regex_tests.cpp │ ├── regex_tests.hpp │ ├── rm_tag_btn.cpp │ ├── rm_tag_btn.hpp │ ├── scraper_tab.cpp │ ├── scraper_tab.hpp │ ├── sh_tag_btn.cpp │ ├── sh_tag_btn.hpp │ ├── sql_name_dialog.cpp │ ├── sql_name_dialog.hpp │ ├── tag_pie.cpp │ ├── tag_pie.hpp │ ├── tagnamelabel.cpp │ ├── tagnamelabel.hpp │ ├── unlink_tag_btn.cpp │ ├── unlink_tag_btn.hpp │ ├── view_matched_comments.cpp │ ├── view_matched_comments.hpp │ ├── wlbl_label.cpp │ ├── wlbl_label.hpp │ ├── wlbl_reasonwise_label.cpp │ └── wlbl_reasonwise_label.hpp ├── init ├── .gitignore ├── CMakeLists.txt └── src │ ├── init.cpp │ └── init.sql ├── io ├── CMakeLists.txt ├── README.md └── src │ ├── export.cpp │ └── import.cpp ├── man ├── CMakeLists.txt ├── rscrape-cmnts.1.md ├── rscraped-reason.1.md ├── rscraped-tagged-subs.1.md ├── rscraper-export.1.md ├── rscraper-hub.1.md ├── rscraper-id2str.1.md ├── rscraper-import.1.md ├── rscraper-init-scraper.1.md ├── rscraper-init.1.md ├── rscraper-str2id.1.md ├── rscraper-tagger-server.1.md └── rscraper.1.md ├── packaging ├── CMakeLists.txt ├── res │ └── rscraper-hub.png └── rscraper-hub.desktop ├── scraper ├── .gitignore ├── CMakeLists.txt ├── Dockerfile ├── README.md └── src │ ├── .gitignore │ ├── curl_utils.cpp │ ├── curl_utils.hpp │ ├── error_codes.hpp │ ├── filter_comment_body.cpp │ ├── filter_comment_body.hpp │ ├── filter_comment_body_regexp.cpp │ ├── filter_comment_body_regexp.hpp │ ├── filter_init.cpp │ ├── filter_init.hpp │ ├── filter_subreddit.cpp │ ├── filter_subreddit.hpp │ ├── filter_user.cpp │ ├── filter_user.hpp │ ├── init.cpp │ ├── mod_permissions.txt │ ├── redditcurl_utils.cpp │ ├── redditcurl_utils.hpp │ ├── regex_file_eg.txt │ ├── regex_file_eg.txt.human │ ├── scrape.cpp │ └── structs.h ├── scripts ├── header-guards.py ├── regopt.pl └── spaces2tabs.py ├── shared-src ├── init_regexp_from_file.cpp └── init_regexp_from_file.hpp ├── tagger ├── .gitignore ├── CMakeLists.txt ├── Makefile ├── README.md ├── browser-addon │ ├── .gitignore │ ├── background.js │ ├── build │ ├── icons │ │ ├── 16.png │ │ ├── 32.png │ │ └── 64.png │ ├── js │ │ └── rtagger.js │ ├── manifest.json │ ├── options.html │ └── options.js ├── include │ └── rscraper │ │ └── tagger.hpp ├── rscraper-tagger-server.py ├── rtagger.js ├── src │ ├── server.go │ └── tagger.cpp ├── wangle-server │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Dockerfile │ ├── build-imgs │ ├── cmake.yml │ ├── docker │ │ └── fix-missing-symbol.monkeypatch.cpp │ ├── favicon.ico │ ├── favicon.txt │ └── src │ │ ├── .gitignore │ │ ├── favicon.txt │ │ ├── html │ │ ├── comments_given_reason.html │ │ ├── components │ │ │ ├── jquery.html │ │ │ ├── parent_link.html │ │ │ └── utils.js.html │ │ ├── flairs.html │ │ ├── flairs_regions.html │ │ ├── flairs_slurs.html │ │ ├── reason.html │ │ ├── root.html │ │ ├── subreddits_given_reason.html │ │ ├── svg │ │ │ └── .gitignore │ │ ├── tagged_users.html │ │ └── user_summary.html │ │ ├── i │ │ ├── 404.png │ │ └── 404.txt │ │ ├── server-endpoints.txt │ │ ├── server.cpp │ │ └── static │ │ └── js │ │ └── utils.js └── wrapper.py └── utils ├── CMakeLists.txt ├── admin-tasks.sql ├── comment_body_regexp.py └── src ├── cmnts_from_subs_tagged.cpp ├── id2str.cpp └── id2str.hpp /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.codacy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/.codacy.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sql text linguist-detectable=true 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/.travis.yml -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /FORMAT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/FORMAT.md -------------------------------------------------------------------------------- /INSTALLING_UBUNTU.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/INSTALLING_UBUNTU.md -------------------------------------------------------------------------------- /INSTALLING_WINDOWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/INSTALLING_WINDOWS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/LICENSES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/README.md -------------------------------------------------------------------------------- /RScraperConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/RScraperConfig.cmake.in -------------------------------------------------------------------------------- /RScraperConfigVersion.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/RScraperConfigVersion.cmake.in -------------------------------------------------------------------------------- /annoying/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/annoying/CMakeLists.txt -------------------------------------------------------------------------------- /annoying/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/annoying/README.md -------------------------------------------------------------------------------- /annoying/src/annoying.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/annoying/src/annoying.cpp -------------------------------------------------------------------------------- /clang-format-this: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/clang-format-this -------------------------------------------------------------------------------- /guides/hub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/guides/hub.md -------------------------------------------------------------------------------- /hub/.gitignore: -------------------------------------------------------------------------------- 1 | res/* 2 | -------------------------------------------------------------------------------- /hub/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/CMakeLists.txt -------------------------------------------------------------------------------- /hub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/README.md -------------------------------------------------------------------------------- /hub/hub.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/hub.pro -------------------------------------------------------------------------------- /hub/qtdl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/qtdl.sh -------------------------------------------------------------------------------- /hub/src/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hub/src/3rdparty/codeeditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/3rdparty/codeeditor.cpp -------------------------------------------------------------------------------- /hub/src/3rdparty/codeeditor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/3rdparty/codeeditor.hpp -------------------------------------------------------------------------------- /hub/src/3rdparty/donutbreakdownchart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/3rdparty/donutbreakdownchart.cpp -------------------------------------------------------------------------------- /hub/src/3rdparty/donutbreakdownchart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/3rdparty/donutbreakdownchart.h -------------------------------------------------------------------------------- /hub/src/3rdparty/linenumberarea.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/3rdparty/linenumberarea.hpp -------------------------------------------------------------------------------- /hub/src/3rdparty/mainslice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/3rdparty/mainslice.cpp -------------------------------------------------------------------------------- /hub/src/3rdparty/mainslice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/3rdparty/mainslice.h -------------------------------------------------------------------------------- /hub/src/add_sub2tag_btn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/add_sub2tag_btn.cpp -------------------------------------------------------------------------------- /hub/src/add_sub2tag_btn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/add_sub2tag_btn.hpp -------------------------------------------------------------------------------- /hub/src/btn_with_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/btn_with_id.cpp -------------------------------------------------------------------------------- /hub/src/btn_with_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/btn_with_id.hpp -------------------------------------------------------------------------------- /hub/src/cat_doughnut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/cat_doughnut.cpp -------------------------------------------------------------------------------- /hub/src/cat_doughnut.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/cat_doughnut.hpp -------------------------------------------------------------------------------- /hub/src/cat_pie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/cat_pie.cpp -------------------------------------------------------------------------------- /hub/src/cat_pie.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/cat_pie.hpp -------------------------------------------------------------------------------- /hub/src/categorytab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/categorytab.cpp -------------------------------------------------------------------------------- /hub/src/categorytab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/categorytab.hpp -------------------------------------------------------------------------------- /hub/src/clbtn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/clbtn.cpp -------------------------------------------------------------------------------- /hub/src/clbtn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/clbtn.hpp -------------------------------------------------------------------------------- /hub/src/io_tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/io_tab.cpp -------------------------------------------------------------------------------- /hub/src/io_tab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/io_tab.hpp -------------------------------------------------------------------------------- /hub/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/main.cpp -------------------------------------------------------------------------------- /hub/src/main_tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/main_tab.cpp -------------------------------------------------------------------------------- /hub/src/main_tab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/main_tab.hpp -------------------------------------------------------------------------------- /hub/src/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/mainwindow.cpp -------------------------------------------------------------------------------- /hub/src/mainwindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/mainwindow.hpp -------------------------------------------------------------------------------- /hub/src/msgbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/msgbox.cpp -------------------------------------------------------------------------------- /hub/src/msgbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/msgbox.hpp -------------------------------------------------------------------------------- /hub/src/mysql_declarations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/mysql_declarations.hpp -------------------------------------------------------------------------------- /hub/src/name_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/name_dialog.cpp -------------------------------------------------------------------------------- /hub/src/name_dialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/name_dialog.hpp -------------------------------------------------------------------------------- /hub/src/notfound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/notfound.cpp -------------------------------------------------------------------------------- /hub/src/notfound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/notfound.hpp -------------------------------------------------------------------------------- /hub/src/reason_tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/reason_tab.cpp -------------------------------------------------------------------------------- /hub/src/reason_tab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/reason_tab.hpp -------------------------------------------------------------------------------- /hub/src/regex_editor/editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/regex_editor/editor.cpp -------------------------------------------------------------------------------- /hub/src/regex_editor/editor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/regex_editor/editor.hpp -------------------------------------------------------------------------------- /hub/src/regex_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/regex_tests.cpp -------------------------------------------------------------------------------- /hub/src/regex_tests.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/regex_tests.hpp -------------------------------------------------------------------------------- /hub/src/rm_tag_btn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/rm_tag_btn.cpp -------------------------------------------------------------------------------- /hub/src/rm_tag_btn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/rm_tag_btn.hpp -------------------------------------------------------------------------------- /hub/src/scraper_tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/scraper_tab.cpp -------------------------------------------------------------------------------- /hub/src/scraper_tab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/scraper_tab.hpp -------------------------------------------------------------------------------- /hub/src/sh_tag_btn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/sh_tag_btn.cpp -------------------------------------------------------------------------------- /hub/src/sh_tag_btn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/sh_tag_btn.hpp -------------------------------------------------------------------------------- /hub/src/sql_name_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/sql_name_dialog.cpp -------------------------------------------------------------------------------- /hub/src/sql_name_dialog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/sql_name_dialog.hpp -------------------------------------------------------------------------------- /hub/src/tag_pie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/tag_pie.cpp -------------------------------------------------------------------------------- /hub/src/tag_pie.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/tag_pie.hpp -------------------------------------------------------------------------------- /hub/src/tagnamelabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/tagnamelabel.cpp -------------------------------------------------------------------------------- /hub/src/tagnamelabel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/tagnamelabel.hpp -------------------------------------------------------------------------------- /hub/src/unlink_tag_btn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/unlink_tag_btn.cpp -------------------------------------------------------------------------------- /hub/src/unlink_tag_btn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/unlink_tag_btn.hpp -------------------------------------------------------------------------------- /hub/src/view_matched_comments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/view_matched_comments.cpp -------------------------------------------------------------------------------- /hub/src/view_matched_comments.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/view_matched_comments.hpp -------------------------------------------------------------------------------- /hub/src/wlbl_label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/wlbl_label.cpp -------------------------------------------------------------------------------- /hub/src/wlbl_label.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/wlbl_label.hpp -------------------------------------------------------------------------------- /hub/src/wlbl_reasonwise_label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/wlbl_reasonwise_label.cpp -------------------------------------------------------------------------------- /hub/src/wlbl_reasonwise_label.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/hub/src/wlbl_reasonwise_label.hpp -------------------------------------------------------------------------------- /init/.gitignore: -------------------------------------------------------------------------------- 1 | build/* 2 | -------------------------------------------------------------------------------- /init/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/init/CMakeLists.txt -------------------------------------------------------------------------------- /init/src/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/init/src/init.cpp -------------------------------------------------------------------------------- /init/src/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/init/src/init.sql -------------------------------------------------------------------------------- /io/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/io/CMakeLists.txt -------------------------------------------------------------------------------- /io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/io/README.md -------------------------------------------------------------------------------- /io/src/export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/io/src/export.cpp -------------------------------------------------------------------------------- /io/src/import.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/io/src/import.cpp -------------------------------------------------------------------------------- /man/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/man/CMakeLists.txt -------------------------------------------------------------------------------- /man/rscrape-cmnts.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/man/rscrape-cmnts.1.md -------------------------------------------------------------------------------- /man/rscraped-reason.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/man/rscraped-reason.1.md -------------------------------------------------------------------------------- /man/rscraped-tagged-subs.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/man/rscraped-tagged-subs.1.md -------------------------------------------------------------------------------- /man/rscraper-export.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/man/rscraper-export.1.md -------------------------------------------------------------------------------- /man/rscraper-hub.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/man/rscraper-hub.1.md -------------------------------------------------------------------------------- /man/rscraper-id2str.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/man/rscraper-id2str.1.md -------------------------------------------------------------------------------- /man/rscraper-import.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/man/rscraper-import.1.md -------------------------------------------------------------------------------- /man/rscraper-init-scraper.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/man/rscraper-init-scraper.1.md -------------------------------------------------------------------------------- /man/rscraper-init.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/man/rscraper-init.1.md -------------------------------------------------------------------------------- /man/rscraper-str2id.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/man/rscraper-str2id.1.md -------------------------------------------------------------------------------- /man/rscraper-tagger-server.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/man/rscraper-tagger-server.1.md -------------------------------------------------------------------------------- /man/rscraper.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/man/rscraper.1.md -------------------------------------------------------------------------------- /packaging/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/packaging/CMakeLists.txt -------------------------------------------------------------------------------- /packaging/res/rscraper-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/packaging/res/rscraper-hub.png -------------------------------------------------------------------------------- /packaging/rscraper-hub.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/packaging/rscraper-hub.desktop -------------------------------------------------------------------------------- /scraper/.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | build/* 3 | src/submission_ignore_field.c 4 | *.kate-swp 5 | 6 | -------------------------------------------------------------------------------- /scraper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scraper/CMakeLists.txt -------------------------------------------------------------------------------- /scraper/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scraper/Dockerfile -------------------------------------------------------------------------------- /scraper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scraper/README.md -------------------------------------------------------------------------------- /scraper/src/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /scraper/src/curl_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scraper/src/curl_utils.cpp -------------------------------------------------------------------------------- /scraper/src/curl_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scraper/src/curl_utils.hpp -------------------------------------------------------------------------------- /scraper/src/error_codes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scraper/src/error_codes.hpp -------------------------------------------------------------------------------- /scraper/src/filter_comment_body.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scraper/src/filter_comment_body.cpp -------------------------------------------------------------------------------- /scraper/src/filter_comment_body.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scraper/src/filter_comment_body.hpp -------------------------------------------------------------------------------- /scraper/src/filter_comment_body_regexp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scraper/src/filter_comment_body_regexp.cpp -------------------------------------------------------------------------------- /scraper/src/filter_comment_body_regexp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scraper/src/filter_comment_body_regexp.hpp -------------------------------------------------------------------------------- /scraper/src/filter_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scraper/src/filter_init.cpp -------------------------------------------------------------------------------- /scraper/src/filter_init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scraper/src/filter_init.hpp -------------------------------------------------------------------------------- /scraper/src/filter_subreddit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scraper/src/filter_subreddit.cpp -------------------------------------------------------------------------------- /scraper/src/filter_subreddit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scraper/src/filter_subreddit.hpp -------------------------------------------------------------------------------- /scraper/src/filter_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scraper/src/filter_user.cpp -------------------------------------------------------------------------------- /scraper/src/filter_user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scraper/src/filter_user.hpp -------------------------------------------------------------------------------- /scraper/src/init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scraper/src/init.cpp -------------------------------------------------------------------------------- /scraper/src/mod_permissions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scraper/src/mod_permissions.txt -------------------------------------------------------------------------------- /scraper/src/redditcurl_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scraper/src/redditcurl_utils.cpp -------------------------------------------------------------------------------- /scraper/src/redditcurl_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scraper/src/redditcurl_utils.hpp -------------------------------------------------------------------------------- /scraper/src/regex_file_eg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scraper/src/regex_file_eg.txt -------------------------------------------------------------------------------- /scraper/src/regex_file_eg.txt.human: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scraper/src/regex_file_eg.txt.human -------------------------------------------------------------------------------- /scraper/src/scrape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scraper/src/scrape.cpp -------------------------------------------------------------------------------- /scraper/src/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scraper/src/structs.h -------------------------------------------------------------------------------- /scripts/header-guards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scripts/header-guards.py -------------------------------------------------------------------------------- /scripts/regopt.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scripts/regopt.pl -------------------------------------------------------------------------------- /scripts/spaces2tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/scripts/spaces2tabs.py -------------------------------------------------------------------------------- /shared-src/init_regexp_from_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/shared-src/init_regexp_from_file.cpp -------------------------------------------------------------------------------- /shared-src/init_regexp_from_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/shared-src/init_regexp_from_file.hpp -------------------------------------------------------------------------------- /tagger/.gitignore: -------------------------------------------------------------------------------- 1 | build/* 2 | -------------------------------------------------------------------------------- /tagger/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/CMakeLists.txt -------------------------------------------------------------------------------- /tagger/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/Makefile -------------------------------------------------------------------------------- /tagger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/README.md -------------------------------------------------------------------------------- /tagger/browser-addon/.gitignore: -------------------------------------------------------------------------------- 1 | etc/* 2 | *.xpi 3 | -------------------------------------------------------------------------------- /tagger/browser-addon/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/browser-addon/background.js -------------------------------------------------------------------------------- /tagger/browser-addon/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/browser-addon/build -------------------------------------------------------------------------------- /tagger/browser-addon/icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/browser-addon/icons/16.png -------------------------------------------------------------------------------- /tagger/browser-addon/icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/browser-addon/icons/32.png -------------------------------------------------------------------------------- /tagger/browser-addon/icons/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/browser-addon/icons/64.png -------------------------------------------------------------------------------- /tagger/browser-addon/js/rtagger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/browser-addon/js/rtagger.js -------------------------------------------------------------------------------- /tagger/browser-addon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/browser-addon/manifest.json -------------------------------------------------------------------------------- /tagger/browser-addon/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/browser-addon/options.html -------------------------------------------------------------------------------- /tagger/browser-addon/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/browser-addon/options.js -------------------------------------------------------------------------------- /tagger/include/rscraper/tagger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/include/rscraper/tagger.hpp -------------------------------------------------------------------------------- /tagger/rscraper-tagger-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/rscraper-tagger-server.py -------------------------------------------------------------------------------- /tagger/rtagger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/rtagger.js -------------------------------------------------------------------------------- /tagger/src/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/src/server.go -------------------------------------------------------------------------------- /tagger/src/tagger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/src/tagger.cpp -------------------------------------------------------------------------------- /tagger/wangle-server/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | -------------------------------------------------------------------------------- /tagger/wangle-server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/wangle-server/CMakeLists.txt -------------------------------------------------------------------------------- /tagger/wangle-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/wangle-server/Dockerfile -------------------------------------------------------------------------------- /tagger/wangle-server/build-imgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/wangle-server/build-imgs -------------------------------------------------------------------------------- /tagger/wangle-server/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/wangle-server/cmake.yml -------------------------------------------------------------------------------- /tagger/wangle-server/docker/fix-missing-symbol.monkeypatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/wangle-server/docker/fix-missing-symbol.monkeypatch.cpp -------------------------------------------------------------------------------- /tagger/wangle-server/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/wangle-server/favicon.ico -------------------------------------------------------------------------------- /tagger/wangle-server/favicon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/wangle-server/favicon.txt -------------------------------------------------------------------------------- /tagger/wangle-server/src/.gitignore: -------------------------------------------------------------------------------- 1 | auto-generated/* 2 | -------------------------------------------------------------------------------- /tagger/wangle-server/src/favicon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/wangle-server/src/favicon.txt -------------------------------------------------------------------------------- /tagger/wangle-server/src/html/comments_given_reason.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/wangle-server/src/html/comments_given_reason.html -------------------------------------------------------------------------------- /tagger/wangle-server/src/html/components/jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/wangle-server/src/html/components/jquery.html -------------------------------------------------------------------------------- /tagger/wangle-server/src/html/components/parent_link.html: -------------------------------------------------------------------------------- 1 | "Parent" 2 | -------------------------------------------------------------------------------- /tagger/wangle-server/src/html/components/utils.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/wangle-server/src/html/components/utils.js.html -------------------------------------------------------------------------------- /tagger/wangle-server/src/html/flairs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/wangle-server/src/html/flairs.html -------------------------------------------------------------------------------- /tagger/wangle-server/src/html/flairs_regions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/wangle-server/src/html/flairs_regions.html -------------------------------------------------------------------------------- /tagger/wangle-server/src/html/flairs_slurs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/wangle-server/src/html/flairs_slurs.html -------------------------------------------------------------------------------- /tagger/wangle-server/src/html/reason.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/wangle-server/src/html/reason.html -------------------------------------------------------------------------------- /tagger/wangle-server/src/html/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/wangle-server/src/html/root.html -------------------------------------------------------------------------------- /tagger/wangle-server/src/html/subreddits_given_reason.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/wangle-server/src/html/subreddits_given_reason.html -------------------------------------------------------------------------------- /tagger/wangle-server/src/html/svg/.gitignore: -------------------------------------------------------------------------------- 1 | favicon.svg 2 | -------------------------------------------------------------------------------- /tagger/wangle-server/src/html/tagged_users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/wangle-server/src/html/tagged_users.html -------------------------------------------------------------------------------- /tagger/wangle-server/src/html/user_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/wangle-server/src/html/user_summary.html -------------------------------------------------------------------------------- /tagger/wangle-server/src/i/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/wangle-server/src/i/404.png -------------------------------------------------------------------------------- /tagger/wangle-server/src/i/404.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/wangle-server/src/i/404.txt -------------------------------------------------------------------------------- /tagger/wangle-server/src/server-endpoints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/wangle-server/src/server-endpoints.txt -------------------------------------------------------------------------------- /tagger/wangle-server/src/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/wangle-server/src/server.cpp -------------------------------------------------------------------------------- /tagger/wangle-server/src/static/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/wangle-server/src/static/js/utils.js -------------------------------------------------------------------------------- /tagger/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/tagger/wrapper.py -------------------------------------------------------------------------------- /utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/utils/CMakeLists.txt -------------------------------------------------------------------------------- /utils/admin-tasks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/utils/admin-tasks.sql -------------------------------------------------------------------------------- /utils/comment_body_regexp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/utils/comment_body_regexp.py -------------------------------------------------------------------------------- /utils/src/cmnts_from_subs_tagged.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/utils/src/cmnts_from_subs_tagged.cpp -------------------------------------------------------------------------------- /utils/src/id2str.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/utils/src/id2str.cpp -------------------------------------------------------------------------------- /utils/src/id2str.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NotCompsky/rscraper/HEAD/utils/src/id2str.hpp --------------------------------------------------------------------------------