├── .browserslistrc ├── .codeclimate.yml ├── .dockerignore ├── .eslintignore ├── .eslintrc ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── --bug-report.md │ ├── --feature-request.md │ ├── --first-timers-only.md │ ├── --weekly-check-in.md │ └── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── actions │ └── setup-test-environment │ │ └── action.yml ├── config.yml ├── dependabot.yml ├── first-timers-issue-template.md ├── first-timers.yml ├── stale.yml └── workflows │ ├── comment-artifacts.yml │ ├── merge-pr-sentry-release.yml │ ├── rebase.yml │ └── tests.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitpod.dockerfile ├── .gitpod.yml ├── .rubocop.yml ├── .rubocop_shopify_styleguide.yml ├── .rubocop_todo.yml ├── .simplecov ├── .travis.yml ├── .yarnrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dangerfile ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── HACKTOBERFEST.md ├── LICENSE ├── Makefile ├── README.md ├── Rakefile ├── SYSTEM_TESTS.md ├── app ├── api │ └── srch │ │ ├── api.rb │ │ ├── search.rb │ │ └── shared_params.rb ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── logos │ │ │ ├── browserstack.png │ │ │ ├── codeclimate.png │ │ │ ├── codecov.png │ │ │ ├── github.png │ │ │ ├── github_actions.png │ │ │ ├── sentry.png │ │ │ ├── transifex.png │ │ │ └── zenhub.png │ │ └── rails.png │ ├── javascripts │ │ ├── advancedSearch.js │ │ ├── application.js │ │ ├── asyncTagSubscriptions.js │ │ ├── atWhoAutoComplete.js │ │ ├── cable.js │ │ ├── channels │ │ │ ├── room.js │ │ │ ├── user.js │ │ │ └── user_notification.js │ │ ├── comment.js │ │ ├── commentExpand.js │ │ ├── dashboard.js │ │ ├── editor.js │ │ ├── editorToolbar.js │ │ ├── graph.js │ │ ├── grids.js │ │ ├── headerFooter.js │ │ ├── ics.deps.min.js │ │ ├── ics.min.js │ │ ├── jsdiff.js │ │ ├── keybindings.js │ │ ├── leafletHelper.js │ │ ├── like.js │ │ ├── locationForm.js │ │ ├── mainImage.js │ │ ├── methods.js │ │ ├── notes.js │ │ ├── notyNotification.js │ │ ├── post.js │ │ ├── question.js │ │ ├── restfulTypeahead.js │ │ ├── searchform.js │ │ ├── setup.js │ │ ├── sidebar.js │ │ ├── simple-data-grapher.js │ │ ├── spam2.js │ │ ├── submitFormAjax.js │ │ ├── tagging.js │ │ ├── textBoxExpand.js │ │ ├── timeago.js │ │ ├── translation.js │ │ ├── urlMapHash.js │ │ ├── users.js │ │ ├── validation.js │ │ └── wikis.js │ └── stylesheets │ │ ├── I18n.css │ │ ├── application.css │ │ ├── blog.css │ │ ├── btsp_checkbox_override.scss │ │ ├── comments.css │ │ ├── cross_browser.css │ │ ├── dashboard.css │ │ ├── editor.css │ │ ├── fancy.css │ │ ├── feature.css │ │ ├── location.css │ │ ├── location_tags.scss │ │ ├── login_modal.scss │ │ ├── map.css │ │ ├── notes.css │ │ ├── print.css │ │ ├── print_new.css │ │ ├── profile.css │ │ ├── question.css │ │ ├── search.css │ │ ├── show_follow.css │ │ ├── spam2.css │ │ ├── style.css │ │ ├── tags.css │ │ ├── user_tags.scss │ │ └── wiki.css ├── channels │ ├── application_cable │ │ ├── channel.rb │ │ └── connection.rb │ ├── room_channel.rb │ ├── user_channel.rb │ └── user_notification_channel.rb ├── controllers │ ├── admin_controller.rb │ ├── application_controller.rb │ ├── batch_controller.rb │ ├── comment_controller.rb │ ├── csvfiles_controller.rb │ ├── editor_controller.rb │ ├── features_controller.rb │ ├── home_controller.rb │ ├── images_controller.rb │ ├── legacy_controller.rb │ ├── like_controller.rb │ ├── map_controller.rb │ ├── notes_controller.rb │ ├── openid_controller.rb │ ├── questions_controller.rb │ ├── relationships_controller.rb │ ├── search_controller.rb │ ├── settings_controller.rb │ ├── spam2_controller.rb │ ├── stats_controller.rb │ ├── subscription_controller.rb │ ├── tag_controller.rb │ ├── talk_controller.rb │ ├── user_sessions_controller.rb │ ├── user_tags_controller.rb │ ├── users_controller.rb │ └── wiki_controller.rb ├── helpers │ ├── admin_helper.rb │ ├── application_helper.rb │ ├── comment_helper.rb │ ├── csvfiles_helper.rb │ ├── features_helper.rb │ ├── home_helper.rb │ ├── map_helper.rb │ ├── notes_helper.rb │ ├── openid_helper.rb │ ├── redirect_helper.rb │ ├── search_helper.rb │ ├── spam2_helper.rb │ ├── tag_helper.rb │ ├── user_tags_helper.rb │ ├── users_helper.rb │ └── wiki_helper.rb ├── javascript │ ├── components │ │ ├── .keep │ │ ├── App.js │ │ ├── Comment.js │ │ ├── CommentDisplay.js │ │ ├── CommentForm.js │ │ ├── CommentHeader.js │ │ ├── CommentReplies.js │ │ ├── CommentToolbar.js │ │ ├── CommentToolbarButton.js │ │ ├── CommentsContainer.js │ │ ├── CommentsHeader.js │ │ ├── CommentsList.js │ │ ├── REACT_COMMENTS.md │ │ ├── helpers.js │ │ ├── reducers.js │ │ ├── static-props-context.js │ │ └── user-context.js │ └── packs │ │ ├── application.js │ │ ├── hello_react.jsx │ │ └── server_rendering.js ├── jobs │ ├── digest_mail_job.rb │ └── digest_spam_job.rb ├── mailers │ ├── .gitkeep │ ├── admin_mailer.rb │ ├── comment_mailer.rb │ ├── node_mailer.rb │ ├── password_reset_mailer.rb │ ├── subscription_mailer.rb │ └── welcome_mailer.rb ├── models │ ├── application_record.rb │ ├── comment.rb │ ├── concerns │ │ ├── comments_shared.rb │ │ ├── node_shared.rb │ │ ├── raw_stats.rb │ │ └── statistics.rb │ ├── csvfile.rb │ ├── doc_list.rb │ ├── doc_result.rb │ ├── drupal_file.rb │ ├── drupal_main_image.rb │ ├── drupal_upload.rb │ ├── image.rb │ ├── like.rb │ ├── node.rb │ ├── node_selection.rb │ ├── node_tag.rb │ ├── relationship.rb │ ├── revision.rb │ ├── search_request.rb │ ├── spamaway.rb │ ├── tableless.rb │ ├── tag.rb │ ├── tag_selection.rb │ ├── user.rb │ ├── user_selection.rb │ ├── user_session.rb │ └── user_tag.rb ├── services │ ├── execute_search.rb │ ├── search_criteria.rb │ └── search_service.rb └── views │ ├── admin │ ├── _comments.html.erb │ ├── _nodes.html.erb │ ├── _revisions.html.erb │ ├── assets.html.erb │ ├── spam.html.erb │ ├── useremail.html.erb │ └── users.html.erb │ ├── admin_mailer │ ├── notify_author_of_approval.html.erb │ ├── notify_author_of_comment_approval.html.erb │ ├── notify_comment_moderators.html.erb │ ├── notify_moderators_of_approval.html.erb │ ├── notify_moderators_of_comment_approval.html.erb │ ├── notify_moderators_of_comment_spam.html.erb │ ├── notify_moderators_of_spam.html.erb │ ├── notify_node_moderators.html.erb │ └── send_digest_spam.html.erb │ ├── answers │ ├── accept.js.erb │ ├── create.js.erb │ └── delete.js.erb │ ├── comment_mailer │ ├── notify.html.erb │ ├── notify_barnstar.html.erb │ ├── notify_callout.html.erb │ ├── notify_coauthor.html.erb │ ├── notify_note_author.html.erb │ └── notify_tag_followers.html.erb │ ├── comments │ ├── _comments.html.erb │ ├── _form.html.erb │ ├── create.html.erb │ ├── create.js.erb │ ├── delete.js.erb │ ├── index.html.erb │ └── like_comment.js.erb │ ├── csvfiles │ ├── new.html.erb │ └── user_files.html.erb │ ├── dashboard │ ├── _activity.html.erb │ ├── _comment_moderate.html.erb │ ├── _flag_list.html.erb │ ├── _header.html.erb │ ├── _node_comment.html.erb │ ├── _node_default.html.erb │ ├── _node_event.html.erb │ ├── _node_meta.html.erb │ ├── _node_moderate.html.erb │ ├── _node_question.html.erb │ ├── _node_wiki.html.erb │ ├── _question_node_meta.html.erb │ ├── _wiki.html.erb │ └── dashboard.html.erb │ ├── dashboard_v2 │ ├── _alerts.html.erb │ ├── _blog.html.erb │ ├── _header.html.erb │ ├── _location.html.erb │ ├── _sidebar.html.erb │ ├── _topicCard.html.erb │ └── dashboard.html.erb │ ├── editor │ ├── _editor.html.erb │ ├── _event.html.erb │ ├── _images.html.erb │ ├── _main_image.html.erb │ ├── _newsletter.html.erb │ ├── _tag_input.html.erb │ ├── _toolbar.html.erb │ ├── choose.html.erb │ ├── post.html.erb │ ├── question.html.erb │ ├── questionRich.html.erb │ ├── rich.html.erb │ └── wikiRich.html.erb │ ├── features │ ├── _form.html.erb │ ├── edit.html.erb │ ├── embed.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── grids │ ├── _embedButton.html.erb │ ├── _graph.html.erb │ ├── _nodes.html.erb │ ├── _notes.html.erb │ ├── _people.html.erb │ ├── _simple-data-grapher.html.erb │ ├── _thumbnail.html.erb │ └── _wikis.html.erb │ ├── home │ ├── _social.html.erb │ ├── home.html.erb │ ├── nearby.html.erb │ └── subscriptions.html.erb │ ├── images │ └── new.html.erb │ ├── layouts │ ├── _alerts.html.erb │ ├── _errorMessages.html.erb │ ├── _footer.html.erb │ ├── _header.html.erb │ ├── _signupLoginModal.html.erb │ ├── _social_icons.html.erb │ ├── application.html.erb │ └── print.html.erb │ ├── like │ ├── _like.html.erb │ └── index.html.erb │ ├── locations │ ├── _form.html.erb │ └── _modal.html.erb │ ├── map │ ├── _inlineLeaflet.html.erb │ ├── _leaflet.html.erb │ ├── _mapDependencies.html.erb │ ├── _maps.html.erb │ ├── _peopleLeaflet.html.erb │ ├── _plainInlineLeaflet.html.erb │ ├── index.html.erb │ └── map.html.erb │ ├── node_mailer │ └── notify_callout.html.erb │ ├── notes │ ├── _card.html.erb │ ├── _coauthored_notes.html.erb │ ├── _comment.html.erb │ ├── _comments.html.erb │ ├── _draft_notes.html.erb │ ├── _format_toggle.html.erb │ ├── _history.html.erb │ ├── _nav_links.html.erb │ ├── _nav_tabs.html.erb │ ├── _notes.html.erb │ ├── _responses.html.erb │ ├── _sidebar.html.erb │ ├── _title_suggestion.html.erb │ ├── drafts.html.erb │ ├── index.html.erb │ ├── print.html.erb │ ├── rss.rss.builder │ ├── show.html.erb │ └── tools_places.html.erb │ ├── openid │ └── decide.html.erb │ ├── password_reset_mailer │ └── reset_notify.text.erb │ ├── questions │ ├── _form.html.erb │ ├── _new_question.html.erb │ ├── _questions.html.erb │ ├── _questions_shadow.html.erb │ ├── _recent_questions_shadow.html.erb │ ├── index.html.erb │ ├── index_shadow.html.erb │ └── show.html.erb │ ├── relationships │ ├── create.js.erb │ └── destroy.js.erb │ ├── search │ ├── _form.html.erb │ ├── _nav.html.erb │ ├── _pinned.html.erb │ ├── _profiles_blank.html.erb │ ├── _questions_blank.html.erb │ ├── _tags_blank.html.erb │ ├── _wikis_blank.html.erb │ ├── all_content.html.erb │ ├── google.html.erb │ ├── new.html.erb │ ├── notes.html.erb │ ├── places.html.erb │ ├── profiles.html.erb │ ├── questions.html.erb │ ├── tags.html.erb │ └── wikis.html.erb │ ├── sidebar │ ├── _author.html.erb │ ├── _dashboard.html.erb │ ├── _events.html.erb │ ├── _list.html.erb │ ├── _map.html.erb │ ├── _none.html.erb │ ├── _notes.html.erb │ ├── _post_button.html.erb │ ├── _question.html.erb │ ├── _related.html.erb │ ├── _user.html.erb │ └── _wikis.html.erb │ ├── spam2 │ ├── _comments.html.erb │ ├── _flags.html.erb │ ├── _insights.html.erb │ ├── _nodes.html.erb │ ├── _queue.html.erb │ ├── _revisions.html.erb │ ├── _spam.html.erb │ └── _users.html.erb │ ├── stats │ ├── _barchart.html.erb │ ├── _range.html.erb │ ├── index.html.erb │ └── subscriptions.html.erb │ ├── subscription_mailer │ ├── notify_node_creation.html.erb │ ├── notify_note_liked.text.erb │ ├── notify_tag_added.html.erb │ └── send_digest.html.erb │ ├── subscriptions │ ├── _digest.html.erb │ └── digest.html.erb │ ├── tag │ ├── _advanced_tagging.html.erb │ ├── _contributors.html.erb │ ├── _dropdown_subscribe.html.erb │ ├── _form.html.erb │ ├── _graph.html.erb │ ├── _location.html.erb │ ├── _miniCard.html.erb │ ├── _profileCard.html.erb │ ├── _related.html.erb │ ├── _replication.html.erb │ ├── _sorting.html.erb │ ├── _subscribe_button.html.erb │ ├── _tagging.html.erb │ ├── _tags.html.erb │ ├── _tags_popover.html.erb │ ├── _topicCard.html.erb │ ├── _typeahead_search.html.erb │ ├── blog.html.erb │ ├── blog2.html.erb │ ├── graph.html.erb │ ├── gridsEmbed.html.erb │ ├── icalendar.ics.erb │ ├── index.html.erb │ ├── rss.rss.builder │ ├── rss_for_tagged_with_author.rss.builder │ ├── show.html.erb │ ├── show │ │ ├── _contributors.html.erb │ │ ├── _nav_tabs.html.erb │ │ ├── _sort.html.erb │ │ ├── _tab_content.html.erb │ │ └── _user_controls.html.erb │ ├── stats.html.erb │ ├── topic_tree.html.erb │ └── widget.html.erb │ ├── talk │ └── show.html.erb │ ├── user_sessions │ ├── _form.html.erb │ └── new.html.erb │ ├── user_tags │ ├── _tags.html.erb │ └── index.html.erb │ ├── users │ ├── _answered.html.erb │ ├── _create_form.html.erb │ ├── _edit_form.html.erb │ ├── _follow.html.erb │ ├── _likes.html.erb │ ├── _photo.html.erb │ ├── _spamaway.html.erb │ ├── _unfollow.html.erb │ ├── edit.html.erb │ ├── likes.html.erb │ ├── list.html.erb │ ├── map.html.erb │ ├── new.html.erb │ ├── profile.html.erb │ ├── reset.html.erb │ ├── rss.rss.builder │ ├── settings.html.erb │ └── show_follow.html.erb │ ├── welcome_mailer │ ├── add_to_list.text.erb │ └── notify_newcomer.html.erb │ └── wiki │ ├── _diff.html.erb │ ├── _header.html.erb │ ├── _wikis.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── methods.html.erb │ ├── print.html.erb │ ├── revisions.html.erb │ └── show.html.erb ├── babel.config.js ├── bin ├── bundle ├── rails ├── rake ├── setup ├── webpack └── webpack-dev-server ├── codecov.yml ├── config.ru ├── config ├── application.rb ├── application.yml ├── boot.rb ├── cable.yml ├── critical_path_css.yml ├── database.yml.cloud9 ├── database.yml.example ├── database.yml.gitpod ├── database.yml.mysql.example ├── database.yml.sqlite.example ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ ├── staging.rb │ ├── staging_unstable.rb │ └── test.rb ├── i18n-js.yml ├── initializers │ ├── I18n.rb │ ├── abstract_mysql2_adapter.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── constants.rb │ ├── filter_parameter_logging.rb │ ├── grape_swagger_rails.rb │ ├── impression.rb │ ├── inflections.rb │ ├── jasmine_fixtures.rb │ ├── lazyload.rb │ ├── load_links.rb │ ├── mime_types.rb │ ├── omniauth.rb │ ├── openid.rb │ ├── pagy.rb │ ├── paperclip.rb │ ├── rack.rb │ ├── recaptcha.rb │ ├── sentry.rb │ ├── session_store.rb │ ├── sidekiq.rb │ ├── strong_parameters.rb │ ├── swagger.rb │ ├── twitter_client.rb │ ├── will_paginate_array.rb │ └── wrap_parameters.rb ├── links.yml ├── locales │ ├── ar.yml │ ├── cz.yml │ ├── de.yml │ ├── en.yml │ ├── es.yml │ ├── fr.yml │ ├── gr.yml │ ├── hi-IN.yml │ ├── it.yml │ ├── ko.yml │ ├── pt-BR.yml │ ├── ru.yml │ └── zh-CN.yml ├── localhost.crt ├── localhost.key ├── my.cnf ├── routes.rb ├── schedule.rb ├── secrets.yml ├── sidekiq.yml ├── skylight.yml ├── webpack │ ├── development.js │ ├── environment.js │ ├── production.js │ └── test.js └── webpacker.yml ├── containers ├── docker-compose-production.yml ├── docker-compose-stable.yml ├── docker-compose-testing.yml └── docker-compose-unstable.yml ├── db ├── migrate │ ├── 20120101000000_drupal_schema.rb │ ├── 20121022172429_node.rb.unused │ ├── 20130114213934_add_profile_tags.rb │ ├── 20130309113839_create_rusers.rb │ ├── 20130309222607_add_openid_identifier_to_users.rb │ ├── 20130310164305_add_sessions_table.rb │ ├── 20130327222827_create_images.rb │ ├── 20130402232059_create_like_and_follow.rb │ ├── 20130408183908_rename_like_and_follow.rb │ ├── 20130424190648_sync_ruser_id_drupal_users_uid.rb │ ├── 20130710183418_add_roles.rb │ ├── 20130715011322_add_reset_key.rb │ ├── 20140122221554_add_map_authorship.rb │ ├── 20140416153948_remove_unused_tables_and_add_used_ones.rb │ ├── 20140426213041_taggify_map_coords.rb │ ├── 20140429190219_consolidate_tags.rb │ ├── 20140501174856_add_comments_count_to_drupal_node.rb │ ├── 20140501175753_add_revision_count_to_drupal_node.rb │ ├── 20140507095348_add_path_to_drupal_node.rb │ ├── 20140702023905_add_image_remote_url.rb │ ├── 20140707121818_profile_photos.rb │ ├── 20141115214749_add_tag_count.rb │ ├── 20150509172244_add_index_profile_values.rb │ ├── 20160319213901_drop_content_field_bbox.rb │ ├── 20160324091528_add_image_vid.rb │ ├── 20160403220245_remove_constraints_for_sqlite.rb │ ├── 20160407212834_add_revision_status.rb │ ├── 20160408110136_add_main_image_id_to_node.rb │ ├── 20160527131458_create_user_tags.rb │ ├── 20160604065423_create_answers.rb │ ├── 20160604065635_create_answer_selections.rb │ ├── 20160605140228_create_searches.rb │ ├── 20160607094003_create_location_tags.rb │ ├── 20160614062821_add_searchfields_to_searches.rb │ ├── 20160615141943_add_location_tag_columns.rb │ ├── 20160616035549_add_aid_to_comments.rb │ ├── 20160620041907_add_language_to_search.rb │ ├── 20160620051613_add_date_rage_to_searches.rb │ ├── 20160620084118_alter_min_date_in_searches.rb │ ├── 20160621221429_add_column_location_privacy_to_users.rb │ ├── 20160629044639_add_accepted_field_to_answers.rb │ ├── 20160715024414_rename_long_column_in_users.rb │ ├── 20160720235923_add_username_index.rb │ ├── 20160722022014_create_relationships.rb │ ├── 20160809215133_add_slug_to_nodes.rb │ ├── 20160809215356_create_friendly_id_slugs.rb │ ├── 20160816094642_seed_slugs_column.rb │ ├── 20160818201147_change_content_column_type_in_answers.rb │ ├── 20161009024807_tag_parent.rb │ ├── 20161122154603_remove_friendly_id_indices.rb │ ├── 20161129210111_change_comments.rb │ ├── 20161230142222_create_impressions_table.rb │ ├── 20170111153001_node_pageviews.rb │ ├── 20170120160451_drop_drupal_counter.rb │ ├── 20170208174046_add_index_term_data_name.rb │ ├── 20170704165711_add_user_bio_and_token.rb │ ├── 20170726174757_recover_bios_tokens_statuses.rb │ ├── 20170824172336_add_rusers_indices.rb │ ├── 20171013161520_indices.rb │ ├── 20171110161510_add_index_token.rb │ ├── 20180103212804_revision_fulltext_index.rb │ ├── 20180119204200_sync_answered_question.rb │ ├── 20180128162224_sync_user_status_with_drupal_user_status.rb │ ├── 20180220180926_add_default_value_to_comment_status.rb │ ├── 20180309180053_impression_index.rb │ ├── 20180406080905_create_likes.rb │ ├── 20180525220718_remove_node_selections_of_deleted_nodes.rb │ ├── 20180605000000_add_comment_via_column_to_comment.rb │ ├── 20180605010014_add_message_id_column_to_comments.rb │ ├── 20180618184048_add_emoji_type_to_like.rb │ ├── 20180705203310_convert_nil_emoji_type_likes_to_thumbs_up.rb │ ├── 20180707065151_change_status_of_comments.rb │ ├── 20180719165651_add_password_checker_to_users.rb │ ├── 20180721102347_add_data_column_to_user_tag.rb │ ├── 20180801144533_add_password_checker_to_rusers_and_remove_password_checker_from_users.rb │ ├── 20180802114514_change_default_in_node_selection.rb │ ├── 20180804042601_add_full_text_index_on_username.rb │ ├── 20180804215454_change_following_column_to_true_existing_rows.rb │ ├── 20180809125000_add_tweet_column_to_comment.rb │ ├── 20180921210045_add_impressions_ip_index.rb │ ├── 20181111164402_add_is_verified_to_rusers.rb │ ├── 20181129100000_drop_drupal_profile_value_and_field.rb │ ├── 20181219043340_add_fields_to_node.rb │ ├── 20190104000000_remove_drupal_users.rb │ ├── 20190104173959_add_index_to_images_and_likes.rb │ ├── 20190105183720_add_col_to_comments.rb │ ├── 20190301075323_add_first_tag_poster.rb │ ├── 20190303180731_migrate_answers_to_comments.rb │ ├── 20190401093400_update_node_view_count.rb │ ├── 20190418230000_remove_node_legacy_views.rb │ ├── 20190608135458_add_timestamps_to_tagselection.rb │ ├── 20190613193708_add_timestamp_to_community_tags.rb │ ├── 20190708141605_create_csvfiles.rb │ ├── 20190708141804_add_csvfile_to_rusers.rb │ ├── 20190728135035_add_graphobject_to_csvfiles.rb │ ├── 20190822192847_change_column_types_to_text_csvfiles.rb │ ├── 20200705143706_add_flag_to_node.rb │ ├── 20200705161259_add_flag_to_comments.rb │ ├── 20210208151828_add_activity_timestamp_to_tag.rb │ ├── 20210210155509_add_latest_activity_nid_to_tag.rb │ ├── 20220625142729_convert_map_to_note_nodes.rb │ ├── 20220726161355_drop_answers.rb │ ├── 20220828142008_remove_drupal_gallery_from_node.rb │ └── 20220904050613_delete_drupal_content_field_image_gallery.rb ├── schema-drupal.rb ├── schema.rb.example └── seeds.rb ├── doc ├── API.md ├── CHECKINS.md ├── CODECLIMATE.md ├── CONTAINERS.md ├── DATA_MODEL.md ├── EMAIL.md ├── LABELS.md ├── LINTING.md ├── LOGIN_SYSTEMS.md ├── MAINTAINERS.md ├── OPENID.md ├── PREREQUISITES.md ├── RECAPTCHA.md ├── SUPPORTERS.md ├── TESTING.md ├── Translation_System.md ├── data-model.svg ├── images │ ├── code_climate.png │ ├── code_climate_1.png │ ├── codeclimate_read_up.png │ └── cognitive_complexity_example.png └── reply_by_tweet.md ├── lib ├── admin_constraint.rb ├── assets │ └── .gitkeep ├── related_and_hyphenated_terms.dict.txt ├── tasks │ ├── .gitkeep │ └── critical_path_css.rake ├── text_search.rb └── utils.rb ├── nodesource.gpg.key ├── package.json ├── postcss.config.js ├── public ├── 404.html ├── 422.html ├── 500.html ├── 502.html ├── 503.html ├── bookmarklet.js ├── cron_log.log ├── emoji.js ├── favicon.ico ├── favicon.ico.bkp ├── favicon.ico.nostripes ├── images │ ├── cc-by-sa-88x31.png │ ├── pl-255.png │ └── pl.png ├── logo.png ├── photos │ └── original │ │ └── missing.png ├── research-notify.js ├── robots.txt ├── sw.js └── system │ └── PLACEHOLDER ├── script ├── mailman_server └── rails ├── spec ├── javascripts │ ├── comment_spec.js │ ├── fixtures │ │ ├── comment_expand.html │ │ ├── content.html │ │ ├── index.html │ │ ├── inline_grid.html │ │ ├── tagging.html │ │ └── unlike.html │ ├── helpers │ │ └── mock-ajax.js │ ├── inline_grids_spec.js │ ├── like_spec.js │ ├── spec_helper.js │ ├── support │ │ └── jasmine.yml │ ├── tagging_spec.js │ └── wikis_spec.js └── teaspoon_env.rb ├── start.sh ├── static ├── images │ ├── cc-by-sa.png │ ├── item1.jpg │ ├── item2.jpg │ └── search.png ├── index.html └── style.css ├── test ├── action_cable │ ├── cable_test.rb │ ├── integration │ │ └── comment_notification_test.rb │ └── unit │ │ ├── connection_test.rb │ │ ├── room_channel_test.rb │ │ ├── user_channel_test.rb │ │ └── user_notification_channel_test.rb ├── application_system_test_case.rb ├── channels │ └── room_channel_test.rb ├── comment_system_tests │ └── comment_test.rb ├── fixtures │ ├── answer_selections.yml │ ├── comments.yml │ ├── csvfiles.yml │ ├── images.yml │ ├── incoming_test_emails │ │ ├── gmail │ │ │ ├── autoreply_incoming_gmail_email.eml │ │ │ ├── filtered_comment.txt │ │ │ ├── final_parsed_comment.txt │ │ │ ├── incoming_gmail_email.eml │ │ │ ├── incoming_gmail_email.html │ │ │ ├── readme.md │ │ │ └── trimmed_content.txt │ │ ├── outlook │ │ │ ├── autoreply_incoming_outlook_email.eml │ │ │ ├── final_parsed_comment.txt │ │ │ ├── incoming_outlook_email.eml │ │ │ ├── incoming_outlook_email.html │ │ │ └── readme.md │ │ └── yahoo │ │ │ ├── autoreply_incoming_outlook_email.eml │ │ │ ├── final_parsed_comment.txt │ │ │ ├── incoming_yahoo_email.eml │ │ │ ├── incoming_yahoo_mail.html │ │ │ └── readme.md │ ├── likes.yml │ ├── node_selections.yml │ ├── node_tags.yml │ ├── nodes.yml │ ├── rails.png │ ├── relationships.yml │ ├── revisions.yml │ ├── small.gif │ ├── tag_selections.yml │ ├── tags.yml │ ├── user_tags.yml │ └── users.yml ├── functional │ ├── admin_controller_test.rb │ ├── api │ │ ├── search_api_full_text_test.rb │ │ └── search_api_test.rb │ ├── application_controller_test.rb │ ├── batch_controller_test.rb │ ├── comment_controller_test.rb │ ├── comment_mailer_test.rb │ ├── csvfiles_controller_test.rb │ ├── editor_controller_test.rb │ ├── features_controller_test.rb │ ├── home_controller_test.rb │ ├── images_controller_test.rb │ ├── legacy_controller_test.rb │ ├── like_controller_test.rb │ ├── map_controller_test.rb │ ├── notes_controller_test.rb │ ├── questions_controller_test.rb │ ├── relationships_controller_test.rb │ ├── search_controller_test.rb │ ├── spam2_controller_test.rb │ ├── stats_controller_test.rb │ ├── subscription_controller_test.rb │ ├── swagger_doc_test.rb │ ├── tag_controller_test.rb │ ├── talk_controller_test.rb │ ├── user_sessions_controller_test.rb │ ├── user_tags_controller_test.rb │ ├── users_controller_test.rb │ └── wiki_controller_test.rb ├── integration │ ├── I18n_test.rb │ ├── incoming_mail_parsing_test │ │ ├── gmail_parsing_test.rb │ │ ├── outlook_parsing_test.rb │ │ └── yahoo_parsing_test.rb │ ├── login_flow_test.rb │ ├── moderate_and_ban_test.rb │ ├── node_insert_extras_test.rb │ ├── node_series_tag_test.rb │ ├── node_unique_views_test.rb │ ├── node_update_test.rb │ ├── openid_test.rb │ ├── public_pages_test.rb │ ├── revision_spam_test.rb │ ├── routes_test.rb │ ├── signup_flow_test.rb │ ├── token_comment_test.rb │ └── wiki_creation_test.rb ├── mailers │ └── previews │ │ └── subscription_mailer_preview.rb ├── system │ ├── csvfiles_controllers_test.rb │ ├── dashboard_test.rb │ ├── dashboard_v2_test.rb │ ├── editor_test.rb │ ├── map_test.rb │ ├── moderation_tests.rb │ ├── notes_test.rb │ ├── place_tags_test.rb │ ├── post_question_test.rb │ ├── post_test.rb │ ├── print_test.rb │ ├── rich_text_editor_test.rb │ ├── screenshots_test.rb │ ├── search_test.rb │ ├── sessions_test.rb │ ├── settings_test.rb │ ├── signup_form_test.rb │ ├── signup_spamaway_test.rb │ ├── spam2_test.rb │ ├── tag_test.rb │ └── tags_controller_test.rb ├── test_helper.rb └── unit │ ├── admin_mailer_test.rb │ ├── api │ ├── search_service_full_text_search_test.rb │ └── search_service_test.rb │ ├── comment_mailer_test.rb │ ├── comment_test.rb │ ├── constants_test.rb │ ├── doc_result_test.rb │ ├── helpers │ ├── admin_helper_test.rb │ ├── application_helper_test.rb │ ├── features_helper_test.rb │ ├── home_helper_test.rb │ ├── location_tags_helper_test.rb │ ├── map_helper_test.rb │ ├── notes_helper_test.rb │ ├── tag_helper_test.rb │ ├── user_helper_test.rb │ ├── user_tags_helper_test.rb │ └── wiki_helper_test.rb │ ├── image_test.rb │ ├── node_coordinates_test.rb │ ├── node_shared_test.rb │ ├── node_tag_test.rb │ ├── node_test.rb │ ├── relationship_test.rb │ ├── revision_test.rb │ ├── statistics_test.rb │ ├── subscription_location_test.rb │ ├── subscription_mailer_test.rb │ ├── tag_selection_test.rb │ ├── tag_test.rb │ ├── user_tag_test.rb │ ├── user_test.rb │ ├── utils_test.rb │ └── welcome_mailer_test.rb ├── vendor └── assets │ ├── javascripts │ └── .gitkeep │ └── stylesheets │ └── .gitkeep └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.dockerignore -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | **/*{.,-}min.js 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.github/ISSUE_TEMPLATE/--bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.github/ISSUE_TEMPLATE/--feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--first-timers-only.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.github/ISSUE_TEMPLATE/--first-timers-only.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/--weekly-check-in.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.github/ISSUE_TEMPLATE/--weekly-check-in.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.github/ISSUE_TEMPLATE/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/setup-test-environment/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.github/actions/setup-test-environment/action.yml -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/first-timers-issue-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.github/first-timers-issue-template.md -------------------------------------------------------------------------------- /.github/first-timers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.github/first-timers.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/comment-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.github/workflows/comment-artifacts.yml -------------------------------------------------------------------------------- /.github/workflows/merge-pr-sentry-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.github/workflows/merge-pr-sentry-release.yml -------------------------------------------------------------------------------- /.github/workflows/rebase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.github/workflows/rebase.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitpod.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.gitpod.dockerfile -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_shopify_styleguide.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.rubocop_shopify_styleguide.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.simplecov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.simplecov -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/.yarnrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dangerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/Dangerfile -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /HACKTOBERFEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/HACKTOBERFEST.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/Rakefile -------------------------------------------------------------------------------- /SYSTEM_TESTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/SYSTEM_TESTS.md -------------------------------------------------------------------------------- /app/api/srch/api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/api/srch/api.rb -------------------------------------------------------------------------------- /app/api/srch/search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/api/srch/search.rb -------------------------------------------------------------------------------- /app/api/srch/shared_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/api/srch/shared_params.rb -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/logos/browserstack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/images/logos/browserstack.png -------------------------------------------------------------------------------- /app/assets/images/logos/codeclimate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/images/logos/codeclimate.png -------------------------------------------------------------------------------- /app/assets/images/logos/codecov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/images/logos/codecov.png -------------------------------------------------------------------------------- /app/assets/images/logos/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/images/logos/github.png -------------------------------------------------------------------------------- /app/assets/images/logos/github_actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/images/logos/github_actions.png -------------------------------------------------------------------------------- /app/assets/images/logos/sentry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/images/logos/sentry.png -------------------------------------------------------------------------------- /app/assets/images/logos/transifex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/images/logos/transifex.png -------------------------------------------------------------------------------- /app/assets/images/logos/zenhub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/images/logos/zenhub.png -------------------------------------------------------------------------------- /app/assets/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/images/rails.png -------------------------------------------------------------------------------- /app/assets/javascripts/advancedSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/advancedSearch.js -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/asyncTagSubscriptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/asyncTagSubscriptions.js -------------------------------------------------------------------------------- /app/assets/javascripts/atWhoAutoComplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/atWhoAutoComplete.js -------------------------------------------------------------------------------- /app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /app/assets/javascripts/channels/room.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/channels/room.js -------------------------------------------------------------------------------- /app/assets/javascripts/channels/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/channels/user.js -------------------------------------------------------------------------------- /app/assets/javascripts/channels/user_notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/channels/user_notification.js -------------------------------------------------------------------------------- /app/assets/javascripts/comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/comment.js -------------------------------------------------------------------------------- /app/assets/javascripts/commentExpand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/commentExpand.js -------------------------------------------------------------------------------- /app/assets/javascripts/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/dashboard.js -------------------------------------------------------------------------------- /app/assets/javascripts/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/editor.js -------------------------------------------------------------------------------- /app/assets/javascripts/editorToolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/editorToolbar.js -------------------------------------------------------------------------------- /app/assets/javascripts/graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/graph.js -------------------------------------------------------------------------------- /app/assets/javascripts/grids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/grids.js -------------------------------------------------------------------------------- /app/assets/javascripts/headerFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/headerFooter.js -------------------------------------------------------------------------------- /app/assets/javascripts/ics.deps.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/ics.deps.min.js -------------------------------------------------------------------------------- /app/assets/javascripts/ics.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/ics.min.js -------------------------------------------------------------------------------- /app/assets/javascripts/jsdiff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/jsdiff.js -------------------------------------------------------------------------------- /app/assets/javascripts/keybindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/keybindings.js -------------------------------------------------------------------------------- /app/assets/javascripts/leafletHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/leafletHelper.js -------------------------------------------------------------------------------- /app/assets/javascripts/like.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/like.js -------------------------------------------------------------------------------- /app/assets/javascripts/locationForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/locationForm.js -------------------------------------------------------------------------------- /app/assets/javascripts/mainImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/mainImage.js -------------------------------------------------------------------------------- /app/assets/javascripts/methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/methods.js -------------------------------------------------------------------------------- /app/assets/javascripts/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/notes.js -------------------------------------------------------------------------------- /app/assets/javascripts/notyNotification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/notyNotification.js -------------------------------------------------------------------------------- /app/assets/javascripts/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/post.js -------------------------------------------------------------------------------- /app/assets/javascripts/question.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/question.js -------------------------------------------------------------------------------- /app/assets/javascripts/restfulTypeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/restfulTypeahead.js -------------------------------------------------------------------------------- /app/assets/javascripts/searchform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/searchform.js -------------------------------------------------------------------------------- /app/assets/javascripts/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/setup.js -------------------------------------------------------------------------------- /app/assets/javascripts/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/sidebar.js -------------------------------------------------------------------------------- /app/assets/javascripts/simple-data-grapher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/simple-data-grapher.js -------------------------------------------------------------------------------- /app/assets/javascripts/spam2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/spam2.js -------------------------------------------------------------------------------- /app/assets/javascripts/submitFormAjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/submitFormAjax.js -------------------------------------------------------------------------------- /app/assets/javascripts/tagging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/tagging.js -------------------------------------------------------------------------------- /app/assets/javascripts/textBoxExpand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/textBoxExpand.js -------------------------------------------------------------------------------- /app/assets/javascripts/timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/timeago.js -------------------------------------------------------------------------------- /app/assets/javascripts/translation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/translation.js -------------------------------------------------------------------------------- /app/assets/javascripts/urlMapHash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/urlMapHash.js -------------------------------------------------------------------------------- /app/assets/javascripts/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/users.js -------------------------------------------------------------------------------- /app/assets/javascripts/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/validation.js -------------------------------------------------------------------------------- /app/assets/javascripts/wikis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/javascripts/wikis.js -------------------------------------------------------------------------------- /app/assets/stylesheets/I18n.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/stylesheets/I18n.css -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/stylesheets/blog.css -------------------------------------------------------------------------------- /app/assets/stylesheets/btsp_checkbox_override.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/stylesheets/btsp_checkbox_override.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/comments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/stylesheets/comments.css -------------------------------------------------------------------------------- /app/assets/stylesheets/cross_browser.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/stylesheets/cross_browser.css -------------------------------------------------------------------------------- /app/assets/stylesheets/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/stylesheets/dashboard.css -------------------------------------------------------------------------------- /app/assets/stylesheets/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/stylesheets/editor.css -------------------------------------------------------------------------------- /app/assets/stylesheets/fancy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/stylesheets/fancy.css -------------------------------------------------------------------------------- /app/assets/stylesheets/feature.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/stylesheets/feature.css -------------------------------------------------------------------------------- /app/assets/stylesheets/location.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/stylesheets/location.css -------------------------------------------------------------------------------- /app/assets/stylesheets/location_tags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/stylesheets/location_tags.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/login_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/stylesheets/login_modal.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/map.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/stylesheets/map.css -------------------------------------------------------------------------------- /app/assets/stylesheets/notes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/stylesheets/notes.css -------------------------------------------------------------------------------- /app/assets/stylesheets/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/stylesheets/print.css -------------------------------------------------------------------------------- /app/assets/stylesheets/print_new.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/stylesheets/print_new.css -------------------------------------------------------------------------------- /app/assets/stylesheets/profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/stylesheets/profile.css -------------------------------------------------------------------------------- /app/assets/stylesheets/question.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/stylesheets/question.css -------------------------------------------------------------------------------- /app/assets/stylesheets/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/stylesheets/search.css -------------------------------------------------------------------------------- /app/assets/stylesheets/show_follow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/stylesheets/show_follow.css -------------------------------------------------------------------------------- /app/assets/stylesheets/spam2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/stylesheets/spam2.css -------------------------------------------------------------------------------- /app/assets/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/stylesheets/style.css -------------------------------------------------------------------------------- /app/assets/stylesheets/tags.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/stylesheets/tags.css -------------------------------------------------------------------------------- /app/assets/stylesheets/user_tags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/stylesheets/user_tags.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/wiki.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/assets/stylesheets/wiki.css -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/channels/room_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/channels/room_channel.rb -------------------------------------------------------------------------------- /app/channels/user_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/channels/user_channel.rb -------------------------------------------------------------------------------- /app/channels/user_notification_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/channels/user_notification_channel.rb -------------------------------------------------------------------------------- /app/controllers/admin_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/admin_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/batch_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/batch_controller.rb -------------------------------------------------------------------------------- /app/controllers/comment_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/comment_controller.rb -------------------------------------------------------------------------------- /app/controllers/csvfiles_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/csvfiles_controller.rb -------------------------------------------------------------------------------- /app/controllers/editor_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/editor_controller.rb -------------------------------------------------------------------------------- /app/controllers/features_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/features_controller.rb -------------------------------------------------------------------------------- /app/controllers/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/images_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/images_controller.rb -------------------------------------------------------------------------------- /app/controllers/legacy_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/legacy_controller.rb -------------------------------------------------------------------------------- /app/controllers/like_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/like_controller.rb -------------------------------------------------------------------------------- /app/controllers/map_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/map_controller.rb -------------------------------------------------------------------------------- /app/controllers/notes_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/notes_controller.rb -------------------------------------------------------------------------------- /app/controllers/openid_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/openid_controller.rb -------------------------------------------------------------------------------- /app/controllers/questions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/questions_controller.rb -------------------------------------------------------------------------------- /app/controllers/relationships_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/relationships_controller.rb -------------------------------------------------------------------------------- /app/controllers/search_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/search_controller.rb -------------------------------------------------------------------------------- /app/controllers/settings_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/settings_controller.rb -------------------------------------------------------------------------------- /app/controllers/spam2_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/spam2_controller.rb -------------------------------------------------------------------------------- /app/controllers/stats_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/stats_controller.rb -------------------------------------------------------------------------------- /app/controllers/subscription_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/subscription_controller.rb -------------------------------------------------------------------------------- /app/controllers/tag_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/tag_controller.rb -------------------------------------------------------------------------------- /app/controllers/talk_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/talk_controller.rb -------------------------------------------------------------------------------- /app/controllers/user_sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/user_sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/user_tags_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/user_tags_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/wiki_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/controllers/wiki_controller.rb -------------------------------------------------------------------------------- /app/helpers/admin_helper.rb: -------------------------------------------------------------------------------- 1 | module AdminHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/comment_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/helpers/comment_helper.rb -------------------------------------------------------------------------------- /app/helpers/csvfiles_helper.rb: -------------------------------------------------------------------------------- 1 | module CsvfilesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/features_helper.rb: -------------------------------------------------------------------------------- 1 | module FeaturesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/home_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/helpers/home_helper.rb -------------------------------------------------------------------------------- /app/helpers/map_helper.rb: -------------------------------------------------------------------------------- 1 | module MapHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/notes_helper.rb: -------------------------------------------------------------------------------- 1 | module NotesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/openid_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/helpers/openid_helper.rb -------------------------------------------------------------------------------- /app/helpers/redirect_helper.rb: -------------------------------------------------------------------------------- 1 | module RedirectHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/search_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/helpers/search_helper.rb -------------------------------------------------------------------------------- /app/helpers/spam2_helper.rb: -------------------------------------------------------------------------------- 1 | module Spam2Helper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/tag_helper.rb: -------------------------------------------------------------------------------- 1 | module TagHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/user_tags_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/helpers/user_tags_helper.rb -------------------------------------------------------------------------------- /app/helpers/users_helper.rb: -------------------------------------------------------------------------------- 1 | module UsersHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/wiki_helper.rb: -------------------------------------------------------------------------------- 1 | module WikiHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/javascript/components/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/javascript/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/javascript/components/App.js -------------------------------------------------------------------------------- /app/javascript/components/Comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/javascript/components/Comment.js -------------------------------------------------------------------------------- /app/javascript/components/CommentDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/javascript/components/CommentDisplay.js -------------------------------------------------------------------------------- /app/javascript/components/CommentForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/javascript/components/CommentForm.js -------------------------------------------------------------------------------- /app/javascript/components/CommentHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/javascript/components/CommentHeader.js -------------------------------------------------------------------------------- /app/javascript/components/CommentReplies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/javascript/components/CommentReplies.js -------------------------------------------------------------------------------- /app/javascript/components/CommentToolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/javascript/components/CommentToolbar.js -------------------------------------------------------------------------------- /app/javascript/components/CommentToolbarButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/javascript/components/CommentToolbarButton.js -------------------------------------------------------------------------------- /app/javascript/components/CommentsContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/javascript/components/CommentsContainer.js -------------------------------------------------------------------------------- /app/javascript/components/CommentsHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/javascript/components/CommentsHeader.js -------------------------------------------------------------------------------- /app/javascript/components/CommentsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/javascript/components/CommentsList.js -------------------------------------------------------------------------------- /app/javascript/components/REACT_COMMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/javascript/components/REACT_COMMENTS.md -------------------------------------------------------------------------------- /app/javascript/components/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/javascript/components/helpers.js -------------------------------------------------------------------------------- /app/javascript/components/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/javascript/components/reducers.js -------------------------------------------------------------------------------- /app/javascript/components/static-props-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/javascript/components/static-props-context.js -------------------------------------------------------------------------------- /app/javascript/components/user-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/javascript/components/user-context.js -------------------------------------------------------------------------------- /app/javascript/packs/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/javascript/packs/application.js -------------------------------------------------------------------------------- /app/javascript/packs/hello_react.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/javascript/packs/hello_react.jsx -------------------------------------------------------------------------------- /app/javascript/packs/server_rendering.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/javascript/packs/server_rendering.js -------------------------------------------------------------------------------- /app/jobs/digest_mail_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/jobs/digest_mail_job.rb -------------------------------------------------------------------------------- /app/jobs/digest_spam_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/jobs/digest_spam_job.rb -------------------------------------------------------------------------------- /app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/mailers/admin_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/mailers/admin_mailer.rb -------------------------------------------------------------------------------- /app/mailers/comment_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/mailers/comment_mailer.rb -------------------------------------------------------------------------------- /app/mailers/node_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/mailers/node_mailer.rb -------------------------------------------------------------------------------- /app/mailers/password_reset_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/mailers/password_reset_mailer.rb -------------------------------------------------------------------------------- /app/mailers/subscription_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/mailers/subscription_mailer.rb -------------------------------------------------------------------------------- /app/mailers/welcome_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/mailers/welcome_mailer.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/comment.rb -------------------------------------------------------------------------------- /app/models/concerns/comments_shared.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/concerns/comments_shared.rb -------------------------------------------------------------------------------- /app/models/concerns/node_shared.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/concerns/node_shared.rb -------------------------------------------------------------------------------- /app/models/concerns/raw_stats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/concerns/raw_stats.rb -------------------------------------------------------------------------------- /app/models/concerns/statistics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/concerns/statistics.rb -------------------------------------------------------------------------------- /app/models/csvfile.rb: -------------------------------------------------------------------------------- 1 | class Csvfile < ApplicationRecord 2 | belongs_to :user, foreign_key: :uid 3 | end 4 | -------------------------------------------------------------------------------- /app/models/doc_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/doc_list.rb -------------------------------------------------------------------------------- /app/models/doc_result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/doc_result.rb -------------------------------------------------------------------------------- /app/models/drupal_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/drupal_file.rb -------------------------------------------------------------------------------- /app/models/drupal_main_image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/drupal_main_image.rb -------------------------------------------------------------------------------- /app/models/drupal_upload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/drupal_upload.rb -------------------------------------------------------------------------------- /app/models/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/image.rb -------------------------------------------------------------------------------- /app/models/like.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/like.rb -------------------------------------------------------------------------------- /app/models/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/node.rb -------------------------------------------------------------------------------- /app/models/node_selection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/node_selection.rb -------------------------------------------------------------------------------- /app/models/node_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/node_tag.rb -------------------------------------------------------------------------------- /app/models/relationship.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/relationship.rb -------------------------------------------------------------------------------- /app/models/revision.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/revision.rb -------------------------------------------------------------------------------- /app/models/search_request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/search_request.rb -------------------------------------------------------------------------------- /app/models/spamaway.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/spamaway.rb -------------------------------------------------------------------------------- /app/models/tableless.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/tableless.rb -------------------------------------------------------------------------------- /app/models/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/tag.rb -------------------------------------------------------------------------------- /app/models/tag_selection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/tag_selection.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/user_selection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/user_selection.rb -------------------------------------------------------------------------------- /app/models/user_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/user_session.rb -------------------------------------------------------------------------------- /app/models/user_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/models/user_tag.rb -------------------------------------------------------------------------------- /app/services/execute_search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/services/execute_search.rb -------------------------------------------------------------------------------- /app/services/search_criteria.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/services/search_criteria.rb -------------------------------------------------------------------------------- /app/services/search_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/services/search_service.rb -------------------------------------------------------------------------------- /app/views/admin/_comments.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/admin/_comments.html.erb -------------------------------------------------------------------------------- /app/views/admin/_nodes.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/admin/_nodes.html.erb -------------------------------------------------------------------------------- /app/views/admin/_revisions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/admin/_revisions.html.erb -------------------------------------------------------------------------------- /app/views/admin/assets.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/admin/assets.html.erb -------------------------------------------------------------------------------- /app/views/admin/spam.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/admin/spam.html.erb -------------------------------------------------------------------------------- /app/views/admin/useremail.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/admin/useremail.html.erb -------------------------------------------------------------------------------- /app/views/admin/users.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/admin/users.html.erb -------------------------------------------------------------------------------- /app/views/admin_mailer/notify_author_of_approval.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/admin_mailer/notify_author_of_approval.html.erb -------------------------------------------------------------------------------- /app/views/admin_mailer/notify_comment_moderators.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/admin_mailer/notify_comment_moderators.html.erb -------------------------------------------------------------------------------- /app/views/admin_mailer/notify_moderators_of_spam.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/admin_mailer/notify_moderators_of_spam.html.erb -------------------------------------------------------------------------------- /app/views/admin_mailer/notify_node_moderators.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/admin_mailer/notify_node_moderators.html.erb -------------------------------------------------------------------------------- /app/views/admin_mailer/send_digest_spam.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/admin_mailer/send_digest_spam.html.erb -------------------------------------------------------------------------------- /app/views/answers/accept.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/answers/accept.js.erb -------------------------------------------------------------------------------- /app/views/answers/create.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/answers/create.js.erb -------------------------------------------------------------------------------- /app/views/answers/delete.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/answers/delete.js.erb -------------------------------------------------------------------------------- /app/views/comment_mailer/notify.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/comment_mailer/notify.html.erb -------------------------------------------------------------------------------- /app/views/comment_mailer/notify_barnstar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/comment_mailer/notify_barnstar.html.erb -------------------------------------------------------------------------------- /app/views/comment_mailer/notify_callout.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/comment_mailer/notify_callout.html.erb -------------------------------------------------------------------------------- /app/views/comment_mailer/notify_coauthor.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/comment_mailer/notify_coauthor.html.erb -------------------------------------------------------------------------------- /app/views/comment_mailer/notify_note_author.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/comment_mailer/notify_note_author.html.erb -------------------------------------------------------------------------------- /app/views/comment_mailer/notify_tag_followers.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/comment_mailer/notify_tag_followers.html.erb -------------------------------------------------------------------------------- /app/views/comments/_comments.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/comments/_comments.html.erb -------------------------------------------------------------------------------- /app/views/comments/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/comments/_form.html.erb -------------------------------------------------------------------------------- /app/views/comments/create.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/comments/create.html.erb -------------------------------------------------------------------------------- /app/views/comments/create.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/comments/create.js.erb -------------------------------------------------------------------------------- /app/views/comments/delete.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/comments/delete.js.erb -------------------------------------------------------------------------------- /app/views/comments/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/comments/index.html.erb -------------------------------------------------------------------------------- /app/views/comments/like_comment.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/comments/like_comment.js.erb -------------------------------------------------------------------------------- /app/views/csvfiles/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/csvfiles/new.html.erb -------------------------------------------------------------------------------- /app/views/csvfiles/user_files.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/csvfiles/user_files.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/_activity.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/dashboard/_activity.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/_comment_moderate.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/dashboard/_comment_moderate.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/_flag_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/dashboard/_flag_list.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/dashboard/_header.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/_node_comment.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/dashboard/_node_comment.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/_node_default.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/dashboard/_node_default.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/_node_event.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/dashboard/_node_event.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/_node_meta.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/dashboard/_node_meta.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/_node_moderate.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/dashboard/_node_moderate.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/_node_question.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/dashboard/_node_question.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/_node_wiki.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/dashboard/_node_wiki.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/_question_node_meta.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/dashboard/_question_node_meta.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/_wiki.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/dashboard/_wiki.html.erb -------------------------------------------------------------------------------- /app/views/dashboard/dashboard.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/dashboard/dashboard.html.erb -------------------------------------------------------------------------------- /app/views/dashboard_v2/_alerts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/dashboard_v2/_alerts.html.erb -------------------------------------------------------------------------------- /app/views/dashboard_v2/_blog.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/dashboard_v2/_blog.html.erb -------------------------------------------------------------------------------- /app/views/dashboard_v2/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/dashboard_v2/_header.html.erb -------------------------------------------------------------------------------- /app/views/dashboard_v2/_location.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/dashboard_v2/_location.html.erb -------------------------------------------------------------------------------- /app/views/dashboard_v2/_sidebar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/dashboard_v2/_sidebar.html.erb -------------------------------------------------------------------------------- /app/views/dashboard_v2/_topicCard.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/dashboard_v2/_topicCard.html.erb -------------------------------------------------------------------------------- /app/views/dashboard_v2/dashboard.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/dashboard_v2/dashboard.html.erb -------------------------------------------------------------------------------- /app/views/editor/_editor.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/editor/_editor.html.erb -------------------------------------------------------------------------------- /app/views/editor/_event.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/editor/_event.html.erb -------------------------------------------------------------------------------- /app/views/editor/_images.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/editor/_images.html.erb -------------------------------------------------------------------------------- /app/views/editor/_main_image.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/editor/_main_image.html.erb -------------------------------------------------------------------------------- /app/views/editor/_newsletter.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/editor/_newsletter.html.erb -------------------------------------------------------------------------------- /app/views/editor/_tag_input.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/editor/_tag_input.html.erb -------------------------------------------------------------------------------- /app/views/editor/_toolbar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/editor/_toolbar.html.erb -------------------------------------------------------------------------------- /app/views/editor/choose.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/editor/choose.html.erb -------------------------------------------------------------------------------- /app/views/editor/post.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/editor/post.html.erb -------------------------------------------------------------------------------- /app/views/editor/question.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/editor/question.html.erb -------------------------------------------------------------------------------- /app/views/editor/questionRich.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/editor/questionRich.html.erb -------------------------------------------------------------------------------- /app/views/editor/rich.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/editor/rich.html.erb -------------------------------------------------------------------------------- /app/views/editor/wikiRich.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/editor/wikiRich.html.erb -------------------------------------------------------------------------------- /app/views/features/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/features/_form.html.erb -------------------------------------------------------------------------------- /app/views/features/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/features/edit.html.erb -------------------------------------------------------------------------------- /app/views/features/embed.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/features/embed.html.erb -------------------------------------------------------------------------------- /app/views/features/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/features/index.html.erb -------------------------------------------------------------------------------- /app/views/features/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/features/new.html.erb -------------------------------------------------------------------------------- /app/views/features/show.html.erb: -------------------------------------------------------------------------------- 1 | <%= feature(Node.find(params[:id]).title) %> 2 | -------------------------------------------------------------------------------- /app/views/grids/_embedButton.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/grids/_embedButton.html.erb -------------------------------------------------------------------------------- /app/views/grids/_graph.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/grids/_graph.html.erb -------------------------------------------------------------------------------- /app/views/grids/_nodes.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/grids/_nodes.html.erb -------------------------------------------------------------------------------- /app/views/grids/_notes.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/grids/_notes.html.erb -------------------------------------------------------------------------------- /app/views/grids/_people.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/grids/_people.html.erb -------------------------------------------------------------------------------- /app/views/grids/_simple-data-grapher.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/grids/_simple-data-grapher.html.erb -------------------------------------------------------------------------------- /app/views/grids/_thumbnail.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/grids/_thumbnail.html.erb -------------------------------------------------------------------------------- /app/views/grids/_wikis.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/grids/_wikis.html.erb -------------------------------------------------------------------------------- /app/views/home/_social.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/home/_social.html.erb -------------------------------------------------------------------------------- /app/views/home/home.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/home/home.html.erb -------------------------------------------------------------------------------- /app/views/home/nearby.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/home/nearby.html.erb -------------------------------------------------------------------------------- /app/views/home/subscriptions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/home/subscriptions.html.erb -------------------------------------------------------------------------------- /app/views/images/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/images/new.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_alerts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/layouts/_alerts.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_errorMessages.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/layouts/_errorMessages.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/layouts/_footer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/layouts/_header.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_signupLoginModal.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/layouts/_signupLoginModal.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_social_icons.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/layouts/_social_icons.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/print.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/layouts/print.html.erb -------------------------------------------------------------------------------- /app/views/like/_like.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/like/_like.html.erb -------------------------------------------------------------------------------- /app/views/like/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/like/index.html.erb -------------------------------------------------------------------------------- /app/views/locations/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/locations/_form.html.erb -------------------------------------------------------------------------------- /app/views/locations/_modal.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/locations/_modal.html.erb -------------------------------------------------------------------------------- /app/views/map/_inlineLeaflet.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/map/_inlineLeaflet.html.erb -------------------------------------------------------------------------------- /app/views/map/_leaflet.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/map/_leaflet.html.erb -------------------------------------------------------------------------------- /app/views/map/_mapDependencies.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/map/_mapDependencies.html.erb -------------------------------------------------------------------------------- /app/views/map/_maps.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/map/_maps.html.erb -------------------------------------------------------------------------------- /app/views/map/_peopleLeaflet.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/map/_peopleLeaflet.html.erb -------------------------------------------------------------------------------- /app/views/map/_plainInlineLeaflet.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/map/_plainInlineLeaflet.html.erb -------------------------------------------------------------------------------- /app/views/map/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/map/index.html.erb -------------------------------------------------------------------------------- /app/views/map/map.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/map/map.html.erb -------------------------------------------------------------------------------- /app/views/node_mailer/notify_callout.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/node_mailer/notify_callout.html.erb -------------------------------------------------------------------------------- /app/views/notes/_card.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/notes/_card.html.erb -------------------------------------------------------------------------------- /app/views/notes/_coauthored_notes.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/notes/_coauthored_notes.html.erb -------------------------------------------------------------------------------- /app/views/notes/_comment.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/notes/_comment.html.erb -------------------------------------------------------------------------------- /app/views/notes/_comments.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/notes/_comments.html.erb -------------------------------------------------------------------------------- /app/views/notes/_draft_notes.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/notes/_draft_notes.html.erb -------------------------------------------------------------------------------- /app/views/notes/_format_toggle.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/notes/_format_toggle.html.erb -------------------------------------------------------------------------------- /app/views/notes/_history.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/notes/_history.html.erb -------------------------------------------------------------------------------- /app/views/notes/_nav_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/notes/_nav_links.html.erb -------------------------------------------------------------------------------- /app/views/notes/_nav_tabs.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/notes/_nav_tabs.html.erb -------------------------------------------------------------------------------- /app/views/notes/_notes.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/notes/_notes.html.erb -------------------------------------------------------------------------------- /app/views/notes/_responses.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/notes/_responses.html.erb -------------------------------------------------------------------------------- /app/views/notes/_sidebar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/notes/_sidebar.html.erb -------------------------------------------------------------------------------- /app/views/notes/_title_suggestion.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/notes/_title_suggestion.html.erb -------------------------------------------------------------------------------- /app/views/notes/drafts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/notes/drafts.html.erb -------------------------------------------------------------------------------- /app/views/notes/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/notes/index.html.erb -------------------------------------------------------------------------------- /app/views/notes/print.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/notes/print.html.erb -------------------------------------------------------------------------------- /app/views/notes/rss.rss.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/notes/rss.rss.builder -------------------------------------------------------------------------------- /app/views/notes/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/notes/show.html.erb -------------------------------------------------------------------------------- /app/views/notes/tools_places.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/notes/tools_places.html.erb -------------------------------------------------------------------------------- /app/views/openid/decide.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/openid/decide.html.erb -------------------------------------------------------------------------------- /app/views/password_reset_mailer/reset_notify.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/password_reset_mailer/reset_notify.text.erb -------------------------------------------------------------------------------- /app/views/questions/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/questions/_form.html.erb -------------------------------------------------------------------------------- /app/views/questions/_new_question.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/questions/_new_question.html.erb -------------------------------------------------------------------------------- /app/views/questions/_questions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/questions/_questions.html.erb -------------------------------------------------------------------------------- /app/views/questions/_questions_shadow.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/questions/_questions_shadow.html.erb -------------------------------------------------------------------------------- /app/views/questions/_recent_questions_shadow.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/questions/_recent_questions_shadow.html.erb -------------------------------------------------------------------------------- /app/views/questions/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/questions/index.html.erb -------------------------------------------------------------------------------- /app/views/questions/index_shadow.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/questions/index_shadow.html.erb -------------------------------------------------------------------------------- /app/views/questions/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/questions/show.html.erb -------------------------------------------------------------------------------- /app/views/relationships/create.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/relationships/create.js.erb -------------------------------------------------------------------------------- /app/views/relationships/destroy.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/relationships/destroy.js.erb -------------------------------------------------------------------------------- /app/views/search/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/search/_form.html.erb -------------------------------------------------------------------------------- /app/views/search/_nav.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/search/_nav.html.erb -------------------------------------------------------------------------------- /app/views/search/_pinned.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/search/_pinned.html.erb -------------------------------------------------------------------------------- /app/views/search/_profiles_blank.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/search/_profiles_blank.html.erb -------------------------------------------------------------------------------- /app/views/search/_questions_blank.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/search/_questions_blank.html.erb -------------------------------------------------------------------------------- /app/views/search/_tags_blank.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/search/_tags_blank.html.erb -------------------------------------------------------------------------------- /app/views/search/_wikis_blank.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/search/_wikis_blank.html.erb -------------------------------------------------------------------------------- /app/views/search/all_content.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/search/all_content.html.erb -------------------------------------------------------------------------------- /app/views/search/google.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/search/google.html.erb -------------------------------------------------------------------------------- /app/views/search/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/search/new.html.erb -------------------------------------------------------------------------------- /app/views/search/notes.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/search/notes.html.erb -------------------------------------------------------------------------------- /app/views/search/places.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/search/places.html.erb -------------------------------------------------------------------------------- /app/views/search/profiles.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/search/profiles.html.erb -------------------------------------------------------------------------------- /app/views/search/questions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/search/questions.html.erb -------------------------------------------------------------------------------- /app/views/search/tags.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/search/tags.html.erb -------------------------------------------------------------------------------- /app/views/search/wikis.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/search/wikis.html.erb -------------------------------------------------------------------------------- /app/views/sidebar/_author.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/sidebar/_author.html.erb -------------------------------------------------------------------------------- /app/views/sidebar/_dashboard.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/sidebar/_dashboard.html.erb -------------------------------------------------------------------------------- /app/views/sidebar/_events.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/sidebar/_events.html.erb -------------------------------------------------------------------------------- /app/views/sidebar/_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/sidebar/_list.html.erb -------------------------------------------------------------------------------- /app/views/sidebar/_map.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/sidebar/_map.html.erb -------------------------------------------------------------------------------- /app/views/sidebar/_none.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/sidebar/_none.html.erb -------------------------------------------------------------------------------- /app/views/sidebar/_notes.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/sidebar/_notes.html.erb -------------------------------------------------------------------------------- /app/views/sidebar/_post_button.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/sidebar/_post_button.html.erb -------------------------------------------------------------------------------- /app/views/sidebar/_question.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/sidebar/_question.html.erb -------------------------------------------------------------------------------- /app/views/sidebar/_related.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/sidebar/_related.html.erb -------------------------------------------------------------------------------- /app/views/sidebar/_user.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/sidebar/_user.html.erb -------------------------------------------------------------------------------- /app/views/sidebar/_wikis.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/sidebar/_wikis.html.erb -------------------------------------------------------------------------------- /app/views/spam2/_comments.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/spam2/_comments.html.erb -------------------------------------------------------------------------------- /app/views/spam2/_flags.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/spam2/_flags.html.erb -------------------------------------------------------------------------------- /app/views/spam2/_insights.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/spam2/_insights.html.erb -------------------------------------------------------------------------------- /app/views/spam2/_nodes.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/spam2/_nodes.html.erb -------------------------------------------------------------------------------- /app/views/spam2/_queue.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/spam2/_queue.html.erb -------------------------------------------------------------------------------- /app/views/spam2/_revisions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/spam2/_revisions.html.erb -------------------------------------------------------------------------------- /app/views/spam2/_spam.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/spam2/_spam.html.erb -------------------------------------------------------------------------------- /app/views/spam2/_users.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/spam2/_users.html.erb -------------------------------------------------------------------------------- /app/views/stats/_barchart.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/stats/_barchart.html.erb -------------------------------------------------------------------------------- /app/views/stats/_range.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/stats/_range.html.erb -------------------------------------------------------------------------------- /app/views/stats/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/stats/index.html.erb -------------------------------------------------------------------------------- /app/views/stats/subscriptions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/stats/subscriptions.html.erb -------------------------------------------------------------------------------- /app/views/subscription_mailer/notify_note_liked.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/subscription_mailer/notify_note_liked.text.erb -------------------------------------------------------------------------------- /app/views/subscription_mailer/notify_tag_added.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/subscription_mailer/notify_tag_added.html.erb -------------------------------------------------------------------------------- /app/views/subscription_mailer/send_digest.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/subscription_mailer/send_digest.html.erb -------------------------------------------------------------------------------- /app/views/subscriptions/_digest.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/subscriptions/_digest.html.erb -------------------------------------------------------------------------------- /app/views/subscriptions/digest.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/subscriptions/digest.html.erb -------------------------------------------------------------------------------- /app/views/tag/_advanced_tagging.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/_advanced_tagging.html.erb -------------------------------------------------------------------------------- /app/views/tag/_contributors.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/_contributors.html.erb -------------------------------------------------------------------------------- /app/views/tag/_dropdown_subscribe.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/_dropdown_subscribe.html.erb -------------------------------------------------------------------------------- /app/views/tag/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/_form.html.erb -------------------------------------------------------------------------------- /app/views/tag/_graph.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/_graph.html.erb -------------------------------------------------------------------------------- /app/views/tag/_location.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/_location.html.erb -------------------------------------------------------------------------------- /app/views/tag/_miniCard.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/_miniCard.html.erb -------------------------------------------------------------------------------- /app/views/tag/_profileCard.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/_profileCard.html.erb -------------------------------------------------------------------------------- /app/views/tag/_related.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/_related.html.erb -------------------------------------------------------------------------------- /app/views/tag/_replication.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/_replication.html.erb -------------------------------------------------------------------------------- /app/views/tag/_sorting.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/_sorting.html.erb -------------------------------------------------------------------------------- /app/views/tag/_subscribe_button.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/_subscribe_button.html.erb -------------------------------------------------------------------------------- /app/views/tag/_tagging.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/_tagging.html.erb -------------------------------------------------------------------------------- /app/views/tag/_tags.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/_tags.html.erb -------------------------------------------------------------------------------- /app/views/tag/_tags_popover.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/_tags_popover.html.erb -------------------------------------------------------------------------------- /app/views/tag/_topicCard.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/_topicCard.html.erb -------------------------------------------------------------------------------- /app/views/tag/_typeahead_search.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/_typeahead_search.html.erb -------------------------------------------------------------------------------- /app/views/tag/blog.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/blog.html.erb -------------------------------------------------------------------------------- /app/views/tag/blog2.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/blog2.html.erb -------------------------------------------------------------------------------- /app/views/tag/graph.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/graph.html.erb -------------------------------------------------------------------------------- /app/views/tag/gridsEmbed.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/gridsEmbed.html.erb -------------------------------------------------------------------------------- /app/views/tag/icalendar.ics.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/icalendar.ics.erb -------------------------------------------------------------------------------- /app/views/tag/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/index.html.erb -------------------------------------------------------------------------------- /app/views/tag/rss.rss.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/rss.rss.builder -------------------------------------------------------------------------------- /app/views/tag/rss_for_tagged_with_author.rss.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/rss_for_tagged_with_author.rss.builder -------------------------------------------------------------------------------- /app/views/tag/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/show.html.erb -------------------------------------------------------------------------------- /app/views/tag/show/_contributors.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/show/_contributors.html.erb -------------------------------------------------------------------------------- /app/views/tag/show/_nav_tabs.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/show/_nav_tabs.html.erb -------------------------------------------------------------------------------- /app/views/tag/show/_sort.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/show/_sort.html.erb -------------------------------------------------------------------------------- /app/views/tag/show/_tab_content.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/show/_tab_content.html.erb -------------------------------------------------------------------------------- /app/views/tag/show/_user_controls.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/show/_user_controls.html.erb -------------------------------------------------------------------------------- /app/views/tag/stats.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/stats.html.erb -------------------------------------------------------------------------------- /app/views/tag/topic_tree.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/topic_tree.html.erb -------------------------------------------------------------------------------- /app/views/tag/widget.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/tag/widget.html.erb -------------------------------------------------------------------------------- /app/views/talk/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/talk/show.html.erb -------------------------------------------------------------------------------- /app/views/user_sessions/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/user_sessions/_form.html.erb -------------------------------------------------------------------------------- /app/views/user_sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/user_sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/user_tags/_tags.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/user_tags/_tags.html.erb -------------------------------------------------------------------------------- /app/views/user_tags/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/user_tags/index.html.erb -------------------------------------------------------------------------------- /app/views/users/_answered.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/users/_answered.html.erb -------------------------------------------------------------------------------- /app/views/users/_create_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/users/_create_form.html.erb -------------------------------------------------------------------------------- /app/views/users/_edit_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/users/_edit_form.html.erb -------------------------------------------------------------------------------- /app/views/users/_follow.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/users/_follow.html.erb -------------------------------------------------------------------------------- /app/views/users/_likes.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/users/_likes.html.erb -------------------------------------------------------------------------------- /app/views/users/_photo.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/users/_photo.html.erb -------------------------------------------------------------------------------- /app/views/users/_spamaway.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/users/_spamaway.html.erb -------------------------------------------------------------------------------- /app/views/users/_unfollow.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/users/_unfollow.html.erb -------------------------------------------------------------------------------- /app/views/users/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/users/edit.html.erb -------------------------------------------------------------------------------- /app/views/users/likes.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/users/likes.html.erb -------------------------------------------------------------------------------- /app/views/users/list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/users/list.html.erb -------------------------------------------------------------------------------- /app/views/users/map.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/users/map.html.erb -------------------------------------------------------------------------------- /app/views/users/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/users/new.html.erb -------------------------------------------------------------------------------- /app/views/users/profile.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/users/profile.html.erb -------------------------------------------------------------------------------- /app/views/users/reset.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/users/reset.html.erb -------------------------------------------------------------------------------- /app/views/users/rss.rss.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/users/rss.rss.builder -------------------------------------------------------------------------------- /app/views/users/settings.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/users/settings.html.erb -------------------------------------------------------------------------------- /app/views/users/show_follow.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/users/show_follow.html.erb -------------------------------------------------------------------------------- /app/views/welcome_mailer/add_to_list.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/welcome_mailer/add_to_list.text.erb -------------------------------------------------------------------------------- /app/views/welcome_mailer/notify_newcomer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/welcome_mailer/notify_newcomer.html.erb -------------------------------------------------------------------------------- /app/views/wiki/_diff.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/wiki/_diff.html.erb -------------------------------------------------------------------------------- /app/views/wiki/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/wiki/_header.html.erb -------------------------------------------------------------------------------- /app/views/wiki/_wikis.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/wiki/_wikis.html.erb -------------------------------------------------------------------------------- /app/views/wiki/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/wiki/edit.html.erb -------------------------------------------------------------------------------- /app/views/wiki/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/wiki/index.html.erb -------------------------------------------------------------------------------- /app/views/wiki/methods.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/wiki/methods.html.erb -------------------------------------------------------------------------------- /app/views/wiki/print.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/wiki/print.html.erb -------------------------------------------------------------------------------- /app/views/wiki/revisions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/wiki/revisions.html.erb -------------------------------------------------------------------------------- /app/views/wiki/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/app/views/wiki/show.html.erb -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/webpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/bin/webpack -------------------------------------------------------------------------------- /bin/webpack-dev-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/bin/webpack-dev-server -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/codecov.yml -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/application.yml -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/critical_path_css.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/critical_path_css.yml -------------------------------------------------------------------------------- /config/database.yml.cloud9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/database.yml.cloud9 -------------------------------------------------------------------------------- /config/database.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/database.yml.example -------------------------------------------------------------------------------- /config/database.yml.gitpod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/database.yml.gitpod -------------------------------------------------------------------------------- /config/database.yml.mysql.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/database.yml.mysql.example -------------------------------------------------------------------------------- /config/database.yml.sqlite.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/database.yml.sqlite.example -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/staging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/environments/staging.rb -------------------------------------------------------------------------------- /config/environments/staging_unstable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/environments/staging_unstable.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/i18n-js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/i18n-js.yml -------------------------------------------------------------------------------- /config/initializers/I18n.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/initializers/I18n.rb -------------------------------------------------------------------------------- /config/initializers/abstract_mysql2_adapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/initializers/abstract_mysql2_adapter.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/initializers/constants.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/grape_swagger_rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/initializers/grape_swagger_rails.rb -------------------------------------------------------------------------------- /config/initializers/impression.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/initializers/impression.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/jasmine_fixtures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/initializers/jasmine_fixtures.rb -------------------------------------------------------------------------------- /config/initializers/lazyload.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/initializers/lazyload.rb -------------------------------------------------------------------------------- /config/initializers/load_links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/initializers/load_links.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/omniauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/initializers/omniauth.rb -------------------------------------------------------------------------------- /config/initializers/openid.rb: -------------------------------------------------------------------------------- 1 | #OpenIdAuthentication.store = :file 2 | -------------------------------------------------------------------------------- /config/initializers/pagy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/initializers/pagy.rb -------------------------------------------------------------------------------- /config/initializers/paperclip.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/initializers/paperclip.rb -------------------------------------------------------------------------------- /config/initializers/rack.rb: -------------------------------------------------------------------------------- 1 | Rack::Mime::MIME_TYPES.merge!({".map" => "text/plain"}) 2 | -------------------------------------------------------------------------------- /config/initializers/recaptcha.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/initializers/recaptcha.rb -------------------------------------------------------------------------------- /config/initializers/sentry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/initializers/sentry.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/initializers/sidekiq.rb -------------------------------------------------------------------------------- /config/initializers/strong_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/initializers/strong_parameters.rb -------------------------------------------------------------------------------- /config/initializers/swagger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/initializers/swagger.rb -------------------------------------------------------------------------------- /config/initializers/twitter_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/initializers/twitter_client.rb -------------------------------------------------------------------------------- /config/initializers/will_paginate_array.rb: -------------------------------------------------------------------------------- 1 | require "will_paginate/array" 2 | -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/links.yml -------------------------------------------------------------------------------- /config/locales/ar.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/locales/ar.yml -------------------------------------------------------------------------------- /config/locales/cz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/locales/cz.yml -------------------------------------------------------------------------------- /config/locales/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/locales/de.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/locales/es.yml -------------------------------------------------------------------------------- /config/locales/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/locales/fr.yml -------------------------------------------------------------------------------- /config/locales/gr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/locales/gr.yml -------------------------------------------------------------------------------- /config/locales/hi-IN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/locales/hi-IN.yml -------------------------------------------------------------------------------- /config/locales/it.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/locales/it.yml -------------------------------------------------------------------------------- /config/locales/ko.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/locales/ko.yml -------------------------------------------------------------------------------- /config/locales/pt-BR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/locales/pt-BR.yml -------------------------------------------------------------------------------- /config/locales/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/locales/ru.yml -------------------------------------------------------------------------------- /config/locales/zh-CN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/locales/zh-CN.yml -------------------------------------------------------------------------------- /config/localhost.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/localhost.crt -------------------------------------------------------------------------------- /config/localhost.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/localhost.key -------------------------------------------------------------------------------- /config/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/my.cnf -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/schedule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/schedule.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/sidekiq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/sidekiq.yml -------------------------------------------------------------------------------- /config/skylight.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/skylight.yml -------------------------------------------------------------------------------- /config/webpack/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/webpack/development.js -------------------------------------------------------------------------------- /config/webpack/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/webpack/environment.js -------------------------------------------------------------------------------- /config/webpack/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/webpack/production.js -------------------------------------------------------------------------------- /config/webpack/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/webpack/test.js -------------------------------------------------------------------------------- /config/webpacker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/config/webpacker.yml -------------------------------------------------------------------------------- /containers/docker-compose-production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/containers/docker-compose-production.yml -------------------------------------------------------------------------------- /containers/docker-compose-stable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/containers/docker-compose-stable.yml -------------------------------------------------------------------------------- /containers/docker-compose-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/containers/docker-compose-testing.yml -------------------------------------------------------------------------------- /containers/docker-compose-unstable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/containers/docker-compose-unstable.yml -------------------------------------------------------------------------------- /db/migrate/20120101000000_drupal_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20120101000000_drupal_schema.rb -------------------------------------------------------------------------------- /db/migrate/20121022172429_node.rb.unused: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20121022172429_node.rb.unused -------------------------------------------------------------------------------- /db/migrate/20130114213934_add_profile_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20130114213934_add_profile_tags.rb -------------------------------------------------------------------------------- /db/migrate/20130309113839_create_rusers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20130309113839_create_rusers.rb -------------------------------------------------------------------------------- /db/migrate/20130310164305_add_sessions_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20130310164305_add_sessions_table.rb -------------------------------------------------------------------------------- /db/migrate/20130327222827_create_images.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20130327222827_create_images.rb -------------------------------------------------------------------------------- /db/migrate/20130402232059_create_like_and_follow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20130402232059_create_like_and_follow.rb -------------------------------------------------------------------------------- /db/migrate/20130408183908_rename_like_and_follow.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20130408183908_rename_like_and_follow.rb -------------------------------------------------------------------------------- /db/migrate/20130710183418_add_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20130710183418_add_roles.rb -------------------------------------------------------------------------------- /db/migrate/20130715011322_add_reset_key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20130715011322_add_reset_key.rb -------------------------------------------------------------------------------- /db/migrate/20140122221554_add_map_authorship.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20140122221554_add_map_authorship.rb -------------------------------------------------------------------------------- /db/migrate/20140426213041_taggify_map_coords.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20140426213041_taggify_map_coords.rb -------------------------------------------------------------------------------- /db/migrate/20140429190219_consolidate_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20140429190219_consolidate_tags.rb -------------------------------------------------------------------------------- /db/migrate/20140507095348_add_path_to_drupal_node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20140507095348_add_path_to_drupal_node.rb -------------------------------------------------------------------------------- /db/migrate/20140702023905_add_image_remote_url.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20140702023905_add_image_remote_url.rb -------------------------------------------------------------------------------- /db/migrate/20140707121818_profile_photos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20140707121818_profile_photos.rb -------------------------------------------------------------------------------- /db/migrate/20141115214749_add_tag_count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20141115214749_add_tag_count.rb -------------------------------------------------------------------------------- /db/migrate/20150509172244_add_index_profile_values.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20150509172244_add_index_profile_values.rb -------------------------------------------------------------------------------- /db/migrate/20160319213901_drop_content_field_bbox.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20160319213901_drop_content_field_bbox.rb -------------------------------------------------------------------------------- /db/migrate/20160324091528_add_image_vid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20160324091528_add_image_vid.rb -------------------------------------------------------------------------------- /db/migrate/20160403220245_remove_constraints_for_sqlite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20160403220245_remove_constraints_for_sqlite.rb -------------------------------------------------------------------------------- /db/migrate/20160407212834_add_revision_status.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20160407212834_add_revision_status.rb -------------------------------------------------------------------------------- /db/migrate/20160408110136_add_main_image_id_to_node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20160408110136_add_main_image_id_to_node.rb -------------------------------------------------------------------------------- /db/migrate/20160527131458_create_user_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20160527131458_create_user_tags.rb -------------------------------------------------------------------------------- /db/migrate/20160604065423_create_answers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20160604065423_create_answers.rb -------------------------------------------------------------------------------- /db/migrate/20160604065635_create_answer_selections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20160604065635_create_answer_selections.rb -------------------------------------------------------------------------------- /db/migrate/20160605140228_create_searches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20160605140228_create_searches.rb -------------------------------------------------------------------------------- /db/migrate/20160607094003_create_location_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20160607094003_create_location_tags.rb -------------------------------------------------------------------------------- /db/migrate/20160614062821_add_searchfields_to_searches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20160614062821_add_searchfields_to_searches.rb -------------------------------------------------------------------------------- /db/migrate/20160615141943_add_location_tag_columns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20160615141943_add_location_tag_columns.rb -------------------------------------------------------------------------------- /db/migrate/20160616035549_add_aid_to_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20160616035549_add_aid_to_comments.rb -------------------------------------------------------------------------------- /db/migrate/20160620041907_add_language_to_search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20160620041907_add_language_to_search.rb -------------------------------------------------------------------------------- /db/migrate/20160620051613_add_date_rage_to_searches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20160620051613_add_date_rage_to_searches.rb -------------------------------------------------------------------------------- /db/migrate/20160620084118_alter_min_date_in_searches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20160620084118_alter_min_date_in_searches.rb -------------------------------------------------------------------------------- /db/migrate/20160629044639_add_accepted_field_to_answers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20160629044639_add_accepted_field_to_answers.rb -------------------------------------------------------------------------------- /db/migrate/20160715024414_rename_long_column_in_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20160715024414_rename_long_column_in_users.rb -------------------------------------------------------------------------------- /db/migrate/20160720235923_add_username_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20160720235923_add_username_index.rb -------------------------------------------------------------------------------- /db/migrate/20160722022014_create_relationships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20160722022014_create_relationships.rb -------------------------------------------------------------------------------- /db/migrate/20160809215133_add_slug_to_nodes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20160809215133_add_slug_to_nodes.rb -------------------------------------------------------------------------------- /db/migrate/20160809215356_create_friendly_id_slugs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20160809215356_create_friendly_id_slugs.rb -------------------------------------------------------------------------------- /db/migrate/20160816094642_seed_slugs_column.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20160816094642_seed_slugs_column.rb -------------------------------------------------------------------------------- /db/migrate/20161009024807_tag_parent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20161009024807_tag_parent.rb -------------------------------------------------------------------------------- /db/migrate/20161122154603_remove_friendly_id_indices.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20161122154603_remove_friendly_id_indices.rb -------------------------------------------------------------------------------- /db/migrate/20161129210111_change_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20161129210111_change_comments.rb -------------------------------------------------------------------------------- /db/migrate/20161230142222_create_impressions_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20161230142222_create_impressions_table.rb -------------------------------------------------------------------------------- /db/migrate/20170111153001_node_pageviews.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20170111153001_node_pageviews.rb -------------------------------------------------------------------------------- /db/migrate/20170120160451_drop_drupal_counter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20170120160451_drop_drupal_counter.rb -------------------------------------------------------------------------------- /db/migrate/20170208174046_add_index_term_data_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20170208174046_add_index_term_data_name.rb -------------------------------------------------------------------------------- /db/migrate/20170704165711_add_user_bio_and_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20170704165711_add_user_bio_and_token.rb -------------------------------------------------------------------------------- /db/migrate/20170726174757_recover_bios_tokens_statuses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20170726174757_recover_bios_tokens_statuses.rb -------------------------------------------------------------------------------- /db/migrate/20170824172336_add_rusers_indices.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20170824172336_add_rusers_indices.rb -------------------------------------------------------------------------------- /db/migrate/20171013161520_indices.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20171013161520_indices.rb -------------------------------------------------------------------------------- /db/migrate/20171110161510_add_index_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20171110161510_add_index_token.rb -------------------------------------------------------------------------------- /db/migrate/20180103212804_revision_fulltext_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20180103212804_revision_fulltext_index.rb -------------------------------------------------------------------------------- /db/migrate/20180119204200_sync_answered_question.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20180119204200_sync_answered_question.rb -------------------------------------------------------------------------------- /db/migrate/20180309180053_impression_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20180309180053_impression_index.rb -------------------------------------------------------------------------------- /db/migrate/20180406080905_create_likes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20180406080905_create_likes.rb -------------------------------------------------------------------------------- /db/migrate/20180618184048_add_emoji_type_to_like.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20180618184048_add_emoji_type_to_like.rb -------------------------------------------------------------------------------- /db/migrate/20180707065151_change_status_of_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20180707065151_change_status_of_comments.rb -------------------------------------------------------------------------------- /db/migrate/20180719165651_add_password_checker_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20180719165651_add_password_checker_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20180721102347_add_data_column_to_user_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20180721102347_add_data_column_to_user_tag.rb -------------------------------------------------------------------------------- /db/migrate/20180809125000_add_tweet_column_to_comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20180809125000_add_tweet_column_to_comment.rb -------------------------------------------------------------------------------- /db/migrate/20180921210045_add_impressions_ip_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20180921210045_add_impressions_ip_index.rb -------------------------------------------------------------------------------- /db/migrate/20181111164402_add_is_verified_to_rusers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20181111164402_add_is_verified_to_rusers.rb -------------------------------------------------------------------------------- /db/migrate/20181219043340_add_fields_to_node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20181219043340_add_fields_to_node.rb -------------------------------------------------------------------------------- /db/migrate/20190104000000_remove_drupal_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20190104000000_remove_drupal_users.rb -------------------------------------------------------------------------------- /db/migrate/20190104173959_add_index_to_images_and_likes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20190104173959_add_index_to_images_and_likes.rb -------------------------------------------------------------------------------- /db/migrate/20190105183720_add_col_to_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20190105183720_add_col_to_comments.rb -------------------------------------------------------------------------------- /db/migrate/20190301075323_add_first_tag_poster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20190301075323_add_first_tag_poster.rb -------------------------------------------------------------------------------- /db/migrate/20190303180731_migrate_answers_to_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20190303180731_migrate_answers_to_comments.rb -------------------------------------------------------------------------------- /db/migrate/20190401093400_update_node_view_count.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20190401093400_update_node_view_count.rb -------------------------------------------------------------------------------- /db/migrate/20190418230000_remove_node_legacy_views.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20190418230000_remove_node_legacy_views.rb -------------------------------------------------------------------------------- /db/migrate/20190708141605_create_csvfiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20190708141605_create_csvfiles.rb -------------------------------------------------------------------------------- /db/migrate/20190708141804_add_csvfile_to_rusers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20190708141804_add_csvfile_to_rusers.rb -------------------------------------------------------------------------------- /db/migrate/20190728135035_add_graphobject_to_csvfiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20190728135035_add_graphobject_to_csvfiles.rb -------------------------------------------------------------------------------- /db/migrate/20200705143706_add_flag_to_node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20200705143706_add_flag_to_node.rb -------------------------------------------------------------------------------- /db/migrate/20200705161259_add_flag_to_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20200705161259_add_flag_to_comments.rb -------------------------------------------------------------------------------- /db/migrate/20210208151828_add_activity_timestamp_to_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20210208151828_add_activity_timestamp_to_tag.rb -------------------------------------------------------------------------------- /db/migrate/20220625142729_convert_map_to_note_nodes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20220625142729_convert_map_to_note_nodes.rb -------------------------------------------------------------------------------- /db/migrate/20220726161355_drop_answers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/migrate/20220726161355_drop_answers.rb -------------------------------------------------------------------------------- /db/schema-drupal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/schema-drupal.rb -------------------------------------------------------------------------------- /db/schema.rb.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/schema.rb.example -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /doc/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/doc/API.md -------------------------------------------------------------------------------- /doc/CHECKINS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/doc/CHECKINS.md -------------------------------------------------------------------------------- /doc/CODECLIMATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/doc/CODECLIMATE.md -------------------------------------------------------------------------------- /doc/CONTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/doc/CONTAINERS.md -------------------------------------------------------------------------------- /doc/DATA_MODEL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/doc/DATA_MODEL.md -------------------------------------------------------------------------------- /doc/EMAIL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/doc/EMAIL.md -------------------------------------------------------------------------------- /doc/LABELS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/doc/LABELS.md -------------------------------------------------------------------------------- /doc/LINTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/doc/LINTING.md -------------------------------------------------------------------------------- /doc/LOGIN_SYSTEMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/doc/LOGIN_SYSTEMS.md -------------------------------------------------------------------------------- /doc/MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/doc/MAINTAINERS.md -------------------------------------------------------------------------------- /doc/OPENID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/doc/OPENID.md -------------------------------------------------------------------------------- /doc/PREREQUISITES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/doc/PREREQUISITES.md -------------------------------------------------------------------------------- /doc/RECAPTCHA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/doc/RECAPTCHA.md -------------------------------------------------------------------------------- /doc/SUPPORTERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/doc/SUPPORTERS.md -------------------------------------------------------------------------------- /doc/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/doc/TESTING.md -------------------------------------------------------------------------------- /doc/Translation_System.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/doc/Translation_System.md -------------------------------------------------------------------------------- /doc/data-model.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/doc/data-model.svg -------------------------------------------------------------------------------- /doc/images/code_climate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/doc/images/code_climate.png -------------------------------------------------------------------------------- /doc/images/code_climate_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/doc/images/code_climate_1.png -------------------------------------------------------------------------------- /doc/images/codeclimate_read_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/doc/images/codeclimate_read_up.png -------------------------------------------------------------------------------- /doc/images/cognitive_complexity_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/doc/images/cognitive_complexity_example.png -------------------------------------------------------------------------------- /doc/reply_by_tweet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/doc/reply_by_tweet.md -------------------------------------------------------------------------------- /lib/admin_constraint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/lib/admin_constraint.rb -------------------------------------------------------------------------------- /lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/related_and_hyphenated_terms.dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/lib/related_and_hyphenated_terms.dict.txt -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/critical_path_css.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/lib/tasks/critical_path_css.rake -------------------------------------------------------------------------------- /lib/text_search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/lib/text_search.rb -------------------------------------------------------------------------------- /lib/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/lib/utils.rb -------------------------------------------------------------------------------- /nodesource.gpg.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/nodesource.gpg.key -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/public/500.html -------------------------------------------------------------------------------- /public/502.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/public/502.html -------------------------------------------------------------------------------- /public/503.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/public/503.html -------------------------------------------------------------------------------- /public/bookmarklet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/public/bookmarklet.js -------------------------------------------------------------------------------- /public/cron_log.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/emoji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/public/emoji.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.ico.bkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/public/favicon.ico.bkp -------------------------------------------------------------------------------- /public/favicon.ico.nostripes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/public/favicon.ico.nostripes -------------------------------------------------------------------------------- /public/images/cc-by-sa-88x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/public/images/cc-by-sa-88x31.png -------------------------------------------------------------------------------- /public/images/pl-255.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/public/images/pl-255.png -------------------------------------------------------------------------------- /public/images/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/public/images/pl.png -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/photos/original/missing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/public/photos/original/missing.png -------------------------------------------------------------------------------- /public/research-notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/public/research-notify.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/public/sw.js -------------------------------------------------------------------------------- /public/system/PLACEHOLDER: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /script/mailman_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/script/mailman_server -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/script/rails -------------------------------------------------------------------------------- /spec/javascripts/comment_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/spec/javascripts/comment_spec.js -------------------------------------------------------------------------------- /spec/javascripts/fixtures/comment_expand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/spec/javascripts/fixtures/comment_expand.html -------------------------------------------------------------------------------- /spec/javascripts/fixtures/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/spec/javascripts/fixtures/content.html -------------------------------------------------------------------------------- /spec/javascripts/fixtures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/spec/javascripts/fixtures/index.html -------------------------------------------------------------------------------- /spec/javascripts/fixtures/inline_grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/spec/javascripts/fixtures/inline_grid.html -------------------------------------------------------------------------------- /spec/javascripts/fixtures/tagging.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/spec/javascripts/fixtures/tagging.html -------------------------------------------------------------------------------- /spec/javascripts/fixtures/unlike.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/spec/javascripts/fixtures/unlike.html -------------------------------------------------------------------------------- /spec/javascripts/helpers/mock-ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/spec/javascripts/helpers/mock-ajax.js -------------------------------------------------------------------------------- /spec/javascripts/inline_grids_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/spec/javascripts/inline_grids_spec.js -------------------------------------------------------------------------------- /spec/javascripts/like_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/spec/javascripts/like_spec.js -------------------------------------------------------------------------------- /spec/javascripts/spec_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/spec/javascripts/spec_helper.js -------------------------------------------------------------------------------- /spec/javascripts/support/jasmine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/spec/javascripts/support/jasmine.yml -------------------------------------------------------------------------------- /spec/javascripts/tagging_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/spec/javascripts/tagging_spec.js -------------------------------------------------------------------------------- /spec/javascripts/wikis_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/spec/javascripts/wikis_spec.js -------------------------------------------------------------------------------- /spec/teaspoon_env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/spec/teaspoon_env.rb -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/start.sh -------------------------------------------------------------------------------- /static/images/cc-by-sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/static/images/cc-by-sa.png -------------------------------------------------------------------------------- /static/images/item1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/static/images/item1.jpg -------------------------------------------------------------------------------- /static/images/item2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/static/images/item2.jpg -------------------------------------------------------------------------------- /static/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/static/images/search.png -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/static/index.html -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/static/style.css -------------------------------------------------------------------------------- /test/action_cable/cable_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/action_cable/cable_test.rb -------------------------------------------------------------------------------- /test/action_cable/integration/comment_notification_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/action_cable/integration/comment_notification_test.rb -------------------------------------------------------------------------------- /test/action_cable/unit/connection_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/action_cable/unit/connection_test.rb -------------------------------------------------------------------------------- /test/action_cable/unit/room_channel_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/action_cable/unit/room_channel_test.rb -------------------------------------------------------------------------------- /test/action_cable/unit/user_channel_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/action_cable/unit/user_channel_test.rb -------------------------------------------------------------------------------- /test/action_cable/unit/user_notification_channel_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/action_cable/unit/user_notification_channel_test.rb -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/channels/room_channel_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/channels/room_channel_test.rb -------------------------------------------------------------------------------- /test/comment_system_tests/comment_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/comment_system_tests/comment_test.rb -------------------------------------------------------------------------------- /test/fixtures/answer_selections.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/fixtures/answer_selections.yml -------------------------------------------------------------------------------- /test/fixtures/comments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/fixtures/comments.yml -------------------------------------------------------------------------------- /test/fixtures/csvfiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/fixtures/csvfiles.yml -------------------------------------------------------------------------------- /test/fixtures/images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/fixtures/images.yml -------------------------------------------------------------------------------- /test/fixtures/incoming_test_emails/gmail/filtered_comment.txt: -------------------------------------------------------------------------------- 1 | This is another reply by email comment 2 | 3 | -------------------------------------------------------------------------------- /test/fixtures/incoming_test_emails/gmail/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/fixtures/incoming_test_emails/gmail/readme.md -------------------------------------------------------------------------------- /test/fixtures/incoming_test_emails/outlook/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/fixtures/incoming_test_emails/outlook/readme.md -------------------------------------------------------------------------------- /test/fixtures/incoming_test_emails/yahoo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/fixtures/incoming_test_emails/yahoo/readme.md -------------------------------------------------------------------------------- /test/fixtures/likes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/fixtures/likes.yml -------------------------------------------------------------------------------- /test/fixtures/node_selections.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/fixtures/node_selections.yml -------------------------------------------------------------------------------- /test/fixtures/node_tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/fixtures/node_tags.yml -------------------------------------------------------------------------------- /test/fixtures/nodes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/fixtures/nodes.yml -------------------------------------------------------------------------------- /test/fixtures/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/fixtures/rails.png -------------------------------------------------------------------------------- /test/fixtures/relationships.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/fixtures/relationships.yml -------------------------------------------------------------------------------- /test/fixtures/revisions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/fixtures/revisions.yml -------------------------------------------------------------------------------- /test/fixtures/small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/fixtures/small.gif -------------------------------------------------------------------------------- /test/fixtures/tag_selections.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/fixtures/tag_selections.yml -------------------------------------------------------------------------------- /test/fixtures/tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/fixtures/tags.yml -------------------------------------------------------------------------------- /test/fixtures/user_tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/fixtures/user_tags.yml -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/functional/admin_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/admin_controller_test.rb -------------------------------------------------------------------------------- /test/functional/api/search_api_full_text_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/api/search_api_full_text_test.rb -------------------------------------------------------------------------------- /test/functional/api/search_api_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/api/search_api_test.rb -------------------------------------------------------------------------------- /test/functional/application_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/application_controller_test.rb -------------------------------------------------------------------------------- /test/functional/batch_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/batch_controller_test.rb -------------------------------------------------------------------------------- /test/functional/comment_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/comment_controller_test.rb -------------------------------------------------------------------------------- /test/functional/comment_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/comment_mailer_test.rb -------------------------------------------------------------------------------- /test/functional/csvfiles_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/csvfiles_controller_test.rb -------------------------------------------------------------------------------- /test/functional/editor_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/editor_controller_test.rb -------------------------------------------------------------------------------- /test/functional/features_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/features_controller_test.rb -------------------------------------------------------------------------------- /test/functional/home_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/home_controller_test.rb -------------------------------------------------------------------------------- /test/functional/images_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/images_controller_test.rb -------------------------------------------------------------------------------- /test/functional/legacy_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/legacy_controller_test.rb -------------------------------------------------------------------------------- /test/functional/like_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/like_controller_test.rb -------------------------------------------------------------------------------- /test/functional/map_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/map_controller_test.rb -------------------------------------------------------------------------------- /test/functional/notes_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/notes_controller_test.rb -------------------------------------------------------------------------------- /test/functional/questions_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/questions_controller_test.rb -------------------------------------------------------------------------------- /test/functional/relationships_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/relationships_controller_test.rb -------------------------------------------------------------------------------- /test/functional/search_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/search_controller_test.rb -------------------------------------------------------------------------------- /test/functional/spam2_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/spam2_controller_test.rb -------------------------------------------------------------------------------- /test/functional/stats_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/stats_controller_test.rb -------------------------------------------------------------------------------- /test/functional/subscription_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/subscription_controller_test.rb -------------------------------------------------------------------------------- /test/functional/swagger_doc_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/swagger_doc_test.rb -------------------------------------------------------------------------------- /test/functional/tag_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/tag_controller_test.rb -------------------------------------------------------------------------------- /test/functional/talk_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/talk_controller_test.rb -------------------------------------------------------------------------------- /test/functional/user_sessions_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/user_sessions_controller_test.rb -------------------------------------------------------------------------------- /test/functional/user_tags_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/user_tags_controller_test.rb -------------------------------------------------------------------------------- /test/functional/users_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/users_controller_test.rb -------------------------------------------------------------------------------- /test/functional/wiki_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/functional/wiki_controller_test.rb -------------------------------------------------------------------------------- /test/integration/I18n_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/integration/I18n_test.rb -------------------------------------------------------------------------------- /test/integration/login_flow_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/integration/login_flow_test.rb -------------------------------------------------------------------------------- /test/integration/moderate_and_ban_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/integration/moderate_and_ban_test.rb -------------------------------------------------------------------------------- /test/integration/node_insert_extras_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/integration/node_insert_extras_test.rb -------------------------------------------------------------------------------- /test/integration/node_series_tag_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/integration/node_series_tag_test.rb -------------------------------------------------------------------------------- /test/integration/node_unique_views_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/integration/node_unique_views_test.rb -------------------------------------------------------------------------------- /test/integration/node_update_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/integration/node_update_test.rb -------------------------------------------------------------------------------- /test/integration/openid_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/integration/openid_test.rb -------------------------------------------------------------------------------- /test/integration/public_pages_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/integration/public_pages_test.rb -------------------------------------------------------------------------------- /test/integration/revision_spam_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/integration/revision_spam_test.rb -------------------------------------------------------------------------------- /test/integration/routes_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/integration/routes_test.rb -------------------------------------------------------------------------------- /test/integration/signup_flow_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/integration/signup_flow_test.rb -------------------------------------------------------------------------------- /test/integration/token_comment_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/integration/token_comment_test.rb -------------------------------------------------------------------------------- /test/integration/wiki_creation_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/integration/wiki_creation_test.rb -------------------------------------------------------------------------------- /test/mailers/previews/subscription_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/mailers/previews/subscription_mailer_preview.rb -------------------------------------------------------------------------------- /test/system/csvfiles_controllers_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/system/csvfiles_controllers_test.rb -------------------------------------------------------------------------------- /test/system/dashboard_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/system/dashboard_test.rb -------------------------------------------------------------------------------- /test/system/dashboard_v2_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/system/dashboard_v2_test.rb -------------------------------------------------------------------------------- /test/system/editor_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/system/editor_test.rb -------------------------------------------------------------------------------- /test/system/map_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/system/map_test.rb -------------------------------------------------------------------------------- /test/system/moderation_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/system/moderation_tests.rb -------------------------------------------------------------------------------- /test/system/notes_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/system/notes_test.rb -------------------------------------------------------------------------------- /test/system/place_tags_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/system/place_tags_test.rb -------------------------------------------------------------------------------- /test/system/post_question_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/system/post_question_test.rb -------------------------------------------------------------------------------- /test/system/post_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/system/post_test.rb -------------------------------------------------------------------------------- /test/system/print_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/system/print_test.rb -------------------------------------------------------------------------------- /test/system/rich_text_editor_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/system/rich_text_editor_test.rb -------------------------------------------------------------------------------- /test/system/screenshots_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/system/screenshots_test.rb -------------------------------------------------------------------------------- /test/system/search_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/system/search_test.rb -------------------------------------------------------------------------------- /test/system/sessions_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/system/sessions_test.rb -------------------------------------------------------------------------------- /test/system/settings_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/system/settings_test.rb -------------------------------------------------------------------------------- /test/system/signup_form_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/system/signup_form_test.rb -------------------------------------------------------------------------------- /test/system/signup_spamaway_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/system/signup_spamaway_test.rb -------------------------------------------------------------------------------- /test/system/spam2_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/system/spam2_test.rb -------------------------------------------------------------------------------- /test/system/tag_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/system/tag_test.rb -------------------------------------------------------------------------------- /test/system/tags_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/system/tags_controller_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/unit/admin_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/admin_mailer_test.rb -------------------------------------------------------------------------------- /test/unit/api/search_service_full_text_search_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/api/search_service_full_text_search_test.rb -------------------------------------------------------------------------------- /test/unit/api/search_service_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/api/search_service_test.rb -------------------------------------------------------------------------------- /test/unit/comment_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/comment_mailer_test.rb -------------------------------------------------------------------------------- /test/unit/comment_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/comment_test.rb -------------------------------------------------------------------------------- /test/unit/constants_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/constants_test.rb -------------------------------------------------------------------------------- /test/unit/doc_result_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/doc_result_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/admin_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/helpers/admin_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/application_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/helpers/application_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/features_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/helpers/features_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/home_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/helpers/home_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/location_tags_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/helpers/location_tags_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/map_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/helpers/map_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/notes_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/helpers/notes_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/tag_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/helpers/tag_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/user_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/helpers/user_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/user_tags_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/helpers/user_tags_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/wiki_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/helpers/wiki_helper_test.rb -------------------------------------------------------------------------------- /test/unit/image_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/image_test.rb -------------------------------------------------------------------------------- /test/unit/node_coordinates_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/node_coordinates_test.rb -------------------------------------------------------------------------------- /test/unit/node_shared_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/node_shared_test.rb -------------------------------------------------------------------------------- /test/unit/node_tag_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/node_tag_test.rb -------------------------------------------------------------------------------- /test/unit/node_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/node_test.rb -------------------------------------------------------------------------------- /test/unit/relationship_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/relationship_test.rb -------------------------------------------------------------------------------- /test/unit/revision_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/revision_test.rb -------------------------------------------------------------------------------- /test/unit/statistics_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/statistics_test.rb -------------------------------------------------------------------------------- /test/unit/subscription_location_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/subscription_location_test.rb -------------------------------------------------------------------------------- /test/unit/subscription_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/subscription_mailer_test.rb -------------------------------------------------------------------------------- /test/unit/tag_selection_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/tag_selection_test.rb -------------------------------------------------------------------------------- /test/unit/tag_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/tag_test.rb -------------------------------------------------------------------------------- /test/unit/user_tag_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/user_tag_test.rb -------------------------------------------------------------------------------- /test/unit/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/user_test.rb -------------------------------------------------------------------------------- /test/unit/utils_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/utils_test.rb -------------------------------------------------------------------------------- /test/unit/welcome_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/test/unit/welcome_mailer_test.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/publiclab/plots2/HEAD/yarn.lock --------------------------------------------------------------------------------