├── .env.development ├── .gitignore ├── .haml-lint.yml ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── .travis.yml ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.rdoc ├── Rakefile ├── app ├── assets │ ├── images │ │ ├── LL_mini.png │ │ ├── favicon.png │ │ ├── feed_item_placeholder.png │ │ ├── protocol_atom.png │ │ ├── protocol_json.png │ │ ├── protocol_rss.png │ │ └── ui-icons_8ec63f_256x240.png │ ├── javascripts │ │ ├── admin.js │ │ ├── application.js │ │ ├── autocomplete_user.js │ │ ├── ckeditor-setup.js │ │ ├── hubs │ │ │ ├── bookmark_collections.js │ │ │ ├── custom_republished_feeds.js │ │ │ ├── scoreboard.js │ │ │ ├── search.js │ │ │ ├── statistics.js │ │ │ ├── tags-filter.js │ │ │ ├── tags-sort.js │ │ │ └── team.js │ │ └── tags │ │ │ └── controls.js │ └── stylesheets │ │ ├── admin │ │ ├── hubs.scss │ │ ├── settings.scss │ │ └── users.scss │ │ ├── application.scss │ │ ├── bookmarklet.scss │ │ ├── devise.scss │ │ ├── footer.scss │ │ ├── front.scss │ │ ├── hubs.scss │ │ ├── jquery_ui.scss │ │ ├── messages.scss │ │ ├── my_vars.scss │ │ ├── search.scss │ │ ├── tagteam.scss │ │ └── variables.scss ├── concerns │ ├── delegatable_roles.rb │ ├── orderable.rb │ ├── tag_scopable.rb │ └── tag_sorter.rb ├── controllers │ ├── admin │ │ ├── home_controller.rb │ │ ├── hubs_controller.rb │ │ ├── settings_controller.rb │ │ ├── user_approvals_controller.rb │ │ └── users_controller.rb │ ├── application_controller.rb │ ├── bookmarklets_controller.rb │ ├── documentations_controller.rb │ ├── export_import_controller.rb │ ├── feed_items_controller.rb │ ├── feed_retrievals_controller.rb │ ├── hub_feeds_controller.rb │ ├── hubs_controller.rb │ ├── input_sources_controller.rb │ ├── messages_controller.rb │ ├── republished_feeds_controller.rb │ ├── tag_filters_controller.rb │ ├── tags_controller.rb │ ├── users │ │ ├── registrations_controller.rb │ │ └── search_controller.rb │ └── users_controller.rb ├── helpers │ ├── application_helper.rb │ ├── bookmarklets_helper.rb │ ├── hub_feeds_helper.rb │ ├── hubs_helper.rb │ ├── tag_filter_helper.rb │ └── tags_helper.rb ├── interactions │ ├── feed_items │ │ ├── copy_move_to_hub.rb │ │ ├── create_change_notification.rb │ │ ├── create_or_update.rb │ │ ├── item_tag_actions_by_user.rb │ │ ├── locate_tag_filter_users.rb │ │ ├── locate_tagging_users_by_hub.rb │ │ ├── locate_users_to_notify.rb │ │ └── update.rb │ ├── hub_user_notifications │ │ └── enable_for_all_hub_users.rb │ ├── hubs │ │ ├── leave.rb │ │ ├── update_notification_settings.rb │ │ └── update_tagging_settings.rb │ ├── messages │ │ └── create.rb │ ├── roles │ │ └── locate_hub_owners.rb │ ├── statistics │ │ ├── altered_items.rb │ │ ├── deprecated_tags.rb │ │ ├── hub_prefixed_tags.rb │ │ ├── hub_taggers.rb │ │ ├── hub_tags_that_have_no_prefix.rb │ │ ├── hub_tags_that_use_prefix.rb │ │ ├── scoreboard.rb │ │ ├── tag_tagged_by_feed.rb │ │ ├── tag_tagged_by_filters.rb │ │ ├── tag_tagged_by_taggers.rb │ │ ├── taggings_by_user.rb │ │ ├── taggings_of_user.rb │ │ ├── tags_approved.rb │ │ └── tags_used_not_approved.rb │ ├── tag_filters │ │ └── create.rb │ ├── tags │ │ ├── check_approved.rb │ │ └── check_deprecated.rb │ └── users │ │ ├── self_remove.rb │ │ └── sort.rb ├── jobs │ ├── application_job.rb │ ├── feed_items │ │ └── send_change_notification_job.rb │ ├── feeds │ │ ├── expire_feed_visitors_job.rb │ │ ├── process_visitors_job.rb │ │ └── store_feed_visitor_job.rb │ ├── tag_filters │ │ └── destroy_job.rb │ └── tagging_notifications │ │ ├── apply_tag_filters_with_notification.rb │ │ ├── feed_item_notification.rb │ │ └── send_notification_job.rb ├── mailers │ ├── admin │ │ └── user_approvals_mailer.rb │ ├── application_mailer.rb │ ├── contact.rb │ ├── feed_items │ │ └── notifications_mailer.rb │ ├── messages_mailer.rb │ ├── notifications_mailer.rb │ └── tagging_notifications │ │ └── notifications_mailer.rb ├── models │ ├── add_tag_filter.rb │ ├── admin │ │ └── setting.rb │ ├── application_record.rb │ ├── deactivated_tagging.rb │ ├── delete_tag_filter.rb │ ├── documentation.rb │ ├── feed.rb │ ├── feed_item.rb │ ├── feed_item_observer.rb │ ├── feed_retrieval.rb │ ├── feed_subscriber.rb │ ├── feed_visitor.rb │ ├── hub.rb │ ├── hub_approved_tag.rb │ ├── hub_feed.rb │ ├── hub_feed_observer.rb │ ├── hub_tag_description.rb │ ├── hub_user_notification.rb │ ├── input_source.rb │ ├── modify_tag_filter.rb │ ├── removed_tag_suggestion.rb │ ├── republished_feed.rb │ ├── role.rb │ ├── search_remix.rb │ ├── supplement_tag_filter.rb │ ├── tag_filter.rb │ ├── tag_filter_observer.rb │ └── user.rb ├── policies │ ├── admin_home_policy.rb │ ├── admin_hub_policy.rb │ ├── admin_setting_policy.rb │ ├── application_policy.rb │ ├── documentation_policy.rb │ ├── feed_item_policy.rb │ ├── hub_feed_policy.rb │ ├── hub_policy.rb │ ├── republished_feed_policy.rb │ ├── tag_filter_policy.rb │ ├── user_approval_policy.rb │ └── user_policy.rb ├── views │ ├── admin │ │ ├── home │ │ │ └── index.html.haml │ │ ├── hubs │ │ │ └── index.html.haml │ │ ├── settings │ │ │ └── new.html.haml │ │ ├── shared │ │ │ └── _nav_menu.html.haml │ │ ├── user_approvals │ │ │ └── index.html.haml │ │ ├── user_approvals_mailer │ │ │ ├── notify_admin_of_signup.html.haml │ │ │ ├── notify_admin_of_signup.text.haml │ │ │ ├── notify_user_of_denial.html.haml │ │ │ └── notify_user_of_denial.text.haml │ │ └── users │ │ │ └── index.html.haml │ ├── bookmarklets │ │ ├── add.html.haml │ │ ├── add_item.html.haml │ │ └── confirm.html.haml │ ├── contact │ │ └── request_rights.text.haml │ ├── devise │ │ ├── ._.DS_Store │ │ ├── confirmations │ │ │ └── new.html.haml │ │ ├── mailer │ │ │ ├── confirmation_instructions.html.haml │ │ │ ├── password_change.html.haml │ │ │ ├── reset_password_instructions.html.haml │ │ │ └── unlock_instructions.html.haml │ │ ├── passwords │ │ │ ├── edit.html.haml │ │ │ └── new.html.haml │ │ ├── registrations │ │ │ ├── edit.html.haml │ │ │ └── new.html.haml │ │ ├── sessions │ │ │ └── new.html.haml │ │ ├── shared │ │ │ └── _links.html.haml │ │ └── unlocks │ │ │ └── new.html.haml │ ├── documentations │ │ ├── edit.html.haml │ │ ├── new.html.haml │ │ └── show.html.haml │ ├── errors │ │ └── 500.html.haml │ ├── export_import │ │ └── index.html.haml │ ├── feed_items │ │ ├── _about.html.haml │ │ ├── _alter_view.html.haml │ │ ├── _content.html.haml │ │ ├── _edit.html.haml │ │ ├── _grid.html.haml │ │ ├── _grid_item.html.haml │ │ ├── _list_item.html.haml │ │ ├── _tabs.html.haml │ │ ├── about.html.haml │ │ ├── content.html.haml │ │ ├── controls.html.haml │ │ ├── copy_move_to_hub.haml │ │ ├── edit.html.haml │ │ ├── index.atom.builder │ │ ├── index.html.haml │ │ ├── index.rss.builder │ │ ├── index_grid.html.haml │ │ ├── notifications_mailer │ │ │ └── feed_item_change_notification.text.haml │ │ ├── related.html.haml │ │ ├── related_grid.html.haml │ │ ├── show.html.haml │ │ ├── tag_list.html.haml │ │ └── tags_actions.html.haml │ ├── feed_retrievals │ │ ├── _list_item.html.haml │ │ ├── index.html.haml │ │ └── show.html.haml │ ├── hub_feed_item_tag_filters │ │ ├── _list_item.html.haml │ │ ├── destroy.js.haml │ │ └── index.html.haml │ ├── hub_feed_tag_filters │ │ ├── _list_item.html.haml │ │ └── index.html.haml │ ├── hub_feeds │ │ ├── _about.html.haml │ │ ├── _list_item.html.haml │ │ ├── _more_details.html.haml │ │ ├── _tabs.html.haml │ │ ├── _top_panel.html.haml │ │ ├── controls.html.haml │ │ ├── edit.html.haml │ │ ├── import.html.haml │ │ ├── index.html.haml │ │ ├── new.html.haml │ │ ├── republished_feeds.html.haml │ │ └── show.html.haml │ ├── hub_tag_filters │ │ ├── _list_item.html.haml │ │ └── index.html.haml │ ├── hubs │ │ ├── _hub_search_form.html.haml │ │ ├── _hub_tabs.html.haml │ │ ├── _hubs_list.html.haml │ │ ├── _list_item.html.haml │ │ ├── _list_item_extended.html.haml │ │ ├── _search_form.html.haml │ │ ├── _tabs.html.haml │ │ ├── _tag_control_popup.html.haml │ │ ├── _tag_list_item.html.haml │ │ ├── _top_panel.html.haml │ │ ├── _user.html.haml │ │ ├── _user_list_item.html.haml │ │ ├── about.html.haml │ │ ├── by_date.html.haml │ │ ├── contact.html.haml │ │ ├── create.html.haml │ │ ├── created.html.haml │ │ ├── custom_republished_feeds.html.haml │ │ ├── edit.html.haml │ │ ├── feeds.html.haml │ │ ├── home.html.haml │ │ ├── index.html.haml │ │ ├── item_search.html.haml │ │ ├── items.atom.builder │ │ ├── items.html.haml │ │ ├── items.rss.builder │ │ ├── items_grid.html.haml │ │ ├── list.html.haml │ │ ├── meta.html.haml │ │ ├── my.html.haml │ │ ├── new.html.haml │ │ ├── notifications.html.haml │ │ ├── retrievals.html.haml │ │ ├── scoreboard.html.haml │ │ ├── search.html.haml │ │ ├── settings.html.haml │ │ ├── settings │ │ │ ├── _notifications.html.haml │ │ │ └── _tagging.html.haml │ │ ├── show.html.haml │ │ ├── statistics.html.haml │ │ ├── tag_controls.html.haml │ │ ├── taggers.html.haml │ │ ├── team.html.haml │ │ └── team │ │ │ ├── _assign_roles.html.haml │ │ │ └── _remove_roles.html.haml │ ├── input_sources │ │ ├── _list_item.html.haml │ │ ├── edit.html.haml │ │ ├── find.html.haml │ │ └── new.html.haml │ ├── layouts │ │ ├── application.html.haml │ │ ├── bookmarklet.html.haml │ │ ├── mailer.html.haml │ │ ├── mailer.text.haml │ │ └── tabs.html.haml │ ├── messages │ │ └── new.html.haml │ ├── notifications_mailer │ │ └── user_data_import_completion_notification.text.haml │ ├── republished_feeds │ │ ├── _list_item.html.haml │ │ ├── _more_details.html.haml │ │ ├── _tabs.html.haml │ │ ├── _top_panel.html.haml │ │ ├── edit.html.haml │ │ ├── index.html.haml │ │ ├── inputs.html.haml │ │ ├── items.atom.builder │ │ ├── items.html.haml │ │ ├── items.rss.builder │ │ ├── items_grid.html.haml │ │ ├── new.html.haml │ │ ├── removals.html.haml │ │ └── show.html.haml │ ├── shared │ │ ├── _bookmarklet_button.html.haml │ │ ├── _flashes.html.haml │ │ ├── _footer.html.haml │ │ ├── _logo.html.haml │ │ ├── _paginate.html.haml │ │ ├── admin │ │ │ └── forms │ │ │ │ └── _setting.html.haml │ │ ├── forms │ │ │ ├── _documentation.html.haml │ │ │ ├── _feed.html.haml │ │ │ ├── _feed_item_bookmarklet.html.haml │ │ │ ├── _hub.html.haml │ │ │ ├── _hub_feed.html.haml │ │ │ ├── _input_source.html.haml │ │ │ └── _republished_feed.html.haml │ │ ├── line_items │ │ │ ├── _feed.html.haml │ │ │ ├── _feed_item.html.haml │ │ │ ├── _republished_feed_choice.html.haml │ │ │ ├── _tag.html.haml │ │ │ └── _user.html.haml │ │ ├── roles_on │ │ │ ├── _feed_item.html.haml │ │ │ ├── _hub.html.haml │ │ │ ├── _hub_feed.html.haml │ │ │ ├── _hub_feed_item_tag_filter.html.haml │ │ │ ├── _hub_feed_tag_filter.html.haml │ │ │ ├── _hub_tag_filter.html.haml │ │ │ ├── _input_source.html.haml │ │ │ └── _republished_feed.html.haml │ │ └── search_results │ │ │ ├── _feed.html.haml │ │ │ ├── _feed_item.html.haml │ │ │ ├── _list.html.haml │ │ │ └── _tag.html.haml │ ├── tagging_notifications │ │ └── notifications_mailer │ │ │ └── tagging_change_notification.text.haml │ ├── tags │ │ ├── _graph_item.html.haml │ │ ├── _statistics.html.haml │ │ ├── _tabs.html.haml │ │ ├── _tag_statistics.html.haml │ │ ├── _top_panel.html.haml │ │ ├── atom.builder │ │ ├── deprecated_tags.html.haml │ │ ├── index.html.haml │ │ ├── rss.builder │ │ ├── show.html.haml │ │ ├── show_grid.html.haml │ │ ├── statistics.html.haml │ │ ├── tags_approved.html.haml │ │ └── tags_used_not_approved.html.haml │ └── users │ │ ├── _hub_items_tabs.html.haml │ │ ├── _tabs.html.haml │ │ ├── _tags_top_panel.html.haml │ │ ├── autocomplete.html.haml │ │ ├── hub_items.html.haml │ │ ├── roles_on.html.haml │ │ ├── show.html.haml │ │ ├── tags.html.haml │ │ ├── tags_atom.builder │ │ ├── tags_grid.html.haml │ │ └── tags_rss.builder └── workers │ ├── apply_tag_filters.rb │ ├── expire_file_cache.rb │ ├── import_feed_items.rb │ ├── import_user_data.rb │ ├── recalc_all_items.rb │ ├── reindex_feed_items_after_hub_feed_destroyed.rb │ ├── reindex_feed_retrievals.rb │ ├── reindex_tags.rb │ └── update_feeds.rb ├── bin ├── bundle ├── rails ├── rake ├── rspec ├── rubocop ├── setup ├── spring ├── update └── yarn ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── cucumber.yml ├── database.yml.example ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── 00_acts_as_taggable_on_extensions.rb │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── devise.rb │ ├── edismax.rb │ ├── filter_parameter_logging.rb │ ├── formtastic.rb │ ├── friendly_id.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── new_framework_defaults_5_1.rb │ ├── non_digest_assets.rb │ ├── recaptcha.rb │ ├── session_store.rb │ ├── sunspot_strip_control_chars.rb │ ├── tagteam.rb │ ├── will_paginate.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ └── en.yml ├── puma.rb ├── resque-pool.yml ├── resque_schedule.yml.example ├── routes.rb ├── schedule.rb ├── secrets.yml ├── setup_load_paths.rb ├── sidekiq.yml ├── spring.rb ├── sunspot.yml.example └── tagteam.yml.example ├── db ├── documentation.yml ├── migrate │ ├── 20110714150903_devise_create_users.rb │ ├── 20110714202352_create_roles.rb │ ├── 20110714220456_create_hubs.rb │ ├── 20110715220038_create_feeds.rb │ ├── 20110718193629_create_hub_feeds.rb │ ├── 20110725211931_create_feed_retrievals.rb │ ├── 20110726122511_create_feed_items.rb │ ├── 20110726184032_create_hub_tag_filters.rb │ ├── 20110726185850_create_republished_feeds.rb │ ├── 20110815182850_create_input_sources.rb │ ├── 20111128202414_create_modify_tag_filters.rb │ ├── 20111128232839_create_delete_tag_filters.rb │ ├── 20111128233117_create_add_tag_filters.rb │ ├── 20111205190441_acts_as_taggable_on_migration.rb │ ├── 20120109130735_create_hub_feed_item_tag_filters.rb │ ├── 20120109130927_create_hub_feed_tag_filters.rb │ ├── 20120213151834_create_documentations.rb │ ├── 20120518173803_add_username_to_users.rb │ ├── 20120713184742_add_columns_to_republished_feed.rb │ ├── 20130822213157_add_created_by_to_hub_feed_item_tag_filter.rb │ ├── 20131028214044_create_search_remixes.rb │ ├── 20131031134706_add_nickname_to_hubs.rb │ ├── 20131031140017_create_friendly_id_slugs.rb │ ├── 20141029173233_add_missing_unique_indices.acts_as_taggable_on_engine.rb │ ├── 20141029173235_add_missing_taggable_index.acts_as_taggable_on_engine.rb │ ├── 20150213205538_add_image_url_to_feed_item.rb │ ├── 20150605010749_create_deactivated_taggings.rb │ ├── 20150605201636_create_tag_filters.rb │ ├── 20150618160651_drop_old_tag_filters.rb │ ├── 20170208175027_add_unconfirmed_email_to_users.rb │ ├── 20170210165314_change_collation_for_tag_names.acts_as_taggable_on_engine.rb │ ├── 20170210165315_add_missing_indexes.acts_as_taggable_on_engine.rb │ ├── 20170213154531_add_taggers_notification_to_hubs.rb │ ├── 20170222155011_add_allow_sign_up_for_notifications_to_hubs.rb │ ├── 20170222162304_create_hub_user_notifications.rb │ ├── 20170302194356_add_setting_tags_delimiter_to_hub.rb │ ├── 20170303042810_add_approved_to_user.rb │ ├── 20170305213702_add_signup_reason_to_users.rb │ ├── 20170307193237_fix_data_published_in_feed_items.rb │ ├── 20170309211431_add_user_restriction_to_input_sources.rb │ ├── 20170311175714_update_input_sources_index.rb │ ├── 20170424200240_create_feed_visitors.rb │ ├── 20170424201008_create_feed_subscribers.rb │ ├── 20170802195159_add_setting_official_tag_prefix.rb │ ├── 20170809143830_create_hub_approved_tags.rb │ ├── 20170809173959_add_hub_setting_suggest_only_approved_tags.rb │ ├── 20171026144627_remove_allow_taggers_to_sign_up_for_notifications_from_hubs.rb │ ├── 20171030153046_tighten_hub_user_notifications.rb │ ├── 20171030195621_update_hub_user_notification_defaults.rb │ ├── 20171109213205_add_notifications_mandatory_to_hubs.rb │ ├── 20171128102024_change_tags_delimiter_to_array.rb │ ├── 20171129150829_create_admin_settings.rb │ ├── 20171208133150_add_unsubscribe_to_feeds.rb │ ├── 20171211104827_add_enable_tag_scoreboard_to_hubs.rb │ ├── 20180215200418_add_bookmarklet_empty_description_reminder_to_hubs.rb │ ├── 20180316092704_require_tag_delimiters_in_hubs.rb │ ├── 20180418110458_create_removed_tag_suggestions.rb │ ├── 20180516171333_add_require_admin_approval_to_settings.rb │ ├── 20180611155543_split_hub_tag_filterer_into_two.rb │ ├── 20180620160250_oatp_cleanup.rb │ ├── 20180622155046_tagging_cleanup.rb │ ├── 20180710170657_update_tags_delimiter_default.rb │ ├── 20180816161305_create_hub_tag_descriptions.rb │ └── 20180822171418_delayed_acts_as_taggable_upgrade.rb ├── schema.rb └── seeds.rb ├── doc ├── README_FOR_APP ├── ddl.dia ├── ddl.png ├── image_sources │ ├── bg_dot.xcf │ └── drawing.svg └── suber_tagging_final.doc ├── docker-compose.yml ├── docker ├── database.yml ├── init_db.sql ├── start_dev.sh └── start_test.sh ├── lib ├── acts_as_taggable_on_extensions │ ├── README │ ├── Rakefile │ ├── install.rb │ ├── lib │ │ └── acts_as_taggable_on_extensions.rb │ └── uninstall.rb ├── auth_utilities.rb ├── feed_utilities.rb ├── model_extensions.rb ├── parser_test.rb ├── rake_helper.rb ├── tagteam │ ├── export_import.rb │ ├── importer.rb │ └── importer │ │ ├── connotea.rb │ │ └── delicious.rb ├── tasks │ ├── .gitkeep │ ├── audits.rake │ ├── cucumber.rake │ ├── factory_girl.rake │ ├── migrate.rake │ ├── tagteam.rake │ └── test_data.rake ├── urls_stripper.rb └── will_paginate │ └── view_helpers │ └── custom_link_renderer.rb ├── public ├── 404.html ├── 422.html ├── _tests │ ├── djcp.rss │ ├── djcp_code.rss │ ├── djcp_delicious.rss │ ├── djcp_twitter.rss │ ├── doc.atom │ └── oa.africa.rss ├── favicon.ico ├── github-btn.html ├── humans.txt ├── images │ ├── loader.gif │ ├── ui-bg_diagonals-small_75_f3d8d8_40x40.png │ ├── ui-bg_diagonals-thick_65_a6a6a6_40x40.png │ ├── ui-bg_diagonals-thick_75_f3d8d8_40x40.png │ ├── ui-bg_flat_0_333333_40x100.png │ ├── ui-bg_flat_100_a6a6a6_40x100.png │ ├── ui-bg_flat_100_dddddd_40x100.png │ ├── ui-bg_flat_100_f6f6f6_40x100.png │ ├── ui-bg_flat_15_8ec63f_40x100.png │ ├── ui-bg_flat_15_a33724_40x100.png │ ├── ui-bg_flat_50_616161_40x100.png │ ├── ui-bg_flat_50_a6a6a6_40x100.png │ ├── ui-bg_flat_55_fbf8ee_40x100.png │ ├── ui-bg_flat_65_ffffff_40x100.png │ ├── ui-bg_flat_75_f3d8d8_40x100.png │ ├── ui-bg_flat_75_ffffff_40x100.png │ ├── ui-bg_glass_55_fbf8ee_1x400.png │ ├── ui-bg_highlight-hard_100_f6f6f6_1x100.png │ ├── ui-icons_151c21_256x240.png │ ├── ui-icons_8ec63f_256x240.png │ ├── ui-icons_a33724_256x240.png │ └── ui-icons_ffffff_256x240.png ├── javascripts │ └── .gitkeep ├── robots.txt └── stylesheets │ └── .gitkeep ├── script ├── cucumber ├── rails └── sidekiq_pusher.rb ├── solr ├── conf │ ├── elevate.xml │ ├── schema.xml │ ├── solrconfig.xml │ ├── spellings.txt │ ├── stopwords.txt │ └── synonyms.txt └── solr.xml ├── spec ├── controllers │ ├── documentations_controller_spec.rb │ ├── hubs_controller_spec.rb │ └── tag_filters_controller_spec.rb ├── factories.rb ├── factories │ ├── documentations.rb │ ├── feed_items.rb │ ├── feed_retrievals.rb │ ├── feed_visitors.rb │ ├── feeds.rb │ ├── hub_approved_tag.rb │ ├── hub_feeds.rb │ ├── hub_user_notifications.rb │ ├── hubs.rb │ ├── republished_feeds.rb │ ├── tag_filters.rb │ ├── taggings.rb │ ├── tags.rb │ └── users.rb ├── features │ ├── adding_bookmarklets_spec.rb │ ├── feed_filter_spec.rb │ ├── feed_input_spec.rb │ ├── filter_interaction_spec.rb │ ├── hub_filter_spec.rb │ ├── hub_search_spec.rb │ ├── item_filter_spec.rb │ ├── item_search_spec.rb │ ├── tag_filtering_spec.rb │ ├── tagging_ownership_spec.rb │ └── user_feeds_spec.rb ├── functional │ ├── assets_spec.rb │ └── tag_filter_interaction_spec.rb ├── interactions │ ├── feed_items │ │ ├── create_change_notification_spec.rb │ │ ├── create_or_update_spec.rb │ │ ├── locate_tag_filter_users_spec.rb │ │ ├── locate_tagging_users_by_hub_spec.rb │ │ ├── locate_users_to_notify_spec.rb │ │ └── update_spec.rb │ ├── hub_user_notifications │ │ └── enable_for_all_hub_users_spec.rb │ ├── hubs │ │ ├── update_notification_settings_spec.rb │ │ └── update_tagging_settings_spec.rb │ ├── roles │ │ └── locate_hub_owners_spec.rb │ ├── statistics │ │ ├── hub_prefixed_tags_spec.rb │ │ └── scoreboard_spec.rb │ ├── tag_filters │ │ └── create_spec.rb │ └── users │ │ └── sort_spec.rb ├── jobs │ ├── feed_items │ │ └── send_change_notification_job_spec.rb │ ├── feeds │ │ ├── expire_feed_visitors_job_spec.rb │ │ ├── process_visitors_job_spec.rb │ │ └── store_feed_visitor_job_spec.rb │ ├── tag_filters │ │ └── destroy_job_spec.rb │ └── tagging_notifications │ │ └── send_notification_job_spec.rb ├── lib │ └── urls_stripper_spec.rb ├── mailers │ ├── admin │ │ └── user_approvals_mailer_spec.rb │ └── previews │ │ ├── admin │ │ └── user_approvals_mailer_preview.rb │ │ ├── feed_items │ │ └── notifications_mailer_preview.rb │ │ ├── notifications_mailer_preview.rb │ │ └── tagging_notifications │ │ └── notifications_mailer_preview.rb ├── models │ ├── add_tag_filter_spec.rb │ ├── deactivated_tagging_spec.rb │ ├── delete_tag_filter_spec.rb │ ├── feed_item_observer_spec.rb │ ├── feed_item_spec.rb │ ├── feed_retrieval_spec.rb │ ├── feed_spec.rb │ ├── hub_approved_tag_spec.rb │ ├── hub_feed_observer_spec.rb │ ├── hub_feed_spec.rb │ ├── hub_spec.rb │ ├── hub_user_notification_spec.rb │ ├── modify_tag_filter_spec.rb │ ├── republished_feed_spec.rb │ ├── search_remix_spec.rb │ ├── supplement_tag_filter_spec.rb │ ├── tagging_spec.rb │ └── user_spec.rb ├── policies │ ├── documentation_policy_spec.rb │ ├── feed_item_policy_spec.rb │ ├── hub_feed_policy_spec.rb │ ├── hub_policy_spec.rb │ ├── republished_feed_policy_spec.rb │ ├── tag_filter_policy_spec.rb │ ├── user_approval_policy_spec.rb │ └── user_policy_spec.rb ├── rails_helper.rb ├── spec_helper.rb ├── support │ ├── controller_helpers.rb │ ├── database_cleaner.rb │ ├── devise.rb │ ├── factory_bot.rb │ ├── interactions.rb │ ├── shared_context.rb │ ├── shared_tag_filter_examples.rb │ ├── shoulda_matchers.rb │ ├── sidekiq.rb │ ├── sunspot.rb │ ├── tag_utils.rb │ ├── tagging_deactivator.rb │ └── vcr.rb ├── vcr │ ├── feed_factory-childrenshospitalblog_org-0.yml │ ├── feed_factory-childrenshospitalblog_org.yml │ ├── feed_factory-feeds_feedburner_com.yml │ ├── feed_factory-reagle_org-0.yml │ ├── feed_factory-reagle_org-1.yml │ ├── feed_factory-reagle_org.yml │ ├── feed_factory_reagle_org.yml │ └── update_feeds.yml └── workers │ ├── apply_tag_filters_spec.rb │ └── update_feeds.rb └── vendor ├── assets ├── images │ ├── bg_dot.png │ ├── bgstripe.png │ ├── facebook-icon.png │ ├── google-plus-icon.png │ ├── nicEditorIcons.gif │ ├── rails.png │ ├── silk-sprite-gray.png │ ├── silk-sprite.png │ ├── spinner.gif │ ├── tactile_noise.png │ └── twitter-icon.png ├── javascripts │ ├── ckeditor │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── ckeditor.js │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ └── en.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── icon.png │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ │ └── specialchar.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ └── tabletools │ │ │ │ └── dialogs │ │ │ │ └── tableCell.js │ │ ├── skins │ │ │ └── bootstrapck │ │ │ │ ├── .temp │ │ │ │ └── css │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ ├── dialog_ie7.css │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ ├── dialog_opera.css │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ ├── editor_ie7.css │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ └── editor_iequirks.css │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── dialog_opera.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ └── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ ├── close.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ └── styles.js │ ├── excanvas.compiled.js │ ├── jquery-migrate-1.1.1.js │ ├── jquery-ui-1.8.18.custom.min.js │ ├── jquery-ui-1.9.2.custom.min.js │ ├── jquery.ba-bbq.min.js │ ├── jquery.ba-detach.js │ ├── jquery.bootpag.min.js │ ├── jquery.bt.js │ ├── jquery.cookie.js │ ├── jquery.form.js │ ├── jquery.hoverIntent.minified.js │ ├── jquery.infinitescroll.min.js │ ├── jquery.js │ ├── jquery.masonry.min.js │ ├── jquery.min.js │ ├── jquery.observe_field.js │ ├── jquery.sortChildren.js │ ├── jquery_ujs.js │ ├── modernizr.custom.15012.js │ └── nicEdit.js └── stylesheets │ ├── 660-10col.css │ ├── 992-16col.css │ ├── atom.xsl │ ├── bookmarklet.css │ ├── custom-theme │ ├── images │ │ ├── ui-bg_diagonals-small_75_f3d8d8_40x40.png │ │ ├── ui-bg_diagonals-thick_65_a6a6a6_40x40.png │ │ ├── ui-bg_diagonals-thick_75_f3d8d8_40x40.png │ │ ├── ui-bg_flat_0_333333_40x100.png │ │ ├── ui-bg_flat_100_a6a6a6_40x100.png │ │ ├── ui-bg_flat_100_dddddd_40x100.png │ │ ├── ui-bg_flat_100_f6f6f6_40x100.png │ │ ├── ui-bg_flat_15_8ec63f_40x100.png │ │ ├── ui-bg_flat_15_a33724_40x100.png │ │ ├── ui-bg_flat_50_616161_40x100.png │ │ ├── ui-bg_flat_50_a6a6a6_40x100.png │ │ ├── ui-bg_flat_55_fbf8ee_40x100.png │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ ├── ui-bg_flat_75_f3d8d8_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf8ee_1x400.png │ │ ├── ui-bg_highlight-hard_100_f6f6f6_1x100.png │ │ ├── ui-icons_151c21_256x240.png │ │ ├── ui-icons_8ec63f_256x240.png │ │ ├── ui-icons_a33724_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ └── jquery-ui-1.9.2.custom.css │ ├── reset.css │ ├── rss.xsl │ └── silk-sprite.css └── plugins └── .gitkeep /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/.env.development -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/.gitignore -------------------------------------------------------------------------------- /.haml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/.haml-lint.yml -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.4.1 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/LL_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/images/LL_mini.png -------------------------------------------------------------------------------- /app/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/images/favicon.png -------------------------------------------------------------------------------- /app/assets/images/feed_item_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/images/feed_item_placeholder.png -------------------------------------------------------------------------------- /app/assets/images/protocol_atom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/images/protocol_atom.png -------------------------------------------------------------------------------- /app/assets/images/protocol_json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/images/protocol_json.png -------------------------------------------------------------------------------- /app/assets/images/protocol_rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/images/protocol_rss.png -------------------------------------------------------------------------------- /app/assets/images/ui-icons_8ec63f_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/images/ui-icons_8ec63f_256x240.png -------------------------------------------------------------------------------- /app/assets/javascripts/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/javascripts/admin.js -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/autocomplete_user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/javascripts/autocomplete_user.js -------------------------------------------------------------------------------- /app/assets/javascripts/ckeditor-setup.js: -------------------------------------------------------------------------------- 1 | var CKEDITOR_BASEPATH = '/assets/ckeditor/'; 2 | -------------------------------------------------------------------------------- /app/assets/javascripts/hubs/bookmark_collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/javascripts/hubs/bookmark_collections.js -------------------------------------------------------------------------------- /app/assets/javascripts/hubs/custom_republished_feeds.js: -------------------------------------------------------------------------------- 1 | //= require autocomplete_user 2 | -------------------------------------------------------------------------------- /app/assets/javascripts/hubs/scoreboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/javascripts/hubs/scoreboard.js -------------------------------------------------------------------------------- /app/assets/javascripts/hubs/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/javascripts/hubs/search.js -------------------------------------------------------------------------------- /app/assets/javascripts/hubs/statistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/javascripts/hubs/statistics.js -------------------------------------------------------------------------------- /app/assets/javascripts/hubs/tags-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/javascripts/hubs/tags-filter.js -------------------------------------------------------------------------------- /app/assets/javascripts/hubs/tags-sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/javascripts/hubs/tags-sort.js -------------------------------------------------------------------------------- /app/assets/javascripts/hubs/team.js: -------------------------------------------------------------------------------- 1 | //= require autocomplete_user 2 | -------------------------------------------------------------------------------- /app/assets/javascripts/tags/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/javascripts/tags/controls.js -------------------------------------------------------------------------------- /app/assets/stylesheets/admin/hubs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/stylesheets/admin/hubs.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/admin/settings.scss: -------------------------------------------------------------------------------- 1 | div.domains.disabled { 2 | opacity: 0.5; 3 | } 4 | -------------------------------------------------------------------------------- /app/assets/stylesheets/admin/users.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/stylesheets/admin/users.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/bookmarklet.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/stylesheets/bookmarklet.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/devise.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/stylesheets/devise.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/stylesheets/footer.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/front.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/stylesheets/front.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/hubs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/stylesheets/hubs.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/jquery_ui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/stylesheets/jquery_ui.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/messages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/stylesheets/messages.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/my_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/stylesheets/my_vars.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/stylesheets/search.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/tagteam.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/stylesheets/tagteam.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/assets/stylesheets/variables.scss -------------------------------------------------------------------------------- /app/concerns/delegatable_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/concerns/delegatable_roles.rb -------------------------------------------------------------------------------- /app/concerns/orderable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/concerns/orderable.rb -------------------------------------------------------------------------------- /app/concerns/tag_scopable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/concerns/tag_scopable.rb -------------------------------------------------------------------------------- /app/concerns/tag_sorter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/concerns/tag_sorter.rb -------------------------------------------------------------------------------- /app/controllers/admin/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/controllers/admin/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/hubs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/controllers/admin/hubs_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/settings_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/controllers/admin/settings_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/user_approvals_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/controllers/admin/user_approvals_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/controllers/admin/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/bookmarklets_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/controllers/bookmarklets_controller.rb -------------------------------------------------------------------------------- /app/controllers/documentations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/controllers/documentations_controller.rb -------------------------------------------------------------------------------- /app/controllers/export_import_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/controllers/export_import_controller.rb -------------------------------------------------------------------------------- /app/controllers/feed_items_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/controllers/feed_items_controller.rb -------------------------------------------------------------------------------- /app/controllers/feed_retrievals_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/controllers/feed_retrievals_controller.rb -------------------------------------------------------------------------------- /app/controllers/hub_feeds_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/controllers/hub_feeds_controller.rb -------------------------------------------------------------------------------- /app/controllers/hubs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/controllers/hubs_controller.rb -------------------------------------------------------------------------------- /app/controllers/input_sources_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/controllers/input_sources_controller.rb -------------------------------------------------------------------------------- /app/controllers/messages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/controllers/messages_controller.rb -------------------------------------------------------------------------------- /app/controllers/republished_feeds_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/controllers/republished_feeds_controller.rb -------------------------------------------------------------------------------- /app/controllers/tag_filters_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/controllers/tag_filters_controller.rb -------------------------------------------------------------------------------- /app/controllers/tags_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/controllers/tags_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/registrations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/controllers/users/registrations_controller.rb -------------------------------------------------------------------------------- /app/controllers/users/search_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/controllers/users/search_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/bookmarklets_helper.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | module BookmarkletsHelper 3 | end 4 | -------------------------------------------------------------------------------- /app/helpers/hub_feeds_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/helpers/hub_feeds_helper.rb -------------------------------------------------------------------------------- /app/helpers/hubs_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/helpers/hubs_helper.rb -------------------------------------------------------------------------------- /app/helpers/tag_filter_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/helpers/tag_filter_helper.rb -------------------------------------------------------------------------------- /app/helpers/tags_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/helpers/tags_helper.rb -------------------------------------------------------------------------------- /app/interactions/feed_items/copy_move_to_hub.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/feed_items/copy_move_to_hub.rb -------------------------------------------------------------------------------- /app/interactions/feed_items/create_change_notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/feed_items/create_change_notification.rb -------------------------------------------------------------------------------- /app/interactions/feed_items/create_or_update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/feed_items/create_or_update.rb -------------------------------------------------------------------------------- /app/interactions/feed_items/item_tag_actions_by_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/feed_items/item_tag_actions_by_user.rb -------------------------------------------------------------------------------- /app/interactions/feed_items/locate_tag_filter_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/feed_items/locate_tag_filter_users.rb -------------------------------------------------------------------------------- /app/interactions/feed_items/locate_tagging_users_by_hub.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/feed_items/locate_tagging_users_by_hub.rb -------------------------------------------------------------------------------- /app/interactions/feed_items/locate_users_to_notify.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/feed_items/locate_users_to_notify.rb -------------------------------------------------------------------------------- /app/interactions/feed_items/update.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/feed_items/update.rb -------------------------------------------------------------------------------- /app/interactions/hub_user_notifications/enable_for_all_hub_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/hub_user_notifications/enable_for_all_hub_users.rb -------------------------------------------------------------------------------- /app/interactions/hubs/leave.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/hubs/leave.rb -------------------------------------------------------------------------------- /app/interactions/hubs/update_notification_settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/hubs/update_notification_settings.rb -------------------------------------------------------------------------------- /app/interactions/hubs/update_tagging_settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/hubs/update_tagging_settings.rb -------------------------------------------------------------------------------- /app/interactions/messages/create.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/messages/create.rb -------------------------------------------------------------------------------- /app/interactions/roles/locate_hub_owners.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/roles/locate_hub_owners.rb -------------------------------------------------------------------------------- /app/interactions/statistics/altered_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/statistics/altered_items.rb -------------------------------------------------------------------------------- /app/interactions/statistics/deprecated_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/statistics/deprecated_tags.rb -------------------------------------------------------------------------------- /app/interactions/statistics/hub_prefixed_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/statistics/hub_prefixed_tags.rb -------------------------------------------------------------------------------- /app/interactions/statistics/hub_taggers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/statistics/hub_taggers.rb -------------------------------------------------------------------------------- /app/interactions/statistics/hub_tags_that_have_no_prefix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/statistics/hub_tags_that_have_no_prefix.rb -------------------------------------------------------------------------------- /app/interactions/statistics/hub_tags_that_use_prefix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/statistics/hub_tags_that_use_prefix.rb -------------------------------------------------------------------------------- /app/interactions/statistics/scoreboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/statistics/scoreboard.rb -------------------------------------------------------------------------------- /app/interactions/statistics/tag_tagged_by_feed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/statistics/tag_tagged_by_feed.rb -------------------------------------------------------------------------------- /app/interactions/statistics/tag_tagged_by_filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/statistics/tag_tagged_by_filters.rb -------------------------------------------------------------------------------- /app/interactions/statistics/tag_tagged_by_taggers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/statistics/tag_tagged_by_taggers.rb -------------------------------------------------------------------------------- /app/interactions/statistics/taggings_by_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/statistics/taggings_by_user.rb -------------------------------------------------------------------------------- /app/interactions/statistics/taggings_of_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/statistics/taggings_of_user.rb -------------------------------------------------------------------------------- /app/interactions/statistics/tags_approved.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/statistics/tags_approved.rb -------------------------------------------------------------------------------- /app/interactions/statistics/tags_used_not_approved.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/statistics/tags_used_not_approved.rb -------------------------------------------------------------------------------- /app/interactions/tag_filters/create.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/tag_filters/create.rb -------------------------------------------------------------------------------- /app/interactions/tags/check_approved.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/tags/check_approved.rb -------------------------------------------------------------------------------- /app/interactions/tags/check_deprecated.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/tags/check_deprecated.rb -------------------------------------------------------------------------------- /app/interactions/users/self_remove.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/users/self_remove.rb -------------------------------------------------------------------------------- /app/interactions/users/sort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/interactions/users/sort.rb -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/jobs/feed_items/send_change_notification_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/jobs/feed_items/send_change_notification_job.rb -------------------------------------------------------------------------------- /app/jobs/feeds/expire_feed_visitors_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/jobs/feeds/expire_feed_visitors_job.rb -------------------------------------------------------------------------------- /app/jobs/feeds/process_visitors_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/jobs/feeds/process_visitors_job.rb -------------------------------------------------------------------------------- /app/jobs/feeds/store_feed_visitor_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/jobs/feeds/store_feed_visitor_job.rb -------------------------------------------------------------------------------- /app/jobs/tag_filters/destroy_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/jobs/tag_filters/destroy_job.rb -------------------------------------------------------------------------------- /app/jobs/tagging_notifications/apply_tag_filters_with_notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/jobs/tagging_notifications/apply_tag_filters_with_notification.rb -------------------------------------------------------------------------------- /app/jobs/tagging_notifications/feed_item_notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/jobs/tagging_notifications/feed_item_notification.rb -------------------------------------------------------------------------------- /app/jobs/tagging_notifications/send_notification_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/jobs/tagging_notifications/send_notification_job.rb -------------------------------------------------------------------------------- /app/mailers/admin/user_approvals_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/mailers/admin/user_approvals_mailer.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/mailers/contact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/mailers/contact.rb -------------------------------------------------------------------------------- /app/mailers/feed_items/notifications_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/mailers/feed_items/notifications_mailer.rb -------------------------------------------------------------------------------- /app/mailers/messages_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/mailers/messages_mailer.rb -------------------------------------------------------------------------------- /app/mailers/notifications_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/mailers/notifications_mailer.rb -------------------------------------------------------------------------------- /app/mailers/tagging_notifications/notifications_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/mailers/tagging_notifications/notifications_mailer.rb -------------------------------------------------------------------------------- /app/models/add_tag_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/add_tag_filter.rb -------------------------------------------------------------------------------- /app/models/admin/setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/admin/setting.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/deactivated_tagging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/deactivated_tagging.rb -------------------------------------------------------------------------------- /app/models/delete_tag_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/delete_tag_filter.rb -------------------------------------------------------------------------------- /app/models/documentation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/documentation.rb -------------------------------------------------------------------------------- /app/models/feed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/feed.rb -------------------------------------------------------------------------------- /app/models/feed_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/feed_item.rb -------------------------------------------------------------------------------- /app/models/feed_item_observer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/feed_item_observer.rb -------------------------------------------------------------------------------- /app/models/feed_retrieval.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/feed_retrieval.rb -------------------------------------------------------------------------------- /app/models/feed_subscriber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/feed_subscriber.rb -------------------------------------------------------------------------------- /app/models/feed_visitor.rb: -------------------------------------------------------------------------------- 1 | class FeedVisitor < ApplicationRecord 2 | end 3 | -------------------------------------------------------------------------------- /app/models/hub.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/hub.rb -------------------------------------------------------------------------------- /app/models/hub_approved_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/hub_approved_tag.rb -------------------------------------------------------------------------------- /app/models/hub_feed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/hub_feed.rb -------------------------------------------------------------------------------- /app/models/hub_feed_observer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/hub_feed_observer.rb -------------------------------------------------------------------------------- /app/models/hub_tag_description.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/hub_tag_description.rb -------------------------------------------------------------------------------- /app/models/hub_user_notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/hub_user_notification.rb -------------------------------------------------------------------------------- /app/models/input_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/input_source.rb -------------------------------------------------------------------------------- /app/models/modify_tag_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/modify_tag_filter.rb -------------------------------------------------------------------------------- /app/models/removed_tag_suggestion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/removed_tag_suggestion.rb -------------------------------------------------------------------------------- /app/models/republished_feed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/republished_feed.rb -------------------------------------------------------------------------------- /app/models/role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/role.rb -------------------------------------------------------------------------------- /app/models/search_remix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/search_remix.rb -------------------------------------------------------------------------------- /app/models/supplement_tag_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/supplement_tag_filter.rb -------------------------------------------------------------------------------- /app/models/tag_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/tag_filter.rb -------------------------------------------------------------------------------- /app/models/tag_filter_observer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/tag_filter_observer.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/policies/admin_home_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/policies/admin_home_policy.rb -------------------------------------------------------------------------------- /app/policies/admin_hub_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/policies/admin_hub_policy.rb -------------------------------------------------------------------------------- /app/policies/admin_setting_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/policies/admin_setting_policy.rb -------------------------------------------------------------------------------- /app/policies/application_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/policies/application_policy.rb -------------------------------------------------------------------------------- /app/policies/documentation_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/policies/documentation_policy.rb -------------------------------------------------------------------------------- /app/policies/feed_item_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/policies/feed_item_policy.rb -------------------------------------------------------------------------------- /app/policies/hub_feed_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/policies/hub_feed_policy.rb -------------------------------------------------------------------------------- /app/policies/hub_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/policies/hub_policy.rb -------------------------------------------------------------------------------- /app/policies/republished_feed_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/policies/republished_feed_policy.rb -------------------------------------------------------------------------------- /app/policies/tag_filter_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/policies/tag_filter_policy.rb -------------------------------------------------------------------------------- /app/policies/user_approval_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/policies/user_approval_policy.rb -------------------------------------------------------------------------------- /app/policies/user_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/policies/user_policy.rb -------------------------------------------------------------------------------- /app/views/admin/home/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/admin/home/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/hubs/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/admin/hubs/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/settings/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/admin/settings/new.html.haml -------------------------------------------------------------------------------- /app/views/admin/shared/_nav_menu.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/admin/shared/_nav_menu.html.haml -------------------------------------------------------------------------------- /app/views/admin/user_approvals/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/admin/user_approvals/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/user_approvals_mailer/notify_admin_of_signup.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/admin/user_approvals_mailer/notify_admin_of_signup.html.haml -------------------------------------------------------------------------------- /app/views/admin/user_approvals_mailer/notify_admin_of_signup.text.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/admin/user_approvals_mailer/notify_admin_of_signup.text.haml -------------------------------------------------------------------------------- /app/views/admin/user_approvals_mailer/notify_user_of_denial.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/admin/user_approvals_mailer/notify_user_of_denial.html.haml -------------------------------------------------------------------------------- /app/views/admin/user_approvals_mailer/notify_user_of_denial.text.haml: -------------------------------------------------------------------------------- 1 | Your signup has been denied by a TagTeam administrator. 2 | -------------------------------------------------------------------------------- /app/views/admin/users/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/admin/users/index.html.haml -------------------------------------------------------------------------------- /app/views/bookmarklets/add.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/bookmarklets/add.html.haml -------------------------------------------------------------------------------- /app/views/bookmarklets/add_item.html.haml: -------------------------------------------------------------------------------- 1 | = render :partial => 'shared/forms/feed_item_bookmarklet' 2 | -------------------------------------------------------------------------------- /app/views/bookmarklets/confirm.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/bookmarklets/confirm.html.haml -------------------------------------------------------------------------------- /app/views/contact/request_rights.text.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/contact/request_rights.text.haml -------------------------------------------------------------------------------- /app/views/devise/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/devise/._.DS_Store -------------------------------------------------------------------------------- /app/views/devise/confirmations/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/devise/confirmations/new.html.haml -------------------------------------------------------------------------------- /app/views/devise/mailer/confirmation_instructions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/devise/mailer/confirmation_instructions.html.haml -------------------------------------------------------------------------------- /app/views/devise/mailer/password_change.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/devise/mailer/password_change.html.haml -------------------------------------------------------------------------------- /app/views/devise/mailer/reset_password_instructions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/devise/mailer/reset_password_instructions.html.haml -------------------------------------------------------------------------------- /app/views/devise/mailer/unlock_instructions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/devise/mailer/unlock_instructions.html.haml -------------------------------------------------------------------------------- /app/views/devise/passwords/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/devise/passwords/edit.html.haml -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/devise/passwords/new.html.haml -------------------------------------------------------------------------------- /app/views/devise/registrations/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/devise/registrations/edit.html.haml -------------------------------------------------------------------------------- /app/views/devise/registrations/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/devise/registrations/new.html.haml -------------------------------------------------------------------------------- /app/views/devise/sessions/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/devise/sessions/new.html.haml -------------------------------------------------------------------------------- /app/views/devise/shared/_links.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/devise/shared/_links.html.haml -------------------------------------------------------------------------------- /app/views/devise/unlocks/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/devise/unlocks/new.html.haml -------------------------------------------------------------------------------- /app/views/documentations/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/documentations/edit.html.haml -------------------------------------------------------------------------------- /app/views/documentations/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/documentations/new.html.haml -------------------------------------------------------------------------------- /app/views/documentations/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/documentations/show.html.haml -------------------------------------------------------------------------------- /app/views/errors/500.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/errors/500.html.haml -------------------------------------------------------------------------------- /app/views/export_import/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/export_import/index.html.haml -------------------------------------------------------------------------------- /app/views/feed_items/_about.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/feed_items/_about.html.haml -------------------------------------------------------------------------------- /app/views/feed_items/_alter_view.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/feed_items/_alter_view.html.haml -------------------------------------------------------------------------------- /app/views/feed_items/_content.html.haml: -------------------------------------------------------------------------------- 1 | = sanitize @feed_item.content 2 | -------------------------------------------------------------------------------- /app/views/feed_items/_edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/feed_items/_edit.html.haml -------------------------------------------------------------------------------- /app/views/feed_items/_grid.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/feed_items/_grid.html.haml -------------------------------------------------------------------------------- /app/views/feed_items/_grid_item.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/feed_items/_grid_item.html.haml -------------------------------------------------------------------------------- /app/views/feed_items/_list_item.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/feed_items/_list_item.html.haml -------------------------------------------------------------------------------- /app/views/feed_items/_tabs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/feed_items/_tabs.html.haml -------------------------------------------------------------------------------- /app/views/feed_items/about.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/feed_items/about.html.haml -------------------------------------------------------------------------------- /app/views/feed_items/content.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/feed_items/content.html.haml -------------------------------------------------------------------------------- /app/views/feed_items/controls.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/feed_items/controls.html.haml -------------------------------------------------------------------------------- /app/views/feed_items/copy_move_to_hub.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/feed_items/copy_move_to_hub.haml -------------------------------------------------------------------------------- /app/views/feed_items/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/feed_items/edit.html.haml -------------------------------------------------------------------------------- /app/views/feed_items/index.atom.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/feed_items/index.atom.builder -------------------------------------------------------------------------------- /app/views/feed_items/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/feed_items/index.html.haml -------------------------------------------------------------------------------- /app/views/feed_items/index.rss.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/feed_items/index.rss.builder -------------------------------------------------------------------------------- /app/views/feed_items/index_grid.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/feed_items/index_grid.html.haml -------------------------------------------------------------------------------- /app/views/feed_items/related.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/feed_items/related.html.haml -------------------------------------------------------------------------------- /app/views/feed_items/related_grid.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/feed_items/related_grid.html.haml -------------------------------------------------------------------------------- /app/views/feed_items/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/feed_items/show.html.haml -------------------------------------------------------------------------------- /app/views/feed_items/tag_list.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/feed_items/tag_list.html.haml -------------------------------------------------------------------------------- /app/views/feed_items/tags_actions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/feed_items/tags_actions.html.haml -------------------------------------------------------------------------------- /app/views/feed_retrievals/_list_item.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/feed_retrievals/_list_item.html.haml -------------------------------------------------------------------------------- /app/views/feed_retrievals/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/feed_retrievals/index.html.haml -------------------------------------------------------------------------------- /app/views/feed_retrievals/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/feed_retrievals/show.html.haml -------------------------------------------------------------------------------- /app/views/hub_feed_item_tag_filters/_list_item.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hub_feed_item_tag_filters/_list_item.html.haml -------------------------------------------------------------------------------- /app/views/hub_feed_item_tag_filters/destroy.js.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hub_feed_item_tag_filters/destroy.js.haml -------------------------------------------------------------------------------- /app/views/hub_feed_item_tag_filters/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hub_feed_item_tag_filters/index.html.haml -------------------------------------------------------------------------------- /app/views/hub_feed_tag_filters/_list_item.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hub_feed_tag_filters/_list_item.html.haml -------------------------------------------------------------------------------- /app/views/hub_feed_tag_filters/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hub_feed_tag_filters/index.html.haml -------------------------------------------------------------------------------- /app/views/hub_feeds/_about.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hub_feeds/_about.html.haml -------------------------------------------------------------------------------- /app/views/hub_feeds/_list_item.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hub_feeds/_list_item.html.haml -------------------------------------------------------------------------------- /app/views/hub_feeds/_more_details.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hub_feeds/_more_details.html.haml -------------------------------------------------------------------------------- /app/views/hub_feeds/_tabs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hub_feeds/_tabs.html.haml -------------------------------------------------------------------------------- /app/views/hub_feeds/_top_panel.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hub_feeds/_top_panel.html.haml -------------------------------------------------------------------------------- /app/views/hub_feeds/controls.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hub_feeds/controls.html.haml -------------------------------------------------------------------------------- /app/views/hub_feeds/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hub_feeds/edit.html.haml -------------------------------------------------------------------------------- /app/views/hub_feeds/import.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hub_feeds/import.html.haml -------------------------------------------------------------------------------- /app/views/hub_feeds/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hub_feeds/index.html.haml -------------------------------------------------------------------------------- /app/views/hub_feeds/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hub_feeds/new.html.haml -------------------------------------------------------------------------------- /app/views/hub_feeds/republished_feeds.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hub_feeds/republished_feeds.html.haml -------------------------------------------------------------------------------- /app/views/hub_feeds/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hub_feeds/show.html.haml -------------------------------------------------------------------------------- /app/views/hub_tag_filters/_list_item.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hub_tag_filters/_list_item.html.haml -------------------------------------------------------------------------------- /app/views/hub_tag_filters/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hub_tag_filters/index.html.haml -------------------------------------------------------------------------------- /app/views/hubs/_hub_search_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/_hub_search_form.html.haml -------------------------------------------------------------------------------- /app/views/hubs/_hub_tabs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/_hub_tabs.html.haml -------------------------------------------------------------------------------- /app/views/hubs/_hubs_list.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/_hubs_list.html.haml -------------------------------------------------------------------------------- /app/views/hubs/_list_item.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/_list_item.html.haml -------------------------------------------------------------------------------- /app/views/hubs/_list_item_extended.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/_list_item_extended.html.haml -------------------------------------------------------------------------------- /app/views/hubs/_search_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/_search_form.html.haml -------------------------------------------------------------------------------- /app/views/hubs/_tabs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/_tabs.html.haml -------------------------------------------------------------------------------- /app/views/hubs/_tag_control_popup.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/_tag_control_popup.html.haml -------------------------------------------------------------------------------- /app/views/hubs/_tag_list_item.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/_tag_list_item.html.haml -------------------------------------------------------------------------------- /app/views/hubs/_top_panel.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/_top_panel.html.haml -------------------------------------------------------------------------------- /app/views/hubs/_user.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/_user.html.haml -------------------------------------------------------------------------------- /app/views/hubs/_user_list_item.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/_user_list_item.html.haml -------------------------------------------------------------------------------- /app/views/hubs/about.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/about.html.haml -------------------------------------------------------------------------------- /app/views/hubs/by_date.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/by_date.html.haml -------------------------------------------------------------------------------- /app/views/hubs/contact.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/contact.html.haml -------------------------------------------------------------------------------- /app/views/hubs/create.html.haml: -------------------------------------------------------------------------------- 1 | %h1 New hub 2 | = render :partial => 'shared/forms/hub' 3 | -------------------------------------------------------------------------------- /app/views/hubs/created.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/created.html.haml -------------------------------------------------------------------------------- /app/views/hubs/custom_republished_feeds.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/custom_republished_feeds.html.haml -------------------------------------------------------------------------------- /app/views/hubs/edit.html.haml: -------------------------------------------------------------------------------- 1 | %h1 2 | Edit "#{@hub}" 3 | = render :partial => 'shared/forms/hub' 4 | -------------------------------------------------------------------------------- /app/views/hubs/feeds.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/feeds.html.haml -------------------------------------------------------------------------------- /app/views/hubs/home.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/home.html.haml -------------------------------------------------------------------------------- /app/views/hubs/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/index.html.haml -------------------------------------------------------------------------------- /app/views/hubs/item_search.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/item_search.html.haml -------------------------------------------------------------------------------- /app/views/hubs/items.atom.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/items.atom.builder -------------------------------------------------------------------------------- /app/views/hubs/items.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/items.html.haml -------------------------------------------------------------------------------- /app/views/hubs/items.rss.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/items.rss.builder -------------------------------------------------------------------------------- /app/views/hubs/items_grid.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/items_grid.html.haml -------------------------------------------------------------------------------- /app/views/hubs/list.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/list.html.haml -------------------------------------------------------------------------------- /app/views/hubs/meta.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/meta.html.haml -------------------------------------------------------------------------------- /app/views/hubs/my.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/my.html.haml -------------------------------------------------------------------------------- /app/views/hubs/new.html.haml: -------------------------------------------------------------------------------- 1 | = render :partial => 'shared/forms/hub' 2 | -------------------------------------------------------------------------------- /app/views/hubs/notifications.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/notifications.html.haml -------------------------------------------------------------------------------- /app/views/hubs/retrievals.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/retrievals.html.haml -------------------------------------------------------------------------------- /app/views/hubs/scoreboard.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/scoreboard.html.haml -------------------------------------------------------------------------------- /app/views/hubs/search.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/search.html.haml -------------------------------------------------------------------------------- /app/views/hubs/settings.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/settings.html.haml -------------------------------------------------------------------------------- /app/views/hubs/settings/_notifications.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/settings/_notifications.html.haml -------------------------------------------------------------------------------- /app/views/hubs/settings/_tagging.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/settings/_tagging.html.haml -------------------------------------------------------------------------------- /app/views/hubs/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/show.html.haml -------------------------------------------------------------------------------- /app/views/hubs/statistics.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/statistics.html.haml -------------------------------------------------------------------------------- /app/views/hubs/tag_controls.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/tag_controls.html.haml -------------------------------------------------------------------------------- /app/views/hubs/taggers.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/taggers.html.haml -------------------------------------------------------------------------------- /app/views/hubs/team.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/team.html.haml -------------------------------------------------------------------------------- /app/views/hubs/team/_assign_roles.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/team/_assign_roles.html.haml -------------------------------------------------------------------------------- /app/views/hubs/team/_remove_roles.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/hubs/team/_remove_roles.html.haml -------------------------------------------------------------------------------- /app/views/input_sources/_list_item.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/input_sources/_list_item.html.haml -------------------------------------------------------------------------------- /app/views/input_sources/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/input_sources/edit.html.haml -------------------------------------------------------------------------------- /app/views/input_sources/find.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/input_sources/find.html.haml -------------------------------------------------------------------------------- /app/views/input_sources/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/input_sources/new.html.haml -------------------------------------------------------------------------------- /app/views/layouts/application.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/layouts/application.html.haml -------------------------------------------------------------------------------- /app/views/layouts/bookmarklet.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/layouts/bookmarklet.html.haml -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.haml: -------------------------------------------------------------------------------- 1 | %html 2 | %body 3 | = yield 4 | -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.haml: -------------------------------------------------------------------------------- 1 | = yield -------------------------------------------------------------------------------- /app/views/layouts/tabs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/layouts/tabs.html.haml -------------------------------------------------------------------------------- /app/views/messages/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/messages/new.html.haml -------------------------------------------------------------------------------- /app/views/republished_feeds/_list_item.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/republished_feeds/_list_item.html.haml -------------------------------------------------------------------------------- /app/views/republished_feeds/_more_details.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/republished_feeds/_more_details.html.haml -------------------------------------------------------------------------------- /app/views/republished_feeds/_tabs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/republished_feeds/_tabs.html.haml -------------------------------------------------------------------------------- /app/views/republished_feeds/_top_panel.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/republished_feeds/_top_panel.html.haml -------------------------------------------------------------------------------- /app/views/republished_feeds/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/republished_feeds/edit.html.haml -------------------------------------------------------------------------------- /app/views/republished_feeds/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/republished_feeds/index.html.haml -------------------------------------------------------------------------------- /app/views/republished_feeds/inputs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/republished_feeds/inputs.html.haml -------------------------------------------------------------------------------- /app/views/republished_feeds/items.atom.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/republished_feeds/items.atom.builder -------------------------------------------------------------------------------- /app/views/republished_feeds/items.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/republished_feeds/items.html.haml -------------------------------------------------------------------------------- /app/views/republished_feeds/items.rss.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/republished_feeds/items.rss.builder -------------------------------------------------------------------------------- /app/views/republished_feeds/items_grid.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/republished_feeds/items_grid.html.haml -------------------------------------------------------------------------------- /app/views/republished_feeds/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/republished_feeds/new.html.haml -------------------------------------------------------------------------------- /app/views/republished_feeds/removals.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/republished_feeds/removals.html.haml -------------------------------------------------------------------------------- /app/views/republished_feeds/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/republished_feeds/show.html.haml -------------------------------------------------------------------------------- /app/views/shared/_bookmarklet_button.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/_bookmarklet_button.html.haml -------------------------------------------------------------------------------- /app/views/shared/_flashes.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/_flashes.html.haml -------------------------------------------------------------------------------- /app/views/shared/_footer.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/_footer.html.haml -------------------------------------------------------------------------------- /app/views/shared/_logo.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/_logo.html.haml -------------------------------------------------------------------------------- /app/views/shared/_paginate.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/_paginate.html.haml -------------------------------------------------------------------------------- /app/views/shared/admin/forms/_setting.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/admin/forms/_setting.html.haml -------------------------------------------------------------------------------- /app/views/shared/forms/_documentation.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/forms/_documentation.html.haml -------------------------------------------------------------------------------- /app/views/shared/forms/_feed.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/forms/_feed.html.haml -------------------------------------------------------------------------------- /app/views/shared/forms/_feed_item_bookmarklet.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/forms/_feed_item_bookmarklet.html.haml -------------------------------------------------------------------------------- /app/views/shared/forms/_hub.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/forms/_hub.html.haml -------------------------------------------------------------------------------- /app/views/shared/forms/_hub_feed.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/forms/_hub_feed.html.haml -------------------------------------------------------------------------------- /app/views/shared/forms/_input_source.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/forms/_input_source.html.haml -------------------------------------------------------------------------------- /app/views/shared/forms/_republished_feed.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/forms/_republished_feed.html.haml -------------------------------------------------------------------------------- /app/views/shared/line_items/_feed.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/line_items/_feed.html.haml -------------------------------------------------------------------------------- /app/views/shared/line_items/_feed_item.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/line_items/_feed_item.html.haml -------------------------------------------------------------------------------- /app/views/shared/line_items/_republished_feed_choice.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/line_items/_republished_feed_choice.html.haml -------------------------------------------------------------------------------- /app/views/shared/line_items/_tag.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/line_items/_tag.html.haml -------------------------------------------------------------------------------- /app/views/shared/line_items/_user.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/line_items/_user.html.haml -------------------------------------------------------------------------------- /app/views/shared/roles_on/_feed_item.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/roles_on/_feed_item.html.haml -------------------------------------------------------------------------------- /app/views/shared/roles_on/_hub.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/roles_on/_hub.html.haml -------------------------------------------------------------------------------- /app/views/shared/roles_on/_hub_feed.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/roles_on/_hub_feed.html.haml -------------------------------------------------------------------------------- /app/views/shared/roles_on/_hub_feed_item_tag_filter.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/roles_on/_hub_feed_item_tag_filter.html.haml -------------------------------------------------------------------------------- /app/views/shared/roles_on/_hub_feed_tag_filter.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/roles_on/_hub_feed_tag_filter.html.haml -------------------------------------------------------------------------------- /app/views/shared/roles_on/_hub_tag_filter.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/roles_on/_hub_tag_filter.html.haml -------------------------------------------------------------------------------- /app/views/shared/roles_on/_input_source.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/roles_on/_input_source.html.haml -------------------------------------------------------------------------------- /app/views/shared/roles_on/_republished_feed.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/roles_on/_republished_feed.html.haml -------------------------------------------------------------------------------- /app/views/shared/search_results/_feed.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/search_results/_feed.html.haml -------------------------------------------------------------------------------- /app/views/shared/search_results/_feed_item.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/search_results/_feed_item.html.haml -------------------------------------------------------------------------------- /app/views/shared/search_results/_list.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/search_results/_list.html.haml -------------------------------------------------------------------------------- /app/views/shared/search_results/_tag.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/shared/search_results/_tag.html.haml -------------------------------------------------------------------------------- /app/views/tags/_graph_item.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/tags/_graph_item.html.haml -------------------------------------------------------------------------------- /app/views/tags/_statistics.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/tags/_statistics.html.haml -------------------------------------------------------------------------------- /app/views/tags/_tabs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/tags/_tabs.html.haml -------------------------------------------------------------------------------- /app/views/tags/_tag_statistics.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/tags/_tag_statistics.html.haml -------------------------------------------------------------------------------- /app/views/tags/_top_panel.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/tags/_top_panel.html.haml -------------------------------------------------------------------------------- /app/views/tags/atom.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/tags/atom.builder -------------------------------------------------------------------------------- /app/views/tags/deprecated_tags.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/tags/deprecated_tags.html.haml -------------------------------------------------------------------------------- /app/views/tags/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/tags/index.html.haml -------------------------------------------------------------------------------- /app/views/tags/rss.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/tags/rss.builder -------------------------------------------------------------------------------- /app/views/tags/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/tags/show.html.haml -------------------------------------------------------------------------------- /app/views/tags/show_grid.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/tags/show_grid.html.haml -------------------------------------------------------------------------------- /app/views/tags/statistics.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/tags/statistics.html.haml -------------------------------------------------------------------------------- /app/views/tags/tags_approved.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/tags/tags_approved.html.haml -------------------------------------------------------------------------------- /app/views/tags/tags_used_not_approved.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/tags/tags_used_not_approved.html.haml -------------------------------------------------------------------------------- /app/views/users/_hub_items_tabs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/users/_hub_items_tabs.html.haml -------------------------------------------------------------------------------- /app/views/users/_tabs.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/users/_tabs.html.haml -------------------------------------------------------------------------------- /app/views/users/_tags_top_panel.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/users/_tags_top_panel.html.haml -------------------------------------------------------------------------------- /app/views/users/autocomplete.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/users/autocomplete.html.haml -------------------------------------------------------------------------------- /app/views/users/hub_items.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/users/hub_items.html.haml -------------------------------------------------------------------------------- /app/views/users/roles_on.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/users/roles_on.html.haml -------------------------------------------------------------------------------- /app/views/users/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/users/show.html.haml -------------------------------------------------------------------------------- /app/views/users/tags.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/users/tags.html.haml -------------------------------------------------------------------------------- /app/views/users/tags_atom.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/users/tags_atom.builder -------------------------------------------------------------------------------- /app/views/users/tags_grid.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/users/tags_grid.html.haml -------------------------------------------------------------------------------- /app/views/users/tags_rss.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/views/users/tags_rss.builder -------------------------------------------------------------------------------- /app/workers/apply_tag_filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/workers/apply_tag_filters.rb -------------------------------------------------------------------------------- /app/workers/expire_file_cache.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/workers/expire_file_cache.rb -------------------------------------------------------------------------------- /app/workers/import_feed_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/workers/import_feed_items.rb -------------------------------------------------------------------------------- /app/workers/import_user_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/workers/import_user_data.rb -------------------------------------------------------------------------------- /app/workers/recalc_all_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/workers/recalc_all_items.rb -------------------------------------------------------------------------------- /app/workers/reindex_feed_items_after_hub_feed_destroyed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/workers/reindex_feed_items_after_hub_feed_destroyed.rb -------------------------------------------------------------------------------- /app/workers/reindex_feed_retrievals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/workers/reindex_feed_retrievals.rb -------------------------------------------------------------------------------- /app/workers/reindex_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/workers/reindex_tags.rb -------------------------------------------------------------------------------- /app/workers/update_feeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/app/workers/update_feeds.rb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/bin/rspec -------------------------------------------------------------------------------- /bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/bin/rubocop -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/bin/update -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/cucumber.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/cucumber.yml -------------------------------------------------------------------------------- /config/database.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/database.yml.example -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/00_acts_as_taggable_on_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/initializers/00_acts_as_taggable_on_extensions.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/edismax.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/initializers/edismax.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/formtastic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/initializers/formtastic.rb -------------------------------------------------------------------------------- /config/initializers/friendly_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/initializers/friendly_id.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/new_framework_defaults_5_1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/initializers/new_framework_defaults_5_1.rb -------------------------------------------------------------------------------- /config/initializers/non_digest_assets.rb: -------------------------------------------------------------------------------- 1 | NonStupidDigestAssets.whitelist += [/ckeditor\/.*/] 2 | -------------------------------------------------------------------------------- /config/initializers/recaptcha.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/initializers/recaptcha.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/sunspot_strip_control_chars.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/initializers/sunspot_strip_control_chars.rb -------------------------------------------------------------------------------- /config/initializers/tagteam.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/initializers/tagteam.rb -------------------------------------------------------------------------------- /config/initializers/will_paginate.rb: -------------------------------------------------------------------------------- 1 | require 'will_paginate/array' 2 | -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/resque-pool.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/resque-pool.yml -------------------------------------------------------------------------------- /config/resque_schedule.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/resque_schedule.yml.example -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/schedule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/schedule.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/setup_load_paths.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/setup_load_paths.rb -------------------------------------------------------------------------------- /config/sidekiq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/sidekiq.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/sunspot.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/sunspot.yml.example -------------------------------------------------------------------------------- /config/tagteam.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/config/tagteam.yml.example -------------------------------------------------------------------------------- /db/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/documentation.yml -------------------------------------------------------------------------------- /db/migrate/20110714150903_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20110714150903_devise_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20110714202352_create_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20110714202352_create_roles.rb -------------------------------------------------------------------------------- /db/migrate/20110714220456_create_hubs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20110714220456_create_hubs.rb -------------------------------------------------------------------------------- /db/migrate/20110715220038_create_feeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20110715220038_create_feeds.rb -------------------------------------------------------------------------------- /db/migrate/20110718193629_create_hub_feeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20110718193629_create_hub_feeds.rb -------------------------------------------------------------------------------- /db/migrate/20110725211931_create_feed_retrievals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20110725211931_create_feed_retrievals.rb -------------------------------------------------------------------------------- /db/migrate/20110726122511_create_feed_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20110726122511_create_feed_items.rb -------------------------------------------------------------------------------- /db/migrate/20110726184032_create_hub_tag_filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20110726184032_create_hub_tag_filters.rb -------------------------------------------------------------------------------- /db/migrate/20110726185850_create_republished_feeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20110726185850_create_republished_feeds.rb -------------------------------------------------------------------------------- /db/migrate/20110815182850_create_input_sources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20110815182850_create_input_sources.rb -------------------------------------------------------------------------------- /db/migrate/20111128202414_create_modify_tag_filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20111128202414_create_modify_tag_filters.rb -------------------------------------------------------------------------------- /db/migrate/20111128232839_create_delete_tag_filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20111128232839_create_delete_tag_filters.rb -------------------------------------------------------------------------------- /db/migrate/20111128233117_create_add_tag_filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20111128233117_create_add_tag_filters.rb -------------------------------------------------------------------------------- /db/migrate/20111205190441_acts_as_taggable_on_migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20111205190441_acts_as_taggable_on_migration.rb -------------------------------------------------------------------------------- /db/migrate/20120109130735_create_hub_feed_item_tag_filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20120109130735_create_hub_feed_item_tag_filters.rb -------------------------------------------------------------------------------- /db/migrate/20120109130927_create_hub_feed_tag_filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20120109130927_create_hub_feed_tag_filters.rb -------------------------------------------------------------------------------- /db/migrate/20120213151834_create_documentations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20120213151834_create_documentations.rb -------------------------------------------------------------------------------- /db/migrate/20120518173803_add_username_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20120518173803_add_username_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20120713184742_add_columns_to_republished_feed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20120713184742_add_columns_to_republished_feed.rb -------------------------------------------------------------------------------- /db/migrate/20130822213157_add_created_by_to_hub_feed_item_tag_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20130822213157_add_created_by_to_hub_feed_item_tag_filter.rb -------------------------------------------------------------------------------- /db/migrate/20131028214044_create_search_remixes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20131028214044_create_search_remixes.rb -------------------------------------------------------------------------------- /db/migrate/20131031134706_add_nickname_to_hubs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20131031134706_add_nickname_to_hubs.rb -------------------------------------------------------------------------------- /db/migrate/20131031140017_create_friendly_id_slugs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20131031140017_create_friendly_id_slugs.rb -------------------------------------------------------------------------------- /db/migrate/20150213205538_add_image_url_to_feed_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20150213205538_add_image_url_to_feed_item.rb -------------------------------------------------------------------------------- /db/migrate/20150605010749_create_deactivated_taggings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20150605010749_create_deactivated_taggings.rb -------------------------------------------------------------------------------- /db/migrate/20150605201636_create_tag_filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20150605201636_create_tag_filters.rb -------------------------------------------------------------------------------- /db/migrate/20150618160651_drop_old_tag_filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20150618160651_drop_old_tag_filters.rb -------------------------------------------------------------------------------- /db/migrate/20170208175027_add_unconfirmed_email_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20170208175027_add_unconfirmed_email_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20170213154531_add_taggers_notification_to_hubs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20170213154531_add_taggers_notification_to_hubs.rb -------------------------------------------------------------------------------- /db/migrate/20170222155011_add_allow_sign_up_for_notifications_to_hubs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20170222155011_add_allow_sign_up_for_notifications_to_hubs.rb -------------------------------------------------------------------------------- /db/migrate/20170222162304_create_hub_user_notifications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20170222162304_create_hub_user_notifications.rb -------------------------------------------------------------------------------- /db/migrate/20170302194356_add_setting_tags_delimiter_to_hub.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20170302194356_add_setting_tags_delimiter_to_hub.rb -------------------------------------------------------------------------------- /db/migrate/20170303042810_add_approved_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20170303042810_add_approved_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20170305213702_add_signup_reason_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20170305213702_add_signup_reason_to_users.rb -------------------------------------------------------------------------------- /db/migrate/20170307193237_fix_data_published_in_feed_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20170307193237_fix_data_published_in_feed_items.rb -------------------------------------------------------------------------------- /db/migrate/20170309211431_add_user_restriction_to_input_sources.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20170309211431_add_user_restriction_to_input_sources.rb -------------------------------------------------------------------------------- /db/migrate/20170311175714_update_input_sources_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20170311175714_update_input_sources_index.rb -------------------------------------------------------------------------------- /db/migrate/20170424200240_create_feed_visitors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20170424200240_create_feed_visitors.rb -------------------------------------------------------------------------------- /db/migrate/20170424201008_create_feed_subscribers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20170424201008_create_feed_subscribers.rb -------------------------------------------------------------------------------- /db/migrate/20170802195159_add_setting_official_tag_prefix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20170802195159_add_setting_official_tag_prefix.rb -------------------------------------------------------------------------------- /db/migrate/20170809143830_create_hub_approved_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20170809143830_create_hub_approved_tags.rb -------------------------------------------------------------------------------- /db/migrate/20170809173959_add_hub_setting_suggest_only_approved_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20170809173959_add_hub_setting_suggest_only_approved_tags.rb -------------------------------------------------------------------------------- /db/migrate/20171030153046_tighten_hub_user_notifications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20171030153046_tighten_hub_user_notifications.rb -------------------------------------------------------------------------------- /db/migrate/20171030195621_update_hub_user_notification_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20171030195621_update_hub_user_notification_defaults.rb -------------------------------------------------------------------------------- /db/migrate/20171109213205_add_notifications_mandatory_to_hubs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20171109213205_add_notifications_mandatory_to_hubs.rb -------------------------------------------------------------------------------- /db/migrate/20171128102024_change_tags_delimiter_to_array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20171128102024_change_tags_delimiter_to_array.rb -------------------------------------------------------------------------------- /db/migrate/20171129150829_create_admin_settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20171129150829_create_admin_settings.rb -------------------------------------------------------------------------------- /db/migrate/20171208133150_add_unsubscribe_to_feeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20171208133150_add_unsubscribe_to_feeds.rb -------------------------------------------------------------------------------- /db/migrate/20171211104827_add_enable_tag_scoreboard_to_hubs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20171211104827_add_enable_tag_scoreboard_to_hubs.rb -------------------------------------------------------------------------------- /db/migrate/20180316092704_require_tag_delimiters_in_hubs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20180316092704_require_tag_delimiters_in_hubs.rb -------------------------------------------------------------------------------- /db/migrate/20180418110458_create_removed_tag_suggestions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20180418110458_create_removed_tag_suggestions.rb -------------------------------------------------------------------------------- /db/migrate/20180516171333_add_require_admin_approval_to_settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20180516171333_add_require_admin_approval_to_settings.rb -------------------------------------------------------------------------------- /db/migrate/20180611155543_split_hub_tag_filterer_into_two.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20180611155543_split_hub_tag_filterer_into_two.rb -------------------------------------------------------------------------------- /db/migrate/20180620160250_oatp_cleanup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20180620160250_oatp_cleanup.rb -------------------------------------------------------------------------------- /db/migrate/20180622155046_tagging_cleanup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20180622155046_tagging_cleanup.rb -------------------------------------------------------------------------------- /db/migrate/20180710170657_update_tags_delimiter_default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20180710170657_update_tags_delimiter_default.rb -------------------------------------------------------------------------------- /db/migrate/20180816161305_create_hub_tag_descriptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20180816161305_create_hub_tag_descriptions.rb -------------------------------------------------------------------------------- /db/migrate/20180822171418_delayed_acts_as_taggable_upgrade.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/migrate/20180822171418_delayed_acts_as_taggable_upgrade.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /doc/README_FOR_APP: -------------------------------------------------------------------------------- 1 | ../README.rdoc -------------------------------------------------------------------------------- /doc/ddl.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/doc/ddl.dia -------------------------------------------------------------------------------- /doc/ddl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/doc/ddl.png -------------------------------------------------------------------------------- /doc/image_sources/bg_dot.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/doc/image_sources/bg_dot.xcf -------------------------------------------------------------------------------- /doc/image_sources/drawing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/doc/image_sources/drawing.svg -------------------------------------------------------------------------------- /doc/suber_tagging_final.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/doc/suber_tagging_final.doc -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/docker/database.yml -------------------------------------------------------------------------------- /docker/init_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/docker/init_db.sql -------------------------------------------------------------------------------- /docker/start_dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/docker/start_dev.sh -------------------------------------------------------------------------------- /docker/start_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/docker/start_test.sh -------------------------------------------------------------------------------- /lib/acts_as_taggable_on_extensions/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/lib/acts_as_taggable_on_extensions/README -------------------------------------------------------------------------------- /lib/acts_as_taggable_on_extensions/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/lib/acts_as_taggable_on_extensions/Rakefile -------------------------------------------------------------------------------- /lib/acts_as_taggable_on_extensions/install.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | # Install hook code here 3 | -------------------------------------------------------------------------------- /lib/acts_as_taggable_on_extensions/lib/acts_as_taggable_on_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/lib/acts_as_taggable_on_extensions/lib/acts_as_taggable_on_extensions.rb -------------------------------------------------------------------------------- /lib/acts_as_taggable_on_extensions/uninstall.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | # Uninstall hook code here 3 | -------------------------------------------------------------------------------- /lib/auth_utilities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/lib/auth_utilities.rb -------------------------------------------------------------------------------- /lib/feed_utilities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/lib/feed_utilities.rb -------------------------------------------------------------------------------- /lib/model_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/lib/model_extensions.rb -------------------------------------------------------------------------------- /lib/parser_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/lib/parser_test.rb -------------------------------------------------------------------------------- /lib/rake_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/lib/rake_helper.rb -------------------------------------------------------------------------------- /lib/tagteam/export_import.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/lib/tagteam/export_import.rb -------------------------------------------------------------------------------- /lib/tagteam/importer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/lib/tagteam/importer.rb -------------------------------------------------------------------------------- /lib/tagteam/importer/connotea.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/lib/tagteam/importer/connotea.rb -------------------------------------------------------------------------------- /lib/tagteam/importer/delicious.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/lib/tagteam/importer/delicious.rb -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/audits.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/lib/tasks/audits.rake -------------------------------------------------------------------------------- /lib/tasks/cucumber.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/lib/tasks/cucumber.rake -------------------------------------------------------------------------------- /lib/tasks/factory_girl.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/lib/tasks/factory_girl.rake -------------------------------------------------------------------------------- /lib/tasks/migrate.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/lib/tasks/migrate.rake -------------------------------------------------------------------------------- /lib/tasks/tagteam.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/lib/tasks/tagteam.rake -------------------------------------------------------------------------------- /lib/tasks/test_data.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/lib/tasks/test_data.rake -------------------------------------------------------------------------------- /lib/urls_stripper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/lib/urls_stripper.rb -------------------------------------------------------------------------------- /lib/will_paginate/view_helpers/custom_link_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/lib/will_paginate/view_helpers/custom_link_renderer.rb -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/422.html -------------------------------------------------------------------------------- /public/_tests/djcp.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/_tests/djcp.rss -------------------------------------------------------------------------------- /public/_tests/djcp_code.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/_tests/djcp_code.rss -------------------------------------------------------------------------------- /public/_tests/djcp_delicious.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/_tests/djcp_delicious.rss -------------------------------------------------------------------------------- /public/_tests/djcp_twitter.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/_tests/djcp_twitter.rss -------------------------------------------------------------------------------- /public/_tests/doc.atom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/_tests/doc.atom -------------------------------------------------------------------------------- /public/_tests/oa.africa.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/_tests/oa.africa.rss -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/github-btn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/github-btn.html -------------------------------------------------------------------------------- /public/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/humans.txt -------------------------------------------------------------------------------- /public/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/images/loader.gif -------------------------------------------------------------------------------- /public/images/ui-bg_diagonals-small_75_f3d8d8_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/images/ui-bg_diagonals-small_75_f3d8d8_40x40.png -------------------------------------------------------------------------------- /public/images/ui-bg_diagonals-thick_65_a6a6a6_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/images/ui-bg_diagonals-thick_65_a6a6a6_40x40.png -------------------------------------------------------------------------------- /public/images/ui-bg_diagonals-thick_75_f3d8d8_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/images/ui-bg_diagonals-thick_75_f3d8d8_40x40.png -------------------------------------------------------------------------------- /public/images/ui-bg_flat_0_333333_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/images/ui-bg_flat_0_333333_40x100.png -------------------------------------------------------------------------------- /public/images/ui-bg_flat_100_a6a6a6_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/images/ui-bg_flat_100_a6a6a6_40x100.png -------------------------------------------------------------------------------- /public/images/ui-bg_flat_100_dddddd_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/images/ui-bg_flat_100_dddddd_40x100.png -------------------------------------------------------------------------------- /public/images/ui-bg_flat_100_f6f6f6_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/images/ui-bg_flat_100_f6f6f6_40x100.png -------------------------------------------------------------------------------- /public/images/ui-bg_flat_15_8ec63f_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/images/ui-bg_flat_15_8ec63f_40x100.png -------------------------------------------------------------------------------- /public/images/ui-bg_flat_15_a33724_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/images/ui-bg_flat_15_a33724_40x100.png -------------------------------------------------------------------------------- /public/images/ui-bg_flat_50_616161_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/images/ui-bg_flat_50_616161_40x100.png -------------------------------------------------------------------------------- /public/images/ui-bg_flat_50_a6a6a6_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/images/ui-bg_flat_50_a6a6a6_40x100.png -------------------------------------------------------------------------------- /public/images/ui-bg_flat_55_fbf8ee_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/images/ui-bg_flat_55_fbf8ee_40x100.png -------------------------------------------------------------------------------- /public/images/ui-bg_flat_65_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/images/ui-bg_flat_65_ffffff_40x100.png -------------------------------------------------------------------------------- /public/images/ui-bg_flat_75_f3d8d8_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/images/ui-bg_flat_75_f3d8d8_40x100.png -------------------------------------------------------------------------------- /public/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /public/images/ui-bg_glass_55_fbf8ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/images/ui-bg_glass_55_fbf8ee_1x400.png -------------------------------------------------------------------------------- /public/images/ui-bg_highlight-hard_100_f6f6f6_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/images/ui-bg_highlight-hard_100_f6f6f6_1x100.png -------------------------------------------------------------------------------- /public/images/ui-icons_151c21_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/images/ui-icons_151c21_256x240.png -------------------------------------------------------------------------------- /public/images/ui-icons_8ec63f_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/images/ui-icons_8ec63f_256x240.png -------------------------------------------------------------------------------- /public/images/ui-icons_a33724_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/images/ui-icons_a33724_256x240.png -------------------------------------------------------------------------------- /public/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /public/javascripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /script/cucumber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/script/cucumber -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/script/rails -------------------------------------------------------------------------------- /script/sidekiq_pusher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/script/sidekiq_pusher.rb -------------------------------------------------------------------------------- /solr/conf/elevate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/solr/conf/elevate.xml -------------------------------------------------------------------------------- /solr/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/solr/conf/schema.xml -------------------------------------------------------------------------------- /solr/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/solr/conf/solrconfig.xml -------------------------------------------------------------------------------- /solr/conf/spellings.txt: -------------------------------------------------------------------------------- 1 | pizza 2 | history -------------------------------------------------------------------------------- /solr/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/solr/conf/stopwords.txt -------------------------------------------------------------------------------- /solr/conf/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/solr/conf/synonyms.txt -------------------------------------------------------------------------------- /solr/solr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/solr/solr.xml -------------------------------------------------------------------------------- /spec/controllers/documentations_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/controllers/documentations_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/hubs_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/controllers/hubs_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/tag_filters_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/controllers/tag_filters_controller_spec.rb -------------------------------------------------------------------------------- /spec/factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/factories.rb -------------------------------------------------------------------------------- /spec/factories/documentations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/factories/documentations.rb -------------------------------------------------------------------------------- /spec/factories/feed_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/factories/feed_items.rb -------------------------------------------------------------------------------- /spec/factories/feed_retrievals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/factories/feed_retrievals.rb -------------------------------------------------------------------------------- /spec/factories/feed_visitors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/factories/feed_visitors.rb -------------------------------------------------------------------------------- /spec/factories/feeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/factories/feeds.rb -------------------------------------------------------------------------------- /spec/factories/hub_approved_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/factories/hub_approved_tag.rb -------------------------------------------------------------------------------- /spec/factories/hub_feeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/factories/hub_feeds.rb -------------------------------------------------------------------------------- /spec/factories/hub_user_notifications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/factories/hub_user_notifications.rb -------------------------------------------------------------------------------- /spec/factories/hubs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/factories/hubs.rb -------------------------------------------------------------------------------- /spec/factories/republished_feeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/factories/republished_feeds.rb -------------------------------------------------------------------------------- /spec/factories/tag_filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/factories/tag_filters.rb -------------------------------------------------------------------------------- /spec/factories/taggings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/factories/taggings.rb -------------------------------------------------------------------------------- /spec/factories/tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/factories/tags.rb -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/features/adding_bookmarklets_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/features/adding_bookmarklets_spec.rb -------------------------------------------------------------------------------- /spec/features/feed_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/features/feed_filter_spec.rb -------------------------------------------------------------------------------- /spec/features/feed_input_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/features/feed_input_spec.rb -------------------------------------------------------------------------------- /spec/features/filter_interaction_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/features/filter_interaction_spec.rb -------------------------------------------------------------------------------- /spec/features/hub_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/features/hub_filter_spec.rb -------------------------------------------------------------------------------- /spec/features/hub_search_spec.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/features/item_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/features/item_filter_spec.rb -------------------------------------------------------------------------------- /spec/features/item_search_spec.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/features/tag_filtering_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/features/tag_filtering_spec.rb -------------------------------------------------------------------------------- /spec/features/tagging_ownership_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/features/tagging_ownership_spec.rb -------------------------------------------------------------------------------- /spec/features/user_feeds_spec.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/functional/assets_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/functional/assets_spec.rb -------------------------------------------------------------------------------- /spec/functional/tag_filter_interaction_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/functional/tag_filter_interaction_spec.rb -------------------------------------------------------------------------------- /spec/interactions/feed_items/create_change_notification_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/interactions/feed_items/create_change_notification_spec.rb -------------------------------------------------------------------------------- /spec/interactions/feed_items/create_or_update_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/interactions/feed_items/create_or_update_spec.rb -------------------------------------------------------------------------------- /spec/interactions/feed_items/locate_tag_filter_users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/interactions/feed_items/locate_tag_filter_users_spec.rb -------------------------------------------------------------------------------- /spec/interactions/feed_items/locate_tagging_users_by_hub_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/interactions/feed_items/locate_tagging_users_by_hub_spec.rb -------------------------------------------------------------------------------- /spec/interactions/feed_items/locate_users_to_notify_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/interactions/feed_items/locate_users_to_notify_spec.rb -------------------------------------------------------------------------------- /spec/interactions/feed_items/update_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/interactions/feed_items/update_spec.rb -------------------------------------------------------------------------------- /spec/interactions/hub_user_notifications/enable_for_all_hub_users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/interactions/hub_user_notifications/enable_for_all_hub_users_spec.rb -------------------------------------------------------------------------------- /spec/interactions/hubs/update_notification_settings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/interactions/hubs/update_notification_settings_spec.rb -------------------------------------------------------------------------------- /spec/interactions/hubs/update_tagging_settings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/interactions/hubs/update_tagging_settings_spec.rb -------------------------------------------------------------------------------- /spec/interactions/roles/locate_hub_owners_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/interactions/roles/locate_hub_owners_spec.rb -------------------------------------------------------------------------------- /spec/interactions/statistics/hub_prefixed_tags_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/interactions/statistics/hub_prefixed_tags_spec.rb -------------------------------------------------------------------------------- /spec/interactions/statistics/scoreboard_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/interactions/statistics/scoreboard_spec.rb -------------------------------------------------------------------------------- /spec/interactions/tag_filters/create_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/interactions/tag_filters/create_spec.rb -------------------------------------------------------------------------------- /spec/interactions/users/sort_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/interactions/users/sort_spec.rb -------------------------------------------------------------------------------- /spec/jobs/feed_items/send_change_notification_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/jobs/feed_items/send_change_notification_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/feeds/expire_feed_visitors_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/jobs/feeds/expire_feed_visitors_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/feeds/process_visitors_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/jobs/feeds/process_visitors_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/feeds/store_feed_visitor_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/jobs/feeds/store_feed_visitor_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/tag_filters/destroy_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/jobs/tag_filters/destroy_job_spec.rb -------------------------------------------------------------------------------- /spec/jobs/tagging_notifications/send_notification_job_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/jobs/tagging_notifications/send_notification_job_spec.rb -------------------------------------------------------------------------------- /spec/lib/urls_stripper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/lib/urls_stripper_spec.rb -------------------------------------------------------------------------------- /spec/mailers/admin/user_approvals_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/mailers/admin/user_approvals_mailer_spec.rb -------------------------------------------------------------------------------- /spec/mailers/previews/admin/user_approvals_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/mailers/previews/admin/user_approvals_mailer_preview.rb -------------------------------------------------------------------------------- /spec/mailers/previews/feed_items/notifications_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/mailers/previews/feed_items/notifications_mailer_preview.rb -------------------------------------------------------------------------------- /spec/mailers/previews/notifications_mailer_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/mailers/previews/notifications_mailer_preview.rb -------------------------------------------------------------------------------- /spec/models/add_tag_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/models/add_tag_filter_spec.rb -------------------------------------------------------------------------------- /spec/models/deactivated_tagging_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/models/deactivated_tagging_spec.rb -------------------------------------------------------------------------------- /spec/models/delete_tag_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/models/delete_tag_filter_spec.rb -------------------------------------------------------------------------------- /spec/models/feed_item_observer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/models/feed_item_observer_spec.rb -------------------------------------------------------------------------------- /spec/models/feed_item_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/models/feed_item_spec.rb -------------------------------------------------------------------------------- /spec/models/feed_retrieval_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/models/feed_retrieval_spec.rb -------------------------------------------------------------------------------- /spec/models/feed_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/models/feed_spec.rb -------------------------------------------------------------------------------- /spec/models/hub_approved_tag_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/models/hub_approved_tag_spec.rb -------------------------------------------------------------------------------- /spec/models/hub_feed_observer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/models/hub_feed_observer_spec.rb -------------------------------------------------------------------------------- /spec/models/hub_feed_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/models/hub_feed_spec.rb -------------------------------------------------------------------------------- /spec/models/hub_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/models/hub_spec.rb -------------------------------------------------------------------------------- /spec/models/hub_user_notification_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/models/hub_user_notification_spec.rb -------------------------------------------------------------------------------- /spec/models/modify_tag_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/models/modify_tag_filter_spec.rb -------------------------------------------------------------------------------- /spec/models/republished_feed_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/models/republished_feed_spec.rb -------------------------------------------------------------------------------- /spec/models/search_remix_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/models/search_remix_spec.rb -------------------------------------------------------------------------------- /spec/models/supplement_tag_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/models/supplement_tag_filter_spec.rb -------------------------------------------------------------------------------- /spec/models/tagging_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/models/tagging_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/policies/documentation_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/policies/documentation_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/feed_item_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/policies/feed_item_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/hub_feed_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/policies/hub_feed_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/hub_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/policies/hub_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/republished_feed_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/policies/republished_feed_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/tag_filter_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/policies/tag_filter_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/user_approval_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/policies/user_approval_policy_spec.rb -------------------------------------------------------------------------------- /spec/policies/user_policy_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/policies/user_policy_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/controller_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/support/controller_helpers.rb -------------------------------------------------------------------------------- /spec/support/database_cleaner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/support/database_cleaner.rb -------------------------------------------------------------------------------- /spec/support/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/support/devise.rb -------------------------------------------------------------------------------- /spec/support/factory_bot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/support/factory_bot.rb -------------------------------------------------------------------------------- /spec/support/interactions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/support/interactions.rb -------------------------------------------------------------------------------- /spec/support/shared_context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/support/shared_context.rb -------------------------------------------------------------------------------- /spec/support/shared_tag_filter_examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/support/shared_tag_filter_examples.rb -------------------------------------------------------------------------------- /spec/support/shoulda_matchers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/support/shoulda_matchers.rb -------------------------------------------------------------------------------- /spec/support/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/support/sidekiq.rb -------------------------------------------------------------------------------- /spec/support/sunspot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/support/sunspot.rb -------------------------------------------------------------------------------- /spec/support/tag_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/support/tag_utils.rb -------------------------------------------------------------------------------- /spec/support/tagging_deactivator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/support/tagging_deactivator.rb -------------------------------------------------------------------------------- /spec/support/vcr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/support/vcr.rb -------------------------------------------------------------------------------- /spec/vcr/feed_factory-childrenshospitalblog_org-0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/vcr/feed_factory-childrenshospitalblog_org-0.yml -------------------------------------------------------------------------------- /spec/vcr/feed_factory-childrenshospitalblog_org.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/vcr/feed_factory-childrenshospitalblog_org.yml -------------------------------------------------------------------------------- /spec/vcr/feed_factory-feeds_feedburner_com.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/vcr/feed_factory-feeds_feedburner_com.yml -------------------------------------------------------------------------------- /spec/vcr/feed_factory-reagle_org-0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/vcr/feed_factory-reagle_org-0.yml -------------------------------------------------------------------------------- /spec/vcr/feed_factory-reagle_org-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/vcr/feed_factory-reagle_org-1.yml -------------------------------------------------------------------------------- /spec/vcr/feed_factory-reagle_org.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/vcr/feed_factory-reagle_org.yml -------------------------------------------------------------------------------- /spec/vcr/feed_factory_reagle_org.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/vcr/feed_factory_reagle_org.yml -------------------------------------------------------------------------------- /spec/vcr/update_feeds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/vcr/update_feeds.yml -------------------------------------------------------------------------------- /spec/workers/apply_tag_filters_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/workers/apply_tag_filters_spec.rb -------------------------------------------------------------------------------- /spec/workers/update_feeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/spec/workers/update_feeds.rb -------------------------------------------------------------------------------- /vendor/assets/images/bg_dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/images/bg_dot.png -------------------------------------------------------------------------------- /vendor/assets/images/bgstripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/images/bgstripe.png -------------------------------------------------------------------------------- /vendor/assets/images/facebook-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/images/facebook-icon.png -------------------------------------------------------------------------------- /vendor/assets/images/google-plus-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/images/google-plus-icon.png -------------------------------------------------------------------------------- /vendor/assets/images/nicEditorIcons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/images/nicEditorIcons.gif -------------------------------------------------------------------------------- /vendor/assets/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/images/rails.png -------------------------------------------------------------------------------- /vendor/assets/images/silk-sprite-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/images/silk-sprite-gray.png -------------------------------------------------------------------------------- /vendor/assets/images/silk-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/images/silk-sprite.png -------------------------------------------------------------------------------- /vendor/assets/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/images/spinner.gif -------------------------------------------------------------------------------- /vendor/assets/images/tactile_noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/images/tactile_noise.png -------------------------------------------------------------------------------- /vendor/assets/images/twitter-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/images/twitter-icon.png -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/adapters/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/adapters/jquery.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/ckeditor.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/config.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/contents.css -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/lang/en.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/af.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/da.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/de.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/el.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/en-gb.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/en.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/es.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/et.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/he.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/id.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/it.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/km.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/no.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/si.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/th.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/tt.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/a11yhelp/dialogs/lang/zh.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/dialog/dialogDefinition.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/image/dialogs/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/image/dialogs/image.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/link/dialogs/anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/link/dialogs/anchor.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/link/dialogs/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/link/dialogs/link.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/plugins/table/dialogs/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/plugins/table/dialogs/table.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/skins/bootstrapck/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/skins/bootstrapck/dialog.css -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/skins/bootstrapck/dialog_ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/skins/bootstrapck/dialog_ie.css -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/skins/bootstrapck/dialog_ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/skins/bootstrapck/dialog_ie7.css -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/skins/bootstrapck/dialog_ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/skins/bootstrapck/dialog_ie8.css -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/skins/bootstrapck/dialog_opera.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/skins/bootstrapck/dialog_opera.css -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/skins/bootstrapck/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/skins/bootstrapck/editor.css -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/skins/bootstrapck/editor_gecko.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/skins/bootstrapck/editor_gecko.css -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/skins/bootstrapck/editor_ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/skins/bootstrapck/editor_ie.css -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/skins/bootstrapck/editor_ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/skins/bootstrapck/editor_ie7.css -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/skins/bootstrapck/editor_ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/skins/bootstrapck/editor_ie8.css -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/skins/bootstrapck/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/skins/bootstrapck/icons.png -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/skins/bootstrapck/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/skins/bootstrapck/icons_hidpi.png -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/skins/bootstrapck/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/skins/bootstrapck/images/arrow.png -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/skins/bootstrapck/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/skins/bootstrapck/images/close.png -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/skins/bootstrapck/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/skins/bootstrapck/images/lock.png -------------------------------------------------------------------------------- /vendor/assets/javascripts/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/ckeditor/styles.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/excanvas.compiled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/excanvas.compiled.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery-migrate-1.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/jquery-migrate-1.1.1.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery-ui-1.8.18.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/jquery-ui-1.8.18.custom.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery-ui-1.9.2.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/jquery-ui-1.9.2.custom.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.ba-bbq.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/jquery.ba-bbq.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.ba-detach.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/jquery.ba-detach.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.bootpag.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/jquery.bootpag.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.bt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/jquery.bt.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/jquery.cookie.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/jquery.form.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.hoverIntent.minified.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/jquery.hoverIntent.minified.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.infinitescroll.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/jquery.infinitescroll.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/jquery.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.masonry.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/jquery.masonry.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/jquery.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.observe_field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/jquery.observe_field.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.sortChildren.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/jquery.sortChildren.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery_ujs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/jquery_ujs.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/modernizr.custom.15012.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/modernizr.custom.15012.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/nicEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/javascripts/nicEdit.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/660-10col.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/stylesheets/660-10col.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/992-16col.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/stylesheets/992-16col.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/atom.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/stylesheets/atom.xsl -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bookmarklet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/stylesheets/bookmarklet.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/custom-theme/jquery-ui-1.9.2.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/stylesheets/custom-theme/jquery-ui-1.9.2.custom.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/stylesheets/reset.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/rss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/stylesheets/rss.xsl -------------------------------------------------------------------------------- /vendor/assets/stylesheets/silk-sprite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berkmancenter/tagteam/HEAD/vendor/assets/stylesheets/silk-sprite.css -------------------------------------------------------------------------------- /vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------