├── .gitignore ├── Procfile ├── README.md ├── app.js ├── app ├── client │ ├── anonications.js │ ├── behaviors │ │ └── home │ │ │ └── a_button.js │ ├── burtle_storm.js │ ├── chat.js │ ├── cordova.js │ ├── drawing.js │ ├── emojies.js │ ├── favorite_boards.js │ ├── imgur.js │ ├── john.js │ ├── newthread.js │ ├── notif.js │ ├── post_utils.js │ ├── prelude.js │ ├── prelude.json │ ├── profanity.js │ ├── settings.js │ ├── sidebar.js │ ├── sinners.js │ ├── sticky_post.js │ ├── storage.js │ ├── summarize.js │ ├── text.js │ ├── tripcode.js │ └── voyeur.js ├── controllers │ ├── archives │ │ ├── client.js │ │ ├── server.js │ │ └── test │ │ │ └── server.js │ ├── boards │ │ ├── client.js │ │ ├── server.js │ │ └── test │ │ │ └── server.js │ ├── data │ │ ├── client.js │ │ ├── server.js │ │ └── test │ │ │ └── server.js │ ├── home │ │ ├── client.js │ │ ├── server.js │ │ └── test │ │ │ ├── client.js │ │ │ └── server.js │ ├── icons │ │ ├── client.js │ │ ├── server.js │ │ └── test │ │ │ └── server.js │ ├── posts │ │ ├── client.js │ │ ├── server.js │ │ └── test │ │ │ └── server.js │ ├── profiles │ │ ├── client.js │ │ ├── server.js │ │ └── test │ │ │ └── server.js │ ├── rss │ │ ├── server.js │ │ └── test │ │ │ └── server.js │ └── search │ │ ├── client.js │ │ ├── server.js │ │ └── test │ │ └── server.js ├── fakedata.js ├── main.js ├── models │ ├── action.js │ ├── archived_post.js │ ├── ban.js │ ├── board.js │ ├── board_claim.js │ ├── board_config.js │ ├── ip.js │ ├── link.js │ ├── model.js │ ├── post.js │ ├── trophy.js │ └── user.js ├── server │ ├── anon_pocket.js │ ├── anonications.js │ ├── board_migrations.js │ ├── board_names.js │ ├── board_utils.js │ ├── chat.js │ ├── client_api.js │ ├── hidden_boards.js │ ├── makeme_store.js │ ├── md5.js │ ├── mod.js │ ├── post_links.js │ ├── posting.js │ ├── snorkel_api.js │ ├── sponsored_content.js │ ├── tripcode.js │ └── worship_boards.js └── static │ ├── favicon.ico │ ├── fonts │ ├── glyphicons-halflings-regular.woff │ ├── webhostinghub-glyphs.eot │ ├── webhostinghub-glyphs.svg │ └── webhostinghub-glyphs.ttf │ ├── images │ ├── atob-logo-404.png │ ├── atobi.png │ ├── atobn.png │ └── bootstrap │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ ├── styles │ ├── RubberBand.css │ ├── archive.css │ ├── board.css │ ├── bootstrap │ │ ├── bootstrap-editable.css │ │ ├── bootstrap.cosmo.css │ │ ├── bootstrap.css │ │ ├── bootstrap.theme.css │ │ ├── overrides.css │ │ └── responsive.css │ ├── box.css │ ├── chat.css │ ├── definitions.less │ ├── home.css │ ├── jquery.fullPage.css │ ├── jquery.sidr.light.css │ ├── links.css │ ├── logo_and_links.css │ ├── post.css │ ├── profile.css │ ├── scrollers.css │ ├── search.css │ ├── searchbar.css │ ├── settings.css │ ├── sponsored_content.css │ └── whhg.css │ ├── templates │ ├── controllers │ │ ├── about.html.erb │ │ ├── archives.html.erb │ │ ├── boards │ │ │ ├── list.html.erb │ │ │ └── show.html.erb │ │ ├── chat.html.erb │ │ ├── data │ │ │ └── data.html.erb │ │ ├── home.html.erb │ │ ├── links.html.erb │ │ ├── mods.html.erb │ │ ├── posts │ │ │ ├── posts.html.erb │ │ │ └── show.html.erb │ │ ├── profiles │ │ │ └── profiles.html.erb │ │ ├── recent.html.erb │ │ └── search │ │ │ └── search.html.erb │ └── partials │ │ ├── boards │ │ └── shared.html.erb │ │ ├── home │ │ ├── 404.html.erb │ │ ├── board_links.html.erb │ │ ├── header.html.erb │ │ ├── icons.html.erb │ │ ├── index.html.erb │ │ ├── link.html.erb │ │ ├── recent_posts.html.erb │ │ └── rules.html.erb │ │ ├── posts │ │ └── shared.html.erb │ │ ├── profiles │ │ └── stats.html.erb │ │ ├── rss.html.erb │ │ └── shared │ │ ├── benjamin_buttons.html.erb │ │ ├── chat.html.erb │ │ ├── favorites.html.erb │ │ ├── loading.html.erb │ │ ├── logo_and_links.html.erb │ │ ├── new_post.html.erb │ │ ├── search.html.erb │ │ └── settings.html.erb │ └── vendor │ ├── RubberBand.js │ ├── Sortable.js │ ├── bootstrap.min.js │ ├── cordova │ ├── cordova.js │ ├── cordova_plugins.js │ └── plugins │ │ ├── de.appplant.cordova.plugin.background-mode │ │ └── www │ │ │ └── background-mode.js │ │ ├── de.appplant.cordova.plugin.local-notification │ │ └── www │ │ │ └── local-notification.js │ │ ├── org.apache.cordova.device │ │ └── www │ │ │ └── device.js │ │ └── org.apache.cordova.inappbrowser │ │ └── www │ │ └── inappbrowser.js │ ├── fastclick.js │ ├── hex-rgb.src.js │ ├── is_mobile.js │ ├── jquery-deparam.js │ ├── jquery.chroma-hash.js │ ├── jquery.cookie.js │ ├── jquery.deserialize.js │ ├── jquery.fullPage.js │ ├── jquery.scrollTo.js │ ├── jquery.sidr.js │ ├── jquery.tagcloud.js │ ├── jquery.textcomplete.js │ ├── jquery.timeago.js │ ├── lunicode.js │ ├── marked.js │ ├── md5.js │ ├── notify.js │ ├── plotly-latest.min.js │ ├── strtotime.js │ ├── useractions.js │ ├── useractions_stub.js │ └── velocity.js ├── components ├── board_admin_panel │ ├── board_admin_panel.css │ ├── board_admin_panel.html.erb │ ├── board_admin_panel.js │ ├── events.js │ ├── package.json │ └── test │ │ ├── client.js │ │ └── server.js ├── board_claim_panel │ ├── board_claim_panel.css │ ├── board_claim_panel.html.erb │ ├── board_claim_panel.js │ ├── events.js │ ├── package.json │ └── test │ │ ├── client.js │ │ └── server.js ├── button │ ├── button.css │ ├── button.html.erb │ ├── button.js │ ├── events.js │ ├── package.json │ └── test │ │ ├── client.js │ │ └── server.js ├── component.js ├── delete_post_modal │ ├── delete_post_modal.css │ ├── delete_post_modal.html.erb │ ├── delete_post_modal.js │ ├── events.js │ └── package.json ├── markdown_dialog │ ├── events.js │ ├── markdown_dialog.css │ ├── markdown_dialog.html.erb │ ├── markdown_dialog.js │ ├── package.json │ └── test │ │ ├── client.js │ │ └── server.js ├── post │ ├── events.js │ ├── package.json │ ├── post.css │ ├── post.html.erb │ ├── post.js │ └── test │ │ ├── client.js │ │ └── server.js ├── stats_dialog │ ├── events.js │ ├── markdown_dialog.css │ ├── package.json │ ├── stats_dialog.html.erb │ └── stats_dialog.js ├── template │ ├── events.js │ ├── package.json │ ├── template.css │ ├── template.html.erb │ ├── template.js │ └── test │ │ ├── client.js │ │ └── server.js └── upeye │ ├── events.js │ ├── package.json │ ├── test │ ├── client.js │ └── server.js │ ├── upeye.css │ ├── upeye.html.erb │ └── upeye.js ├── config ├── config.js ├── config.json ├── heroku.js ├── localhost.js ├── override.js └── users.htpasswd ├── migrations ├── 20140318213854-add_votes_to_posts.js ├── 20140318231555-add_bumped_at_to_posts.js ├── 20140320182742-add_bumped_index_to_posts.js ├── 20140320213029-add_bans_table.js ├── 20140320214332-add_ips_table.js ├── 20140410104732-add_archives_table.js ├── 20140520201926-add_links_table.js ├── 20150304120553-add_burtles_to_post.js ├── 20150416212010-add_actions_table.js ├── 20151005130358-add_board_config_table.js ├── 20151005132417-add_board_claims_table.js ├── 20151114192529-add_trophies_table.js └── 20151116104703-add_anon_id_to_trophies.js ├── package.json ├── routes.json └── scripts ├── add_user.sh ├── clean_old_posts.sh ├── create_component.sh ├── create_controller.sh ├── create_partial.sh ├── create_react_component.sh ├── garbage_collection.js ├── generate_unit_tests.sh ├── grab_all_archives.sh ├── ip_conversion.js ├── link_collection.js ├── pocket_collection.js ├── run_client_tests.sh ├── run_component_tests.sh ├── run_controller_tests.sh ├── run_tests.sh ├── run_unit_tests.sh └── setup_certificates.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node app.js 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app.js -------------------------------------------------------------------------------- /app/client/anonications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/client/anonications.js -------------------------------------------------------------------------------- /app/client/behaviors/home/a_button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/client/behaviors/home/a_button.js -------------------------------------------------------------------------------- /app/client/burtle_storm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/client/burtle_storm.js -------------------------------------------------------------------------------- /app/client/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/client/chat.js -------------------------------------------------------------------------------- /app/client/cordova.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/client/cordova.js -------------------------------------------------------------------------------- /app/client/drawing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/client/drawing.js -------------------------------------------------------------------------------- /app/client/emojies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/client/emojies.js -------------------------------------------------------------------------------- /app/client/favorite_boards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/client/favorite_boards.js -------------------------------------------------------------------------------- /app/client/imgur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/client/imgur.js -------------------------------------------------------------------------------- /app/client/john.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/client/john.js -------------------------------------------------------------------------------- /app/client/newthread.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/client/newthread.js -------------------------------------------------------------------------------- /app/client/notif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/client/notif.js -------------------------------------------------------------------------------- /app/client/post_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/client/post_utils.js -------------------------------------------------------------------------------- /app/client/prelude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/client/prelude.js -------------------------------------------------------------------------------- /app/client/prelude.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/client/prelude.json -------------------------------------------------------------------------------- /app/client/profanity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/client/profanity.js -------------------------------------------------------------------------------- /app/client/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/client/settings.js -------------------------------------------------------------------------------- /app/client/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/client/sidebar.js -------------------------------------------------------------------------------- /app/client/sinners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/client/sinners.js -------------------------------------------------------------------------------- /app/client/sticky_post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/client/sticky_post.js -------------------------------------------------------------------------------- /app/client/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/client/storage.js -------------------------------------------------------------------------------- /app/client/summarize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/client/summarize.js -------------------------------------------------------------------------------- /app/client/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/client/text.js -------------------------------------------------------------------------------- /app/client/tripcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/client/tripcode.js -------------------------------------------------------------------------------- /app/client/voyeur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/client/voyeur.js -------------------------------------------------------------------------------- /app/controllers/archives/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/archives/client.js -------------------------------------------------------------------------------- /app/controllers/archives/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/archives/server.js -------------------------------------------------------------------------------- /app/controllers/archives/test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/archives/test/server.js -------------------------------------------------------------------------------- /app/controllers/boards/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/boards/client.js -------------------------------------------------------------------------------- /app/controllers/boards/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/boards/server.js -------------------------------------------------------------------------------- /app/controllers/boards/test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/boards/test/server.js -------------------------------------------------------------------------------- /app/controllers/data/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/data/client.js -------------------------------------------------------------------------------- /app/controllers/data/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/data/server.js -------------------------------------------------------------------------------- /app/controllers/data/test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/data/test/server.js -------------------------------------------------------------------------------- /app/controllers/home/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/home/client.js -------------------------------------------------------------------------------- /app/controllers/home/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/home/server.js -------------------------------------------------------------------------------- /app/controllers/home/test/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/home/test/client.js -------------------------------------------------------------------------------- /app/controllers/home/test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/home/test/server.js -------------------------------------------------------------------------------- /app/controllers/icons/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/icons/client.js -------------------------------------------------------------------------------- /app/controllers/icons/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/icons/server.js -------------------------------------------------------------------------------- /app/controllers/icons/test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/icons/test/server.js -------------------------------------------------------------------------------- /app/controllers/posts/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/posts/client.js -------------------------------------------------------------------------------- /app/controllers/posts/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/posts/server.js -------------------------------------------------------------------------------- /app/controllers/posts/test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/posts/test/server.js -------------------------------------------------------------------------------- /app/controllers/profiles/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/profiles/client.js -------------------------------------------------------------------------------- /app/controllers/profiles/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/profiles/server.js -------------------------------------------------------------------------------- /app/controllers/profiles/test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/profiles/test/server.js -------------------------------------------------------------------------------- /app/controllers/rss/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/rss/server.js -------------------------------------------------------------------------------- /app/controllers/rss/test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/rss/test/server.js -------------------------------------------------------------------------------- /app/controllers/search/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/search/client.js -------------------------------------------------------------------------------- /app/controllers/search/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/search/server.js -------------------------------------------------------------------------------- /app/controllers/search/test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/controllers/search/test/server.js -------------------------------------------------------------------------------- /app/fakedata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/fakedata.js -------------------------------------------------------------------------------- /app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/main.js -------------------------------------------------------------------------------- /app/models/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/models/action.js -------------------------------------------------------------------------------- /app/models/archived_post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/models/archived_post.js -------------------------------------------------------------------------------- /app/models/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/models/ban.js -------------------------------------------------------------------------------- /app/models/board.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/models/board.js -------------------------------------------------------------------------------- /app/models/board_claim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/models/board_claim.js -------------------------------------------------------------------------------- /app/models/board_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/models/board_config.js -------------------------------------------------------------------------------- /app/models/ip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/models/ip.js -------------------------------------------------------------------------------- /app/models/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/models/link.js -------------------------------------------------------------------------------- /app/models/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/models/model.js -------------------------------------------------------------------------------- /app/models/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/models/post.js -------------------------------------------------------------------------------- /app/models/trophy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/models/trophy.js -------------------------------------------------------------------------------- /app/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/models/user.js -------------------------------------------------------------------------------- /app/server/anon_pocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/server/anon_pocket.js -------------------------------------------------------------------------------- /app/server/anonications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/server/anonications.js -------------------------------------------------------------------------------- /app/server/board_migrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/server/board_migrations.js -------------------------------------------------------------------------------- /app/server/board_names.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/server/board_names.js -------------------------------------------------------------------------------- /app/server/board_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/server/board_utils.js -------------------------------------------------------------------------------- /app/server/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/server/chat.js -------------------------------------------------------------------------------- /app/server/client_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/server/client_api.js -------------------------------------------------------------------------------- /app/server/hidden_boards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/server/hidden_boards.js -------------------------------------------------------------------------------- /app/server/makeme_store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/server/makeme_store.js -------------------------------------------------------------------------------- /app/server/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/server/md5.js -------------------------------------------------------------------------------- /app/server/mod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/server/mod.js -------------------------------------------------------------------------------- /app/server/post_links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/server/post_links.js -------------------------------------------------------------------------------- /app/server/posting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/server/posting.js -------------------------------------------------------------------------------- /app/server/snorkel_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/server/snorkel_api.js -------------------------------------------------------------------------------- /app/server/sponsored_content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/server/sponsored_content.js -------------------------------------------------------------------------------- /app/server/tripcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/server/tripcode.js -------------------------------------------------------------------------------- /app/server/worship_boards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/server/worship_boards.js -------------------------------------------------------------------------------- /app/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/favicon.ico -------------------------------------------------------------------------------- /app/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /app/static/fonts/webhostinghub-glyphs.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/fonts/webhostinghub-glyphs.eot -------------------------------------------------------------------------------- /app/static/fonts/webhostinghub-glyphs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/fonts/webhostinghub-glyphs.svg -------------------------------------------------------------------------------- /app/static/fonts/webhostinghub-glyphs.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/fonts/webhostinghub-glyphs.ttf -------------------------------------------------------------------------------- /app/static/images/atob-logo-404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/images/atob-logo-404.png -------------------------------------------------------------------------------- /app/static/images/atobi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/images/atobi.png -------------------------------------------------------------------------------- /app/static/images/atobn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/images/atobn.png -------------------------------------------------------------------------------- /app/static/images/bootstrap/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/images/bootstrap/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /app/static/images/bootstrap/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/images/bootstrap/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /app/static/images/bootstrap/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/images/bootstrap/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /app/static/images/bootstrap/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/images/bootstrap/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /app/static/images/bootstrap/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/images/bootstrap/glyphicons-halflings.png -------------------------------------------------------------------------------- /app/static/styles/RubberBand.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/styles/RubberBand.css -------------------------------------------------------------------------------- /app/static/styles/archive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/styles/archive.css -------------------------------------------------------------------------------- /app/static/styles/board.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/styles/board.css -------------------------------------------------------------------------------- /app/static/styles/bootstrap/bootstrap-editable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/styles/bootstrap/bootstrap-editable.css -------------------------------------------------------------------------------- /app/static/styles/bootstrap/bootstrap.cosmo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/styles/bootstrap/bootstrap.cosmo.css -------------------------------------------------------------------------------- /app/static/styles/bootstrap/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/styles/bootstrap/bootstrap.css -------------------------------------------------------------------------------- /app/static/styles/bootstrap/bootstrap.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/styles/bootstrap/bootstrap.theme.css -------------------------------------------------------------------------------- /app/static/styles/bootstrap/overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/styles/bootstrap/overrides.css -------------------------------------------------------------------------------- /app/static/styles/bootstrap/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/styles/bootstrap/responsive.css -------------------------------------------------------------------------------- /app/static/styles/box.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/styles/box.css -------------------------------------------------------------------------------- /app/static/styles/chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/styles/chat.css -------------------------------------------------------------------------------- /app/static/styles/definitions.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/styles/definitions.less -------------------------------------------------------------------------------- /app/static/styles/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/styles/home.css -------------------------------------------------------------------------------- /app/static/styles/jquery.fullPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/styles/jquery.fullPage.css -------------------------------------------------------------------------------- /app/static/styles/jquery.sidr.light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/styles/jquery.sidr.light.css -------------------------------------------------------------------------------- /app/static/styles/links.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/styles/links.css -------------------------------------------------------------------------------- /app/static/styles/logo_and_links.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/styles/logo_and_links.css -------------------------------------------------------------------------------- /app/static/styles/post.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/styles/post.css -------------------------------------------------------------------------------- /app/static/styles/profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/styles/profile.css -------------------------------------------------------------------------------- /app/static/styles/scrollers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/styles/scrollers.css -------------------------------------------------------------------------------- /app/static/styles/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/styles/search.css -------------------------------------------------------------------------------- /app/static/styles/searchbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/styles/searchbar.css -------------------------------------------------------------------------------- /app/static/styles/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/styles/settings.css -------------------------------------------------------------------------------- /app/static/styles/sponsored_content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/styles/sponsored_content.css -------------------------------------------------------------------------------- /app/static/styles/whhg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/styles/whhg.css -------------------------------------------------------------------------------- /app/static/templates/controllers/about.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/controllers/about.html.erb -------------------------------------------------------------------------------- /app/static/templates/controllers/archives.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/controllers/archives.html.erb -------------------------------------------------------------------------------- /app/static/templates/controllers/boards/list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/controllers/boards/list.html.erb -------------------------------------------------------------------------------- /app/static/templates/controllers/boards/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/controllers/boards/show.html.erb -------------------------------------------------------------------------------- /app/static/templates/controllers/chat.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/controllers/chat.html.erb -------------------------------------------------------------------------------- /app/static/templates/controllers/data/data.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/controllers/data/data.html.erb -------------------------------------------------------------------------------- /app/static/templates/controllers/home.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/controllers/home.html.erb -------------------------------------------------------------------------------- /app/static/templates/controllers/links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/controllers/links.html.erb -------------------------------------------------------------------------------- /app/static/templates/controllers/mods.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/controllers/mods.html.erb -------------------------------------------------------------------------------- /app/static/templates/controllers/posts/posts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/controllers/posts/posts.html.erb -------------------------------------------------------------------------------- /app/static/templates/controllers/posts/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/controllers/posts/show.html.erb -------------------------------------------------------------------------------- /app/static/templates/controllers/profiles/profiles.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/controllers/profiles/profiles.html.erb -------------------------------------------------------------------------------- /app/static/templates/controllers/recent.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/controllers/recent.html.erb -------------------------------------------------------------------------------- /app/static/templates/controllers/search/search.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/controllers/search/search.html.erb -------------------------------------------------------------------------------- /app/static/templates/partials/boards/shared.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/partials/boards/shared.html.erb -------------------------------------------------------------------------------- /app/static/templates/partials/home/404.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/partials/home/404.html.erb -------------------------------------------------------------------------------- /app/static/templates/partials/home/board_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/partials/home/board_links.html.erb -------------------------------------------------------------------------------- /app/static/templates/partials/home/header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/partials/home/header.html.erb -------------------------------------------------------------------------------- /app/static/templates/partials/home/icons.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/partials/home/icons.html.erb -------------------------------------------------------------------------------- /app/static/templates/partials/home/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/partials/home/index.html.erb -------------------------------------------------------------------------------- /app/static/templates/partials/home/link.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/partials/home/link.html.erb -------------------------------------------------------------------------------- /app/static/templates/partials/home/recent_posts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/partials/home/recent_posts.html.erb -------------------------------------------------------------------------------- /app/static/templates/partials/home/rules.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/partials/home/rules.html.erb -------------------------------------------------------------------------------- /app/static/templates/partials/posts/shared.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/partials/posts/shared.html.erb -------------------------------------------------------------------------------- /app/static/templates/partials/profiles/stats.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/partials/profiles/stats.html.erb -------------------------------------------------------------------------------- /app/static/templates/partials/rss.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/partials/rss.html.erb -------------------------------------------------------------------------------- /app/static/templates/partials/shared/benjamin_buttons.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/partials/shared/benjamin_buttons.html.erb -------------------------------------------------------------------------------- /app/static/templates/partials/shared/chat.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/partials/shared/chat.html.erb -------------------------------------------------------------------------------- /app/static/templates/partials/shared/favorites.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/partials/shared/favorites.html.erb -------------------------------------------------------------------------------- /app/static/templates/partials/shared/loading.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/partials/shared/loading.html.erb -------------------------------------------------------------------------------- /app/static/templates/partials/shared/logo_and_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/partials/shared/logo_and_links.html.erb -------------------------------------------------------------------------------- /app/static/templates/partials/shared/new_post.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/partials/shared/new_post.html.erb -------------------------------------------------------------------------------- /app/static/templates/partials/shared/search.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/partials/shared/search.html.erb -------------------------------------------------------------------------------- /app/static/templates/partials/shared/settings.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/templates/partials/shared/settings.html.erb -------------------------------------------------------------------------------- /app/static/vendor/RubberBand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/RubberBand.js -------------------------------------------------------------------------------- /app/static/vendor/Sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/Sortable.js -------------------------------------------------------------------------------- /app/static/vendor/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/bootstrap.min.js -------------------------------------------------------------------------------- /app/static/vendor/cordova/cordova.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/cordova/cordova.js -------------------------------------------------------------------------------- /app/static/vendor/cordova/cordova_plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/cordova/cordova_plugins.js -------------------------------------------------------------------------------- /app/static/vendor/cordova/plugins/de.appplant.cordova.plugin.background-mode/www/background-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/cordova/plugins/de.appplant.cordova.plugin.background-mode/www/background-mode.js -------------------------------------------------------------------------------- /app/static/vendor/cordova/plugins/de.appplant.cordova.plugin.local-notification/www/local-notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/cordova/plugins/de.appplant.cordova.plugin.local-notification/www/local-notification.js -------------------------------------------------------------------------------- /app/static/vendor/cordova/plugins/org.apache.cordova.device/www/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/cordova/plugins/org.apache.cordova.device/www/device.js -------------------------------------------------------------------------------- /app/static/vendor/cordova/plugins/org.apache.cordova.inappbrowser/www/inappbrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/cordova/plugins/org.apache.cordova.inappbrowser/www/inappbrowser.js -------------------------------------------------------------------------------- /app/static/vendor/fastclick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/fastclick.js -------------------------------------------------------------------------------- /app/static/vendor/hex-rgb.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/hex-rgb.src.js -------------------------------------------------------------------------------- /app/static/vendor/is_mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/is_mobile.js -------------------------------------------------------------------------------- /app/static/vendor/jquery-deparam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/jquery-deparam.js -------------------------------------------------------------------------------- /app/static/vendor/jquery.chroma-hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/jquery.chroma-hash.js -------------------------------------------------------------------------------- /app/static/vendor/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/jquery.cookie.js -------------------------------------------------------------------------------- /app/static/vendor/jquery.deserialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/jquery.deserialize.js -------------------------------------------------------------------------------- /app/static/vendor/jquery.fullPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/jquery.fullPage.js -------------------------------------------------------------------------------- /app/static/vendor/jquery.scrollTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/jquery.scrollTo.js -------------------------------------------------------------------------------- /app/static/vendor/jquery.sidr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/jquery.sidr.js -------------------------------------------------------------------------------- /app/static/vendor/jquery.tagcloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/jquery.tagcloud.js -------------------------------------------------------------------------------- /app/static/vendor/jquery.textcomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/jquery.textcomplete.js -------------------------------------------------------------------------------- /app/static/vendor/jquery.timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/jquery.timeago.js -------------------------------------------------------------------------------- /app/static/vendor/lunicode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/lunicode.js -------------------------------------------------------------------------------- /app/static/vendor/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/marked.js -------------------------------------------------------------------------------- /app/static/vendor/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/md5.js -------------------------------------------------------------------------------- /app/static/vendor/notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/notify.js -------------------------------------------------------------------------------- /app/static/vendor/plotly-latest.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/plotly-latest.min.js -------------------------------------------------------------------------------- /app/static/vendor/strtotime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/strtotime.js -------------------------------------------------------------------------------- /app/static/vendor/useractions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/useractions.js -------------------------------------------------------------------------------- /app/static/vendor/useractions_stub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/useractions_stub.js -------------------------------------------------------------------------------- /app/static/vendor/velocity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/app/static/vendor/velocity.js -------------------------------------------------------------------------------- /components/board_admin_panel/board_admin_panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/board_admin_panel/board_admin_panel.css -------------------------------------------------------------------------------- /components/board_admin_panel/board_admin_panel.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/board_admin_panel/board_admin_panel.html.erb -------------------------------------------------------------------------------- /components/board_admin_panel/board_admin_panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/board_admin_panel/board_admin_panel.js -------------------------------------------------------------------------------- /components/board_admin_panel/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/board_admin_panel/events.js -------------------------------------------------------------------------------- /components/board_admin_panel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/board_admin_panel/package.json -------------------------------------------------------------------------------- /components/board_admin_panel/test/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/board_admin_panel/test/client.js -------------------------------------------------------------------------------- /components/board_admin_panel/test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/board_admin_panel/test/server.js -------------------------------------------------------------------------------- /components/board_claim_panel/board_claim_panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/board_claim_panel/board_claim_panel.css -------------------------------------------------------------------------------- /components/board_claim_panel/board_claim_panel.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/board_claim_panel/board_claim_panel.html.erb -------------------------------------------------------------------------------- /components/board_claim_panel/board_claim_panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/board_claim_panel/board_claim_panel.js -------------------------------------------------------------------------------- /components/board_claim_panel/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/board_claim_panel/events.js -------------------------------------------------------------------------------- /components/board_claim_panel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/board_claim_panel/package.json -------------------------------------------------------------------------------- /components/board_claim_panel/test/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/board_claim_panel/test/client.js -------------------------------------------------------------------------------- /components/board_claim_panel/test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/board_claim_panel/test/server.js -------------------------------------------------------------------------------- /components/button/button.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/button/button.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/button/button.html.erb -------------------------------------------------------------------------------- /components/button/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/button/button.js -------------------------------------------------------------------------------- /components/button/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/button/events.js -------------------------------------------------------------------------------- /components/button/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/button/package.json -------------------------------------------------------------------------------- /components/button/test/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/button/test/client.js -------------------------------------------------------------------------------- /components/button/test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/button/test/server.js -------------------------------------------------------------------------------- /components/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/component.js -------------------------------------------------------------------------------- /components/delete_post_modal/delete_post_modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/delete_post_modal/delete_post_modal.css -------------------------------------------------------------------------------- /components/delete_post_modal/delete_post_modal.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/delete_post_modal/delete_post_modal.html.erb -------------------------------------------------------------------------------- /components/delete_post_modal/delete_post_modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/delete_post_modal/delete_post_modal.js -------------------------------------------------------------------------------- /components/delete_post_modal/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/delete_post_modal/events.js -------------------------------------------------------------------------------- /components/delete_post_modal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/delete_post_modal/package.json -------------------------------------------------------------------------------- /components/markdown_dialog/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/markdown_dialog/events.js -------------------------------------------------------------------------------- /components/markdown_dialog/markdown_dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/markdown_dialog/markdown_dialog.css -------------------------------------------------------------------------------- /components/markdown_dialog/markdown_dialog.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/markdown_dialog/markdown_dialog.html.erb -------------------------------------------------------------------------------- /components/markdown_dialog/markdown_dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/markdown_dialog/markdown_dialog.js -------------------------------------------------------------------------------- /components/markdown_dialog/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/markdown_dialog/package.json -------------------------------------------------------------------------------- /components/markdown_dialog/test/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/markdown_dialog/test/client.js -------------------------------------------------------------------------------- /components/markdown_dialog/test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/markdown_dialog/test/server.js -------------------------------------------------------------------------------- /components/post/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/post/events.js -------------------------------------------------------------------------------- /components/post/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/post/package.json -------------------------------------------------------------------------------- /components/post/post.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/post/post.css -------------------------------------------------------------------------------- /components/post/post.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/post/post.html.erb -------------------------------------------------------------------------------- /components/post/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/post/post.js -------------------------------------------------------------------------------- /components/post/test/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/post/test/client.js -------------------------------------------------------------------------------- /components/post/test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/post/test/server.js -------------------------------------------------------------------------------- /components/stats_dialog/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/stats_dialog/events.js -------------------------------------------------------------------------------- /components/stats_dialog/markdown_dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/stats_dialog/markdown_dialog.css -------------------------------------------------------------------------------- /components/stats_dialog/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/stats_dialog/package.json -------------------------------------------------------------------------------- /components/stats_dialog/stats_dialog.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/stats_dialog/stats_dialog.html.erb -------------------------------------------------------------------------------- /components/stats_dialog/stats_dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/stats_dialog/stats_dialog.js -------------------------------------------------------------------------------- /components/template/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/template/events.js -------------------------------------------------------------------------------- /components/template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/template/package.json -------------------------------------------------------------------------------- /components/template/template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/template/template.css -------------------------------------------------------------------------------- /components/template/template.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/template/template.html.erb -------------------------------------------------------------------------------- /components/template/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/template/template.js -------------------------------------------------------------------------------- /components/template/test/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/template/test/client.js -------------------------------------------------------------------------------- /components/template/test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/template/test/server.js -------------------------------------------------------------------------------- /components/upeye/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/upeye/events.js -------------------------------------------------------------------------------- /components/upeye/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/upeye/package.json -------------------------------------------------------------------------------- /components/upeye/test/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/upeye/test/client.js -------------------------------------------------------------------------------- /components/upeye/test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/upeye/test/server.js -------------------------------------------------------------------------------- /components/upeye/upeye.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/upeye/upeye.css -------------------------------------------------------------------------------- /components/upeye/upeye.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/upeye/upeye.html.erb -------------------------------------------------------------------------------- /components/upeye/upeye.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/components/upeye/upeye.js -------------------------------------------------------------------------------- /config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/config/config.js -------------------------------------------------------------------------------- /config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/config/config.json -------------------------------------------------------------------------------- /config/heroku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/config/heroku.js -------------------------------------------------------------------------------- /config/localhost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/config/localhost.js -------------------------------------------------------------------------------- /config/override.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/config/override.js -------------------------------------------------------------------------------- /config/users.htpasswd: -------------------------------------------------------------------------------- 1 | okay:{SHA}99xtFqyU5l2pI9xBVfRusY0Zy8k= 2 | -------------------------------------------------------------------------------- /migrations/20140318213854-add_votes_to_posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/migrations/20140318213854-add_votes_to_posts.js -------------------------------------------------------------------------------- /migrations/20140318231555-add_bumped_at_to_posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/migrations/20140318231555-add_bumped_at_to_posts.js -------------------------------------------------------------------------------- /migrations/20140320182742-add_bumped_index_to_posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/migrations/20140320182742-add_bumped_index_to_posts.js -------------------------------------------------------------------------------- /migrations/20140320213029-add_bans_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/migrations/20140320213029-add_bans_table.js -------------------------------------------------------------------------------- /migrations/20140320214332-add_ips_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/migrations/20140320214332-add_ips_table.js -------------------------------------------------------------------------------- /migrations/20140410104732-add_archives_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/migrations/20140410104732-add_archives_table.js -------------------------------------------------------------------------------- /migrations/20140520201926-add_links_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/migrations/20140520201926-add_links_table.js -------------------------------------------------------------------------------- /migrations/20150304120553-add_burtles_to_post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/migrations/20150304120553-add_burtles_to_post.js -------------------------------------------------------------------------------- /migrations/20150416212010-add_actions_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/migrations/20150416212010-add_actions_table.js -------------------------------------------------------------------------------- /migrations/20151005130358-add_board_config_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/migrations/20151005130358-add_board_config_table.js -------------------------------------------------------------------------------- /migrations/20151005132417-add_board_claims_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/migrations/20151005132417-add_board_claims_table.js -------------------------------------------------------------------------------- /migrations/20151114192529-add_trophies_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/migrations/20151114192529-add_trophies_table.js -------------------------------------------------------------------------------- /migrations/20151116104703-add_anon_id_to_trophies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/migrations/20151116104703-add_anon_id_to_trophies.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/package.json -------------------------------------------------------------------------------- /routes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/routes.json -------------------------------------------------------------------------------- /scripts/add_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/scripts/add_user.sh -------------------------------------------------------------------------------- /scripts/clean_old_posts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/scripts/clean_old_posts.sh -------------------------------------------------------------------------------- /scripts/create_component.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/scripts/create_component.sh -------------------------------------------------------------------------------- /scripts/create_controller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/scripts/create_controller.sh -------------------------------------------------------------------------------- /scripts/create_partial.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/scripts/create_partial.sh -------------------------------------------------------------------------------- /scripts/create_react_component.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/scripts/create_react_component.sh -------------------------------------------------------------------------------- /scripts/garbage_collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/scripts/garbage_collection.js -------------------------------------------------------------------------------- /scripts/generate_unit_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/scripts/generate_unit_tests.sh -------------------------------------------------------------------------------- /scripts/grab_all_archives.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/scripts/grab_all_archives.sh -------------------------------------------------------------------------------- /scripts/ip_conversion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/scripts/ip_conversion.js -------------------------------------------------------------------------------- /scripts/link_collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/scripts/link_collection.js -------------------------------------------------------------------------------- /scripts/pocket_collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/scripts/pocket_collection.js -------------------------------------------------------------------------------- /scripts/run_client_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/scripts/run_client_tests.sh -------------------------------------------------------------------------------- /scripts/run_component_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/scripts/run_component_tests.sh -------------------------------------------------------------------------------- /scripts/run_controller_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/scripts/run_controller_tests.sh -------------------------------------------------------------------------------- /scripts/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/scripts/run_tests.sh -------------------------------------------------------------------------------- /scripts/run_unit_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/scripts/run_unit_tests.sh -------------------------------------------------------------------------------- /scripts/setup_certificates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atobs/atob/HEAD/scripts/setup_certificates.sh --------------------------------------------------------------------------------