Repository: florence-social/mastodon-fork
Branch: main
Commit: 147c3cfcbb35
Files: 2374
Total size: 7.4 MB
Directory structure:
gitextract_pog1r_hd/
├── .buildpacks
├── .circleci/
│ └── config.yml
├── .codeclimate.yml
├── .dependabot/
│ └── config.yml
├── .dockerignore
├── .editorconfig
├── .eslintignore
├── .eslintrc.js
├── .foreman
├── .gitattributes
├── .gitignore
├── .haml-lint.yml
├── .nanoignore
├── .nvmrc
├── .profile
├── .rspec
├── .rubocop.yml
├── .ruby-version
├── .sass-lint.yml
├── .slugignore
├── .yarnclean
├── AUTHORS.md
├── Aptfile
├── CHANGELOG.md
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── Capfile
├── Dockerfile
├── Gemfile
├── LICENSE
├── Procfile
├── Procfile.dev
├── README.md
├── Rakefile
├── Vagrantfile
├── app/
│ ├── chewy/
│ │ └── statuses_index.rb
│ ├── controllers/
│ │ ├── about_controller.rb
│ │ ├── account_follow_controller.rb
│ │ ├── account_unfollow_controller.rb
│ │ ├── accounts_controller.rb
│ │ ├── activitypub/
│ │ │ ├── collections_controller.rb
│ │ │ ├── inboxes_controller.rb
│ │ │ └── outboxes_controller.rb
│ │ ├── admin/
│ │ │ ├── account_actions_controller.rb
│ │ │ ├── account_moderation_notes_controller.rb
│ │ │ ├── accounts_controller.rb
│ │ │ ├── action_logs_controller.rb
│ │ │ ├── base_controller.rb
│ │ │ ├── change_emails_controller.rb
│ │ │ ├── confirmations_controller.rb
│ │ │ ├── custom_emojis_controller.rb
│ │ │ ├── dashboard_controller.rb
│ │ │ ├── domain_blocks_controller.rb
│ │ │ ├── email_domain_blocks_controller.rb
│ │ │ ├── followers_controller.rb
│ │ │ ├── instances_controller.rb
│ │ │ ├── invites_controller.rb
│ │ │ ├── pending_accounts_controller.rb
│ │ │ ├── relays_controller.rb
│ │ │ ├── report_notes_controller.rb
│ │ │ ├── reported_statuses_controller.rb
│ │ │ ├── reports_controller.rb
│ │ │ ├── resets_controller.rb
│ │ │ ├── roles_controller.rb
│ │ │ ├── settings_controller.rb
│ │ │ ├── statuses_controller.rb
│ │ │ ├── subscriptions_controller.rb
│ │ │ ├── tags_controller.rb
│ │ │ ├── two_factor_authentications_controller.rb
│ │ │ └── warning_presets_controller.rb
│ │ ├── api/
│ │ │ ├── base_controller.rb
│ │ │ ├── oembed_controller.rb
│ │ │ ├── proofs_controller.rb
│ │ │ ├── push_controller.rb
│ │ │ ├── salmon_controller.rb
│ │ │ ├── subscriptions_controller.rb
│ │ │ ├── v1/
│ │ │ │ ├── accounts/
│ │ │ │ │ ├── credentials_controller.rb
│ │ │ │ │ ├── follower_accounts_controller.rb
│ │ │ │ │ ├── following_accounts_controller.rb
│ │ │ │ │ ├── identity_proofs_controller.rb
│ │ │ │ │ ├── lists_controller.rb
│ │ │ │ │ ├── pins_controller.rb
│ │ │ │ │ ├── relationships_controller.rb
│ │ │ │ │ ├── search_controller.rb
│ │ │ │ │ └── statuses_controller.rb
│ │ │ │ ├── accounts_controller.rb
│ │ │ │ ├── apps/
│ │ │ │ │ └── credentials_controller.rb
│ │ │ │ ├── apps_controller.rb
│ │ │ │ ├── blocks_controller.rb
│ │ │ │ ├── conversations_controller.rb
│ │ │ │ ├── custom_emojis_controller.rb
│ │ │ │ ├── domain_blocks_controller.rb
│ │ │ │ ├── endorsements_controller.rb
│ │ │ │ ├── favourites_controller.rb
│ │ │ │ ├── filters_controller.rb
│ │ │ │ ├── follow_requests_controller.rb
│ │ │ │ ├── follows_controller.rb
│ │ │ │ ├── instances/
│ │ │ │ │ ├── activity_controller.rb
│ │ │ │ │ └── peers_controller.rb
│ │ │ │ ├── instances_controller.rb
│ │ │ │ ├── lists/
│ │ │ │ │ └── accounts_controller.rb
│ │ │ │ ├── lists_controller.rb
│ │ │ │ ├── media_controller.rb
│ │ │ │ ├── mutes_controller.rb
│ │ │ │ ├── notifications_controller.rb
│ │ │ │ ├── polls/
│ │ │ │ │ └── votes_controller.rb
│ │ │ │ ├── polls_controller.rb
│ │ │ │ ├── preferences_controller.rb
│ │ │ │ ├── push/
│ │ │ │ │ └── subscriptions_controller.rb
│ │ │ │ ├── reports_controller.rb
│ │ │ │ ├── scheduled_statuses_controller.rb
│ │ │ │ ├── search_controller.rb
│ │ │ │ ├── statuses/
│ │ │ │ │ ├── favourited_by_accounts_controller.rb
│ │ │ │ │ ├── favourites_controller.rb
│ │ │ │ │ ├── mutes_controller.rb
│ │ │ │ │ ├── pins_controller.rb
│ │ │ │ │ ├── reblogged_by_accounts_controller.rb
│ │ │ │ │ └── reblogs_controller.rb
│ │ │ │ ├── statuses_controller.rb
│ │ │ │ ├── streaming_controller.rb
│ │ │ │ ├── suggestions_controller.rb
│ │ │ │ └── timelines/
│ │ │ │ ├── direct_controller.rb
│ │ │ │ ├── home_controller.rb
│ │ │ │ ├── list_controller.rb
│ │ │ │ ├── public_controller.rb
│ │ │ │ └── tag_controller.rb
│ │ │ ├── v2/
│ │ │ │ └── search_controller.rb
│ │ │ └── web/
│ │ │ ├── base_controller.rb
│ │ │ ├── embeds_controller.rb
│ │ │ ├── push_subscriptions_controller.rb
│ │ │ └── settings_controller.rb
│ │ ├── application_controller.rb
│ │ ├── auth/
│ │ │ ├── confirmations_controller.rb
│ │ │ ├── omniauth_callbacks_controller.rb
│ │ │ ├── passwords_controller.rb
│ │ │ ├── registrations_controller.rb
│ │ │ └── sessions_controller.rb
│ │ ├── authorize_interactions_controller.rb
│ │ ├── concerns/
│ │ │ ├── account_controller_concern.rb
│ │ │ ├── accountable_concern.rb
│ │ │ ├── authorization.rb
│ │ │ ├── export_controller_concern.rb
│ │ │ ├── localized.rb
│ │ │ ├── obfuscate_filename.rb
│ │ │ ├── rate_limit_headers.rb
│ │ │ ├── session_tracking_concern.rb
│ │ │ ├── signature_authentication.rb
│ │ │ ├── signature_verification.rb
│ │ │ └── user_tracking_concern.rb
│ │ ├── custom_css_controller.rb
│ │ ├── directories_controller.rb
│ │ ├── emojis_controller.rb
│ │ ├── filters_controller.rb
│ │ ├── follower_accounts_controller.rb
│ │ ├── following_accounts_controller.rb
│ │ ├── home_controller.rb
│ │ ├── intents_controller.rb
│ │ ├── invites_controller.rb
│ │ ├── manifests_controller.rb
│ │ ├── media_controller.rb
│ │ ├── media_proxy_controller.rb
│ │ ├── oauth/
│ │ │ ├── authorizations_controller.rb
│ │ │ ├── authorized_applications_controller.rb
│ │ │ └── tokens_controller.rb
│ │ ├── public_timelines_controller.rb
│ │ ├── relationships_controller.rb
│ │ ├── remote_follow_controller.rb
│ │ ├── remote_interaction_controller.rb
│ │ ├── remote_unfollows_controller.rb
│ │ ├── settings/
│ │ │ ├── applications_controller.rb
│ │ │ ├── base_controller.rb
│ │ │ ├── deletes_controller.rb
│ │ │ ├── exports/
│ │ │ │ ├── blocked_accounts_controller.rb
│ │ │ │ ├── blocked_domains_controller.rb
│ │ │ │ ├── following_accounts_controller.rb
│ │ │ │ ├── lists_controller.rb
│ │ │ │ └── muted_accounts_controller.rb
│ │ │ ├── exports_controller.rb
│ │ │ ├── featured_tags_controller.rb
│ │ │ ├── identity_proofs_controller.rb
│ │ │ ├── imports_controller.rb
│ │ │ ├── migrations_controller.rb
│ │ │ ├── preferences/
│ │ │ │ ├── appearance_controller.rb
│ │ │ │ ├── notifications_controller.rb
│ │ │ │ └── other_controller.rb
│ │ │ ├── preferences_controller.rb
│ │ │ ├── profiles_controller.rb
│ │ │ ├── sessions_controller.rb
│ │ │ ├── two_factor_authentication/
│ │ │ │ ├── confirmations_controller.rb
│ │ │ │ └── recovery_codes_controller.rb
│ │ │ └── two_factor_authentications_controller.rb
│ │ ├── shares_controller.rb
│ │ ├── statuses_controller.rb
│ │ ├── stream_entries_controller.rb
│ │ ├── tags_controller.rb
│ │ └── well_known/
│ │ ├── host_meta_controller.rb
│ │ ├── keybase_proof_config_controller.rb
│ │ └── webfinger_controller.rb
│ ├── helpers/
│ │ ├── admin/
│ │ │ ├── account_moderation_notes_helper.rb
│ │ │ ├── action_logs_helper.rb
│ │ │ ├── dashboard_helper.rb
│ │ │ └── filter_helper.rb
│ │ ├── application_helper.rb
│ │ ├── flashes_helper.rb
│ │ ├── home_helper.rb
│ │ ├── instance_helper.rb
│ │ ├── jsonld_helper.rb
│ │ ├── routing_helper.rb
│ │ ├── settings_helper.rb
│ │ └── stream_entries_helper.rb
│ ├── javascript/
│ │ ├── mastodon/
│ │ │ ├── actions/
│ │ │ │ ├── accounts.js
│ │ │ │ ├── alerts.js
│ │ │ │ ├── blocks.js
│ │ │ │ ├── bundles.js
│ │ │ │ ├── columns.js
│ │ │ │ ├── compose.js
│ │ │ │ ├── conversations.js
│ │ │ │ ├── custom_emojis.js
│ │ │ │ ├── domain_blocks.js
│ │ │ │ ├── dropdown_menu.js
│ │ │ │ ├── emojis.js
│ │ │ │ ├── favourites.js
│ │ │ │ ├── filters.js
│ │ │ │ ├── height_cache.js
│ │ │ │ ├── identity_proofs.js
│ │ │ │ ├── importer/
│ │ │ │ │ ├── index.js
│ │ │ │ │ └── normalizer.js
│ │ │ │ ├── interactions.js
│ │ │ │ ├── lists.js
│ │ │ │ ├── modal.js
│ │ │ │ ├── mutes.js
│ │ │ │ ├── notifications.js
│ │ │ │ ├── onboarding.js
│ │ │ │ ├── pin_statuses.js
│ │ │ │ ├── polls.js
│ │ │ │ ├── push_notifications/
│ │ │ │ │ ├── index.js
│ │ │ │ │ ├── registerer.js
│ │ │ │ │ └── setter.js
│ │ │ │ ├── reports.js
│ │ │ │ ├── search.js
│ │ │ │ ├── settings.js
│ │ │ │ ├── statuses.js
│ │ │ │ ├── store.js
│ │ │ │ ├── streaming.js
│ │ │ │ ├── suggestions.js
│ │ │ │ └── timelines.js
│ │ │ ├── api.js
│ │ │ ├── base_polyfills.js
│ │ │ ├── common.js
│ │ │ ├── compare_id.js
│ │ │ ├── components/
│ │ │ │ ├── __tests__/
│ │ │ │ │ ├── __snapshots__/
│ │ │ │ │ │ ├── autosuggest_emoji-test.js.snap
│ │ │ │ │ │ ├── avatar-test.js.snap
│ │ │ │ │ │ ├── avatar_overlay-test.js.snap
│ │ │ │ │ │ ├── button-test.js.snap
│ │ │ │ │ │ └── display_name-test.js.snap
│ │ │ │ │ ├── autosuggest_emoji-test.js
│ │ │ │ │ ├── avatar-test.js
│ │ │ │ │ ├── avatar_overlay-test.js
│ │ │ │ │ ├── button-test.js
│ │ │ │ │ └── display_name-test.js
│ │ │ │ ├── account.js
│ │ │ │ ├── attachment_list.js
│ │ │ │ ├── autosuggest_emoji.js
│ │ │ │ ├── autosuggest_input.js
│ │ │ │ ├── autosuggest_textarea.js
│ │ │ │ ├── avatar.js
│ │ │ │ ├── avatar_composite.js
│ │ │ │ ├── avatar_overlay.js
│ │ │ │ ├── button.js
│ │ │ │ ├── column.js
│ │ │ │ ├── column_back_button.js
│ │ │ │ ├── column_back_button_slim.js
│ │ │ │ ├── column_header.js
│ │ │ │ ├── display_name.js
│ │ │ │ ├── domain.js
│ │ │ │ ├── dropdown_menu.js
│ │ │ │ ├── error_boundary.js
│ │ │ │ ├── extended_video_player.js
│ │ │ │ ├── hashtag.js
│ │ │ │ ├── icon.js
│ │ │ │ ├── icon_button.js
│ │ │ │ ├── icon_with_badge.js
│ │ │ │ ├── intersection_observer_article.js
│ │ │ │ ├── load_gap.js
│ │ │ │ ├── load_more.js
│ │ │ │ ├── loading_indicator.js
│ │ │ │ ├── media_gallery.js
│ │ │ │ ├── missing_indicator.js
│ │ │ │ ├── modal_root.js
│ │ │ │ ├── permalink.js
│ │ │ │ ├── poll.js
│ │ │ │ ├── relative_timestamp.js
│ │ │ │ ├── scrollable_list.js
│ │ │ │ ├── setting_text.js
│ │ │ │ ├── status.js
│ │ │ │ ├── status_action_bar.js
│ │ │ │ ├── status_content.js
│ │ │ │ └── status_list.js
│ │ │ ├── containers/
│ │ │ │ ├── account_container.js
│ │ │ │ ├── compose_container.js
│ │ │ │ ├── domain_container.js
│ │ │ │ ├── dropdown_menu_container.js
│ │ │ │ ├── intersection_observer_article_container.js
│ │ │ │ ├── mastodon.js
│ │ │ │ ├── media_container.js
│ │ │ │ ├── poll_container.js
│ │ │ │ ├── status_container.js
│ │ │ │ └── timeline_container.js
│ │ │ ├── extra_polyfills.js
│ │ │ ├── features/
│ │ │ │ ├── account/
│ │ │ │ │ └── components/
│ │ │ │ │ └── header.js
│ │ │ │ ├── account_gallery/
│ │ │ │ │ ├── components/
│ │ │ │ │ │ └── media_item.js
│ │ │ │ │ └── index.js
│ │ │ │ ├── account_timeline/
│ │ │ │ │ ├── components/
│ │ │ │ │ │ ├── header.js
│ │ │ │ │ │ └── moved_note.js
│ │ │ │ │ ├── containers/
│ │ │ │ │ │ └── header_container.js
│ │ │ │ │ └── index.js
│ │ │ │ ├── blocks/
│ │ │ │ │ └── index.js
│ │ │ │ ├── community_timeline/
│ │ │ │ │ ├── components/
│ │ │ │ │ │ └── column_settings.js
│ │ │ │ │ ├── containers/
│ │ │ │ │ │ └── column_settings_container.js
│ │ │ │ │ └── index.js
│ │ │ │ ├── compose/
│ │ │ │ │ ├── components/
│ │ │ │ │ │ ├── action_bar.js
│ │ │ │ │ │ ├── autosuggest_account.js
│ │ │ │ │ │ ├── character_counter.js
│ │ │ │ │ │ ├── compose_form.js
│ │ │ │ │ │ ├── emoji_picker_dropdown.js
│ │ │ │ │ │ ├── navigation_bar.js
│ │ │ │ │ │ ├── poll_button.js
│ │ │ │ │ │ ├── poll_form.js
│ │ │ │ │ │ ├── privacy_dropdown.js
│ │ │ │ │ │ ├── reply_indicator.js
│ │ │ │ │ │ ├── search.js
│ │ │ │ │ │ ├── search_results.js
│ │ │ │ │ │ ├── text_icon_button.js
│ │ │ │ │ │ ├── upload.js
│ │ │ │ │ │ ├── upload_button.js
│ │ │ │ │ │ ├── upload_form.js
│ │ │ │ │ │ ├── upload_progress.js
│ │ │ │ │ │ └── warning.js
│ │ │ │ │ ├── containers/
│ │ │ │ │ │ ├── autosuggest_account_container.js
│ │ │ │ │ │ ├── compose_form_container.js
│ │ │ │ │ │ ├── emoji_picker_dropdown_container.js
│ │ │ │ │ │ ├── navigation_container.js
│ │ │ │ │ │ ├── poll_button_container.js
│ │ │ │ │ │ ├── poll_form_container.js
│ │ │ │ │ │ ├── privacy_dropdown_container.js
│ │ │ │ │ │ ├── reply_indicator_container.js
│ │ │ │ │ │ ├── search_container.js
│ │ │ │ │ │ ├── search_results_container.js
│ │ │ │ │ │ ├── sensitive_button_container.js
│ │ │ │ │ │ ├── spoiler_button_container.js
│ │ │ │ │ │ ├── upload_button_container.js
│ │ │ │ │ │ ├── upload_container.js
│ │ │ │ │ │ ├── upload_form_container.js
│ │ │ │ │ │ ├── upload_progress_container.js
│ │ │ │ │ │ └── warning_container.js
│ │ │ │ │ ├── index.js
│ │ │ │ │ └── util/
│ │ │ │ │ ├── counter.js
│ │ │ │ │ └── url_regex.js
│ │ │ │ ├── direct_timeline/
│ │ │ │ │ ├── components/
│ │ │ │ │ │ ├── conversation.js
│ │ │ │ │ │ └── conversations_list.js
│ │ │ │ │ ├── containers/
│ │ │ │ │ │ ├── conversation_container.js
│ │ │ │ │ │ └── conversations_list_container.js
│ │ │ │ │ └── index.js
│ │ │ │ ├── domain_blocks/
│ │ │ │ │ └── index.js
│ │ │ │ ├── emoji/
│ │ │ │ │ ├── __tests__/
│ │ │ │ │ │ ├── emoji-test.js
│ │ │ │ │ │ └── emoji_index-test.js
│ │ │ │ │ ├── emoji.js
│ │ │ │ │ ├── emoji_compressed.js
│ │ │ │ │ ├── emoji_map.json
│ │ │ │ │ ├── emoji_mart_data_light.js
│ │ │ │ │ ├── emoji_mart_search_light.js
│ │ │ │ │ ├── emoji_picker.js
│ │ │ │ │ ├── emoji_unicode_mapping_light.js
│ │ │ │ │ ├── emoji_utils.js
│ │ │ │ │ ├── unicode_to_filename.js
│ │ │ │ │ └── unicode_to_unified_name.js
│ │ │ │ ├── favourited_statuses/
│ │ │ │ │ └── index.js
│ │ │ │ ├── favourites/
│ │ │ │ │ └── index.js
│ │ │ │ ├── follow_requests/
│ │ │ │ │ ├── components/
│ │ │ │ │ │ └── account_authorize.js
│ │ │ │ │ ├── containers/
│ │ │ │ │ │ └── account_authorize_container.js
│ │ │ │ │ └── index.js
│ │ │ │ ├── followers/
│ │ │ │ │ └── index.js
│ │ │ │ ├── following/
│ │ │ │ │ └── index.js
│ │ │ │ ├── generic_not_found/
│ │ │ │ │ └── index.js
│ │ │ │ ├── getting_started/
│ │ │ │ │ └── index.js
│ │ │ │ ├── hashtag_timeline/
│ │ │ │ │ ├── components/
│ │ │ │ │ │ └── column_settings.js
│ │ │ │ │ ├── containers/
│ │ │ │ │ │ └── column_settings_container.js
│ │ │ │ │ └── index.js
│ │ │ │ ├── home_timeline/
│ │ │ │ │ ├── components/
│ │ │ │ │ │ └── column_settings.js
│ │ │ │ │ ├── containers/
│ │ │ │ │ │ └── column_settings_container.js
│ │ │ │ │ └── index.js
│ │ │ │ ├── introduction/
│ │ │ │ │ └── index.js
│ │ │ │ ├── keyboard_shortcuts/
│ │ │ │ │ └── index.js
│ │ │ │ ├── list_adder/
│ │ │ │ │ ├── components/
│ │ │ │ │ │ ├── account.js
│ │ │ │ │ │ └── list.js
│ │ │ │ │ └── index.js
│ │ │ │ ├── list_editor/
│ │ │ │ │ ├── components/
│ │ │ │ │ │ ├── account.js
│ │ │ │ │ │ ├── edit_list_form.js
│ │ │ │ │ │ └── search.js
│ │ │ │ │ └── index.js
│ │ │ │ ├── list_timeline/
│ │ │ │ │ └── index.js
│ │ │ │ ├── lists/
│ │ │ │ │ ├── components/
│ │ │ │ │ │ └── new_list_form.js
│ │ │ │ │ └── index.js
│ │ │ │ ├── mutes/
│ │ │ │ │ └── index.js
│ │ │ │ ├── notifications/
│ │ │ │ │ ├── components/
│ │ │ │ │ │ ├── clear_column_button.js
│ │ │ │ │ │ ├── column_settings.js
│ │ │ │ │ │ ├── filter_bar.js
│ │ │ │ │ │ ├── notification.js
│ │ │ │ │ │ └── setting_toggle.js
│ │ │ │ │ ├── containers/
│ │ │ │ │ │ ├── column_settings_container.js
│ │ │ │ │ │ ├── filter_bar_container.js
│ │ │ │ │ │ └── notification_container.js
│ │ │ │ │ └── index.js
│ │ │ │ ├── pinned_statuses/
│ │ │ │ │ └── index.js
│ │ │ │ ├── public_timeline/
│ │ │ │ │ ├── containers/
│ │ │ │ │ │ └── column_settings_container.js
│ │ │ │ │ └── index.js
│ │ │ │ ├── reblogs/
│ │ │ │ │ └── index.js
│ │ │ │ ├── report/
│ │ │ │ │ ├── components/
│ │ │ │ │ │ └── status_check_box.js
│ │ │ │ │ └── containers/
│ │ │ │ │ └── status_check_box_container.js
│ │ │ │ ├── search/
│ │ │ │ │ └── index.js
│ │ │ │ ├── standalone/
│ │ │ │ │ ├── compose/
│ │ │ │ │ │ └── index.js
│ │ │ │ │ ├── hashtag_timeline/
│ │ │ │ │ │ └── index.js
│ │ │ │ │ └── public_timeline/
│ │ │ │ │ └── index.js
│ │ │ │ ├── status/
│ │ │ │ │ ├── components/
│ │ │ │ │ │ ├── action_bar.js
│ │ │ │ │ │ ├── card.js
│ │ │ │ │ │ └── detailed_status.js
│ │ │ │ │ ├── containers/
│ │ │ │ │ │ └── detailed_status_container.js
│ │ │ │ │ └── index.js
│ │ │ │ ├── ui/
│ │ │ │ │ ├── components/
│ │ │ │ │ │ ├── __tests__/
│ │ │ │ │ │ │ └── column-test.js
│ │ │ │ │ │ ├── actions_modal.js
│ │ │ │ │ │ ├── boost_modal.js
│ │ │ │ │ │ ├── bundle.js
│ │ │ │ │ │ ├── bundle_column_error.js
│ │ │ │ │ │ ├── bundle_modal_error.js
│ │ │ │ │ │ ├── column.js
│ │ │ │ │ │ ├── column_header.js
│ │ │ │ │ │ ├── column_link.js
│ │ │ │ │ │ ├── column_loading.js
│ │ │ │ │ │ ├── column_subheading.js
│ │ │ │ │ │ ├── columns_area.js
│ │ │ │ │ │ ├── compose_panel.js
│ │ │ │ │ │ ├── confirmation_modal.js
│ │ │ │ │ │ ├── drawer_loading.js
│ │ │ │ │ │ ├── embed_modal.js
│ │ │ │ │ │ ├── focal_point_modal.js
│ │ │ │ │ │ ├── follow_requests_nav_link.js
│ │ │ │ │ │ ├── image_loader.js
│ │ │ │ │ │ ├── link_footer.js
│ │ │ │ │ │ ├── list_panel.js
│ │ │ │ │ │ ├── media_modal.js
│ │ │ │ │ │ ├── modal_loading.js
│ │ │ │ │ │ ├── modal_root.js
│ │ │ │ │ │ ├── mute_modal.js
│ │ │ │ │ │ ├── navigation_panel.js
│ │ │ │ │ │ ├── notifications_counter_icon.js
│ │ │ │ │ │ ├── report_modal.js
│ │ │ │ │ │ ├── tabs_bar.js
│ │ │ │ │ │ ├── upload_area.js
│ │ │ │ │ │ ├── video_modal.js
│ │ │ │ │ │ └── zoomable_image.js
│ │ │ │ │ ├── containers/
│ │ │ │ │ │ ├── bundle_container.js
│ │ │ │ │ │ ├── columns_area_container.js
│ │ │ │ │ │ ├── loading_bar_container.js
│ │ │ │ │ │ ├── modal_container.js
│ │ │ │ │ │ ├── notifications_container.js
│ │ │ │ │ │ └── status_list_container.js
│ │ │ │ │ ├── index.js
│ │ │ │ │ └── util/
│ │ │ │ │ ├── async-components.js
│ │ │ │ │ ├── fullscreen.js
│ │ │ │ │ ├── get_rect_from_entry.js
│ │ │ │ │ ├── intersection_observer_wrapper.js
│ │ │ │ │ ├── optional_motion.js
│ │ │ │ │ ├── react_router_helpers.js
│ │ │ │ │ ├── reduced_motion.js
│ │ │ │ │ └── schedule_idle_task.js
│ │ │ │ └── video/
│ │ │ │ └── index.js
│ │ │ ├── initial_state.js
│ │ │ ├── is_mobile.js
│ │ │ ├── load_polyfills.js
│ │ │ ├── locales/
│ │ │ │ ├── ar.json
│ │ │ │ ├── ast.json
│ │ │ │ ├── bg.json
│ │ │ │ ├── bn.json
│ │ │ │ ├── ca.json
│ │ │ │ ├── co.json
│ │ │ │ ├── cs.json
│ │ │ │ ├── cy.json
│ │ │ │ ├── da.json
│ │ │ │ ├── de.json
│ │ │ │ ├── defaultMessages.json
│ │ │ │ ├── el.json
│ │ │ │ ├── en.json
│ │ │ │ ├── eo.json
│ │ │ │ ├── es.json
│ │ │ │ ├── eu.json
│ │ │ │ ├── fa.json
│ │ │ │ ├── fi.json
│ │ │ │ ├── fr.json
│ │ │ │ ├── gl.json
│ │ │ │ ├── he.json
│ │ │ │ ├── hi.json
│ │ │ │ ├── hr.json
│ │ │ │ ├── hu.json
│ │ │ │ ├── hy.json
│ │ │ │ ├── id.json
│ │ │ │ ├── index.js
│ │ │ │ ├── io.json
│ │ │ │ ├── it.json
│ │ │ │ ├── ja.json
│ │ │ │ ├── ka.json
│ │ │ │ ├── kk.json
│ │ │ │ ├── ko.json
│ │ │ │ ├── locale-data/
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── co.js
│ │ │ │ │ └── oc.js
│ │ │ │ ├── lt.json
│ │ │ │ ├── lv.json
│ │ │ │ ├── ms.json
│ │ │ │ ├── nl.json
│ │ │ │ ├── no.json
│ │ │ │ ├── oc.json
│ │ │ │ ├── pl.json
│ │ │ │ ├── pt-BR.json
│ │ │ │ ├── pt.json
│ │ │ │ ├── ro.json
│ │ │ │ ├── ru.json
│ │ │ │ ├── sk.json
│ │ │ │ ├── sl.json
│ │ │ │ ├── sq.json
│ │ │ │ ├── sr-Latn.json
│ │ │ │ ├── sr.json
│ │ │ │ ├── sv.json
│ │ │ │ ├── ta.json
│ │ │ │ ├── te.json
│ │ │ │ ├── th.json
│ │ │ │ ├── tr.json
│ │ │ │ ├── uk.json
│ │ │ │ ├── whitelist_ar.json
│ │ │ │ ├── whitelist_ast.json
│ │ │ │ ├── whitelist_bg.json
│ │ │ │ ├── whitelist_bn.json
│ │ │ │ ├── whitelist_ca.json
│ │ │ │ ├── whitelist_co.json
│ │ │ │ ├── whitelist_cs.json
│ │ │ │ ├── whitelist_cy.json
│ │ │ │ ├── whitelist_da.json
│ │ │ │ ├── whitelist_de.json
│ │ │ │ ├── whitelist_el.json
│ │ │ │ ├── whitelist_en.json
│ │ │ │ ├── whitelist_eo.json
│ │ │ │ ├── whitelist_es.json
│ │ │ │ ├── whitelist_eu.json
│ │ │ │ ├── whitelist_fa.json
│ │ │ │ ├── whitelist_fi.json
│ │ │ │ ├── whitelist_fr.json
│ │ │ │ ├── whitelist_gl.json
│ │ │ │ ├── whitelist_he.json
│ │ │ │ ├── whitelist_hi.json
│ │ │ │ ├── whitelist_hr.json
│ │ │ │ ├── whitelist_hu.json
│ │ │ │ ├── whitelist_hy.json
│ │ │ │ ├── whitelist_id.json
│ │ │ │ ├── whitelist_io.json
│ │ │ │ ├── whitelist_it.json
│ │ │ │ ├── whitelist_ja.json
│ │ │ │ ├── whitelist_ka.json
│ │ │ │ ├── whitelist_kk.json
│ │ │ │ ├── whitelist_ko.json
│ │ │ │ ├── whitelist_lt.json
│ │ │ │ ├── whitelist_lv.json
│ │ │ │ ├── whitelist_ms.json
│ │ │ │ ├── whitelist_nl.json
│ │ │ │ ├── whitelist_no.json
│ │ │ │ ├── whitelist_oc.json
│ │ │ │ ├── whitelist_pl.json
│ │ │ │ ├── whitelist_pt-BR.json
│ │ │ │ ├── whitelist_pt.json
│ │ │ │ ├── whitelist_ro.json
│ │ │ │ ├── whitelist_ru.json
│ │ │ │ ├── whitelist_sk.json
│ │ │ │ ├── whitelist_sl.json
│ │ │ │ ├── whitelist_sq.json
│ │ │ │ ├── whitelist_sr-Latn.json
│ │ │ │ ├── whitelist_sr.json
│ │ │ │ ├── whitelist_sv.json
│ │ │ │ ├── whitelist_ta.json
│ │ │ │ ├── whitelist_te.json
│ │ │ │ ├── whitelist_th.json
│ │ │ │ ├── whitelist_tr.json
│ │ │ │ ├── whitelist_uk.json
│ │ │ │ ├── whitelist_zh-CN.json
│ │ │ │ ├── whitelist_zh-HK.json
│ │ │ │ ├── whitelist_zh-TW.json
│ │ │ │ ├── zh-CN.json
│ │ │ │ ├── zh-HK.json
│ │ │ │ └── zh-TW.json
│ │ │ ├── main.js
│ │ │ ├── middleware/
│ │ │ │ ├── errors.js
│ │ │ │ ├── loading_bar.js
│ │ │ │ └── sounds.js
│ │ │ ├── performance.js
│ │ │ ├── ready.js
│ │ │ ├── reducers/
│ │ │ │ ├── accounts.js
│ │ │ │ ├── accounts_counters.js
│ │ │ │ ├── alerts.js
│ │ │ │ ├── compose.js
│ │ │ │ ├── contexts.js
│ │ │ │ ├── conversations.js
│ │ │ │ ├── custom_emojis.js
│ │ │ │ ├── domain_lists.js
│ │ │ │ ├── dropdown_menu.js
│ │ │ │ ├── filters.js
│ │ │ │ ├── height_cache.js
│ │ │ │ ├── identity_proofs.js
│ │ │ │ ├── index.js
│ │ │ │ ├── list_adder.js
│ │ │ │ ├── list_editor.js
│ │ │ │ ├── lists.js
│ │ │ │ ├── media_attachments.js
│ │ │ │ ├── meta.js
│ │ │ │ ├── modal.js
│ │ │ │ ├── mutes.js
│ │ │ │ ├── notifications.js
│ │ │ │ ├── polls.js
│ │ │ │ ├── push_notifications.js
│ │ │ │ ├── relationships.js
│ │ │ │ ├── reports.js
│ │ │ │ ├── search.js
│ │ │ │ ├── settings.js
│ │ │ │ ├── status_lists.js
│ │ │ │ ├── statuses.js
│ │ │ │ ├── suggestions.js
│ │ │ │ ├── timelines.js
│ │ │ │ └── user_lists.js
│ │ │ ├── rtl.js
│ │ │ ├── scroll.js
│ │ │ ├── selectors/
│ │ │ │ └── index.js
│ │ │ ├── service_worker/
│ │ │ │ ├── entry.js
│ │ │ │ ├── web_push_locales.js
│ │ │ │ └── web_push_notifications.js
│ │ │ ├── settings.js
│ │ │ ├── storage/
│ │ │ │ ├── db.js
│ │ │ │ └── modifier.js
│ │ │ ├── store/
│ │ │ │ └── configureStore.js
│ │ │ ├── stream.js
│ │ │ ├── test_setup.js
│ │ │ ├── utils/
│ │ │ │ ├── __tests__/
│ │ │ │ │ ├── base64-test.js
│ │ │ │ │ └── html-test.js
│ │ │ │ ├── base64.js
│ │ │ │ ├── html.js
│ │ │ │ ├── numbers.js
│ │ │ │ └── resize_image.js
│ │ │ └── uuid.js
│ │ ├── packs/
│ │ │ ├── about.js
│ │ │ ├── admin.js
│ │ │ ├── application.js
│ │ │ ├── error.js
│ │ │ ├── mailer.js
│ │ │ ├── public.js
│ │ │ └── share.js
│ │ └── styles/
│ │ ├── application.scss
│ │ ├── contrast/
│ │ │ ├── diff.scss
│ │ │ └── variables.scss
│ │ ├── contrast.scss
│ │ ├── fonts/
│ │ │ ├── montserrat.scss
│ │ │ ├── roboto-mono.scss
│ │ │ └── roboto.scss
│ │ ├── mailer.scss
│ │ ├── mastodon/
│ │ │ ├── _mixins.scss
│ │ │ ├── about.scss
│ │ │ ├── accessibility.scss
│ │ │ ├── accounts.scss
│ │ │ ├── admin.scss
│ │ │ ├── basics.scss
│ │ │ ├── boost.scss
│ │ │ ├── compact_header.scss
│ │ │ ├── components.scss
│ │ │ ├── containers.scss
│ │ │ ├── dashboard.scss
│ │ │ ├── emoji_picker.scss
│ │ │ ├── footer.scss
│ │ │ ├── forms.scss
│ │ │ ├── introduction.scss
│ │ │ ├── lists.scss
│ │ │ ├── modal.scss
│ │ │ ├── polls.scss
│ │ │ ├── reset.scss
│ │ │ ├── rtl.scss
│ │ │ ├── stream_entries.scss
│ │ │ ├── tables.scss
│ │ │ ├── variables.scss
│ │ │ └── widgets.scss
│ │ ├── mastodon-light/
│ │ │ ├── diff.scss
│ │ │ └── variables.scss
│ │ └── mastodon-light.scss
│ ├── lib/
│ │ ├── activity_tracker.rb
│ │ ├── activitypub/
│ │ │ ├── activity/
│ │ │ │ ├── accept.rb
│ │ │ │ ├── add.rb
│ │ │ │ ├── announce.rb
│ │ │ │ ├── block.rb
│ │ │ │ ├── create.rb
│ │ │ │ ├── delete.rb
│ │ │ │ ├── flag.rb
│ │ │ │ ├── follow.rb
│ │ │ │ ├── like.rb
│ │ │ │ ├── move.rb
│ │ │ │ ├── reject.rb
│ │ │ │ ├── remove.rb
│ │ │ │ ├── undo.rb
│ │ │ │ └── update.rb
│ │ │ ├── activity.rb
│ │ │ ├── adapter.rb
│ │ │ ├── case_transform.rb
│ │ │ ├── linked_data_signature.rb
│ │ │ ├── serializer.rb
│ │ │ └── tag_manager.rb
│ │ ├── application_extension.rb
│ │ ├── delivery_failure_tracker.rb
│ │ ├── entity_cache.rb
│ │ ├── exceptions.rb
│ │ ├── extractor.rb
│ │ ├── fast_geometry_parser.rb
│ │ ├── feed_manager.rb
│ │ ├── formatter.rb
│ │ ├── hash_object.rb
│ │ ├── inline_renderer.rb
│ │ ├── language_detector.rb
│ │ ├── ostatus/
│ │ │ ├── activity/
│ │ │ │ ├── base.rb
│ │ │ │ ├── creation.rb
│ │ │ │ ├── deletion.rb
│ │ │ │ ├── general.rb
│ │ │ │ ├── post.rb
│ │ │ │ ├── remote.rb
│ │ │ │ └── share.rb
│ │ │ ├── atom_serializer.rb
│ │ │ └── tag_manager.rb
│ │ ├── potential_friendship_tracker.rb
│ │ ├── proof_provider/
│ │ │ ├── keybase/
│ │ │ │ ├── badge.rb
│ │ │ │ ├── config_serializer.rb
│ │ │ │ ├── serializer.rb
│ │ │ │ ├── verifier.rb
│ │ │ │ └── worker.rb
│ │ │ └── keybase.rb
│ │ ├── proof_provider.rb
│ │ ├── request.rb
│ │ ├── rss_builder.rb
│ │ ├── sanitize_config.rb
│ │ ├── settings/
│ │ │ ├── extend.rb
│ │ │ └── scoped_settings.rb
│ │ ├── sidekiq_error_handler.rb
│ │ ├── status_filter.rb
│ │ ├── status_finder.rb
│ │ ├── tag_manager.rb
│ │ ├── themes.rb
│ │ ├── user_settings_decorator.rb
│ │ └── webfinger_resource.rb
│ ├── mailers/
│ │ ├── admin_mailer.rb
│ │ ├── application_mailer.rb
│ │ ├── notification_mailer.rb
│ │ └── user_mailer.rb
│ ├── models/
│ │ ├── account.rb
│ │ ├── account_conversation.rb
│ │ ├── account_domain_block.rb
│ │ ├── account_filter.rb
│ │ ├── account_identity_proof.rb
│ │ ├── account_moderation_note.rb
│ │ ├── account_pin.rb
│ │ ├── account_stat.rb
│ │ ├── account_tag_stat.rb
│ │ ├── account_warning.rb
│ │ ├── account_warning_preset.rb
│ │ ├── admin/
│ │ │ ├── account_action.rb
│ │ │ └── action_log.rb
│ │ ├── admin.rb
│ │ ├── application_record.rb
│ │ ├── backup.rb
│ │ ├── block.rb
│ │ ├── concerns/
│ │ │ ├── account_associations.rb
│ │ │ ├── account_avatar.rb
│ │ │ ├── account_counters.rb
│ │ │ ├── account_finder_concern.rb
│ │ │ ├── account_header.rb
│ │ │ ├── account_interactions.rb
│ │ │ ├── attachmentable.rb
│ │ │ ├── cacheable.rb
│ │ │ ├── domain_normalizable.rb
│ │ │ ├── expireable.rb
│ │ │ ├── ldap_authenticable.rb
│ │ │ ├── omniauthable.rb
│ │ │ ├── paginable.rb
│ │ │ ├── pam_authenticable.rb
│ │ │ ├── redisable.rb
│ │ │ ├── relationship_cacheable.rb
│ │ │ ├── remotable.rb
│ │ │ ├── status_threading_concern.rb
│ │ │ ├── streamable.rb
│ │ │ └── user_roles.rb
│ │ ├── context.rb
│ │ ├── conversation.rb
│ │ ├── conversation_mute.rb
│ │ ├── custom_emoji.rb
│ │ ├── custom_emoji_filter.rb
│ │ ├── custom_filter.rb
│ │ ├── domain_block.rb
│ │ ├── email_domain_block.rb
│ │ ├── export.rb
│ │ ├── favourite.rb
│ │ ├── featured_tag.rb
│ │ ├── feed.rb
│ │ ├── follow.rb
│ │ ├── follow_request.rb
│ │ ├── form/
│ │ │ ├── account_batch.rb
│ │ │ ├── admin_settings.rb
│ │ │ ├── delete_confirmation.rb
│ │ │ ├── migration.rb
│ │ │ ├── status_batch.rb
│ │ │ └── two_factor_confirmation.rb
│ │ ├── home_feed.rb
│ │ ├── identity.rb
│ │ ├── import.rb
│ │ ├── instance.rb
│ │ ├── instance_filter.rb
│ │ ├── invite.rb
│ │ ├── invite_filter.rb
│ │ ├── list.rb
│ │ ├── list_account.rb
│ │ ├── list_feed.rb
│ │ ├── media_attachment.rb
│ │ ├── mention.rb
│ │ ├── mute.rb
│ │ ├── notification.rb
│ │ ├── poll.rb
│ │ ├── poll_vote.rb
│ │ ├── preview_card.rb
│ │ ├── relay.rb
│ │ ├── remote_follow.rb
│ │ ├── remote_profile.rb
│ │ ├── report.rb
│ │ ├── report_filter.rb
│ │ ├── report_note.rb
│ │ ├── scheduled_status.rb
│ │ ├── search.rb
│ │ ├── session_activation.rb
│ │ ├── setting.rb
│ │ ├── site_upload.rb
│ │ ├── status.rb
│ │ ├── status_pin.rb
│ │ ├── status_stat.rb
│ │ ├── stream_entry.rb
│ │ ├── subscription.rb
│ │ ├── tag.rb
│ │ ├── tombstone.rb
│ │ ├── trending_tags.rb
│ │ ├── user.rb
│ │ ├── user_invite_request.rb
│ │ ├── web/
│ │ │ ├── push_subscription.rb
│ │ │ └── setting.rb
│ │ └── web.rb
│ ├── policies/
│ │ ├── account_moderation_note_policy.rb
│ │ ├── account_policy.rb
│ │ ├── account_warning_preset_policy.rb
│ │ ├── application_policy.rb
│ │ ├── backup_policy.rb
│ │ ├── custom_emoji_policy.rb
│ │ ├── domain_block_policy.rb
│ │ ├── email_domain_block_policy.rb
│ │ ├── instance_policy.rb
│ │ ├── invite_policy.rb
│ │ ├── poll_policy.rb
│ │ ├── relay_policy.rb
│ │ ├── report_note_policy.rb
│ │ ├── report_policy.rb
│ │ ├── settings_policy.rb
│ │ ├── status_policy.rb
│ │ ├── subscription_policy.rb
│ │ ├── tag_policy.rb
│ │ └── user_policy.rb
│ ├── presenters/
│ │ ├── account_relationships_presenter.rb
│ │ ├── activitypub/
│ │ │ └── collection_presenter.rb
│ │ ├── initial_state_presenter.rb
│ │ ├── instance_presenter.rb
│ │ └── status_relationships_presenter.rb
│ ├── serializers/
│ │ ├── activitypub/
│ │ │ ├── accept_follow_serializer.rb
│ │ │ ├── activity_serializer.rb
│ │ │ ├── actor_serializer.rb
│ │ │ ├── add_serializer.rb
│ │ │ ├── block_serializer.rb
│ │ │ ├── collection_serializer.rb
│ │ │ ├── delete_actor_serializer.rb
│ │ │ ├── delete_serializer.rb
│ │ │ ├── emoji_serializer.rb
│ │ │ ├── flag_serializer.rb
│ │ │ ├── follow_serializer.rb
│ │ │ ├── image_serializer.rb
│ │ │ ├── like_serializer.rb
│ │ │ ├── note_serializer.rb
│ │ │ ├── outbox_serializer.rb
│ │ │ ├── public_key_serializer.rb
│ │ │ ├── reject_follow_serializer.rb
│ │ │ ├── remove_serializer.rb
│ │ │ ├── undo_announce_serializer.rb
│ │ │ ├── undo_block_serializer.rb
│ │ │ ├── undo_follow_serializer.rb
│ │ │ ├── undo_like_serializer.rb
│ │ │ ├── update_poll_serializer.rb
│ │ │ ├── update_serializer.rb
│ │ │ └── vote_serializer.rb
│ │ ├── initial_state_serializer.rb
│ │ ├── manifest_serializer.rb
│ │ ├── oembed_serializer.rb
│ │ ├── rest/
│ │ │ ├── account_serializer.rb
│ │ │ ├── application_serializer.rb
│ │ │ ├── context_serializer.rb
│ │ │ ├── conversation_serializer.rb
│ │ │ ├── credential_account_serializer.rb
│ │ │ ├── custom_emoji_serializer.rb
│ │ │ ├── filter_serializer.rb
│ │ │ ├── identity_proof_serializer.rb
│ │ │ ├── instance_serializer.rb
│ │ │ ├── list_serializer.rb
│ │ │ ├── media_attachment_serializer.rb
│ │ │ ├── notification_serializer.rb
│ │ │ ├── poll_serializer.rb
│ │ │ ├── preferences_serializer.rb
│ │ │ ├── preview_card_serializer.rb
│ │ │ ├── relationship_serializer.rb
│ │ │ ├── report_serializer.rb
│ │ │ ├── scheduled_status_serializer.rb
│ │ │ ├── search_serializer.rb
│ │ │ ├── status_serializer.rb
│ │ │ ├── tag_serializer.rb
│ │ │ ├── v2/
│ │ │ │ └── search_serializer.rb
│ │ │ └── web_push_subscription_serializer.rb
│ │ ├── rss/
│ │ │ ├── account_serializer.rb
│ │ │ └── tag_serializer.rb
│ │ ├── web/
│ │ │ └── notification_serializer.rb
│ │ └── webfinger_serializer.rb
│ ├── services/
│ │ ├── account_search_service.rb
│ │ ├── activitypub/
│ │ │ ├── fetch_featured_collection_service.rb
│ │ │ ├── fetch_remote_account_service.rb
│ │ │ ├── fetch_remote_key_service.rb
│ │ │ ├── fetch_remote_poll_service.rb
│ │ │ ├── fetch_remote_status_service.rb
│ │ │ ├── fetch_replies_service.rb
│ │ │ ├── process_account_service.rb
│ │ │ ├── process_collection_service.rb
│ │ │ └── process_poll_service.rb
│ │ ├── after_block_domain_from_account_service.rb
│ │ ├── after_block_service.rb
│ │ ├── app_sign_up_service.rb
│ │ ├── authorize_follow_service.rb
│ │ ├── backup_service.rb
│ │ ├── base_service.rb
│ │ ├── batched_remove_status_service.rb
│ │ ├── block_domain_service.rb
│ │ ├── block_service.rb
│ │ ├── bootstrap_timeline_service.rb
│ │ ├── concerns/
│ │ │ ├── author_extractor.rb
│ │ │ ├── payloadable.rb
│ │ │ └── stream_entry_renderer.rb
│ │ ├── fan_out_on_write_service.rb
│ │ ├── favourite_service.rb
│ │ ├── fetch_atom_service.rb
│ │ ├── fetch_link_card_service.rb
│ │ ├── fetch_oembed_service.rb
│ │ ├── fetch_remote_account_service.rb
│ │ ├── fetch_remote_status_service.rb
│ │ ├── follow_service.rb
│ │ ├── hashtag_query_service.rb
│ │ ├── import_service.rb
│ │ ├── mute_service.rb
│ │ ├── notify_service.rb
│ │ ├── post_status_service.rb
│ │ ├── precompute_feed_service.rb
│ │ ├── process_feed_service.rb
│ │ ├── process_hashtags_service.rb
│ │ ├── process_interaction_service.rb
│ │ ├── process_mentions_service.rb
│ │ ├── pubsubhubbub/
│ │ │ ├── subscribe_service.rb
│ │ │ └── unsubscribe_service.rb
│ │ ├── reblog_service.rb
│ │ ├── reject_follow_service.rb
│ │ ├── remove_status_service.rb
│ │ ├── report_service.rb
│ │ ├── resolve_account_service.rb
│ │ ├── resolve_url_service.rb
│ │ ├── search_service.rb
│ │ ├── send_interaction_service.rb
│ │ ├── subscribe_service.rb
│ │ ├── suspend_account_service.rb
│ │ ├── unblock_domain_service.rb
│ │ ├── unblock_service.rb
│ │ ├── unfavourite_service.rb
│ │ ├── unfollow_service.rb
│ │ ├── unmute_service.rb
│ │ ├── unsubscribe_service.rb
│ │ ├── update_account_service.rb
│ │ ├── update_remote_profile_service.rb
│ │ ├── verify_link_service.rb
│ │ ├── verify_salmon_service.rb
│ │ └── vote_service.rb
│ ├── validators/
│ │ ├── blacklisted_email_validator.rb
│ │ ├── disallowed_hashtags_validator.rb
│ │ ├── email_mx_validator.rb
│ │ ├── existing_username_validator.rb
│ │ ├── follow_limit_validator.rb
│ │ ├── html_validator.rb
│ │ ├── note_length_validator.rb
│ │ ├── poll_validator.rb
│ │ ├── status_length_validator.rb
│ │ ├── status_pin_validator.rb
│ │ ├── unique_username_validator.rb
│ │ ├── unreserved_username_validator.rb
│ │ ├── url_validator.rb
│ │ └── vote_validator.rb
│ ├── views/
│ │ ├── about/
│ │ │ ├── _login.html.haml
│ │ │ ├── _registration.html.haml
│ │ │ ├── more.html.haml
│ │ │ ├── show.html.haml
│ │ │ └── terms.html.haml
│ │ ├── accounts/
│ │ │ ├── _bio.html.haml
│ │ │ ├── _header.html.haml
│ │ │ ├── _moved.html.haml
│ │ │ ├── _og.html.haml
│ │ │ └── show.html.haml
│ │ ├── admin/
│ │ │ ├── account_actions/
│ │ │ │ └── new.html.haml
│ │ │ ├── account_moderation_notes/
│ │ │ │ └── _account_moderation_note.html.haml
│ │ │ ├── account_warnings/
│ │ │ │ └── _account_warning.html.haml
│ │ │ ├── accounts/
│ │ │ │ ├── _account.html.haml
│ │ │ │ ├── index.html.haml
│ │ │ │ └── show.html.haml
│ │ │ ├── action_logs/
│ │ │ │ ├── _action_log.html.haml
│ │ │ │ └── index.html.haml
│ │ │ ├── change_emails/
│ │ │ │ └── show.html.haml
│ │ │ ├── custom_emojis/
│ │ │ │ ├── _custom_emoji.html.haml
│ │ │ │ ├── index.html.haml
│ │ │ │ └── new.html.haml
│ │ │ ├── dashboard/
│ │ │ │ └── index.html.haml
│ │ │ ├── domain_blocks/
│ │ │ │ ├── new.html.haml
│ │ │ │ └── show.html.haml
│ │ │ ├── email_domain_blocks/
│ │ │ │ ├── _email_domain_block.html.haml
│ │ │ │ ├── index.html.haml
│ │ │ │ └── new.html.haml
│ │ │ ├── followers/
│ │ │ │ └── index.html.haml
│ │ │ ├── instances/
│ │ │ │ ├── index.html.haml
│ │ │ │ └── show.html.haml
│ │ │ ├── invites/
│ │ │ │ ├── _invite.html.haml
│ │ │ │ └── index.html.haml
│ │ │ ├── pending_accounts/
│ │ │ │ ├── _account.html.haml
│ │ │ │ └── index.html.haml
│ │ │ ├── relays/
│ │ │ │ ├── _relay.html.haml
│ │ │ │ ├── index.html.haml
│ │ │ │ └── new.html.haml
│ │ │ ├── report_notes/
│ │ │ │ └── _report_note.html.haml
│ │ │ ├── reports/
│ │ │ │ ├── _action_log.html.haml
│ │ │ │ ├── _status.html.haml
│ │ │ │ ├── index.html.haml
│ │ │ │ └── show.html.haml
│ │ │ ├── settings/
│ │ │ │ └── edit.html.haml
│ │ │ ├── statuses/
│ │ │ │ ├── index.html.haml
│ │ │ │ └── show.html.haml
│ │ │ ├── subscriptions/
│ │ │ │ ├── _subscription.html.haml
│ │ │ │ └── index.html.haml
│ │ │ ├── tags/
│ │ │ │ ├── _tag.html.haml
│ │ │ │ └── index.html.haml
│ │ │ └── warning_presets/
│ │ │ ├── edit.html.haml
│ │ │ └── index.html.haml
│ │ ├── admin_mailer/
│ │ │ ├── new_pending_account.text.erb
│ │ │ └── new_report.text.erb
│ │ ├── application/
│ │ │ ├── _card.html.haml
│ │ │ ├── _flashes.html.haml
│ │ │ └── _sidebar.html.haml
│ │ ├── auth/
│ │ │ ├── confirmations/
│ │ │ │ ├── finish_signup.html.haml
│ │ │ │ └── new.html.haml
│ │ │ ├── passwords/
│ │ │ │ ├── edit.html.haml
│ │ │ │ └── new.html.haml
│ │ │ ├── registrations/
│ │ │ │ ├── _sessions.html.haml
│ │ │ │ ├── edit.html.haml
│ │ │ │ └── new.html.haml
│ │ │ ├── sessions/
│ │ │ │ ├── new.html.haml
│ │ │ │ └── two_factor.html.haml
│ │ │ └── shared/
│ │ │ └── _links.html.haml
│ │ ├── authorize_interactions/
│ │ │ ├── _post_follow_actions.html.haml
│ │ │ ├── error.html.haml
│ │ │ ├── show.html.haml
│ │ │ └── success.html.haml
│ │ ├── directories/
│ │ │ └── index.html.haml
│ │ ├── errors/
│ │ │ ├── 403.html.haml
│ │ │ ├── 404.html.haml
│ │ │ ├── 410.html.haml
│ │ │ ├── 422.html.haml
│ │ │ └── 500.html.haml
│ │ ├── filters/
│ │ │ ├── _fields.html.haml
│ │ │ ├── edit.html.haml
│ │ │ ├── index.html.haml
│ │ │ └── new.html.haml
│ │ ├── follower_accounts/
│ │ │ └── index.html.haml
│ │ ├── following_accounts/
│ │ │ └── index.html.haml
│ │ ├── home/
│ │ │ └── index.html.haml
│ │ ├── invites/
│ │ │ ├── _form.html.haml
│ │ │ ├── _invite.html.haml
│ │ │ └── index.html.haml
│ │ ├── kaminari/
│ │ │ ├── _next_page.html.haml
│ │ │ ├── _paginator.html.haml
│ │ │ └── _prev_page.html.haml
│ │ ├── layouts/
│ │ │ ├── admin.html.haml
│ │ │ ├── application.html.haml
│ │ │ ├── auth.html.haml
│ │ │ ├── embedded.html.haml
│ │ │ ├── error.html.haml
│ │ │ ├── mailer.html.haml
│ │ │ ├── mailer.text.erb
│ │ │ ├── modal.html.haml
│ │ │ ├── plain_mailer.html.haml
│ │ │ └── public.html.haml
│ │ ├── media/
│ │ │ └── player.html.haml
│ │ ├── notification_mailer/
│ │ │ ├── _status.html.haml
│ │ │ ├── _status.text.erb
│ │ │ ├── digest.html.haml
│ │ │ ├── digest.text.erb
│ │ │ ├── favourite.html.haml
│ │ │ ├── favourite.text.erb
│ │ │ ├── follow.html.haml
│ │ │ ├── follow.text.erb
│ │ │ ├── follow_request.html.haml
│ │ │ ├── follow_request.text.erb
│ │ │ ├── mention.html.haml
│ │ │ ├── mention.text.erb
│ │ │ ├── reblog.html.haml
│ │ │ └── reblog.text.erb
│ │ ├── oauth/
│ │ │ ├── authorizations/
│ │ │ │ ├── error.html.haml
│ │ │ │ ├── new.html.haml
│ │ │ │ └── show.html.haml
│ │ │ └── authorized_applications/
│ │ │ └── index.html.haml
│ │ ├── public_timelines/
│ │ │ └── show.html.haml
│ │ ├── relationships/
│ │ │ ├── _account.html.haml
│ │ │ └── show.html.haml
│ │ ├── remote_follow/
│ │ │ └── new.html.haml
│ │ ├── remote_interaction/
│ │ │ └── new.html.haml
│ │ ├── remote_unfollows/
│ │ │ ├── _card.html.haml
│ │ │ ├── _post_follow_actions.html.haml
│ │ │ ├── error.html.haml
│ │ │ └── success.html.haml
│ │ ├── settings/
│ │ │ ├── applications/
│ │ │ │ ├── _fields.html.haml
│ │ │ │ ├── index.html.haml
│ │ │ │ ├── new.html.haml
│ │ │ │ └── show.html.haml
│ │ │ ├── deletes/
│ │ │ │ └── show.html.haml
│ │ │ ├── exports/
│ │ │ │ └── show.html.haml
│ │ │ ├── featured_tags/
│ │ │ │ └── index.html.haml
│ │ │ ├── identity_proofs/
│ │ │ │ ├── _proof.html.haml
│ │ │ │ ├── index.html.haml
│ │ │ │ └── new.html.haml
│ │ │ ├── imports/
│ │ │ │ └── show.html.haml
│ │ │ ├── migrations/
│ │ │ │ └── show.html.haml
│ │ │ ├── preferences/
│ │ │ │ ├── appearance/
│ │ │ │ │ └── show.html.haml
│ │ │ │ ├── notifications/
│ │ │ │ │ └── show.html.haml
│ │ │ │ └── other/
│ │ │ │ └── show.html.haml
│ │ │ ├── profiles/
│ │ │ │ └── show.html.haml
│ │ │ ├── shared/
│ │ │ │ └── _links.html.haml
│ │ │ ├── two_factor_authentication/
│ │ │ │ ├── confirmations/
│ │ │ │ │ └── new.html.haml
│ │ │ │ └── recovery_codes/
│ │ │ │ └── index.html.haml
│ │ │ └── two_factor_authentications/
│ │ │ └── show.html.haml
│ │ ├── shared/
│ │ │ ├── _error_messages.html.haml
│ │ │ └── _og.html.haml
│ │ ├── shares/
│ │ │ └── show.html.haml
│ │ ├── stream_entries/
│ │ │ ├── _attachment_list.html.haml
│ │ │ ├── _detailed_status.html.haml
│ │ │ ├── _og_description.html.haml
│ │ │ ├── _og_image.html.haml
│ │ │ ├── _poll.html.haml
│ │ │ ├── _simple_status.html.haml
│ │ │ ├── _status.html.haml
│ │ │ ├── embed.html.haml
│ │ │ └── show.html.haml
│ │ ├── tags/
│ │ │ ├── _og.html.haml
│ │ │ └── show.html.haml
│ │ ├── user_mailer/
│ │ │ ├── backup_ready.html.haml
│ │ │ ├── backup_ready.text.erb
│ │ │ ├── confirmation_instructions.html.haml
│ │ │ ├── confirmation_instructions.text.erb
│ │ │ ├── email_changed.html.haml
│ │ │ ├── email_changed.text.erb
│ │ │ ├── password_change.html.haml
│ │ │ ├── password_change.text.erb
│ │ │ ├── reconfirmation_instructions.html.haml
│ │ │ ├── reconfirmation_instructions.text.erb
│ │ │ ├── reset_password_instructions.html.haml
│ │ │ ├── reset_password_instructions.text.erb
│ │ │ ├── warning.html.haml
│ │ │ ├── warning.text.erb
│ │ │ ├── welcome.html.haml
│ │ │ └── welcome.text.erb
│ │ └── well_known/
│ │ ├── host_meta/
│ │ │ └── show.xml.ruby
│ │ └── webfinger/
│ │ └── show.xml.ruby
│ └── workers/
│ ├── activitypub/
│ │ ├── delivery_worker.rb
│ │ ├── distribute_poll_update_worker.rb
│ │ ├── distribution_worker.rb
│ │ ├── fetch_replies_worker.rb
│ │ ├── low_priority_delivery_worker.rb
│ │ ├── post_upgrade_worker.rb
│ │ ├── processing_worker.rb
│ │ ├── raw_distribution_worker.rb
│ │ ├── reply_distribution_worker.rb
│ │ ├── synchronize_featured_collection_worker.rb
│ │ └── update_distribution_worker.rb
│ ├── admin/
│ │ └── suspension_worker.rb
│ ├── after_account_domain_block_worker.rb
│ ├── after_remote_follow_request_worker.rb
│ ├── after_remote_follow_worker.rb
│ ├── authorize_follow_worker.rb
│ ├── backup_worker.rb
│ ├── block_worker.rb
│ ├── bootstrap_timeline_worker.rb
│ ├── concerns/
│ │ └── exponential_backoff.rb
│ ├── digest_mailer_worker.rb
│ ├── distribution_worker.rb
│ ├── domain_block_worker.rb
│ ├── feed_insert_worker.rb
│ ├── fetch_reply_worker.rb
│ ├── import/
│ │ └── relationship_worker.rb
│ ├── import_worker.rb
│ ├── link_crawl_worker.rb
│ ├── local_notification_worker.rb
│ ├── maintenance/
│ │ ├── destroy_media_worker.rb
│ │ ├── redownload_account_media_worker.rb
│ │ └── uncache_media_worker.rb
│ ├── merge_worker.rb
│ ├── mute_worker.rb
│ ├── notification_worker.rb
│ ├── poll_expiration_notify_worker.rb
│ ├── processing_worker.rb
│ ├── publish_scheduled_status_worker.rb
│ ├── pubsubhubbub/
│ │ ├── confirmation_worker.rb
│ │ ├── delivery_worker.rb
│ │ ├── distribution_worker.rb
│ │ ├── raw_distribution_worker.rb
│ │ ├── subscribe_worker.rb
│ │ └── unsubscribe_worker.rb
│ ├── push_conversation_worker.rb
│ ├── push_update_worker.rb
│ ├── refollow_worker.rb
│ ├── regeneration_worker.rb
│ ├── remote_profile_update_worker.rb
│ ├── removal_worker.rb
│ ├── resolve_account_worker.rb
│ ├── salmon_worker.rb
│ ├── scheduler/
│ │ ├── backup_cleanup_scheduler.rb
│ │ ├── doorkeeper_cleanup_scheduler.rb
│ │ ├── email_scheduler.rb
│ │ ├── feed_cleanup_scheduler.rb
│ │ ├── ip_cleanup_scheduler.rb
│ │ ├── media_cleanup_scheduler.rb
│ │ ├── pghero_scheduler.rb
│ │ ├── scheduled_statuses_scheduler.rb
│ │ ├── subscriptions_cleanup_scheduler.rb
│ │ ├── subscriptions_scheduler.rb
│ │ └── user_cleanup_scheduler.rb
│ ├── thread_resolve_worker.rb
│ ├── unfavourite_worker.rb
│ ├── unfollow_follow_worker.rb
│ ├── unmerge_worker.rb
│ ├── verify_account_links_worker.rb
│ └── web/
│ └── push_notification_worker.rb
├── app.json
├── babel.config.js
├── bin/
│ ├── bundle
│ ├── rails
│ ├── rake
│ ├── retry
│ ├── rspec
│ ├── setup
│ ├── tootctl
│ ├── update
│ ├── webpack
│ ├── webpack-dev-server
│ └── yarn
├── boxfile.yml
├── config/
│ ├── application.rb
│ ├── boot.rb
│ ├── brakeman.ignore
│ ├── database.yml
│ ├── deploy.rb
│ ├── environment.rb
│ ├── environments/
│ │ ├── development.rb
│ │ ├── production.rb
│ │ └── test.rb
│ ├── i18n-tasks.yml
│ ├── initializers/
│ │ ├── 0_post_deployment_migrations.rb
│ │ ├── 1_hosts.rb
│ │ ├── active_model_serializers.rb
│ │ ├── application_controller_renderer.rb
│ │ ├── assets.rb
│ │ ├── backtrace_silencers.rb
│ │ ├── blacklists.rb
│ │ ├── chewy.rb
│ │ ├── content_security_policy.rb
│ │ ├── cookies_serializer.rb
│ │ ├── cors.rb
│ │ ├── delivery_job.rb
│ │ ├── devise.rb
│ │ ├── doorkeeper.rb
│ │ ├── fast_blank.rb
│ │ ├── ffmpeg.rb
│ │ ├── filter_parameter_logging.rb
│ │ ├── http_client_proxy.rb
│ │ ├── httplog.rb
│ │ ├── inflections.rb
│ │ ├── instrumentation.rb
│ │ ├── json_ld.rb
│ │ ├── kaminari_config.rb
│ │ ├── mime_types.rb
│ │ ├── oj.rb
│ │ ├── omniauth.rb
│ │ ├── open_uri_redirection.rb
│ │ ├── pagination.rb
│ │ ├── paperclip.rb
│ │ ├── premailer_rails.rb
│ │ ├── rack_attack.rb
│ │ ├── rack_attack_logging.rb
│ │ ├── redis.rb
│ │ ├── session_activations.rb
│ │ ├── session_store.rb
│ │ ├── sidekiq.rb
│ │ ├── simple_form.rb
│ │ ├── single_user_mode.rb
│ │ ├── statsd.rb
│ │ ├── stoplight.rb
│ │ ├── strong_migrations.rb
│ │ ├── suppress_csrf_warnings.rb
│ │ ├── trusted_proxies.rb
│ │ ├── twitter_regex.rb
│ │ ├── vapid.rb
│ │ └── wrap_parameters.rb
│ ├── locales/
│ │ ├── activerecord.ar.yml
│ │ ├── activerecord.ast.yml
│ │ ├── activerecord.bg.yml
│ │ ├── activerecord.bn.yml
│ │ ├── activerecord.ca.yml
│ │ ├── activerecord.co.yml
│ │ ├── activerecord.cs.yml
│ │ ├── activerecord.cy.yml
│ │ ├── activerecord.da.yml
│ │ ├── activerecord.de.yml
│ │ ├── activerecord.el.yml
│ │ ├── activerecord.en.yml
│ │ ├── activerecord.eo.yml
│ │ ├── activerecord.es.yml
│ │ ├── activerecord.eu.yml
│ │ ├── activerecord.fa.yml
│ │ ├── activerecord.fi.yml
│ │ ├── activerecord.fr.yml
│ │ ├── activerecord.gl.yml
│ │ ├── activerecord.he.yml
│ │ ├── activerecord.hr.yml
│ │ ├── activerecord.hu.yml
│ │ ├── activerecord.hy.yml
│ │ ├── activerecord.id.yml
│ │ ├── activerecord.io.yml
│ │ ├── activerecord.it.yml
│ │ ├── activerecord.ja.yml
│ │ ├── activerecord.ka.yml
│ │ ├── activerecord.kk.yml
│ │ ├── activerecord.ko.yml
│ │ ├── activerecord.lt.yml
│ │ ├── activerecord.lv.yml
│ │ ├── activerecord.ms.yml
│ │ ├── activerecord.nl.yml
│ │ ├── activerecord.no.yml
│ │ ├── activerecord.oc.yml
│ │ ├── activerecord.pl.yml
│ │ ├── activerecord.pt-BR.yml
│ │ ├── activerecord.pt.yml
│ │ ├── activerecord.ro.yml
│ │ ├── activerecord.ru.yml
│ │ ├── activerecord.sk.yml
│ │ ├── activerecord.sl.yml
│ │ ├── activerecord.sq.yml
│ │ ├── activerecord.sr-Latn.yml
│ │ ├── activerecord.sr.yml
│ │ ├── activerecord.sv.yml
│ │ ├── activerecord.ta.yml
│ │ ├── activerecord.te.yml
│ │ ├── activerecord.th.yml
│ │ ├── activerecord.tr.yml
│ │ ├── activerecord.uk.yml
│ │ ├── activerecord.zh-CN.yml
│ │ ├── activerecord.zh-HK.yml
│ │ ├── activerecord.zh-TW.yml
│ │ ├── activerecord.zh_Hant.yml
│ │ ├── ar.yml
│ │ ├── ast.yml
│ │ ├── bg.yml
│ │ ├── bn.yml
│ │ ├── ca.yml
│ │ ├── co.yml
│ │ ├── cs.yml
│ │ ├── cy.yml
│ │ ├── da.yml
│ │ ├── de.yml
│ │ ├── devise.ar.yml
│ │ ├── devise.ast.yml
│ │ ├── devise.bg.yml
│ │ ├── devise.bn.yml
│ │ ├── devise.ca.yml
│ │ ├── devise.co.yml
│ │ ├── devise.cs.yml
│ │ ├── devise.cy.yml
│ │ ├── devise.da.yml
│ │ ├── devise.de.yml
│ │ ├── devise.el.yml
│ │ ├── devise.en.yml
│ │ ├── devise.eo.yml
│ │ ├── devise.es.yml
│ │ ├── devise.eu.yml
│ │ ├── devise.fa.yml
│ │ ├── devise.fi.yml
│ │ ├── devise.fr.yml
│ │ ├── devise.gl.yml
│ │ ├── devise.he.yml
│ │ ├── devise.hr.yml
│ │ ├── devise.hu.yml
│ │ ├── devise.hy.yml
│ │ ├── devise.id.yml
│ │ ├── devise.io.yml
│ │ ├── devise.it.yml
│ │ ├── devise.ja.yml
│ │ ├── devise.ka.yml
│ │ ├── devise.kk.yml
│ │ ├── devise.ko.yml
│ │ ├── devise.lt.yml
│ │ ├── devise.lv.yml
│ │ ├── devise.ms.yml
│ │ ├── devise.nl.yml
│ │ ├── devise.no.yml
│ │ ├── devise.oc.yml
│ │ ├── devise.pl.yml
│ │ ├── devise.pt-BR.yml
│ │ ├── devise.pt.yml
│ │ ├── devise.ro.yml
│ │ ├── devise.ru.yml
│ │ ├── devise.sk.yml
│ │ ├── devise.sl.yml
│ │ ├── devise.sq.yml
│ │ ├── devise.sr-Latn.yml
│ │ ├── devise.sr.yml
│ │ ├── devise.sv.yml
│ │ ├── devise.ta.yml
│ │ ├── devise.te.yml
│ │ ├── devise.th.yml
│ │ ├── devise.tr.yml
│ │ ├── devise.uk.yml
│ │ ├── devise.zh-CN.yml
│ │ ├── devise.zh-HK.yml
│ │ ├── devise.zh-TW.yml
│ │ ├── doorkeeper.ar.yml
│ │ ├── doorkeeper.ast.yml
│ │ ├── doorkeeper.bg.yml
│ │ ├── doorkeeper.bn.yml
│ │ ├── doorkeeper.ca.yml
│ │ ├── doorkeeper.co.yml
│ │ ├── doorkeeper.cs.yml
│ │ ├── doorkeeper.cy.yml
│ │ ├── doorkeeper.da.yml
│ │ ├── doorkeeper.de.yml
│ │ ├── doorkeeper.el.yml
│ │ ├── doorkeeper.en.yml
│ │ ├── doorkeeper.eo.yml
│ │ ├── doorkeeper.es.yml
│ │ ├── doorkeeper.eu.yml
│ │ ├── doorkeeper.fa.yml
│ │ ├── doorkeeper.fi.yml
│ │ ├── doorkeeper.fr.yml
│ │ ├── doorkeeper.gl.yml
│ │ ├── doorkeeper.he.yml
│ │ ├── doorkeeper.hr.yml
│ │ ├── doorkeeper.hu.yml
│ │ ├── doorkeeper.hy.yml
│ │ ├── doorkeeper.id.yml
│ │ ├── doorkeeper.io.yml
│ │ ├── doorkeeper.it.yml
│ │ ├── doorkeeper.ja.yml
│ │ ├── doorkeeper.ka.yml
│ │ ├── doorkeeper.kk.yml
│ │ ├── doorkeeper.ko.yml
│ │ ├── doorkeeper.lt.yml
│ │ ├── doorkeeper.lv.yml
│ │ ├── doorkeeper.ms.yml
│ │ ├── doorkeeper.nl.yml
│ │ ├── doorkeeper.no.yml
│ │ ├── doorkeeper.oc.yml
│ │ ├── doorkeeper.pl.yml
│ │ ├── doorkeeper.pt-BR.yml
│ │ ├── doorkeeper.pt.yml
│ │ ├── doorkeeper.ro.yml
│ │ ├── doorkeeper.ru.yml
│ │ ├── doorkeeper.sk.yml
│ │ ├── doorkeeper.sl.yml
│ │ ├── doorkeeper.sq.yml
│ │ ├── doorkeeper.sr-Latn.yml
│ │ ├── doorkeeper.sr.yml
│ │ ├── doorkeeper.sv.yml
│ │ ├── doorkeeper.ta.yml
│ │ ├── doorkeeper.te.yml
│ │ ├── doorkeeper.th.yml
│ │ ├── doorkeeper.tr.yml
│ │ ├── doorkeeper.uk.yml
│ │ ├── doorkeeper.zh-CN.yml
│ │ ├── doorkeeper.zh-HK.yml
│ │ ├── doorkeeper.zh-TW.yml
│ │ ├── el.yml
│ │ ├── en.yml
│ │ ├── en_GB.yml
│ │ ├── eo.yml
│ │ ├── es.yml
│ │ ├── eu.yml
│ │ ├── fa.yml
│ │ ├── fi.yml
│ │ ├── fr.yml
│ │ ├── ga.yml
│ │ ├── gl.yml
│ │ ├── he.yml
│ │ ├── hi.yml
│ │ ├── hr.yml
│ │ ├── hu.yml
│ │ ├── hy.yml
│ │ ├── id.yml
│ │ ├── io.yml
│ │ ├── it.yml
│ │ ├── ja.yml
│ │ ├── ka.yml
│ │ ├── kk.yml
│ │ ├── ko.yml
│ │ ├── lt.yml
│ │ ├── lv.yml
│ │ ├── ms.yml
│ │ ├── nl.yml
│ │ ├── no.yml
│ │ ├── oc.yml
│ │ ├── pl.yml
│ │ ├── pt-BR.yml
│ │ ├── pt.yml
│ │ ├── ro.yml
│ │ ├── ru.yml
│ │ ├── simple_form.ar.yml
│ │ ├── simple_form.ast.yml
│ │ ├── simple_form.bg.yml
│ │ ├── simple_form.bn.yml
│ │ ├── simple_form.ca.yml
│ │ ├── simple_form.co.yml
│ │ ├── simple_form.cs.yml
│ │ ├── simple_form.cy.yml
│ │ ├── simple_form.da.yml
│ │ ├── simple_form.de.yml
│ │ ├── simple_form.el.yml
│ │ ├── simple_form.en.yml
│ │ ├── simple_form.en_GB.yml
│ │ ├── simple_form.eo.yml
│ │ ├── simple_form.es.yml
│ │ ├── simple_form.eu.yml
│ │ ├── simple_form.fa.yml
│ │ ├── simple_form.fi.yml
│ │ ├── simple_form.fr.yml
│ │ ├── simple_form.gl.yml
│ │ ├── simple_form.he.yml
│ │ ├── simple_form.hr.yml
│ │ ├── simple_form.hu.yml
│ │ ├── simple_form.hy.yml
│ │ ├── simple_form.id.yml
│ │ ├── simple_form.io.yml
│ │ ├── simple_form.it.yml
│ │ ├── simple_form.ja.yml
│ │ ├── simple_form.ka.yml
│ │ ├── simple_form.kk.yml
│ │ ├── simple_form.ko.yml
│ │ ├── simple_form.lt.yml
│ │ ├── simple_form.lv.yml
│ │ ├── simple_form.ms.yml
│ │ ├── simple_form.nl.yml
│ │ ├── simple_form.no.yml
│ │ ├── simple_form.oc.yml
│ │ ├── simple_form.pl.yml
│ │ ├── simple_form.pt-BR.yml
│ │ ├── simple_form.pt.yml
│ │ ├── simple_form.ro.yml
│ │ ├── simple_form.ru.yml
│ │ ├── simple_form.sk.yml
│ │ ├── simple_form.sl.yml
│ │ ├── simple_form.sq.yml
│ │ ├── simple_form.sr-Latn.yml
│ │ ├── simple_form.sr.yml
│ │ ├── simple_form.sv.yml
│ │ ├── simple_form.ta.yml
│ │ ├── simple_form.te.yml
│ │ ├── simple_form.th.yml
│ │ ├── simple_form.tr.yml
│ │ ├── simple_form.uk.yml
│ │ ├── simple_form.zh-CN.yml
│ │ ├── simple_form.zh-HK.yml
│ │ ├── simple_form.zh-TW.yml
│ │ ├── sk.yml
│ │ ├── sl.yml
│ │ ├── sq.yml
│ │ ├── sr-Latn.rb
│ │ ├── sr-Latn.yml
│ │ ├── sr.rb
│ │ ├── sr.yml
│ │ ├── sv.yml
│ │ ├── ta.yml
│ │ ├── te.yml
│ │ ├── th.yml
│ │ ├── tr.yml
│ │ ├── uk.yml
│ │ ├── zh-CN.yml
│ │ ├── zh-HK.yml
│ │ └── zh-TW.yml
│ ├── navigation.rb
│ ├── puma.rb
│ ├── routes.rb
│ ├── secrets.yml
│ ├── settings.yml
│ ├── sidekiq.yml
│ ├── themes.yml
│ ├── webpack/
│ │ ├── configuration.js
│ │ ├── development.js
│ │ ├── generateLocalePacks.js
│ │ ├── production.js
│ │ ├── rules/
│ │ │ ├── babel.js
│ │ │ ├── css.js
│ │ │ ├── file.js
│ │ │ ├── index.js
│ │ │ ├── mark.js
│ │ │ └── node_modules.js
│ │ ├── shared.js
│ │ ├── test.js
│ │ └── translationRunner.js
│ └── webpacker.yml
├── config.ru
├── db/
│ ├── migrate/
│ │ ├── 20160220174730_create_accounts.rb
│ │ ├── 20160220211917_create_statuses.rb
│ │ ├── 20160221003140_create_users.rb
│ │ ├── 20160221003621_create_follows.rb
│ │ ├── 20160222122600_create_stream_entries.rb
│ │ ├── 20160222143943_add_profile_fields_to_accounts.rb
│ │ ├── 20160223162837_add_metadata_to_statuses.rb
│ │ ├── 20160223164502_make_uris_nullable_in_statuses.rb
│ │ ├── 20160223165723_add_url_to_statuses.rb
│ │ ├── 20160223165855_add_url_to_accounts.rb
│ │ ├── 20160223171800_create_favourites.rb
│ │ ├── 20160224223247_create_mentions.rb
│ │ ├── 20160227230233_add_attachment_avatar_to_accounts.rb
│ │ ├── 20160305115639_add_devise_to_users.rb
│ │ ├── 20160306172223_create_doorkeeper_tables.rb
│ │ ├── 20160312193225_add_attachment_header_to_accounts.rb
│ │ ├── 20160314164231_add_owner_to_application.rb
│ │ ├── 20160316103650_add_missing_indices.rb
│ │ ├── 20160322193748_add_avatar_remote_url_to_accounts.rb
│ │ ├── 20160325130944_add_admin_to_users.rb
│ │ ├── 20160826155805_add_superapp_to_oauth_applications.rb
│ │ ├── 20160905150353_create_media_attachments.rb
│ │ ├── 20160919221059_add_subscription_expires_at_to_accounts.rb
│ │ ├── 20160920003904_remove_verify_token_from_accounts.rb
│ │ ├── 20160926213048_remove_owner_from_application.rb
│ │ ├── 20161003142332_add_confirmable_to_users.rb
│ │ ├── 20161003145426_create_blocks.rb
│ │ ├── 20161006213403_rails_settings_migration.rb
│ │ ├── 20161009120834_create_domain_blocks.rb
│ │ ├── 20161027172456_add_silenced_to_accounts.rb
│ │ ├── 20161104173623_create_tags.rb
│ │ ├── 20161105130633_create_statuses_tags_join_table.rb
│ │ ├── 20161116162355_add_locale_to_users.rb
│ │ ├── 20161119211120_create_notifications.rb
│ │ ├── 20161122163057_remove_unneeded_indexes.rb
│ │ ├── 20161123093447_add_sensitive_to_statuses.rb
│ │ ├── 20161128103007_create_subscriptions.rb
│ │ ├── 20161130142058_add_last_successful_delivery_at_to_subscriptions.rb
│ │ ├── 20161130185319_add_visibility_to_statuses.rb
│ │ ├── 20161202132159_add_in_reply_to_account_id_to_statuses.rb
│ │ ├── 20161203164520_add_from_account_id_to_notifications.rb
│ │ ├── 20161205214545_add_suspended_to_accounts.rb
│ │ ├── 20161221152630_add_hidden_to_stream_entries.rb
│ │ ├── 20161222201034_add_locked_to_accounts.rb
│ │ ├── 20161222204147_create_follow_requests.rb
│ │ ├── 20170105224407_add_shortcode_to_media_attachments.rb
│ │ ├── 20170109120109_create_web_settings.rb
│ │ ├── 20170112154826_migrate_settings.rb
│ │ ├── 20170114194937_add_application_to_statuses.rb
│ │ ├── 20170114203041_add_website_to_oauth_application.rb
│ │ ├── 20170119214911_create_preview_cards.rb
│ │ ├── 20170123162658_add_severity_to_domain_blocks.rb
│ │ ├── 20170123203248_add_reject_media_to_domain_blocks.rb
│ │ ├── 20170125145934_add_spoiler_text_to_statuses.rb
│ │ ├── 20170127165745_add_devise_two_factor_to_users.rb
│ │ ├── 20170129000348_create_devices.rb
│ │ ├── 20170205175257_remove_devices.rb
│ │ ├── 20170209184350_add_reply_to_statuses.rb
│ │ ├── 20170214110202_create_reports.rb
│ │ ├── 20170217012631_add_reblog_of_id_foreign_key_to_statuses.rb
│ │ ├── 20170301222600_create_mutes.rb
│ │ ├── 20170303212857_add_last_emailed_at_to_users.rb
│ │ ├── 20170304202101_add_type_to_media_attachments.rb
│ │ ├── 20170317193015_add_search_index_to_accounts.rb
│ │ ├── 20170318214217_add_header_remote_url_to_accounts.rb
│ │ ├── 20170322021028_add_lowercase_index_to_accounts.rb
│ │ ├── 20170322143850_change_primary_key_to_bigint_on_statuses.rb
│ │ ├── 20170322162804_add_search_index_to_tags.rb
│ │ ├── 20170330021336_add_counter_caches.rb
│ │ ├── 20170330163835_create_imports.rb
│ │ ├── 20170330164118_add_attachment_data_to_imports.rb
│ │ ├── 20170403172249_add_action_taken_by_account_id_to_reports.rb
│ │ ├── 20170405112956_add_index_on_mentions_status_id.rb
│ │ ├── 20170406215816_add_notifications_and_favourites_indices.rb
│ │ ├── 20170409170753_add_last_webfingered_at_to_accounts.rb
│ │ ├── 20170414080609_add_devise_two_factor_backupable_to_users.rb
│ │ ├── 20170414132105_add_language_to_statuses.rb
│ │ ├── 20170418160728_add_indexes_to_reports_for_accounts.rb
│ │ ├── 20170423005413_add_allowed_languages_to_user.rb
│ │ ├── 20170424003227_create_account_domain_blocks.rb
│ │ ├── 20170424112722_add_status_id_index_to_statuses_tags.rb
│ │ ├── 20170425131920_add_media_attachment_meta.rb
│ │ ├── 20170425202925_add_oembed_to_preview_cards.rb
│ │ ├── 20170427011934_re_add_owner_to_application.rb
│ │ ├── 20170506235850_create_conversations.rb
│ │ ├── 20170507000211_add_conversation_id_to_statuses.rb
│ │ ├── 20170507141759_optimize_index_subscriptions.rb
│ │ ├── 20170508230434_create_conversation_mutes.rb
│ │ ├── 20170516072309_add_index_accounts_on_uri.rb
│ │ ├── 20170520145338_change_language_filter_to_opt_out.rb
│ │ ├── 20170601210557_add_index_on_media_attachments_account_id.rb
│ │ ├── 20170604144747_add_foreign_keys_for_accounts.rb
│ │ ├── 20170606113804_change_tag_search_index_to_btree.rb
│ │ ├── 20170609145826_remove_default_language_from_statuses.rb
│ │ ├── 20170610000000_add_statuses_index_on_account_id_id.rb
│ │ ├── 20170623152212_create_session_activations.rb
│ │ ├── 20170624134742_add_description_to_session_activations.rb
│ │ ├── 20170625140443_add_access_token_id_to_session_activations.rb
│ │ ├── 20170711225116_fix_null_booleans.rb
│ │ ├── 20170713112503_make_tag_search_case_insensitive.rb
│ │ ├── 20170713175513_create_web_push_subscriptions.rb
│ │ ├── 20170713190709_add_web_push_subscription_to_session_activations.rb
│ │ ├── 20170714184731_add_domain_to_subscriptions.rb
│ │ ├── 20170716191202_add_hide_notifications_to_mute.rb
│ │ ├── 20170718211102_add_activitypub_to_accounts.rb
│ │ ├── 20170720000000_add_index_favourites_on_account_id_and_id.rb
│ │ ├── 20170823162448_create_status_pins.rb
│ │ ├── 20170824103029_add_timestamps_to_status_pins.rb
│ │ ├── 20170829215220_remove_status_pins_account_index.rb
│ │ ├── 20170901141119_truncate_preview_cards.rb
│ │ ├── 20170901142658_create_join_table_preview_cards_statuses.rb
│ │ ├── 20170905044538_add_index_id_account_id_activity_type_on_notifications.rb
│ │ ├── 20170905165803_add_local_to_statuses.rb
│ │ ├── 20170913000752_create_site_uploads.rb
│ │ ├── 20170917153509_create_custom_emojis.rb
│ │ ├── 20170918125918_ids_to_bigints.rb
│ │ ├── 20170920024819_status_ids_to_timestamp_ids.rb
│ │ ├── 20170920032311_fix_reblogs_in_feeds.rb
│ │ ├── 20170924022025_ids_to_bigints2.rb
│ │ ├── 20170927215609_add_description_to_media_attachments.rb
│ │ ├── 20170928082043_create_email_domain_blocks.rb
│ │ ├── 20171005102658_create_account_moderation_notes.rb
│ │ ├── 20171005171936_add_disabled_to_custom_emojis.rb
│ │ ├── 20171006142024_add_uri_to_custom_emojis.rb
│ │ ├── 20171010023049_add_foreign_key_to_account_moderation_notes.rb
│ │ ├── 20171010025614_change_accounts_nonnullable_in_account_moderation_notes.rb
│ │ ├── 20171020084748_add_visible_in_picker_to_custom_emoji.rb
│ │ ├── 20171028221157_add_reblogs_to_follows.rb
│ │ ├── 20171107143332_add_memorial_to_accounts.rb
│ │ ├── 20171107143624_add_disabled_to_users.rb
│ │ ├── 20171109012327_add_moderator_to_accounts.rb
│ │ ├── 20171114080328_add_index_domain_to_email_domain_blocks.rb
│ │ ├── 20171114231651_create_lists.rb
│ │ ├── 20171116161857_create_list_accounts.rb
│ │ ├── 20171118012443_add_moved_to_account_id_to_accounts.rb
│ │ ├── 20171119172437_create_admin_action_logs.rb
│ │ ├── 20171122120436_add_index_account_and_reblog_of_id_to_statuses.rb
│ │ ├── 20171125024930_create_invites.rb
│ │ ├── 20171125031751_add_invite_id_to_users.rb
│ │ ├── 20171125185353_add_index_reblog_of_id_and_account_to_statuses.rb
│ │ ├── 20171125190735_remove_old_reblog_index_on_statuses.rb
│ │ ├── 20171129172043_add_index_on_stream_entries.rb
│ │ ├── 20171130000000_add_embed_url_to_preview_cards.rb
│ │ ├── 20171201000000_change_account_id_nonnullable_in_lists.rb
│ │ ├── 20171212195226_remove_duplicate_indexes_in_lists.rb
│ │ ├── 20171226094803_more_faster_index_on_notifications.rb
│ │ ├── 20180106000232_add_index_on_statuses_for_api_v1_accounts_account_id_statuses.rb
│ │ ├── 20180109143959_add_remember_token_to_users.rb
│ │ ├── 20180204034416_create_identities.rb
│ │ ├── 20180206000000_change_user_id_nonnullable.rb
│ │ ├── 20180211015820_create_backups.rb
│ │ ├── 20180304013859_add_featured_collection_url_to_accounts.rb
│ │ ├── 20180310000000_change_columns_in_notifications_nonnullable.rb
│ │ ├── 20180402031200_add_assigned_account_id_to_reports.rb
│ │ ├── 20180402040909_create_report_notes.rb
│ │ ├── 20180410204633_add_fields_to_accounts.rb
│ │ ├── 20180416210259_add_uri_to_relationships.rb
│ │ ├── 20180506221944_add_actor_type_to_accounts.rb
│ │ ├── 20180510214435_add_access_token_id_to_web_push_subscriptions.rb
│ │ ├── 20180510230049_migrate_web_push_subscriptions.rb
│ │ ├── 20180514130000_improve_index_on_statuses_for_api_v1_accounts_account_id_statuses.rb
│ │ ├── 20180514140000_revert_index_change_on_statuses_for_api_v1_accounts_account_id_statuses.rb
│ │ ├── 20180528141303_fix_accounts_unique_index.rb
│ │ ├── 20180608213548_reject_following_blocked_users.rb
│ │ ├── 20180609104432_migrate_web_push_subscriptions2.rb
│ │ ├── 20180615122121_add_autofollow_to_invites.rb
│ │ ├── 20180616192031_add_chosen_languages_to_users.rb
│ │ ├── 20180617162849_remove_unused_indexes.rb
│ │ ├── 20180628181026_create_custom_filters.rb
│ │ ├── 20180707154237_add_whole_word_to_custom_filter.rb
│ │ ├── 20180711152640_create_relays.rb
│ │ ├── 20180808175627_create_account_pins.rb
│ │ ├── 20180812123222_change_relays_enabled.rb
│ │ ├── 20180812162710_create_status_stats.rb
│ │ ├── 20180812173710_copy_status_stats.rb
│ │ ├── 20180814171349_add_confidential_to_doorkeeper_application.rb
│ │ ├── 20180820232245_add_foreign_key_indices.rb
│ │ ├── 20180929222014_create_account_conversations.rb
│ │ ├── 20181007025445_create_pghero_space_stats.rb
│ │ ├── 20181010141500_add_silent_to_mentions.rb
│ │ ├── 20181017170937_add_reject_reports_to_domain_blocks.rb
│ │ ├── 20181018205649_add_unread_to_account_conversations.rb
│ │ ├── 20181024224956_migrate_account_conversations.rb
│ │ ├── 20181026034033_remove_faux_remote_account_duplicates.rb
│ │ ├── 20181116165755_create_account_stats.rb
│ │ ├── 20181116173541_copy_account_stats.rb
│ │ ├── 20181127130500_identity_id_to_bigint.rb
│ │ ├── 20181203003808_create_accounts_tags_join_table.rb
│ │ ├── 20181203021853_add_discoverable_to_accounts.rb
│ │ ├── 20181204193439_add_last_status_at_to_account_stats.rb
│ │ ├── 20181204215309_create_account_tag_stats.rb
│ │ ├── 20181207011115_downcase_custom_emoji_domains.rb
│ │ ├── 20181213184704_create_account_warnings.rb
│ │ ├── 20181213185533_create_account_warning_presets.rb
│ │ ├── 20181219235220_add_created_by_application_id_to_users.rb
│ │ ├── 20181226021420_add_also_known_as_to_accounts.rb
│ │ ├── 20190103124649_create_scheduled_statuses.rb
│ │ ├── 20190103124754_add_scheduled_status_id_to_media_attachments.rb
│ │ ├── 20190117114553_create_tombstones.rb
│ │ ├── 20190201012802_add_overwrite_to_imports.rb
│ │ ├── 20190203180359_create_featured_tags.rb
│ │ ├── 20190225031541_create_polls.rb
│ │ ├── 20190225031625_create_poll_votes.rb
│ │ ├── 20190226003449_add_poll_id_to_statuses.rb
│ │ ├── 20190304152020_add_uri_to_poll_votes.rb
│ │ ├── 20190306145741_add_lock_version_to_polls.rb
│ │ ├── 20190307234537_add_approved_to_users.rb
│ │ ├── 20190314181829_migrate_open_registrations_setting.rb
│ │ ├── 20190316190352_create_account_identity_proofs.rb
│ │ ├── 20190317135723_add_uri_to_reports.rb
│ │ ├── 20190409054914_create_user_invite_requests.rb
│ │ ├── 20190420025523_add_blurhash_to_media_attachments.rb
│ │ ├── 20190509164208_add_by_moderator_to_tombstone.rb
│ │ ├── 20190511134027_add_silenced_at_suspended_at_to_accounts.rb
│ │ └── 20190529143559_preserve_old_layout_for_existing_users.rb
│ ├── post_migrate/
│ │ ├── .gitkeep
│ │ ├── 20180813113448_copy_status_stats_cleanup.rb
│ │ ├── 20181116184611_copy_account_stats_cleanup.rb
│ │ ├── 20190511152737_remove_suspended_silenced_account_fields.rb
│ │ └── 20190519130537_remove_boosts_widening_audience.rb
│ ├── schema.rb
│ └── seeds.rb
├── dist/
│ ├── mastodon-sidekiq.service
│ ├── mastodon-streaming.service
│ ├── mastodon-web.service
│ └── nginx.conf
├── docker-compose.yml
├── lib/
│ ├── assets/
│ │ └── .keep
│ ├── cli.rb
│ ├── devise/
│ │ └── ldap_authenticatable.rb
│ ├── florence/
│ │ └── version.rb
│ ├── generators/
│ │ └── post_deployment_migration_generator.rb
│ ├── json_ld/
│ │ └── security.rb
│ ├── mastodon/
│ │ ├── accounts_cli.rb
│ │ ├── cache_cli.rb
│ │ ├── cli_helper.rb
│ │ ├── domains_cli.rb
│ │ ├── emoji_cli.rb
│ │ ├── feeds_cli.rb
│ │ ├── media_cli.rb
│ │ ├── migration_helpers.rb
│ │ ├── premailer_webpack_strategy.rb
│ │ ├── redis_config.rb
│ │ ├── search_cli.rb
│ │ ├── settings_cli.rb
│ │ ├── snowflake.rb
│ │ ├── statuses_cli.rb
│ │ └── version.rb
│ ├── paperclip/
│ │ ├── blurhash_transcoder.rb
│ │ ├── gif_transcoder.rb
│ │ ├── lazy_thumbnail.rb
│ │ └── video_transcoder.rb
│ ├── tasks/
│ │ ├── assets.rake
│ │ ├── auto_annotate_models.rake
│ │ ├── db.rake
│ │ ├── emojis.rake
│ │ ├── mastodon.rake
│ │ ├── repo.rake
│ │ └── statistics.rake
│ └── templates/
│ ├── haml/
│ │ └── scaffold/
│ │ └── _form.html.haml
│ └── rails/
│ └── post_deployment_migration/
│ └── migration.rb
├── log/
│ └── .keep
├── nanobox/
│ ├── nginx-local.conf
│ ├── nginx-stream.conf.erb
│ └── nginx-web.conf.erb
├── package.json
├── postcss.config.js
├── priv-config
├── public/
│ ├── browserconfig.xml
│ ├── embed.js
│ ├── robots.txt
│ └── sounds/
│ └── boop.ogg
├── scalingo.json
├── spec/
│ ├── controllers/
│ │ ├── about_controller_spec.rb
│ │ ├── account_follow_controller_spec.rb
│ │ ├── account_unfollow_controller_spec.rb
│ │ ├── accounts_controller_spec.rb
│ │ ├── activitypub/
│ │ │ ├── collections_controller_spec.rb
│ │ │ ├── inboxes_controller_spec.rb
│ │ │ └── outboxes_controller_spec.rb
│ │ ├── admin/
│ │ │ ├── account_moderation_notes_controller_spec.rb
│ │ │ ├── accounts_controller_spec.rb
│ │ │ ├── action_logs_controller_spec.rb
│ │ │ ├── base_controller_spec.rb
│ │ │ ├── change_email_controller_spec.rb
│ │ │ ├── confirmations_controller_spec.rb
│ │ │ ├── custom_emojis_controller_spec.rb
│ │ │ ├── dashboard_controller_spec.rb
│ │ │ ├── domain_blocks_controller_spec.rb
│ │ │ ├── email_domain_blocks_controller_spec.rb
│ │ │ ├── instances_controller_spec.rb
│ │ │ ├── invites_controller_spec.rb
│ │ │ ├── report_notes_controller_spec.rb
│ │ │ ├── reported_statuses_controller_spec.rb
│ │ │ ├── reports_controller_spec.rb
│ │ │ ├── resets_controller_spec.rb
│ │ │ ├── roles_controller_spec.rb
│ │ │ ├── settings_controller_spec.rb
│ │ │ ├── statuses_controller_spec.rb
│ │ │ ├── subscriptions_controller_spec.rb
│ │ │ ├── tags_controller_spec.rb
│ │ │ └── two_factor_authentications_controller_spec.rb
│ │ ├── api/
│ │ │ ├── base_controller_spec.rb
│ │ │ ├── oembed_controller_spec.rb
│ │ │ ├── proofs_controller_spec.rb
│ │ │ ├── push_controller_spec.rb
│ │ │ ├── salmon_controller_spec.rb
│ │ │ ├── subscriptions_controller_spec.rb
│ │ │ ├── v1/
│ │ │ │ ├── accounts/
│ │ │ │ │ ├── credentials_controller_spec.rb
│ │ │ │ │ ├── follower_accounts_controller_spec.rb
│ │ │ │ │ ├── following_accounts_controller_spec.rb
│ │ │ │ │ ├── lists_controller_spec.rb
│ │ │ │ │ ├── pins_controller_spec.rb
│ │ │ │ │ ├── relationships_controller_spec.rb
│ │ │ │ │ ├── search_controller_spec.rb
│ │ │ │ │ └── statuses_controller_spec.rb
│ │ │ │ ├── accounts_controller_spec.rb
│ │ │ │ ├── apps/
│ │ │ │ │ └── credentials_controller_spec.rb
│ │ │ │ ├── apps_controller_spec.rb
│ │ │ │ ├── blocks_controller_spec.rb
│ │ │ │ ├── conversations_controller_spec.rb
│ │ │ │ ├── custom_emojis_controller_spec.rb
│ │ │ │ ├── domain_blocks_controller_spec.rb
│ │ │ │ ├── endorsements_controller_spec.rb
│ │ │ │ ├── favourites_controller_spec.rb
│ │ │ │ ├── filters_controller_spec.rb
│ │ │ │ ├── follow_requests_controller_spec.rb
│ │ │ │ ├── follows_controller_spec.rb
│ │ │ │ ├── instances/
│ │ │ │ │ ├── activity_controller_spec.rb
│ │ │ │ │ └── peers_controller_spec.rb
│ │ │ │ ├── instances_controller_spec.rb
│ │ │ │ ├── lists/
│ │ │ │ │ └── accounts_controller_spec.rb
│ │ │ │ ├── lists_controller_spec.rb
│ │ │ │ ├── media_controller_spec.rb
│ │ │ │ ├── mutes_controller_spec.rb
│ │ │ │ ├── notifications_controller_spec.rb
│ │ │ │ ├── polls/
│ │ │ │ │ └── votes_controller_spec.rb
│ │ │ │ ├── polls_controller_spec.rb
│ │ │ │ ├── push/
│ │ │ │ │ └── subscriptions_controller_spec.rb
│ │ │ │ ├── reports_controller_spec.rb
│ │ │ │ ├── search_controller_spec.rb
│ │ │ │ ├── statuses/
│ │ │ │ │ ├── favourited_by_accounts_controller_spec.rb
│ │ │ │ │ ├── favourites_controller_spec.rb
│ │ │ │ │ ├── mutes_controller_spec.rb
│ │ │ │ │ ├── pins_controller_spec.rb
│ │ │ │ │ ├── reblogged_by_accounts_controller_spec.rb
│ │ │ │ │ └── reblogs_controller_spec.rb
│ │ │ │ ├── statuses_controller_spec.rb
│ │ │ │ ├── streaming_controller_spec.rb
│ │ │ │ ├── suggestions_controller_spec.rb
│ │ │ │ └── timelines/
│ │ │ │ ├── direct_controller_spec.rb
│ │ │ │ ├── home_controller_spec.rb
│ │ │ │ ├── list_controller_spec.rb
│ │ │ │ ├── public_controller_spec.rb
│ │ │ │ └── tag_controller_spec.rb
│ │ │ ├── v2/
│ │ │ │ └── search_controller_spec.rb
│ │ │ └── web/
│ │ │ ├── embeds_controller_spec.rb
│ │ │ ├── push_subscriptions_controller_spec.rb
│ │ │ └── settings_controller_spec.rb
│ │ ├── application_controller_spec.rb
│ │ ├── auth/
│ │ │ ├── confirmations_controller_spec.rb
│ │ │ ├── passwords_controller_spec.rb
│ │ │ ├── registrations_controller_spec.rb
│ │ │ └── sessions_controller_spec.rb
│ │ ├── authorize_interactions_controller_spec.rb
│ │ ├── concerns/
│ │ │ ├── account_controller_concern_spec.rb
│ │ │ ├── accountable_concern_spec.rb
│ │ │ ├── export_controller_concern_spec.rb
│ │ │ ├── localized_spec.rb
│ │ │ ├── obfuscate_filename_spec.rb
│ │ │ ├── rate_limit_headers_spec.rb
│ │ │ ├── signature_verification_spec.rb
│ │ │ └── user_tracking_concern_spec.rb
│ │ ├── emojis_controller_spec.rb
│ │ ├── follower_accounts_controller_spec.rb
│ │ ├── following_accounts_controller_spec.rb
│ │ ├── home_controller_spec.rb
│ │ ├── intents_controller_spec.rb
│ │ ├── invites_controller_spec.rb
│ │ ├── manifests_controller_spec.rb
│ │ ├── media_controller_spec.rb
│ │ ├── oauth/
│ │ │ ├── authorizations_controller_spec.rb
│ │ │ ├── authorized_applications_controller_spec.rb
│ │ │ └── tokens_controller_spec.rb
│ │ ├── relationships_controller_spec.rb
│ │ ├── remote_follow_controller_spec.rb
│ │ ├── remote_interaction_controller_spec.rb
│ │ ├── remote_unfollows_controller_spec.rb
│ │ ├── settings/
│ │ │ ├── applications_controller_spec.rb
│ │ │ ├── deletes_controller_spec.rb
│ │ │ ├── exports/
│ │ │ │ ├── blocked_accounts_controller_spec.rb
│ │ │ │ ├── following_accounts_controller_spec.rb
│ │ │ │ └── muted_accounts_controller_spec.rb
│ │ │ ├── exports_controller_spec.rb
│ │ │ ├── identity_proofs_controller_spec.rb
│ │ │ ├── imports_controller_spec.rb
│ │ │ ├── migrations_controller_spec.rb
│ │ │ ├── preferences/
│ │ │ │ ├── notifications_controller_spec.rb
│ │ │ │ └── other_controller_spec.rb
│ │ │ ├── profiles_controller_spec.rb
│ │ │ ├── sessions_controller_spec.rb
│ │ │ ├── two_factor_authentication/
│ │ │ │ ├── confirmations_controller_spec.rb
│ │ │ │ └── recovery_codes_controller_spec.rb
│ │ │ └── two_factor_authentications_controller_spec.rb
│ │ ├── shares_controller_spec.rb
│ │ ├── statuses_controller_spec.rb
│ │ ├── stream_entries_controller_spec.rb
│ │ ├── tags_controller_spec.rb
│ │ └── well_known/
│ │ ├── host_meta_controller_spec.rb
│ │ ├── keybase_proof_config_controller_spec.rb
│ │ └── webfinger_controller_spec.rb
│ ├── fabricators/
│ │ ├── access_token_fabricator.rb
│ │ ├── accessible_access_token_fabricator.rb
│ │ ├── account_domain_block_fabricator.rb
│ │ ├── account_fabricator.rb
│ │ ├── account_identity_proof_fabricator.rb
│ │ ├── account_moderation_note_fabricator.rb
│ │ ├── account_pin_fabricator.rb
│ │ ├── account_stat_fabricator.rb
│ │ ├── account_tag_stat_fabricator.rb
│ │ ├── account_warning_fabricator.rb
│ │ ├── account_warning_preset_fabricator.rb
│ │ ├── admin_action_log_fabricator.rb
│ │ ├── application_fabricator.rb
│ │ ├── assets/
│ │ │ └── TEAPOT
│ │ ├── backup_fabricator.rb
│ │ ├── block_fabricator.rb
│ │ ├── conversation_account_fabricator.rb
│ │ ├── conversation_fabricator.rb
│ │ ├── conversation_mute_fabricator.rb
│ │ ├── custom_emoji_fabricator.rb
│ │ ├── custom_filter_fabricator.rb
│ │ ├── domain_block_fabricator.rb
│ │ ├── email_domain_block_fabricator.rb
│ │ ├── favourite_fabricator.rb
│ │ ├── featured_tag_fabricator.rb
│ │ ├── follow_fabricator.rb
│ │ ├── follow_request_fabricator.rb
│ │ ├── identity_fabricator.rb
│ │ ├── import_fabricator.rb
│ │ ├── invite_fabricator.rb
│ │ ├── list_account_fabricator.rb
│ │ ├── list_fabricator.rb
│ │ ├── media_attachment_fabricator.rb
│ │ ├── mention_fabricator.rb
│ │ ├── mute_fabricator.rb
│ │ ├── notification_fabricator.rb
│ │ ├── poll_fabricator.rb
│ │ ├── poll_vote_fabricator.rb
│ │ ├── relay_fabricator.rb
│ │ ├── report_fabricator.rb
│ │ ├── report_note_fabricator.rb
│ │ ├── scheduled_status_fabricator.rb
│ │ ├── session_activation_fabricator.rb
│ │ ├── setting_fabricator.rb
│ │ ├── site_upload_fabricator.rb
│ │ ├── status_fabricator.rb
│ │ ├── status_pin_fabricator.rb
│ │ ├── status_stat_fabricator.rb
│ │ ├── stream_entry_fabricator.rb
│ │ ├── subscription_fabricator.rb
│ │ ├── tag_fabricator.rb
│ │ ├── user_fabricator.rb
│ │ ├── user_invite_request_fabricator.rb
│ │ ├── web_push_subscription_fabricator.rb
│ │ └── web_setting_fabricator.rb
│ ├── features/
│ │ └── log_in_spec.rb
│ ├── fixtures/
│ │ ├── files/
│ │ │ ├── attachment.webm
│ │ │ ├── imports.txt
│ │ │ ├── mute-imports.txt
│ │ │ ├── new-following-imports.txt
│ │ │ └── new-mute-imports.txt
│ │ ├── push/
│ │ │ ├── feed.atom
│ │ │ └── reblog.atom
│ │ ├── requests/
│ │ │ ├── .host-meta.txt
│ │ │ ├── activitypub-actor-individual.txt
│ │ │ ├── activitypub-actor-noinbox.txt
│ │ │ ├── activitypub-actor.txt
│ │ │ ├── activitypub-feed.txt
│ │ │ ├── activitypub-webfinger.txt
│ │ │ ├── attachment1.txt
│ │ │ ├── attachment2.txt
│ │ │ ├── avatar.txt
│ │ │ ├── feed.txt
│ │ │ ├── idn.txt
│ │ │ ├── json-ld.activitystreams.txt
│ │ │ ├── json-ld.identity.txt
│ │ │ ├── json-ld.security.txt
│ │ │ ├── koi8-r.txt
│ │ │ ├── localdomain-feed.txt
│ │ │ ├── localdomain-hostmeta.txt
│ │ │ ├── localdomain-webfinger.txt
│ │ │ ├── oembed_invalid_xml.html
│ │ │ ├── oembed_json.html
│ │ │ ├── oembed_json_empty.html
│ │ │ ├── oembed_json_xml.html
│ │ │ ├── oembed_undiscoverable.html
│ │ │ ├── oembed_xml.html
│ │ │ ├── redirected.host-meta.txt
│ │ │ ├── sjis.txt
│ │ │ ├── sjis_with_wrong_charset.txt
│ │ │ ├── webfinger-hacker1.txt
│ │ │ ├── webfinger-hacker2.txt
│ │ │ ├── webfinger-hacker3.txt
│ │ │ ├── webfinger.txt
│ │ │ └── windows-1251.txt
│ │ ├── salmon/
│ │ │ └── mention.xml
│ │ └── xml/
│ │ └── mastodon.atom
│ ├── helpers/
│ │ ├── admin/
│ │ │ ├── account_moderation_notes_helper_spec.rb
│ │ │ ├── action_log_helper_spec.rb
│ │ │ └── filter_helper_spec.rb
│ │ ├── application_helper_spec.rb
│ │ ├── flashes_helper_spec.rb
│ │ ├── home_helper_spec.rb
│ │ ├── instance_helper_spec.rb
│ │ ├── jsonld_helper_spec.rb
│ │ ├── routing_helper_spec.rb
│ │ ├── settings_helper_spec.rb
│ │ └── stream_entries_helper_spec.rb
│ ├── lib/
│ │ ├── activitypub/
│ │ │ ├── activity/
│ │ │ │ ├── accept_spec.rb
│ │ │ │ ├── add_spec.rb
│ │ │ │ ├── announce_spec.rb
│ │ │ │ ├── block_spec.rb
│ │ │ │ ├── create_spec.rb
│ │ │ │ ├── delete_spec.rb
│ │ │ │ ├── flag_spec.rb
│ │ │ │ ├── follow_spec.rb
│ │ │ │ ├── like_spec.rb
│ │ │ │ ├── move_spec.rb
│ │ │ │ ├── reject_spec.rb
│ │ │ │ ├── remove_spec.rb
│ │ │ │ ├── undo_spec.rb
│ │ │ │ └── update_spec.rb
│ │ │ ├── adapter_spec.rb
│ │ │ ├── linked_data_signature_spec.rb
│ │ │ └── tag_manager_spec.rb
│ │ ├── delivery_failure_tracker_spec.rb
│ │ ├── extractor_spec.rb
│ │ ├── feed_manager_spec.rb
│ │ ├── formatter_spec.rb
│ │ ├── hash_object_spec.rb
│ │ ├── language_detector_spec.rb
│ │ ├── ostatus/
│ │ │ ├── atom_serializer_spec.rb
│ │ │ └── tag_manager_spec.rb
│ │ ├── proof_provider/
│ │ │ └── keybase/
│ │ │ └── verifier_spec.rb
│ │ ├── request_spec.rb
│ │ ├── settings/
│ │ │ ├── extend_spec.rb
│ │ │ └── scoped_settings_spec.rb
│ │ ├── status_filter_spec.rb
│ │ ├── status_finder_spec.rb
│ │ ├── tag_manager_spec.rb
│ │ ├── user_settings_decorator_spec.rb
│ │ └── webfinger_resource_spec.rb
│ ├── mailers/
│ │ ├── admin_mailer_spec.rb
│ │ ├── notification_mailer_spec.rb
│ │ ├── previews/
│ │ │ ├── admin_mailer_preview.rb
│ │ │ ├── notification_mailer_preview.rb
│ │ │ └── user_mailer_preview.rb
│ │ └── user_mailer_spec.rb
│ ├── models/
│ │ ├── account_conversation_spec.rb
│ │ ├── account_domain_block_spec.rb
│ │ ├── account_filter_spec.rb
│ │ ├── account_moderation_note_spec.rb
│ │ ├── account_spec.rb
│ │ ├── account_stat_spec.rb
│ │ ├── account_tag_stat_spec.rb
│ │ ├── admin/
│ │ │ ├── account_action_spec.rb
│ │ │ └── action_log_spec.rb
│ │ ├── backup_spec.rb
│ │ ├── block_spec.rb
│ │ ├── concerns/
│ │ │ ├── account_finder_concern_spec.rb
│ │ │ ├── account_interactions_spec.rb
│ │ │ ├── remotable_spec.rb
│ │ │ ├── status_threading_concern_spec.rb
│ │ │ └── streamable_spec.rb
│ │ ├── conversation_mute_spec.rb
│ │ ├── conversation_spec.rb
│ │ ├── custom_emoji_filter_spec.rb
│ │ ├── custom_emoji_spec.rb
│ │ ├── custom_filter_spec.rb
│ │ ├── domain_block_spec.rb
│ │ ├── email_domain_block_spec.rb
│ │ ├── export_spec.rb
│ │ ├── favourite_spec.rb
│ │ ├── featured_tag_spec.rb
│ │ ├── follow_request_spec.rb
│ │ ├── follow_spec.rb
│ │ ├── form/
│ │ │ └── status_batch_spec.rb
│ │ ├── home_feed_spec.rb
│ │ ├── identity_spec.rb
│ │ ├── import_spec.rb
│ │ ├── invite_spec.rb
│ │ ├── list_account_spec.rb
│ │ ├── list_spec.rb
│ │ ├── media_attachment_spec.rb
│ │ ├── mention_spec.rb
│ │ ├── mute_spec.rb
│ │ ├── notification_spec.rb
│ │ ├── poll_spec.rb
│ │ ├── poll_vote_spec.rb
│ │ ├── preview_card_spec.rb
│ │ ├── relay_spec.rb
│ │ ├── remote_follow_spec.rb
│ │ ├── remote_profile_spec.rb
│ │ ├── report_filter_spec.rb
│ │ ├── report_spec.rb
│ │ ├── scheduled_status_spec.rb
│ │ ├── session_activation_spec.rb
│ │ ├── setting_spec.rb
│ │ ├── site_upload_spec.rb
│ │ ├── status_pin_spec.rb
│ │ ├── status_spec.rb
│ │ ├── status_stat_spec.rb
│ │ ├── stream_entry_spec.rb
│ │ ├── subscription_spec.rb
│ │ ├── tag_spec.rb
│ │ ├── user_invite_request_spec.rb
│ │ ├── user_spec.rb
│ │ └── web/
│ │ ├── push_subscription_spec.rb
│ │ └── setting_spec.rb
│ ├── policies/
│ │ ├── account_moderation_note_policy_spec.rb
│ │ ├── account_policy_spec.rb
│ │ ├── backup_policy_spec.rb
│ │ ├── custom_emoji_policy_spec.rb
│ │ ├── domain_block_policy_spec.rb
│ │ ├── email_domain_block_policy_spec.rb
│ │ ├── instance_policy_spec.rb
│ │ ├── invite_policy_spec.rb
│ │ ├── relay_policy_spec.rb
│ │ ├── report_note_policy_spec.rb
│ │ ├── report_policy_spec.rb
│ │ ├── settings_policy_spec.rb
│ │ ├── status_policy_spec.rb
│ │ ├── subscription_policy_spec.rb
│ │ ├── tag_policy_spec.rb
│ │ └── user_policy_spec.rb
│ ├── presenters/
│ │ ├── account_relationships_presenter_spec.rb
│ │ └── instance_presenter_spec.rb
│ ├── rails_helper.rb
│ ├── requests/
│ │ ├── account_show_page_spec.rb
│ │ ├── catch_all_route_request_spec.rb
│ │ ├── host_meta_request_spec.rb
│ │ ├── link_headers_spec.rb
│ │ ├── localization_spec.rb
│ │ └── webfinger_request_spec.rb
│ ├── routing/
│ │ ├── accounts_routing_spec.rb
│ │ ├── api_routing_spec.rb
│ │ └── well_known_routes_spec.rb
│ ├── serializers/
│ │ └── activitypub/
│ │ └── note_spec.rb
│ ├── services/
│ │ ├── account_search_service_spec.rb
│ │ ├── activitypub/
│ │ │ ├── fetch_remote_account_service_spec.rb
│ │ │ ├── fetch_remote_status_service_spec.rb
│ │ │ ├── fetch_replies_service_spec.rb
│ │ │ ├── process_account_service_spec.rb
│ │ │ └── process_collection_service_spec.rb
│ │ ├── after_block_domain_from_account_service_spec.rb
│ │ ├── after_block_service_spec.rb
│ │ ├── app_sign_up_service_spec.rb
│ │ ├── authorize_follow_service_spec.rb
│ │ ├── batched_remove_status_service_spec.rb
│ │ ├── block_domain_service_spec.rb
│ │ ├── block_service_spec.rb
│ │ ├── bootstrap_timeline_service_spec.rb
│ │ ├── fan_out_on_write_service_spec.rb
│ │ ├── favourite_service_spec.rb
│ │ ├── fetch_atom_service_spec.rb
│ │ ├── fetch_link_card_service_spec.rb
│ │ ├── fetch_oembed_service_spec.rb
│ │ ├── fetch_remote_account_service_spec.rb
│ │ ├── fetch_remote_status_service_spec.rb
│ │ ├── follow_service_spec.rb
│ │ ├── hashtag_query_service_spec.rb
│ │ ├── import_service_spec.rb
│ │ ├── mute_service_spec.rb
│ │ ├── notify_service_spec.rb
│ │ ├── post_status_service_spec.rb
│ │ ├── precompute_feed_service_spec.rb
│ │ ├── process_feed_service_spec.rb
│ │ ├── process_interaction_service_spec.rb
│ │ ├── process_mentions_service_spec.rb
│ │ ├── pubsubhubbub/
│ │ │ ├── subscribe_service_spec.rb
│ │ │ └── unsubscribe_service_spec.rb
│ │ ├── reblog_service_spec.rb
│ │ ├── reject_follow_service_spec.rb
│ │ ├── remove_status_service_spec.rb
│ │ ├── report_service_spec.rb
│ │ ├── resolve_account_service_spec.rb
│ │ ├── resolve_url_service_spec.rb
│ │ ├── search_service_spec.rb
│ │ ├── send_interaction_service_spec.rb
│ │ ├── subscribe_service_spec.rb
│ │ ├── suspend_account_service_spec.rb
│ │ ├── unblock_domain_service_spec.rb
│ │ ├── unblock_service_spec.rb
│ │ ├── unfollow_service_spec.rb
│ │ ├── unmute_service_spec.rb
│ │ ├── unsubscribe_service_spec.rb
│ │ ├── update_remote_profile_service_spec.rb
│ │ └── verify_link_service_spec.rb
│ ├── spec_helper.rb
│ ├── support/
│ │ ├── examples/
│ │ │ ├── lib/
│ │ │ │ └── settings/
│ │ │ │ ├── scoped_settings.rb
│ │ │ │ └── settings_extended.rb
│ │ │ └── models/
│ │ │ └── concerns/
│ │ │ └── account_avatar.rb
│ │ └── matchers/
│ │ └── model/
│ │ └── model_have_error_on_field.rb
│ ├── validators/
│ │ ├── blacklisted_email_validator_spec.rb
│ │ ├── disallowed_hashtags_validator_spec.rb
│ │ ├── email_mx_validator_spec.rb
│ │ ├── follow_limit_validator_spec.rb
│ │ ├── poll_validator_spec.rb
│ │ ├── status_length_validator_spec.rb
│ │ ├── status_pin_validator_spec.rb
│ │ ├── unique_username_validator_spec.rb
│ │ ├── unreserved_username_validator_spec.rb
│ │ └── url_validator_spec.rb
│ ├── views/
│ │ ├── about/
│ │ │ └── show.html.haml_spec.rb
│ │ └── stream_entries/
│ │ └── show.html.haml_spec.rb
│ └── workers/
│ ├── activitypub/
│ │ ├── delivery_worker_spec.rb
│ │ ├── distribution_worker_spec.rb
│ │ ├── fetch_replies_worker_spec.rb
│ │ ├── processing_worker_spec.rb
│ │ └── update_distribution_worker_spec.rb
│ ├── after_remote_follow_request_worker_spec.rb
│ ├── after_remote_follow_worker_spec.rb
│ ├── digest_mailer_worker_spec.rb
│ ├── domain_block_worker_spec.rb
│ ├── feed_insert_worker_spec.rb
│ ├── publish_scheduled_status_worker_spec.rb
│ ├── pubsubhubbub/
│ │ ├── confirmation_worker_spec.rb
│ │ ├── delivery_worker_spec.rb
│ │ └── distribution_worker_spec.rb
│ ├── regeneration_worker_spec.rb
│ └── scheduler/
│ ├── feed_cleanup_scheduler_spec.rb
│ ├── media_cleanup_scheduler_spec.rb
│ └── subscriptions_scheduler_spec.rb
├── streaming/
│ └── index.js
└── vendor/
└── .keep
================================================
FILE CONTENTS
================================================
================================================
FILE: .buildpacks
================================================
https://github.com/heroku/heroku-buildpack-apt
https://github.com/Scalingo/ffmpeg-buildpack
https://github.com/Scalingo/nodejs-buildpack
https://github.com/Scalingo/ruby-buildpack
================================================
FILE: .circleci/config.yml
================================================
version: 2
aliases:
- &defaults
docker:
- image: circleci/ruby:2.6.0-stretch-node
environment: &ruby_environment
BUNDLE_APP_CONFIG: ./.bundle/
DB_HOST: localhost
DB_USER: root
RAILS_ENV: test
PARALLEL_TEST_PROCESSORS: 4
ALLOW_NOPAM: true
CONTINUOUS_INTEGRATION: true
DISABLE_SIMPLECOV: true
PAM_ENABLED: true
PAM_DEFAULT_SERVICE: pam_test
PAM_CONTROLLED_SERVICE: pam_test_controlled
working_directory: ~/projects/mastodon/
- &attach_workspace
attach_workspace:
at: ~/projects/
- &persist_to_workspace
persist_to_workspace:
root: ~/projects/
paths:
- ./mastodon/
- &restore_ruby_dependencies
restore_cache:
keys:
- v2-ruby-dependencies-{{ checksum "/tmp/.ruby-version" }}-{{ checksum "Gemfile.lock" }}
- v2-ruby-dependencies-{{ checksum "/tmp/.ruby-version" }}-
- v2-ruby-dependencies-
- &install_steps
steps:
- checkout
- *attach_workspace
- restore_cache:
keys:
- v1-node-dependencies-{{ checksum "yarn.lock" }}
- v1-node-dependencies-
- run: yarn install --frozen-lockfile
- save_cache:
key: v1-node-dependencies-{{ checksum "yarn.lock" }}
paths:
- ./node_modules/
- *persist_to_workspace
- &install_system_dependencies
run:
name: Install system dependencies
command: |
sudo apt-get update
sudo apt-get install -y libicu-dev libidn11-dev libprotobuf-dev protobuf-compiler
- &install_ruby_dependencies
steps:
- *attach_workspace
- *install_system_dependencies
- run: ruby -e 'puts RUBY_VERSION' | tee /tmp/.ruby-version
- *restore_ruby_dependencies
- run: bundle install --clean --jobs 16 --path ./vendor/bundle/ --retry 3 --with pam_authentication --without development production && bundle clean
- save_cache:
key: v2-ruby-dependencies-{{ checksum "/tmp/.ruby-version" }}-{{ checksum "Gemfile.lock" }}
paths:
- ./.bundle/
- ./vendor/bundle/
- persist_to_workspace:
root: ~/projects/
paths:
- ./mastodon/.bundle/
- ./mastodon/vendor/bundle/
- &test_steps
steps:
- *attach_workspace
- *install_system_dependencies
- run: sudo apt-get install -y ffmpeg
- run:
name: Prepare Tests
command: ./bin/rails parallel:create parallel:load_schema parallel:prepare
- run:
name: Run Tests
command: ./bin/retry bundle exec parallel_test ./spec/ --group-by filesize --type rspec
jobs:
install:
<<: *defaults
<<: *install_steps
install-ruby2.6:
<<: *defaults
<<: *install_ruby_dependencies
install-ruby2.5:
<<: *defaults
docker:
- image: circleci/ruby:2.5.3-stretch-node
environment: *ruby_environment
<<: *install_ruby_dependencies
install-ruby2.4:
<<: *defaults
docker:
- image: circleci/ruby:2.4.5-stretch-node
environment: *ruby_environment
<<: *install_ruby_dependencies
build:
<<: *defaults
steps:
- *attach_workspace
- *install_system_dependencies
- run: ./bin/rails assets:precompile
- persist_to_workspace:
root: ~/projects/
paths:
- ./mastodon/public/assets
- ./mastodon/public/packs-test/
test-ruby2.6:
<<: *defaults
docker:
- image: circleci/ruby:2.6.0-stretch-node
environment: *ruby_environment
- image: circleci/postgres:10.6-alpine
environment:
POSTGRES_USER: root
- image: circleci/redis:5.0.3-alpine3.8
<<: *test_steps
test-ruby2.5:
<<: *defaults
docker:
- image: circleci/ruby:2.5.3-stretch-node
environment: *ruby_environment
- image: circleci/postgres:10.6-alpine
environment:
POSTGRES_USER: root
- image: circleci/redis:4.0.12-alpine
<<: *test_steps
test-ruby2.4:
<<: *defaults
docker:
- image: circleci/ruby:2.4.5-stretch-node
environment: *ruby_environment
- image: circleci/postgres:10.6-alpine
environment:
POSTGRES_USER: root
- image: circleci/redis:4.0.12-alpine
<<: *test_steps
test-webui:
<<: *defaults
docker:
- image: circleci/node:8.15.0-stretch
steps:
- *attach_workspace
- run: ./bin/retry yarn test:jest
check-i18n:
<<: *defaults
steps:
- *attach_workspace
- run: bundle exec i18n-tasks check-normalized
- run: bundle exec i18n-tasks unused -l en
- run: bundle exec i18n-tasks check-consistent-interpolations
workflows:
version: 2
build-and-test:
jobs:
- install
- install-ruby2.6:
requires:
- install
- install-ruby2.5:
requires:
- install
- install-ruby2.6
- install-ruby2.4:
requires:
- install
- install-ruby2.6
- build:
requires:
- install-ruby2.6
- test-ruby2.6:
requires:
- install-ruby2.6
- build
- test-ruby2.5:
requires:
- install-ruby2.5
- build
- test-ruby2.4:
requires:
- install-ruby2.4
- build
- test-webui:
requires:
- install
- check-i18n:
requires:
- install-ruby2.6
================================================
FILE: .codeclimate.yml
================================================
version: "2"
checks:
argument-count:
enabled: false
complex-logic:
enabled: false
file-lines:
enabled: false
method-complexity:
enabled: false
method-count:
enabled: false
method-lines:
enabled: false
nested-control-flow:
enabled: false
return-statements:
enabled: false
similar-code:
enabled: false
identical-code:
enabled: false
plugins:
brakeman:
enabled: true
bundler-audit:
enabled: true
eslint:
enabled: true
channel: eslint-5
rubocop:
enabled: true
channel: rubocop-0-71
sass-lint:
enabled: true
exclude_patterns:
- spec/
- vendor/asset
================================================
FILE: .dependabot/config.yml
================================================
version: 1
update_configs:
- package_manager: "ruby:bundler"
directory: "/"
update_schedule: "weekly"
- package_manager: "javascript"
directory: "/"
update_schedule: "weekly"
================================================
FILE: .dockerignore
================================================
.bundle
.env
.env.*
public/system
public/assets
public/packs
node_modules
neo4j
vendor/bundle
.DS_Store
*.swp
*~
postgres
redis
elasticsearch
================================================
FILE: .editorconfig
================================================
# EditorConfig is awesome: http://EditorConfig.org
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true
charset = utf-8
indent_style = space
indent_size = 2
================================================
FILE: .eslintignore
================================================
/build/**
/coverage/**
/db/**
/lib/**
/log/**
/node_modules/**
/nonobox/**
/public/**
!/public/embed.js
/spec/**
/tmp/**
/vendor/**
!.eslintrc.js
================================================
FILE: .eslintrc.js
================================================
module.exports = {
root: true,
env: {
browser: true,
node: true,
es6: true,
jest: true,
},
globals: {
ATTACHMENT_HOST: false,
},
parser: 'babel-eslint',
plugins: [
'react',
'jsx-a11y',
'import',
'promise',
],
parserOptions: {
sourceType: 'module',
ecmaFeatures: {
experimentalObjectRestSpread: true,
jsx: true,
},
ecmaVersion: 2018,
},
settings: {
react: {
version: 'detect',
},
'import/extensions': [
'.js',
],
'import/ignore': [
'node_modules',
'\\.(css|scss|json)$',
],
'import/resolver': {
node: {
paths: ['app/javascript'],
},
},
},
rules: {
'brace-style': 'warn',
'comma-dangle': ['error', 'always-multiline'],
'comma-spacing': [
'warn',
{
before: false,
after: true,
},
],
'comma-style': ['warn', 'last'],
'consistent-return': 'error',
'dot-notation': 'error',
eqeqeq: 'error',
indent: ['warn', 2],
'jsx-quotes': ['error', 'prefer-single'],
'no-catch-shadow': 'error',
'no-cond-assign': 'error',
'no-console': [
'warn',
{
allow: [
'error',
'warn',
],
},
],
'no-fallthrough': 'error',
'no-irregular-whitespace': 'error',
'no-mixed-spaces-and-tabs': 'warn',
'no-nested-ternary': 'warn',
'no-trailing-spaces': 'warn',
'no-undef': 'error',
'no-unreachable': 'error',
'no-unused-expressions': 'error',
'no-unused-vars': [
'error',
{
vars: 'all',
args: 'after-used',
ignoreRestSiblings: true,
},
],
'object-curly-spacing': ['error', 'always'],
'padded-blocks': [
'error',
{
classes: 'always',
},
],
quotes: ['error', 'single'],
semi: 'error',
strict: 'off',
'valid-typeof': 'error',
'react/jsx-boolean-value': 'error',
'react/jsx-closing-bracket-location': ['error', 'line-aligned'],
'react/jsx-curly-spacing': 'error',
'react/jsx-equals-spacing': 'error',
'react/jsx-first-prop-new-line': ['error', 'multiline-multiprop'],
'react/jsx-indent': ['error', 2],
'react/jsx-no-bind': 'error',
'react/jsx-no-duplicate-props': 'error',
'react/jsx-no-undef': 'error',
'react/jsx-tag-spacing': 'error',
'react/jsx-uses-react': 'error',
'react/jsx-uses-vars': 'error',
'react/jsx-wrap-multilines': 'error',
'react/no-multi-comp': 'off',
'react/no-string-refs': 'error',
'react/prop-types': 'error',
'react/self-closing-comp': 'error',
'jsx-a11y/accessible-emoji': 'warn',
'jsx-a11y/alt-text': 'warn',
'jsx-a11y/anchor-has-content': 'warn',
'jsx-a11y/anchor-is-valid': [
'warn',
{
components: [
'Link',
'NavLink',
],
specialLink: [
'to',
],
aspect: [
'noHref',
'invalidHref',
'preferButton',
],
},
],
'jsx-a11y/aria-activedescendant-has-tabindex': 'warn',
'jsx-a11y/aria-props': 'warn',
'jsx-a11y/aria-proptypes': 'warn',
'jsx-a11y/aria-role': 'warn',
'jsx-a11y/aria-unsupported-elements': 'warn',
'jsx-a11y/heading-has-content': 'warn',
'jsx-a11y/html-has-lang': 'warn',
'jsx-a11y/iframe-has-title': 'warn',
'jsx-a11y/img-redundant-alt': 'warn',
'jsx-a11y/interactive-supports-focus': 'warn',
'jsx-a11y/label-has-for': 'off',
'jsx-a11y/mouse-events-have-key-events': 'warn',
'jsx-a11y/no-access-key': 'warn',
'jsx-a11y/no-distracting-elements': 'warn',
'jsx-a11y/no-noninteractive-element-interactions': [
'warn',
{
handlers: [
'onClick',
],
},
],
'jsx-a11y/no-onchange': 'warn',
'jsx-a11y/no-redundant-roles': 'warn',
'jsx-a11y/no-static-element-interactions': [
'warn',
{
handlers: [
'onClick',
],
},
],
'jsx-a11y/role-has-required-aria-props': 'warn',
'jsx-a11y/role-supports-aria-props': 'off',
'jsx-a11y/scope': 'warn',
'jsx-a11y/tabindex-no-positive': 'warn',
'import/extensions': [
'error',
'always',
{
js: 'never',
},
],
'import/newline-after-import': 'error',
'import/no-extraneous-dependencies': [
'error',
{
devDependencies: [
'config/webpack/**',
'app/javascript/mastodon/test_setup.js',
'app/javascript/**/__tests__/**',
],
},
],
'import/no-unresolved': 'error',
'import/no-webpack-loader-syntax': 'error',
'promise/catch-or-return': 'error',
},
};
================================================
FILE: .foreman
================================================
procfile: Procfile.dev
================================================
FILE: .gitattributes
================================================
* text=auto eol=lf
*.eot -text
*.gif -text
*.gz -text
*.ico -text
*.jpg -text
*.mp3 -text
*.ogg -text
*.png -text
*.ttf -text
*.webm -text
*.woff -text
*.woff2 -text
spec/fixtures/requests/** -text !eol
================================================
FILE: .gitignore
================================================
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile '~/.gitignore_global'
# Ignore bundler config and downloaded libraries.
/.bundle
/vendor/bundle
# Ignore the default SQLite database.
/db/*.sqlite3
/db/*.sqlite3-journal
# Ignore all logfiles and tempfiles.
/log/*
!/log/.keep
/tmp
coverage
public/system
public/assets
public/packs
public/packs-test
.env
.env.production
node_modules/
build/
# Ignore Vagrant files
.vagrant/
# Ignore Capistrano customizations
config/deploy/*
# Ignore IDE files
.vscode/
.idea/
# Ignore postgres + redis + elasticsearch volume optionally created by docker-compose
postgres
redis
elasticsearch
# Ignore Apple files
.DS_Store
# Ignore vim files
*~
*.swp
# Ignore npm debug log
npm-debug.log
# Ignore yarn log files
yarn-error.log
yarn-debug.log
# Ignore Docker option files
docker-compose.override.yml
================================================
FILE: .haml-lint.yml
================================================
# Whether to ignore frontmatter at the beginning of HAML documents for
# frameworks such as Jekyll/Middleman
skip_frontmatter: false
exclude:
- 'vendor/**/*'
- 'spec/**/*'
- 'lib/templates/**/*'
- 'app/views/kaminari/**/*'
linters:
AltText:
enabled: false
ClassAttributeWithStaticValue:
enabled: true
ClassesBeforeIds:
enabled: true
ConsecutiveComments:
enabled: true
ConsecutiveSilentScripts:
enabled: true
max_consecutive: 2
EmptyObjectReference:
enabled: true
EmptyScript:
enabled: true
FinalNewline:
enabled: true
present: true
HtmlAttributes:
enabled: true
ImplicitDiv:
enabled: true
LeadingCommentSpace:
enabled: true
LineLength:
enabled: false
max: 80
MultilinePipe:
enabled: true
MultilineScript:
enabled: true
ObjectReferenceAttributes:
enabled: true
RuboCop:
enabled: true
# These cops are incredibly noisy when it comes to HAML templates, so we
# ignore them.
ignored_cops:
- Lint/BlockAlignment
- Lint/EndAlignment
- Lint/Void
- Metrics/BlockLength
- Metrics/LineLength
- Style/AlignParameters
- Style/BlockNesting
- Style/ElseAlignment
- Style/EndOfLine
- Style/FileName
- Style/FinalNewline
- Style/FrozenStringLiteralComment
- Style/IfUnlessModifier
- Style/IndentationWidth
- Style/Next
- Style/TrailingBlankLines
- Style/TrailingWhitespace
- Style/WhileUntilModifier
RubyComments:
enabled: true
SpaceBeforeScript:
enabled: true
SpaceInsideHashAttributes:
enabled: true
style: space
Indentation:
enabled: true
character: space # or tab
TagName:
enabled: true
TrailingWhitespace:
enabled: true
UnnecessaryInterpolation:
enabled: true
UnnecessaryStringOutput:
enabled: true
================================================
FILE: .nanoignore
================================================
.DS_Store
.git/
.gitignore
.bundle/
.cache/
config/deploy/*
coverage
docs/
.env
log/*.log
neo4j/
node_modules/
public/assets/
public/system/
spec/
tmp/
.vagrant/
vendor/bundle/
================================================
FILE: .nvmrc
================================================
8
================================================
FILE: .profile
================================================
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/app/.apt/lib/x86_64-linux-gnu:/app/.apt/usr/lib/x86_64-linux-gnu/mesa:/app/.apt/usr/lib/x86_64-linux-gnu/pulseaudio
================================================
FILE: .rspec
================================================
--color
--require spec_helper
--format Fuubar
================================================
FILE: .rubocop.yml
================================================
require:
- rubocop-rails
AllCops:
TargetRubyVersion: 2.3
Exclude:
- 'spec/**/*'
- 'db/**/*'
- 'app/views/**/*'
- 'config/**/*'
- 'bin/*'
- 'Rakefile'
- 'node_modules/**/*'
- 'Vagrantfile'
- 'vendor/**/*'
- 'lib/json_ld/*'
- 'lib/templates/**/*'
Bundler/OrderedGems:
Enabled: false
Layout/AccessModifierIndentation:
EnforcedStyle: indent
Layout/EmptyLineAfterMagicComment:
Enabled: false
Layout/SpaceInsideHashLiteralBraces:
EnforcedStyle: space
Metrics/AbcSize:
Max: 100
Metrics/BlockLength:
Max: 35
Exclude:
- 'lib/tasks/**/*'
Metrics/BlockNesting:
Max: 3
Metrics/ClassLength:
CountComments: false
Max: 300
Metrics/CyclomaticComplexity:
Max: 25
Metrics/LineLength:
AllowURI: true
Enabled: false
Metrics/MethodLength:
CountComments: false
Max: 55
Metrics/ModuleLength:
CountComments: false
Max: 200
Metrics/ParameterLists:
Max: 5
CountKeywordArgs: true
Metrics/PerceivedComplexity:
Max: 20
Naming/MemoizedInstanceVariableName:
Enabled: false
Rails:
Enabled: true
Rails/HasAndBelongsToMany:
Enabled: false
Rails/SkipsModelValidations:
Enabled: false
Rails/HttpStatus:
Enabled: false
Rails/Exit:
Exclude:
- 'lib/mastodon/*'
- 'lib/cli.rb'
Rails/HelperInstanceVariable:
Enabled: false
Style/ClassAndModuleChildren:
Enabled: false
Style/CollectionMethods:
Enabled: true
PreferredMethods:
find_all: 'select'
Style/Documentation:
Enabled: false
Style/DoubleNegation:
Enabled: true
Style/FrozenStringLiteralComment:
Enabled: true
Style/GuardClause:
Enabled: false
Style/Lambda:
Enabled: false
Style/PercentLiteralDelimiters:
PreferredDelimiters:
'%i': '()'
'%w': '()'
Style/PerlBackrefs:
AutoCorrect: false
Style/RegexpLiteral:
Enabled: false
Style/SymbolArray:
Enabled: false
Style/TrailingCommaInArrayLiteral:
EnforcedStyleForMultiline: 'comma'
Style/TrailingCommaInHashLiteral:
EnforcedStyleForMultiline: 'comma'
================================================
FILE: .ruby-version
================================================
2.6.1
================================================
FILE: .sass-lint.yml
================================================
# Linter Documentation:
# https://github.com/sasstools/sass-lint/tree/v1.13.1/docs/options
files:
include: app/javascript/styles/**/*.scss
ignore:
- app/javascript/styles/mastodon/reset.scss
rules:
# Disallows
no-color-literals: 0
no-css-comments: 0
no-duplicate-properties: 0
no-ids: 0
no-important: 0
no-mergeable-selectors: 0
no-misspelled-properties: 0
no-qualifying-elements: 0
no-transition-all: 0
no-vendor-prefixes: 0
# Nesting
force-element-nesting: 0
force-attribute-nesting: 0
force-pseudo-nesting: 0
# Name Formats
class-name-format: 0
leading-zero: 0
# Style Guide
attribute-quotes: 0
hex-length: 0
indentation: 0
nesting-depth: 0
property-sort-order: 0
quotes: 0
================================================
FILE: .slugignore
================================================
node_modules/
.cache/
docs/
spec/
================================================
FILE: .yarnclean
================================================
# test directories
__tests__
test
tests
powered-test
# asset directories
docs
doc
website
images
# assets
# examples
example
examples
# code coverage directories
coverage
.nyc_output
# build scripts
Makefile
Gulpfile.js
Gruntfile.js
# configs
.tern-project
.gitattributes
.editorconfig
.*ignore
.eslintrc
.jshintrc
.flowconfig
.documentup.json
.yarn-metadata.json
.*.yml
*.yml
# misc
*.gz
*.md
# for specific ignore
!.svgo.yml
!sass-lint/**/*.yml
================================================
FILE: AUTHORS.md
================================================
Authors
=======
Mastodon is available on [GitHub](https://github.com/tootsuite/mastodon)
and provided thanks to the work of the following contributors:
* [Gargron](https://github.com/Gargron)
* [ykzts](https://github.com/ykzts)
* [ThibG](https://github.com/ThibG)
* [akihikodaki](https://github.com/akihikodaki)
* [mjankowski](https://github.com/mjankowski)
* [dependabot[bot]](https://github.com/apps/dependabot)
* [unarist](https://github.com/unarist)
* [m4sk1n](https://github.com/m4sk1n)
* [yiskah](https://github.com/yiskah)
* [nolanlawson](https://github.com/nolanlawson)
* [ysksn](https://github.com/ysksn)
* [sorin-davidoi](https://github.com/sorin-davidoi)
* [abcang](https://github.com/abcang)
* [lynlynlynx](https://github.com/lynlynlynx)
* [mayaeh](https://github.com/mayaeh)
* [renatolond](https://github.com/renatolond)
* [alpaca-tc](https://github.com/alpaca-tc)
* [nclm](https://github.com/nclm)
* [ineffyble](https://github.com/ineffyble)
* [jeroenpraat](https://github.com/jeroenpraat)
* [blackle](https://github.com/blackle)
* [Quent-in](https://github.com/Quent-in)
* [JantsoP](https://github.com/JantsoP)
* [Kjwon15](https://github.com/Kjwon15)
* [mabkenar](https://github.com/mabkenar)
* [nullkal](https://github.com/nullkal)
* [yookoala](https://github.com/yookoala)
* [shuheiktgw](https://github.com/shuheiktgw)
* [ashfurrow](https://github.com/ashfurrow)
* [zunda](https://github.com/zunda)
* [Quenty31](https://github.com/Quenty31)
* [eramdam](https://github.com/eramdam)
* [takayamaki](https://github.com/takayamaki)
* [masarakki](https://github.com/masarakki)
* [ticky](https://github.com/ticky)
* [danhunsaker](https://github.com/danhunsaker)
* [ThisIsMissEm](https://github.com/ThisIsMissEm)
* [hcmiya](https://github.com/hcmiya)
* [stephenburgess8](https://github.com/stephenburgess8)
* [Wonderfall](https://github.com/Wonderfall)
* [matteoaquila](https://github.com/matteoaquila)
* [yukimochi](https://github.com/yukimochi)
* [rkarabut](https://github.com/rkarabut)
* [Artoria2e5](https://github.com/Artoria2e5)
* [nightpool](https://github.com/nightpool)
* [marrus-sh](https://github.com/marrus-sh)
* [krainboltgreene](https://github.com/krainboltgreene)
* [pfigel](https://github.com/pfigel)
* [Aldarone](https://github.com/Aldarone)
* [BoFFire](https://github.com/BoFFire)
* [clworld](https://github.com/clworld)
* [dracos](https://github.com/dracos)
* [SerCom_KC](mailto:sercom-kc@users.noreply.github.com)
* [Sylvhem](https://github.com/Sylvhem)
* [MasterGroosha](https://github.com/MasterGroosha)
* [JeanGauthier](https://github.com/JeanGauthier)
* [kschaper](https://github.com/kschaper)
* [MaciekBaron](https://github.com/MaciekBaron)
* [MitarashiDango](mailto:mitarashidango@users.noreply.github.com)
* [beatrix-bitrot](https://github.com/beatrix-bitrot)
* [Aditoo17](https://github.com/Aditoo17)
* [adbelle](https://github.com/adbelle)
* [evanminto](https://github.com/evanminto)
* [MightyPork](https://github.com/MightyPork)
* [yhirano55](https://github.com/yhirano55)
* [rinsuki](https://github.com/rinsuki)
* [camponez](https://github.com/camponez)
* [hinaloe](https://github.com/hinaloe)
* [SerCom-KC](https://github.com/SerCom-KC)
* [aschmitz](https://github.com/aschmitz)
* [devkral](https://github.com/devkral)
* [fpiesche](https://github.com/fpiesche)
* [gandaro](https://github.com/gandaro)
* [johnsudaar](https://github.com/johnsudaar)
* [trebmuh](https://github.com/trebmuh)
* [Rakib Hasan](mailto:rmhasan@gmail.com)
* [ashleyhull-versent](https://github.com/ashleyhull-versent)
* [lindwurm](https://github.com/lindwurm)
* [victorhck](mailto:victorhck@geeko.site)
* [voidsatisfaction](https://github.com/voidsatisfaction)
* [hikari-no-yume](https://github.com/hikari-no-yume)
* [angristan](https://github.com/angristan)
* [seefood](https://github.com/seefood)
* [jackjennings](https://github.com/jackjennings)
* [spla](mailto:spla@mastodont.cat)
* [expenses](https://github.com/expenses)
* [walf443](https://github.com/walf443)
* [JoelQ](https://github.com/JoelQ)
* [mistydemeo](https://github.com/mistydemeo)
* [dunn](https://github.com/dunn)
* [xqus](https://github.com/xqus)
* [hugogameiro](https://github.com/hugogameiro)
* [ariasuni](https://github.com/ariasuni)
* [pfm-eyesightjp](https://github.com/pfm-eyesightjp)
* [fakenine](https://github.com/fakenine)
* [tsuwatch](https://github.com/tsuwatch)
* [victorhck](https://github.com/victorhck)
* [kedamaDQ](https://github.com/kedamaDQ)
* [puckipedia](https://github.com/puckipedia)
* [trwnh](https://github.com/trwnh)
* [fvh-P](https://github.com/fvh-P)
* [Anna e só](mailto:contraexemplos@gmail.com)
* [BenLubar](https://github.com/BenLubar)
* [kazu9su](https://github.com/kazu9su)
* [Komic](https://github.com/Komic)
* [lmorchard](https://github.com/lmorchard)
* [diomed](https://github.com/diomed)
* [Neetshin](mailto:neetshin@neetsh.in)
* [rainyday](https://github.com/rainyday)
* [ProgVal](https://github.com/ProgVal)
* [valentin2105](https://github.com/valentin2105)
* [yuntan](https://github.com/yuntan)
* [goofy-bz](mailto:goofy@babelzilla.org)
* [kadiix](https://github.com/kadiix)
* [kodacs](https://github.com/kodacs)
* [JMendyk](https://github.com/JMendyk)
* [KScl](https://github.com/KScl)
* [sterdev](https://github.com/sterdev)
* [TheKinrar](https://github.com/TheKinrar)
* [AA4ch1](https://github.com/AA4ch1)
* [alexgleason](https://github.com/alexgleason)
* [cpytel](https://github.com/cpytel)
* [northerner](https://github.com/northerner)
* [fhemberger](https://github.com/fhemberger)
* [greysteil](https://github.com/greysteil)
* [hensmith](https://github.com/hensmith)
* [d6rkaiz](https://github.com/d6rkaiz)
* [Reverite](https://github.com/Reverite)
* [JohnD28](https://github.com/JohnD28)
* [znz](https://github.com/znz)
* [marek-lach](https://github.com/marek-lach)
* [Naouak](https://github.com/Naouak)
* [pawelngei](https://github.com/pawelngei)
* [rtucker](https://github.com/rtucker)
* [reneklacan](https://github.com/reneklacan)
* [ekiru](https://github.com/ekiru)
* [noellabo](https://github.com/noellabo)
* [tcitworld](https://github.com/tcitworld)
* [geta6](https://github.com/geta6)
* [happycoloredbanana](https://github.com/happycoloredbanana)
* [leopku](https://github.com/leopku)
* [SansPseudoFix](https://github.com/SansPseudoFix)
* [tomfhowe](https://github.com/tomfhowe)
* [noraworld](https://github.com/noraworld)
* [theboss](https://github.com/theboss)
* [178inaba](https://github.com/178inaba)
* [alyssais](https://github.com/alyssais)
* [hiphref](https://github.com/hiphref)
* [stalker314314](https://github.com/stalker314314)
* [huertanix](https://github.com/huertanix)
* [genesixx](https://github.com/genesixx)
* [halkeye](https://github.com/halkeye)
* [treby](https://github.com/treby)
* [jpdevries](https://github.com/jpdevries)
* [gdpelican](https://github.com/gdpelican)
* [kmichl](https://github.com/kmichl)
* [Kurtis Rainbolt-Greene](mailto:me@kurtisrainboltgreene.name)
* [saper](https://github.com/saper)
* [nevillepark](https://github.com/nevillepark)
* [ornithocoder](https://github.com/ornithocoder)
* [pierreozoux](https://github.com/pierreozoux)
* [qguv](https://github.com/qguv)
* [Ram Lmn](mailto:ramlmn@users.noreply.github.com)
* [sascha-sl](https://github.com/sascha-sl)
* [harukasan](https://github.com/harukasan)
* [stamak](https://github.com/stamak)
* [Technowix](mailto:technowix@users.noreply.github.com)
* [Zoeille](https://github.com/Zoeille)
* [Thor Harald Johansen](mailto:thj@thj.no)
* [0x70b1a5](https://github.com/0x70b1a5)
* [gled-rs](https://github.com/gled-rs)
* [Valentin_NC](mailto:valentin.ouvrard@nautile.sarl)
* [R0ckweb](https://github.com/R0ckweb)
* [caasi](https://github.com/caasi)
* [chr-1x](https://github.com/chr-1x)
* [esetomo](https://github.com/esetomo)
* [foxiehkins](https://github.com/foxiehkins)
* [hoodie](mailto:hoodiekitten@outlook.com)
* [luzi82](https://github.com/luzi82)
* [duxovni](https://github.com/duxovni)
* [tmm576](https://github.com/tmm576)
* [unsmell](https://github.com/unsmell)
* [valerauko](https://github.com/valerauko)
* [chriswmartin](https://github.com/chriswmartin)
* [vahnj](https://github.com/vahnj)
* [ikuradon](https://github.com/ikuradon)
* [AndreLewin](https://github.com/AndreLewin)
* [0xflotus](https://github.com/0xflotus)
* [redtachyons](https://github.com/redtachyons)
* [thurloat](https://github.com/thurloat)
* [aaribaud](https://github.com/aaribaud)
* [pointlessone](https://github.com/pointlessone)
* [Andrew](mailto:andrewlchronister@gmail.com)
* [estuans](https://github.com/estuans)
* [dissolve](https://github.com/dissolve)
* [PurpleBooth](https://github.com/PurpleBooth)
* [bradurani](https://github.com/bradurani)
* [wavebeem](https://github.com/wavebeem)
* [bruwalfas](https://github.com/bruwalfas)
* [foxsan48](https://github.com/foxsan48)
* [wchristian](https://github.com/wchristian)
* [muffinista](https://github.com/muffinista)
* [cdutson](https://github.com/cdutson)
* [farlistener](https://github.com/farlistener)
* [DavidLibeau](https://github.com/DavidLibeau)
* [ddevault](https://github.com/ddevault)
* [Fjoerfoks](https://github.com/Fjoerfoks)
* [fmauNeko](https://github.com/fmauNeko)
* [gloaec](https://github.com/gloaec)
* [Gomasy](https://github.com/Gomasy)
* [unstabler](https://github.com/unstabler)
* [potato4d](https://github.com/potato4d)
* [h-izumi](https://github.com/h-izumi)
* [ErikXXon](https://github.com/ErikXXon)
* [ian-kelling](https://github.com/ian-kelling)
* [immae](https://github.com/immae)
* [J0WI](https://github.com/J0WI)
* [foozmeat](https://github.com/foozmeat)
* [jasonrhodes](https://github.com/jasonrhodes)
* [Jason Snell](mailto:jason@newrelic.com)
* [jviide](https://github.com/jviide)
* [YuleZ](https://github.com/YuleZ)
* [crakaC](https://github.com/crakaC)
* [tkbky](https://github.com/tkbky)
* [Kaylee](mailto:kaylee@codethat.sucks)
* [Kazhnuz](https://github.com/Kazhnuz)
* [connyduck](https://github.com/connyduck)
* [Lindsey Bieda](mailto:lindseyb@users.noreply.github.com)
* [Lorenz Diener](mailto:halcyon@icosahedron.website)
* [alimony](https://github.com/alimony)
* [mig5](https://github.com/mig5)
* [moritzheiber](https://github.com/moritzheiber)
* [ndarville](https://github.com/ndarville)
* [Abzol](https://github.com/Abzol)
* [pwoolcoc](https://github.com/pwoolcoc)
* [xPaw](https://github.com/xPaw)
* [petzah](https://github.com/petzah)
* [ignisf](https://github.com/ignisf)
* [raymestalez](https://github.com/raymestalez)
* [remram44](https://github.com/remram44)
* [sts10](https://github.com/sts10)
* [u1-liquid](https://github.com/u1-liquid)
* [sim6](https://github.com/sim6)
* [Sir-Boops](https://github.com/Sir-Boops)
* [stemid](https://github.com/stemid)
* [sumdog](https://github.com/sumdog)
* [ThomasLeister](https://github.com/ThomasLeister)
* [mcat-ee](https://github.com/mcat-ee)
* [tototoshi](https://github.com/tototoshi)
* [TrashMacNugget](https://github.com/TrashMacNugget)
* [VirtuBox](https://github.com/VirtuBox)
* [Vladyslav](mailto:vaden@tuta.io)
* [kaniini](https://github.com/kaniini)
* [vayan](https://github.com/vayan)
* [yannicka](https://github.com/yannicka)
* [ikasoumen](https://github.com/ikasoumen)
* [zacanger](https://github.com/zacanger)
* [amazedkoumei](https://github.com/amazedkoumei)
* [anon5r](https://github.com/anon5r)
* [aus-social](https://github.com/aus-social)
* [imbsky](https://github.com/imbsky)
* [bsky](mailto:me@imbsky.net)
* [codl](https://github.com/codl)
* [cpsdqs](https://github.com/cpsdqs)
* [barzamin](https://github.com/barzamin)
* [fhalna](https://github.com/fhalna)
* [haoyayoi](https://github.com/haoyayoi)
* [ik11235](https://github.com/ik11235)
* [kawax](https://github.com/kawax)
* [007lva](https://github.com/007lva)
* [mbajur](https://github.com/mbajur)
* [matsurai25](https://github.com/matsurai25)
* [mecab](https://github.com/mecab)
* [nicobz25](https://github.com/nicobz25)
* [oliverkeeble](https://github.com/oliverkeeble)
* [pinfort](https://github.com/pinfort)
* [rbaumert](https://github.com/rbaumert)
* [rhoio](https://github.com/rhoio)
* [usagi-f](https://github.com/usagi-f)
* [vidarlee](https://github.com/vidarlee)
* [vjackson725](https://github.com/vjackson725)
* [wxcafe](https://github.com/wxcafe)
* [新都心(Neet Shin)](mailto:nucx@dio-vox.com)
* [cygnan](https://github.com/cygnan)
* [Awea](https://github.com/Awea)
* [halcy](https://github.com/halcy)
* [naaaaaaaaaaaf](https://github.com/naaaaaaaaaaaf)
* [8398a7](https://github.com/8398a7)
* [857b](https://github.com/857b)
* [insom](https://github.com/insom)
* [tachyons](https://github.com/tachyons)
* [acid-chicken](https://github.com/acid-chicken)
* [Esteth](https://github.com/Esteth)
* [unascribed](https://github.com/unascribed)
* [Aguay-val](https://github.com/Aguay-val)
* [Akihiko Odaki](mailto:nekomanma@pixiv.co.jp)
* [knu](https://github.com/knu)
* [h3poteto](https://github.com/h3poteto)
* [unleashed](https://github.com/unleashed)
* [alxrcs](https://github.com/alxrcs)
* [console-cowboy](https://github.com/console-cowboy)
* [Alkarex](https://github.com/Alkarex)
* [a2](https://github.com/a2)
* [0xa](https://github.com/0xa)
* [palindromordnilap](https://github.com/palindromordnilap)
* [virtualpain](https://github.com/virtualpain)
* [sapphirus](https://github.com/sapphirus)
* [amandavisconti](https://github.com/amandavisconti)
* [ameliavoncat](https://github.com/ameliavoncat)
* [ilpianista](https://github.com/ilpianista)
* [Andreas Drop](mailto:andy@remline.de)
* [andi1984](https://github.com/andi1984)
* [schas002](https://github.com/schas002)
* [contraexemplo](https://github.com/contraexemplo)
* [abackstrom](https://github.com/abackstrom)
* [armandfardeau](https://github.com/armandfardeau)
* [jumbosushi](https://github.com/jumbosushi)
* [aurelien-reeves](https://github.com/aurelien-reeves)
* [ayumin](https://github.com/ayumin)
* [BaptisteGelez](https://github.com/BaptisteGelez)
* [bzg](https://github.com/bzg)
* [benediktg](https://github.com/benediktg)
* [blakebarnett](https://github.com/blakebarnett)
* [bradj](https://github.com/bradj)
* [brycied00d](https://github.com/brycied00d)
* [carlosjs23](https://github.com/carlosjs23)
* [cgxxx](https://github.com/cgxxx)
* [kibitan](https://github.com/kibitan)
* [chrisheninger](https://github.com/chrisheninger)
* [chris-martin](https://github.com/chris-martin)
* [DoubleMalt](https://github.com/DoubleMalt)
* [Moosh-be](https://github.com/Moosh-be)
* [Motoma](https://github.com/Motoma)
* [chriswk](https://github.com/chriswk)
* [csu](https://github.com/csu)
* [clarfon](https://github.com/clarfon)
* [kklleemm](https://github.com/kklleemm)
* [colindean](https://github.com/colindean)
* [dachinat](https://github.com/dachinat)
* [multiple-creatures](https://github.com/multiple-creatures)
* [watilde](https://github.com/watilde)
* [daprice](https://github.com/daprice)
* [dar5hak](https://github.com/dar5hak)
* [kant](https://github.com/kant)
* [maxolasersquad](https://github.com/maxolasersquad)
* [singingwolfboy](https://github.com/singingwolfboy)
* [davidcelis](https://github.com/davidcelis)
* [davefp](https://github.com/davefp)
* [yipdw](https://github.com/yipdw)
* [debanshuk](https://github.com/debanshuk)
* [Derek Lewis](mailto:derekcecillewis@gmail.com)
* [dblandin](https://github.com/dblandin)
* [Drew Gates](mailto:aranaur@users.noreply.github.com)
* [dtschust](https://github.com/dtschust)
* [Dryusdan](https://github.com/Dryusdan)
* [eai04191](https://github.com/eai04191)
* [d3vgru](https://github.com/d3vgru)
* [Elizafox](https://github.com/Elizafox)
* [enewhuis](https://github.com/enewhuis)
* [ericblade](https://github.com/ericblade)
* [mikoim](https://github.com/mikoim)
* [espenronnevik](https://github.com/espenronnevik)
* [Finariel](https://github.com/Finariel)
* [siuying](https://github.com/siuying)
* [zoc](https://github.com/zoc)
* [fwenzel](https://github.com/fwenzel)
* [GenbuHase](https://github.com/GenbuHase)
* [hattori6789](https://github.com/hattori6789)
* [algernon](https://github.com/algernon)
* [Fastbyte01](https://github.com/Fastbyte01)
* [myfreeweb](https://github.com/myfreeweb)
* [gfaivre](https://github.com/gfaivre)
* [Fiaxhs](https://github.com/Fiaxhs)
* [reedcourty](https://github.com/reedcourty)
* [anneau](https://github.com/anneau)
* [lanodan](https://github.com/lanodan)
* [Harmon758](https://github.com/Harmon758)
* [HellPie](https://github.com/HellPie)
* [Habu-Kagumba](https://github.com/Habu-Kagumba)
* [suzukaze](https://github.com/suzukaze)
* [Hiromi-Kai](https://github.com/Hiromi-Kai)
* [hishamhm](https://github.com/hishamhm)
* [musashino205](https://github.com/musashino205)
* [iwaim](https://github.com/iwaim)
* [valrus](https://github.com/valrus)
* [IMcD23](https://github.com/IMcD23)
* [yi0713](https://github.com/yi0713)
* [iblech](https://github.com/iblech)
* [usbsnowcrash](https://github.com/usbsnowcrash)
* [jack-michaud](https://github.com/jack-michaud)
* [Floppy](https://github.com/Floppy)
* [loomchild](https://github.com/loomchild)
* [jenkr55](https://github.com/jenkr55)
* [press5](https://github.com/press5)
* [TrollDecker](https://github.com/TrollDecker)
* [jmontane](https://github.com/jmontane)
* [jonathanklee](https://github.com/jonathanklee)
* [jguerder](https://github.com/jguerder)
* [Jehops](https://github.com/Jehops)
* [joshuap](https://github.com/joshuap)
* [Tiwy57](https://github.com/Tiwy57)
* [xuv](https://github.com/xuv)
* [June Sallou](mailto:jnsll@users.noreply.github.com)
* [j0k3r](https://github.com/j0k3r)
* [KEINOS](https://github.com/KEINOS)
* [futoase](https://github.com/futoase)
* [Pneumaticat](https://github.com/Pneumaticat)
* [Kit Redgrave](mailto:qwertyitis@gmail.com)
* [Knut Erik](mailto:abjectio@users.noreply.github.com)
* [mkody](https://github.com/mkody)
* [k0ta0uchi](https://github.com/k0ta0uchi)
* [KrzysiekJ](https://github.com/KrzysiekJ)
* [leowzukw](https://github.com/leowzukw)
* [Tak](https://github.com/Tak)
* [cacheflow](https://github.com/cacheflow)
* [ldidry](https://github.com/ldidry)
* [jemus42](https://github.com/jemus42)
* [lfuelling](https://github.com/lfuelling)
* [Grabacr07](https://github.com/Grabacr07)
* [mistermantas](https://github.com/mistermantas)
* [mareklach](https://github.com/mareklach)
* [wirehack7](https://github.com/wirehack7)
* [martymcguire](https://github.com/martymcguire)
* [marvinkopf](https://github.com/marvinkopf)
* [otsune](https://github.com/otsune)
* [mbugowski](https://github.com/mbugowski)
* [Mathias B](mailto:10813340+mathias-b@users.noreply.github.com)
* [matt-auckland](https://github.com/matt-auckland)
* [webroo](https://github.com/webroo)
* [matthiasbeyer](https://github.com/matthiasbeyer)
* [mattjmattj](https://github.com/mattjmattj)
* [mtparet](https://github.com/mtparet)
* [maximeborges](https://github.com/maximeborges)
* [minacle](https://github.com/minacle)
* [michaeljdeeb](https://github.com/michaeljdeeb)
* [Themimitoof](https://github.com/Themimitoof)
* [cyweo](https://github.com/cyweo)
* [Midgard](mailto:m1dgard@users.noreply.github.com)
* [mike-burns](https://github.com/mike-burns)
* [verymilan](https://github.com/verymilan)
* [milmazz](https://github.com/milmazz)
* [premist](https://github.com/premist)
* [Mnkai](https://github.com/Mnkai)
* [mitchhentges](https://github.com/mitchhentges)
* [mouse-reeve](https://github.com/mouse-reeve)
* [Mozinet-fr](https://github.com/Mozinet-fr)
* [lae](https://github.com/lae)
* [nosada](https://github.com/nosada)
* [Nanamachi](https://github.com/Nanamachi)
* [orinthe](https://github.com/orinthe)
* [NecroTechno](https://github.com/NecroTechno)
* [Dar13](https://github.com/Dar13)
* [ngerakines](https://github.com/ngerakines)
* [vonneudeck](https://github.com/vonneudeck)
* [Ninetailed](https://github.com/Ninetailed)
* [k24](https://github.com/k24)
* [noiob](https://github.com/noiob)
* [kwaio](https://github.com/kwaio)
* [norayr](https://github.com/norayr)
* [joyeusenoelle](https://github.com/joyeusenoelle)
* [OlivierNicole](https://github.com/OlivierNicole)
* [noppa](https://github.com/noppa)
* [Otakan951](https://github.com/Otakan951)
* [fahy](https://github.com/fahy)
* [PatrickRWells](mailto:32802366+patrickrwells@users.noreply.github.com)
* [Paul](mailto:naydex.mc+github@gmail.com)
* [Pete Keen](mailto:pete@petekeen.net)
* [Pierre-Morgan Gate](mailto:pgate@users.noreply.github.com)
* [Ratmir Karabut](mailto:rkarabut@sfmodern.ru)
* [Reto Kromer](mailto:retokromer@users.noreply.github.com)
* [Rey Tucker](mailto:git@reytucker.us)
* [Rob Watson](mailto:rfwatson@users.noreply.github.com)
* [Ryan Freebern](mailto:ryan@freebern.org)
* [Ryan Wade](mailto:ryan.wade@protonmail.com)
* [Ryo Kajiwara](mailto:kfe-fecn6.prussian@s01.info)
* [S.H](mailto:gamelinks007@gmail.com)
* [Sadiq Saif](mailto:staticsafe@users.noreply.github.com)
* [Sam Hewitt](mailto:hewittsamuel@gmail.com)
* [Satoshi KOJIMA](mailto:skoji@mac.com)
* [ScienJus](mailto:i@scienjus.com)
* [Scott Larkin](mailto:scott@codeclimate.com)
* [Sebastian Hübner](mailto:imolein@users.noreply.github.com)
* [Sebastian Morr](mailto:sebastian@morr.cc)
* [Sergei Č](mailto:noiwex1911@gmail.com)
* [Setuu](mailto:yuki764setuu@gmail.com)
* [Shaun Gillies](mailto:me@shaungillies.net)
* [Shin Adachi](mailto:shn@glucose.jp)
* [Shin Kojima](mailto:shin@kojima.org)
* [Sho Kusano](mailto:rosylilly@aduca.org)
* [Shouko Yu](mailto:imshouko@gmail.com)
* [Sina Mashek](mailto:sina@mashek.xyz)
* [Soshi Kato](mailto:mail@sossii.com)
* [Spanky](mailto:2788886+spankyworks@users.noreply.github.com)
* [Stanislas](mailto:angristan@pm.me)
* [StefOfficiel](mailto:pichard.stephane@free.fr)
* [Steven Tappert](mailto:admin@dark-it.net)
* [Svetlozar Todorov](mailto:svetlik@users.noreply.github.com)
* [Sébastien Santoro](mailto:dereckson@espace-win.org)
* [Tad Thorley](mailto:phaedryx@users.noreply.github.com)
* [Takayoshi Nishida](mailto:takayoshi.nishida@gmail.com)
* [Takayuki KUSANO](mailto:github@tkusano.jp)
* [TakesxiSximada](mailto:takesxi.sximada@gmail.com)
* [TheInventrix](mailto:theinventrix@users.noreply.github.com)
* [Thomas Alberola](mailto:thomas@needacoffee.fr)
* [Toby Deshane](mailto:fortyseven@users.noreply.github.com)
* [Toby Pinder](mailto:gigitrix@gmail.com)
* [Tomonori Murakami](mailto:crosslife777@gmail.com)
* [TomoyaShibata](mailto:wind.of.hometown@gmail.com)
* [Treyssat-Vincent Nino](mailto:treyssatvincent@users.noreply.github.com)
* [Udo Kramer](mailto:optik@fluffel.io)
* [Una](mailto:una@unascribed.com)
* [Ushitora Anqou](mailto:ushitora_anqou@yahoo.co.jp)
* [Valentin Lorentz](mailto:progval+git@progval.net)
* [Vladimir Mincev](mailto:vladimir@canicinteractive.com)
* [Waldir Pimenta](mailto:waldyrious@gmail.com)
* [Wesley Ellis](mailto:tahnok@gmail.com)
* [Wiktor](mailto:wiktor@metacode.biz)
* [Wonderfall](mailto:wonderfall@schrodinger.io)
* [YDrogen](mailto:ydrogen45@gmail.com)
* [YMHuang](mailto:ymhuang@fmbase.tw)
* [YOSHIOKA Eiichiro](mailto:yoshioka.eiichiro@gmail.com)
* [YOU](mailto:stackexchange.you@gmail.com)
* [YaQ](mailto:i_k_o_m_a_7@yahoo.co.jp)
* [Yanaken](mailto:yanakend@gmail.com)
* [Yann Klis](mailto:yann.klis@gmail.com)
* [Yeechan Lu](mailto:wz.bluesnow@gmail.com)
* [Yusuke Abe](mailto:moonset20@gmail.com)
* [Zachary Spector](mailto:logicaldash@gmail.com)
* [ZiiX](mailto:ziix@users.noreply.github.com)
* [asria-jp](mailto:is@alicematic.com)
* [ava](mailto:vladooku@users.noreply.github.com)
* [benklop](mailto:benklop@gmail.com)
* [bsky](mailto:git@imbsky.net)
* [caesarologia](mailto:lopesgemelli.1@gmail.com)
* [cbayerlein](mailto:c.bayerlein@gmail.com)
* [chrolis](mailto:chrolis@users.noreply.github.com)
* [cormo](mailto:cormorant2+github@gmail.com)
* [d0p1](mailto:dopi-sama@hush.com)
* [evilny0](mailto:evilny0@moomoocamp.net)
* [febrezo](mailto:felixbrezo@gmail.com)
* [fsubal](mailto:fsubal@users.noreply.github.com)
* [fusshi-](mailto:dikky1218@users.noreply.github.com)
* [gentaro](mailto:gentaroooo@gmail.com)
* [gol-cha](mailto:info@mevo.xyz)
* [hakoai](mailto:hk--76@qa2.so-net.ne.jp)
* [haosbvnker](mailto:github@chaosbunker.com)
* [isati](mailto:phil@juchnowi.cz)
* [jacob](mailto:jacobherringtondeveloper@gmail.com)
* [jenn kaplan](mailto:me@jkap.io)
* [jirayudech](mailto:jirayudech@gmail.com)
* [jomo](mailto:github@jomo.tv)
* [jooops](mailto:joops@autistici.org)
* [jukper](mailto:jukkaperanto@gmail.com)
* [jumoru](mailto:jumoru@mailbox.org)
* [karlyeurl](mailto:karl.yeurl@gmail.com)
* [kedama](mailto:32974885+kedamadq@users.noreply.github.com)
* [kodai](mailto:shirafuta.kodai@gmail.com)
* [koyu](mailto:me@koyu.space)
* [kuro5hin](mailto:rusty@kuro5hin.org)
* [luzpaz](mailto:luzpaz@users.noreply.github.com)
* [maxypy](mailto:maxime@mpigou.fr)
* [mhe](mailto:mail@marcus-herrmann.com)
* [mike castleman](mailto:m@mlcastle.net)
* [mimikun](mailto:dzdzble_effort_311@outlook.jp)
* [mohemohe](mailto:mohemohe@users.noreply.github.com)
* [mshrtkch](mailto:mshrtkch@users.noreply.github.com)
* [muan](mailto:muan@github.com)
* [namelessGonbai](mailto:43787036+namelessgonbai@users.noreply.github.com)
* [neetshin](mailto:neetshin@neetsh.in)
* [rch850](mailto:rich850@gmail.com)
* [roikale](mailto:roikale@users.noreply.github.com)
* [rysiekpl](mailto:rysiek@hackerspace.pl)
* [saturday06](mailto:dyob@lunaport.net)
* [scriptjunkie](mailto:scriptjunkie@scriptjunkie.us)
* [seekr](mailto:mario.drs@gmail.com)
* [sundevour](mailto:31990469+sundevour@users.noreply.github.com)
* [syui](mailto:syui@users.noreply.github.com)
* [tackeyy](mailto:mailto.takita.yusuke@gmail.com)
* [tateisu](mailto:tateisu@gmail.com)
* [tmyt](mailto:shigure@refy.net)
* [trevDev()](mailto:trev@trevdev.ca)
* [utam0k](mailto:k0ma@utam0k.jp)
* [vpzomtrrfrt](mailto:vpzomtrrfrt@gmail.com)
* [walfie](mailto:walfington@gmail.com)
* [y-temp4](mailto:y.temp4@gmail.com)
* [ymmtmdk](mailto:ymmtmdk@gmail.com)
* [yoshipc](mailto:yoooo@yoshipc.net)
* [Özcan Zafer AYAN](mailto:ozcanzaferayan@gmail.com)
* [ばん](mailto:detteiu0321@gmail.com)
* [みたらしだんご](mailto:mitarashidango@users.noreply.github.com)
* [りんすき](mailto:6533808+rinsuki@users.noreply.github.com)
* [ヨイツの賢狼ホロ | 3rd style](mailto:horo@yoitsu.moe)
* [猫吸血鬼ディフリス / 猫ロキP](mailto:deflis@gmail.com)
* [艮 鮟鱇](mailto:ushitora_anqou@yahoo.co.jp)
* [西小倉宏信](mailto:nishiko@mindia.jp)
* [雨宮美羽](mailto:k737566@gmail.com)
This document is provided for informational purposes only. Since it is only updated once per release, the version you are looking at may be currently out of date. To see the full list of contributors, consider looking at the [git history](https://github.com/tootsuite/mastodon/graphs/contributors) instead.
## Translators
Following people have contributed to translation of Mastodon:
- **Albanian**
- Besnik Bleta
- Aditoo
- **Arabic**
- ButterflyOfFire
- Aditoo
- Amrz0
- **Asturian**
- ButterflyOfFire
- Enol P.
- Aditoo
- **Basque**
- Osoitz
- Aditoo
- Aitzol
- ButterflyOfFire
- Peru Iparragirre
- Gorka Azkarate
- **Bengali**
- dxwc
- **Bulgarian**
- ButterflyOfFire
- Aditoo
- **Catalan**
- spla
- Aditoo
- ButterflyOfFire
- Joan Montané
- Jose Luis
- **Chinese (Hong Kong)**
- ButterflyOfFire
- Luzi Leung
- Aditoo
- **Chinese (Simplified)**
- Allen Zhong
- ButterflyOfFire
- SerCom_KC
- martialarts
- Kaitian Xie
- Aditoo
- pan93412
- **Chinese (Traditional)**
- Aditoo
- ButterflyOfFire
- James58899
- pan93412
- S1ttidoe477
- SHA265
- Jeff Huang
- **Corsican**
- Alix D. R.
- Aditoo
- ButterflyOfFire
- **Croatian**
- ButterflyOfFire
- Aditoo
- **Czech**
- Aditoo
- Marek Ľach
- ButterflyOfFire
- **Danish**
- Einhjeriar
- Rasmus Sæderup
- Aditoo
- ButterflyOfFire
- **Dutch**
- Albakham
- ButterflyOfFire
- jeroenpraat
- rscmbbng
- Aditoo
- Jelv
- **English**
- ButterflyOfFire
- Renato "Lond" Cerqueira
- **English (United Kingdom)**
- Albakham
- **Esperanto**
- Aditoo
- ButterflyOfFire
- Becci Cat
- Jeong Arm
- Mélanie Chauvel
- Vanege
- Martin Bodin
- tuxayo/Victor Grousset
- **Finnish**
- ButterflyOfFire
- Mikko Poussu
- Taru Luojola
- S Heija
- Aditoo
- Jonne Arjoranta
- **French**
- Albakham
- Alix D. R.
- ButterflyOfFire
- codl
- Leia
- Alda Marteau-Hardi
- Mélanie Chauvel
- Paul Marques Mota
- azenet
- Olivier Humbert
- Aditoo
- Jonathan Chan
- Letiteuf55
- Baptiste Jonglez
- goofy-mdn
- Jean-Baptiste Holcroft
- Technowix
- Martin Bodin
- Théodore
- Thibaut Girka
- Franck Paul
- Sylvhem
- **Galician**
- ButterflyOfFire
- Xose M.
- Aditoo
- manequim
- **Georgian**
- ButterflyOfFire
- Aditoo
- **German**
- Aditoo
- ButterflyOfFire
- Daniel
- averageunicorn
- Koyu Berteon
- larsreineke
- koyu
- Austin Jones
- lilo
- Benedikt Geißler
- ePirat
- Eugen Rochko
- Weblate Admin
- Patrick Figel
- **Greek**
- Dimitris Maroulidis
- Antonis
- Aditoo
- ButterflyOfFire
- Konstantinos Grevenitis
- **Hebrew**
- ButterflyOfFire
- Aditoo
- Ira
- Yaron Shahrabani
- **Hungarian**
- ButterflyOfFire
- Adam Paszternak
- Aditoo
- Tibike Miklós
- **Ido**
- ButterflyOfFire
- Aditoo
- **Indonesian**
- afachri
- ButterflyOfFire
- Dito Kurnia Pratama
- Eirworks
- Aditoo
- Alfiana Sibuea
- se7entime
- **Irish**
- Albakham
- Kevin Houlihan
- **Italian**
- Alessandro Levati
- Albakham
- ButterflyOfFire
- Marcin Mikołajczak
- Aditoo
- Giuseppe Pignataro
- Stefano
- **Japanese**
- Hinaloe
- 小鳥遊まりあ
- mayaeh
- osapon
- 森の子リスのミーコの大冒険
- Kumasun Morino
- Yamagishi Kazutoshi
- Aditoo
- ButterflyOfFire
- Jeong Arm
- unarist
- **Kazakh**
- arshat
- Aditoo
- **Korean**
- Aditoo
- Jeong Arm
- ButterflyOfFire
- Minori Hiraoka
- Yamagishi Kazutoshi
- **Lithuanian**
- Sarunas Medeikis
- **Malay**
- Muhammad Nur Hidayat (MNH48)
- Aditoo
- ButterflyOfFire
- **Norwegian (old code)**
- ButterflyOfFire
- Espen Rønnevik
- Aditoo
- Tale
- **Occitan**
- Aditoo
- ButterflyOfFire
- Quenti2
- Quentí
- Maxenç
- **Persian**
- Masoud Abkenar
- Aditoo
- ButterflyOfFire
- **Polish**
- Aditoo
- Albakham
- ButterflyOfFire
- Stasiek Michalski
- Marcin Mikołajczak
- Jakub Mendyk
- Marek Ľach
- krkk
- **Portuguese**
- Albakham
- João Pinheiro
- manequim
- Aditoo
- ButterflyOfFire
- Hugo Gameiro
- **Portuguese (Brazil)**
- Aditoo
- Albakham
- Anna e só
- Renato "Lond" Cerqueira
- André Andrade
- ButterflyOfFire
- **Romanian**
- adrianbblk
- ButterflyOfFire
- Aditoo
- **Russian**
- Albakham
- ButterflyOfFire
- Evgeny Petrov
- Aditoo
- Павел Гастелло
- Andrew Zyabin
- Yaron Shahrabani
- **Serbian**
- Branko Kokanovic
- Burekz Finezt
- Aditoo
- ButterflyOfFire
- **Serbian (latin)**
- ButterflyOfFire
- Aditoo
- **Slovak**
- Aditoo
- ButterflyOfFire
- Ivan Pleva
- Marek Ľach
- Peter
- **Slovenian**
- Kristijan Tkalec
- Aditoo
- ButterflyOfFire
- **Spanish**
- Albakham
- ButterflyOfFire
- Carlos Mondragon
- Antón López
- Max Winkler
- Pablo de la Concepción Sanz
- Sergio Soriano
- Angeles Broullón
- Lothar Wolf
- Aditoo
- David Charte
- Emmanuel
- **Swedish**
- ButterflyOfFire
- Isak Holmström
- Shellkr
- Aditoo
- Elias Mårtenson
- Stefan Midjich
- Tim Stahel
- Jonas Hultén
- **Telugu**
- avndp
- Ranjith Tellakula
- Aditoo
- ButterflyOfFire
- Joseph Nuthalapati
- **Thai**
- ButterflyOfFire
- parnikkapore
- Thai Localization
- Aditoo
- **Turkish**
- Ali Demirtas
- ButterflyOfFire
- Aditoo
- **Ukrainian**
- alexcleac
- ButterflyOfFire
- Aditoo
- Ivan Verchenko
- **Welsh**
- carl morris
- Jaz-Michael King
- Owain Rhys Lewis
- Rhoslyn Prys
- Aditoo
- ButterflyOfFire
- Renato "Lond" Cerqueira
- Albakham
- Kevin Beynon
- **Armenian**
- Aditoo
- ButterflyOfFire
- **Latvian**
- Aditoo
- ButterflyOfFire
- Maigonis
- **Tamil**
- Aditoo
- ButterflyOfFire
- Prasanna Venkadesh
================================================
FILE: Aptfile
================================================
ffmpeg
libicu[0-9][0-9]
libicu-dev
libidn11
libidn11-dev
libpq-dev
libprotobuf-dev
libssl-dev
libxdamage1
libxfixes3
protobuf-compiler
zlib1g-dev
libcairo2
libcroco3
libdatrie1
libgdk-pixbuf2.0-0
libgraphite2-3
libharfbuzz0b
libpango-1.0-0
libpangocairo-1.0-0
libpangoft2-1.0-0
libpixman-1-0
librsvg2-2
libthai-data
libthai0
libvpx5
libxcb-render0
libxcb-shm0
libxrender1
================================================
FILE: CHANGELOG.md
================================================
# Changelog
This changelog will only include differences from upstream Mastodon. [You can find the upstream
changelog here.](https://github.com/tootsuite/mastodon/blob/master/CHANGELOG.md)
Please note that this project doesn't follow semantic versioning— for details please have a look at
our [README file].
[README file]: ./README.md
## Pre-Release 0.1.2 [2019-08-18 / v0.0.1.2]
This release fixes a bug from 0.1.1 before the 0.2.0 release.
It doesn't add any upstream changes, and is still based off of [Mastodon 2.9.0] plus the commits
up to [65efe892cf].
### Fixed
* Toot and biography lengths are offered as integers in the API instead of strings
* Thanks to [mthld] and [DagAgren] for finding the bug
* Thanks to [1011X] for the fix
[mthld]: https://github.com/mthld
[DagAgren]: https://github.com/DagAgren
## Pre-Release 0.1.1 [2019-07-28 / v0.0.1.1]
This release fixes a few bugs from 0.1.0 before the 0.2.0 release.
It doesn't add any upstream changes, and is still based off of [Mastodon 2.9.0] plus the commits
up to [65efe892cf].
### Fixed
* Toot and biography lengths are now on /api/v1/instance API, for better app integration
* Thanks to [ElliotBerriot] for testing 0.1.0 and finding the bug
* Thanks to [1011X] for the fix
* Toot and biography lengths can actually be saved in the admin UI
* Thanks to [ElliotBerriot] for testing 0.1.0 and finding the bug
* Thanks to [clarfon] for the fix
* All of the code has been fixed to include the proper project URL and docker image
* Thanks to [ElliotBerriot] for debugging 0.1.0 and finding the errors with the Docker files
* Thanks to [clarfon] for the fix
* Broadcasted version has been reverted to the Mastodon version, so that mastodon.py and other
libraries work until we find a better solution
* Thanks to [Frinkel] for testing 0.1.0 and finding the bug
* Thanks to [halcy] for providing insight into how mastodon.py works
* Thanks to [1011X] for the fix
* Blocking entire instance domains now gives a less judgmental message in the English locale
* Thanks to [TrechNex] for the fix
* Thanks to [mal0ki] and [clarfon] for reviewing the wording
* Florence-specific settings have been translated into Dutch
* Thanks to [rscmbbng] for the translations
* The [lastest typo] in the README was corrected
* Thanks to [ciderpunx] for the fix
* A few dependencies were updated to fix various security issues
* Prototype pollution vulnerabilities were fixed for handlebars and lodash
* Thanks to [1011X] for future-proofing CVE-2015-9284 (OAuth vulnerability)
[lastest typo]: https://github.com/florence-social/mastodon-fork/pull/106/files
[ciderpunx]: https://github.com/ciderpunx
[ElliotBerriot]: https://github.com/ElliotBerriot
[Frinkel]: https://github.com/Frinkel
[halcy]: https://github.com/halcy
[mal0ki]: https://github.com/mal0ki
[rscmbbng]: https://github.com/rscmbbng
[TrechNex]: https://github.com/TrechNex
### Special Thanks
* Thank you to everyone who jumped on the Florence train and set up their own instances! We'll try
and compile a list of Florence Mastodon instances some time before the next release.
* Thank you to @TrechNex for helping set up [installation instructions] on his website!
[installation instructions]: https://bobbymoss.com/index.html#install-florence-prerelease
## Pre-Release 0.1.0 [2019-06-18 / v0.0.1.0]
This release is based off of [Mastodon 2.9.0] plus the commits up to [65efe892cf].
[Mastodon 2.9.0]: https://github.com/tootsuite/mastodon/blob/v2.9.0/CHANGELOG.md
[65efe892cf]: https://github.com/tootsuite/mastodon/compare/c9eeb2e832b5b36a86028bbec7a353c32be510a7..65efe892cf56cd4f998de885bccc36e9231d8144
### Added
* Toot length can now be configured by an admin; default is 500
* Thanks to glitch.social and many other forks for the original code
* Thanks to [usbsnowcrash] for the Florence-specific code
* Thanks to [m4sk1n] for the Polish translation
* Thanks to [clarfon] and [Feufochmar] for the French translation
* Thanks to [1011X] and [skrlet13] for the Spanish translation
* Biography length can now be configured by an admin; default is 500
* Thanks to glitch.social and many other forks for the original code
* Thanks to [usbsnowcrash] for the Florence-specific code
* Thanks to [clarfon] and [Feufochmar] for the French translation
* Thanks to [1011X] and [skrlet13] for the Spanish translation
* Users can choose whether to receive DMs on the home timeline in their settings
* Thanks to glitch.social and many other forks for the original code
* Thanks to [usbsnowcrash] for the Florence-specific code
* Thanks to [clarfon] and [Feufochmar] for the French translation
* Thanks to [1011X] and [skrlet13] for the Spanish translation
* Spanish translations were updated to be more formal
* Thanks to [1011X] for the inital changes
* Thanks to [skrlet13] for offering feedback and further changes
[1011X]: https://github.com/1011X
[clarfon]: https://github.com/clarfon
[Feufochmar]: https://github.com/Feufochmar
[m4sk1n]: https://github.com/m4sk1n
[skrlet13]: https://github.com/skrlet13
[usbsnowcrash]: https://github.com/usbsnowcrash
### Special Thanks
* Thank you to @1011x, @jhaye, @lightdark, @maloki, @skrlet13, @melody, @stolas, @hak, @mecaka:
those who've been helping with governance, offering advice, and/or been working on this for the
past few months.
* Thank you to @woozle for hosting both the Wiki and Mattermost for us on their servers.
* Thank you to all the forkers out there who are providing us both with inspiration, actual code,
and conversation about how we can make the Fediverse a little bit better.
* Thank you to everyone that has been cheerleading us for the past year, helped us have the courage
to "Fork Off" from Mastodon, and also understood that we are working towards different
objectives. That is after all why you all joined us in the first place!
* Thank you to @mecaka who joined the team while @maloki was getting diagnosed, who helped push
through that time and bring us to where we are now.
* An additional thank you to those that joined the Mattermost server to keep the conversation alive
with us after we moved on from Discord!
================================================
FILE: CODE_OF_CONDUCT.md
================================================
### Table of Contents
- [Code of Conduct](#code-of-conduct)
- [Positive participation and communication](#positive-participation-and-communication)
- [Prohibited Behavior](#prohibited-behavior)
- [Discrimination](#discrimination)
- [Harassment and privacy violation](#harassment-and-privacy-violation)
- [Harmful and/or adult content](#harmful-andor-adult-content)
- [Where does this CoC apply and who does this CoC apply to?](#where-does-this-coc-apply-and-who-does-this-coc-apply-to)
- [What if someone violates this Code of Conduct while outside of Florence instances, or in a space or medium to which the Code does not apply?](#what-if-someone-violates-this-code-of-conduct-while-outside-of-florence-instances-or-in-a-space-or-medium-to-which-the-code-does-not-apply)
- [When Something Happens](#when-something-happens)
- [Example](#example)
- [How to make a Code Of Conduct Report](#how-to-make-a-code-of-conduct-report)
- [Information to include in your report](#information-to-include-in-your-report)
- [Code of Conduct Reporting Guide](#code-of-conduct-reporting-guide)
- [What happens after you file a report?](#what-happens-after-you-file-a-report)
- [Example](#example-1)
- [What if your report concerns a possible violation by a moderator?](#what-if-your-report-concerns-a-possible-violation-by-a-moderator)
- [How CoC Reports are handled by moderators](#how-coc-reports-are-handled-by-moderators)
- [Accountability for board members and moderators](#accountability-for-board-members-and-moderators)
- [Definition of Terms](#definition-of-terms)
- [Reference Codes of Conduct](#reference-codes-of-conduct)
# Code of Conduct
We strive to reduce barriers to access of our organization, our software and our community, as well as to dismantle any ableist assumptions and practices in our process. We recognize that there is no one solution for universal accessibility, and strive to provide alternatives and choices whenever possible.
The stakeholders of this project pledge to institute and abide by a consistent, transparent and accountable human-centered resolution process with a low bar to entry that allows every stakeholder a voice on decisions to do with structural changes and features of both the project's organization and software protocol.
If you support an idea, we would like you to help implement it. If you reject an idea, we ask you to help find alternatives.
## Positive participation and communication
Florence wants to encourage positive participation and communication, in order to make people feel welcome. Positive communication doesn't mean tone policing or that everyone always has to be positive about everything. It means that we want people to feel safe when bringing up their concerns, and create a space where people can have the difficult conversations. To attain this together, we want to:
* Maintain respectful and effective communication.
* Use welcoming and inclusive language.
* Show kindness and respect towards others.
* Encourage and promote the ideas of others.
* Be respectful of differing viewpoints and experiences.
* Assume good faith.
* Understand the challenges in online discussion.
* Give others the chance to improve.
* Keep criticism constructive.
* Take criticism constructively.
* Respect others’ privacy.
* Avoid sexualized language without consent of all parties involved.
* Don’t resort to personal attacks or condescension.
* No hate speech or similar.
* Promote and teach respectful, effective communication.
* Welcome contributions to the project in all the forms they take.
## Prohibited Behavior
There is also going to be behaviour that will be more strictly prohibited.
### Discrimination
* Do not participate in discrimination or comments promoting or reinforcing the existing systems of oppression of any groups or people based on gender, gender expression, race, ethnicity, nationality, sexuality, religion, disability, mental illness, neurodivergence, personal appearance, physical appearance, body size, age, or class.
* Do not claim “reverse-isms,” e.g. “reverse racism”
* Do not participate in xenophobia or violent nationalism.
### Harassment and privacy violation
* Do not contribute to behaviour intended to stalk, harass, or intimidate other users.
* Do not continue to engage with a user that has specifically asked you to stop, regardless of whether they have blocked or muted you. Do not ask others to engage with them on your behalf.
* Do not participate in aggregating, posting, and/or disseminating a person’s demographic, personal, or private data without their express permission.
* Do not post or circulate disseminate a person’s posts, including screen captures or any other content, without their express permission, unless to protect others from the bad behaviour displayed.
* Do not post or circulate libel, slander, or other known disinformation.
### Harmful and/or adult content
* Do not distribute sexual or violent imagery without a Content Warning.
* Do not distribute any sexualized depictions of minors, in any way. (This includes drawings and 3D renders.)
## Where does this CoC apply and who does this CoC apply to?
This code of conduct applies to all official public discussion forums related to this project, including but not limited to public chat, forums, and comments on code.
This code applies to any member of the community participating in discussions, contributing to the project, or otherwise discussing the project publicly.
It also would apply in the future main Florence instance. Members of the instance must agree to the CoC.
## What if someone violates this Code of Conduct while outside of Florence instances, or in a space or medium to which the Code does not apply?
Use your judgement, but always feel free to let us know -- we’d rather know more than less. If the person who violates the Code of Conduct intersects with the Florence community in any way, we encourage you to make a report, even if the offending behavior itself was outside of our space.
## When Something Happens
If you see behavior that is not aligned with this Code of Conduct, here's how you can handle it.
Consider the situation and if it might be useful to screenshot messages in case the messages in question are deleted.
The person may not be completely aware of the Code of Conduct or specific items within it. **If you consider it safe** and you are comfortable in doing so you can start by letting them know that their actions weren't appropriate and point them to specific parts of the Code of Conduct. One suggestion is to send a private message first, because this can avoid potentially embarrassing someone. Politely and patiently let the person know that their behavior isn’t in line with the Code of Conduct. Share the code of conduct with them and refer to specific parts which you think their behavior is not in line with. You may ask them to adjust their behavior or possibly edit or delete a message.
**If you don’t feel safe or comfortable** telling that person, or they refuse to change their behavior or delete text which is not in line with the CoC, it may be time to report the incident. See how to report an incident in the following section. You may also directly contact admins or moderators, especially if the behavior requires immediate attention
### Example
Mary calls John an ableist slur in a discussion chat because he made a mistake. Ana tells Mary via DM that she shouldn't do that because it reinforces the oppression of disabled or neurodivergent people, but Mary calls Ana the same slur, and says that she shouldn't take this so seriously. Then, Ana proceeds to report Mary to a moderator.
## How to make a Code Of Conduct Report
If you would like to report a Code of Conduct violation contact our moderators via email at report@florencesoc.org. Regardless of outcome, they (or committee) will respond in private to first acknowledge your report within three days and later with an explanation of the actions taken within a time frame of 14 days.
Please include any relevant details, links, screenshots, context, or other information that may be used to better understand and resolve the situation.
### Information to include in your report
* Contact information for the reporter including name, email and username.
* You may report incidents anonymously if you are uncomfortable providing your contact information. However, this may hamper the investigation.
* The names of all people directly involved in the incident, including relevant nicknames or pseudonyms.
* Include witness names if possible.
* Time and forum/location where the incident occurred. Be specific.
* Details about what happened. Note any supporting materials, such as message screencaps, IRC logs, or emails.
* Additional context for the situation, if appropriate.
* Whether or not the incident is ongoing.
* Any additional information that is relevant to investigating and resolving the incident.
## Code of Conduct Reporting Guide
Most people will feel more comfortable reporting the code of conduct violation rather than directly confronting it, and we encourage those people to email report@florencesoc.org. **All reports will be kept confidential.** In some cases we may determine that a public statement will need to be made in order to inform the broader community. If this need arises, the identities of all parties involved will remain confidential unless those individuals instruct us otherwise.
**If you believe anyone is in physical danger, please notify appropriate law enforcement first.** If you are unsure what law enforcement agency is appropriate, please include this in your report and we will attempt to notify them.
We encourage you to report incidents, even if you are unsure whether the incident is a violation, or whether the space where it happened is covered by this Code of Conduct. We would much rather have a few extra reports where we decide to take no action, than miss a report of an actual violation. We do not look negatively on you if we find the incident is not a violation. Knowing about incidents that are not violations, or happen outside our spaces, can help us to improve the Code of Conduct and the processes surrounding it.
## What happens after you file a report?
You will receive an email from the moderators acknowledging receipt. The current Working Group members are [@1011X@mastodon.social](https://mastodon.social/@1011X), [@jhaye@social.libre.fi](https://social.libre.fi/jhaye), and [@skrlet13@chile.masto.host](https://chile.masto.host/@skrlet13).
The moderators will meet to review the incident and determine:
* What happened based on the perspective of all involved.
* Whether this event constitutes a code of conduct violation.
* Who the bad actor was.
* Whether this is an ongoing situation, or if there is a threat to anyone's physical safety.
We promise to acknowledge receipt within 72 hours (and will aim for a faster response). If this is determined to be an ongoing incident or a threat to physical safety, the working groups' immediate priority will be to protect everyone involved. This means we may delay an "official" response until we believe that the situation has ended and that everyone is physically safe.
Once the moderators have a complete account of the events, they will make a decision as to how to respond. Responses may include:
* Nothing (if we determine no violation occurred).
* A private gentle reminder of the code of conduct.
* A public gentle reminder of the code of conduct.
* A private reprimand from the working group to the individual(s) involved.
* A public reprimand.
* An imposed vacation (i.e. asking someone to "take a week off" from a space).
* A temporary (for a specified time) or indefinite ban from some or all Florence Work Spaces.
We'll respond within one week to the person who filed the report with either a resolution or an explanation of why the situation is not yet resolved.
Once we've determined our final action, we'll contact the original reporter to let them know what action (if any) we'll be taking. We'll take into account feedback from the reporter on the appropriateness of our response, but we don't guarantee we'll act on it.
### Example
Ana reports Mary. She explains the situation and gives the links and screenshots as proof to the moderator. The moderator examines the case and decides to give Mary a warning. Mary is told this and she will no longer be able to participate if she does that again. Ana is notified of the actions taken by the moderator.
## What if your report concerns a possible violation by a moderator?
The entire code of conduct working group will see all incident reports sent to report@florencesoc.org. Anyone directly involved in the incident will be immediately recused and will not participate in any discussions of the incident or its resolution.
* If you are uncomfortable submitting a report that will be seen by a person involved in the incident, you can instead send the report directly to the other moderators for resolution.
## How CoC Reports are handled by moderators
When a Code of Conduct report is made, moderators should take the issue seriously. If it’s not possible to deal with the report immediately, moderators should send a response saying that the report was received and is being looked into.
Moderators will take all reports seriously and prioritize the well-being and comfort of the person making the report recipients of the violation over the comfort of the violator.
As soon as available, a moderator will join, identify themselves, and take further action.
You should offer people the kind of support they ask for. If you aren't sure what you're offering will be helpful, ask if that type of thing would be useful.
## Accountability for board members and moderators
Board members, moderators, and other community members who contributed to running this project will be held to the same code of conduct. Reports against those in positions of power will be taken seriously and handled with respect, prioritizing the safety and well-being of anyone who makes such a report.
## Definition of Terms
We acknowledge that systemic (structural) oppression works on a society-wide level, enacted by laws and policies, institutions, and culture. It is reflected in and reinforced by individuals’ discriminatory beliefs and actions. As such, we expect people’s commitment to ending oppression to extend to their own behaviour.
* **Ableism**: Discrimination against disabled, ill, and/or neurodivergent people.
* **Disability**: A physical or mental condition that limits a person's abilities to interact with their environment.
* **Gender**: Social construct tied to the perception of social and cultural roles. The most common are male and female.
* **Gender expression**: Includes personal behavior, mannerisms, interests, and appearance associated with gender in a particular cultural context.
* **Harassment**: Behaviour towards a person that causes mental or emotional suffering, which includes repeated unwanted contacts without a reasonable purpose, insults, threats, touching, or offensive language.
* **Hate speech (includes Holocaust denial or Nazi symbolism)**: Speech that oppresses, dehumanizes, and endangers marginalized people or anyone perceived to have a particular marginalization.
* **Homophobia**: Discrimination against gay people and people who are thought to be gay, incl. the use of homophobic terms where they cause harm.
* **Inclusivity**: Attitude that recognises and considers people's differences in order to create a welcoming environment without requiring minority assimilation to the majority.
* **Marginalization**: A social phenomenon by which a minority or sub-group is excluded, and their needs or desires ignored.
* **Mental illness**: Behavioral or mental pattern that causes significant distress or impairment of personal functioning.
* **Microaggressions**: brief and commonplace daily verbal, behavioural, or environmental indignities, whether intentional or unintentional, that communicate hostile, derogatory, or negative prejudicial slights and insults toward any group, particularly culturally marginalized groups.
* **Neurodivergence**: Behavioral or mental pattern that doesn't cause distress but affects the way the person interacts with the environment.
* **Race**: Social construct tied to phenotypical and social characteristics of a group of people.
* **Racism**: Discrimination against people of color, including but not limited to microaggressions, tone policing and slurs.
* **Reverse-isms** (like “reverse racism”): Claims by people privileged on an axis that they are somehow oppressed by people marginalized on the same axis.
* **Sexism**: Discrimination against women and non-binary people. Including derogatory language about women or people perceived as women.
* **Sexual orientation**: The pattern of attraction to 0 or more genders.
* **Transphobia**: Discrimination against trans people. This includes arguing someone’s gender, policing their presentation, and malicious misgendering.
* **Tone Policing**: Attempts to dismiss marginalized people's perspectives by claiming their tone, rather than the content, is unappealing.
## Reference Codes of Conduct
* http://open-zfs.org/wiki/Reporting_Guide
* https://wiki.snowdrift.coop/community/conduct
* https://wealljs.org/code-of-conduct
* https://us.pycon.org/2018/about/code-of-conduct/
* https://www.coc-handbook.com/
* https://github.com/ayojs/ayo/blob/latest/CODE_OF_CONDUCT.md
* https://www.freebsd.org/internal/code-of-conduct.html
* http://geekfeminism.wikia.com/wiki/Code_of_conduct_evaluations
* https://www.rust-lang.org/en-US/conduct.html
* https://docs.google.com/document/d/1V2-YNCRW-Ya2tFzapwLMPMbqWAJZNw4qE40cIWqZti8/edit# (NOVA DSA Socialist Meetings: Participation Guide) This ones nice because it's specifically designed for meetings run with a similar format to ours, though theirs take place offline.
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.
================================================
FILE: CONTRIBUTING.md
================================================
Contributing
============
Thank you for considering contributing to Florence Mastodon
You can contribute in the following ways:
- Finding and reporting bugs
- Translating the Mastodon interface into various languages
- Contributing code to Mastodon by fixing bugs or implementing features
- Improving the documentation
- Joining the conversation on our [Chat]
- Participate in OutReach or other activities
- Proof-read
- And much more
If you want to contribute with monetary support you can do so via our [Open Collective](https://opencollective.com/florence-social) (which isn't publicly launched yet)
## Adding an Issue for Bug Report or Feature Request
Bug reports and feature suggestions can be submitted to [GitHub Issues](https://github.com/florence-social/mastodon-fork/issues). Do not worry about submitting duplicates, but please make a cursory search to see if any similar reports or request have already been resolved or rejected in the past using the search function. If you find a bug or feature request which matches yours you can join the conversation by adding your commentary to that issue.
Try to describe your issue, the use-case, and additional considerations when submitting a feature request.
## Translations
We will be using Weblate for translations in the near future, but we're waiting for a free account for Open Source Projects via Weblate themselves, in the meanwhile you can submit PRs with translations, or wait. We will update this document as soon as Weblate is available for translations, and will make public announcements elsewhere.
## Documentation
Documentation work will be added soon, and in the meanwhile you can join us in our [Chat] for documentation.
[Chat]: https://chat.florencesoc.org/signup_user_complete/?id=2a7237f68937b2c4a99ca25c156e6915
================================================
FILE: Capfile
================================================
# frozen_string_literal: true
require 'capistrano/setup'
require 'capistrano/deploy'
require 'capistrano/scm/git'
install_plugin Capistrano::SCM::Git
require 'capistrano/rbenv'
require 'capistrano/bundler'
require 'capistrano/yarn'
require 'capistrano/rails/assets'
require 'capistrano/rails/migrations'
Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r }
================================================
FILE: Dockerfile
================================================
FROM ubuntu:18.04 as build-dep
# Use bash for the shell
SHELL ["bash", "-c"]
# Install Node
ENV NODE_VER="8.15.0"
RUN echo "Etc/UTC" > /etc/localtime && \
apt update && \
apt -y install wget make gcc g++ python && \
cd ~ && \
wget https://nodejs.org/download/release/v$NODE_VER/node-v$NODE_VER.tar.gz && \
tar xf node-v$NODE_VER.tar.gz && \
cd node-v$NODE_VER && \
./configure --prefix=/opt/node && \
make -j$(nproc) > /dev/null && \
make install
# Install jemalloc
ENV JE_VER="5.1.0"
RUN apt update && \
apt -y install autoconf && \
cd ~ && \
wget https://github.com/jemalloc/jemalloc/archive/$JE_VER.tar.gz && \
tar xf $JE_VER.tar.gz && \
cd jemalloc-$JE_VER && \
./autogen.sh && \
./configure --prefix=/opt/jemalloc && \
make -j$(nproc) > /dev/null && \
make install_bin install_include install_lib
# Install ruby
ENV RUBY_VER="2.6.1"
ENV CPPFLAGS="-I/opt/jemalloc/include"
ENV LDFLAGS="-L/opt/jemalloc/lib/"
RUN apt update && \
apt -y install build-essential \
bison libyaml-dev libgdbm-dev libreadline-dev \
libncurses5-dev libffi-dev zlib1g-dev libssl-dev && \
cd ~ && \
wget https://cache.ruby-lang.org/pub/ruby/${RUBY_VER%.*}/ruby-$RUBY_VER.tar.gz && \
tar xf ruby-$RUBY_VER.tar.gz && \
cd ruby-$RUBY_VER && \
./configure --prefix=/opt/ruby \
--with-jemalloc \
--with-shared \
--disable-install-doc && \
ln -s /opt/jemalloc/lib/* /usr/lib/ && \
make -j$(nproc) > /dev/null && \
make install
ENV PATH="${PATH}:/opt/ruby/bin:/opt/node/bin"
RUN npm install -g yarn && \
gem install bundler && \
apt update && \
apt -y install git libicu-dev libidn11-dev \
libpq-dev libprotobuf-dev protobuf-compiler
COPY Gemfile* package.json yarn.lock /opt/mastodon/
RUN cd /opt/mastodon && \
bundle install -j$(nproc) --deployment --without development test && \
yarn install --pure-lockfile
FROM ubuntu:18.04
# Copy over all the langs needed for runtime
COPY --from=build-dep /opt/node /opt/node
COPY --from=build-dep /opt/ruby /opt/ruby
COPY --from=build-dep /opt/jemalloc /opt/jemalloc
# Add more PATHs to the PATH
ENV PATH="${PATH}:/opt/ruby/bin:/opt/node/bin:/opt/mastodon/bin"
# Create the mastodon user
ARG UID=991
ARG GID=991
RUN apt update && \
echo "Etc/UTC" > /etc/localtime && \
ln -s /opt/jemalloc/lib/* /usr/lib/ && \
apt install -y whois wget && \
addgroup --gid $GID mastodon && \
useradd -m -u $UID -g $GID -d /opt/mastodon mastodon && \
echo "mastodon:`head /dev/urandom | tr -dc A-Za-z0-9 | head -c 24 | mkpasswd -s -m sha-256`" | chpasswd
# Install mastodon runtime deps
RUN apt -y --no-install-recommends install \
libssl1.1 libpq5 imagemagick ffmpeg \
libicu60 libprotobuf10 libidn11 libyaml-0-2 \
file ca-certificates tzdata libreadline7 && \
apt -y install gcc && \
ln -s /opt/mastodon /mastodon && \
gem install bundler && \
rm -rf /var/cache && \
rm -rf /var/lib/apt/lists/*
# Add tini
ENV TINI_VERSION="0.18.0"
ENV TINI_SUM="12d20136605531b09a2c2dac02ccee85e1b874eb322ef6baf7561cd93f93c855"
ADD https://github.com/krallin/tini/releases/download/v${TINI_VERSION}/tini /tini
RUN echo "$TINI_SUM tini" | sha256sum -c -
RUN chmod +x /tini
# Copy over mastodon source, and dependencies from building, and set permissions
COPY --chown=mastodon:mastodon . /opt/mastodon
COPY --from=build-dep --chown=mastodon:mastodon /opt/mastodon /opt/mastodon
# Run mastodon services in prod mode
ENV RAILS_ENV="production"
ENV NODE_ENV="production"
# Tell rails to serve static files
ENV RAILS_SERVE_STATIC_FILES="true"
# Set the run user
USER mastodon
# Precompile assets
RUN cd ~ && \
OTP_SECRET=precompile_placeholder SECRET_KEY_BASE=precompile_placeholder rails assets:precompile && \
yarn cache clean
# Set the work dir and the container entry point
WORKDIR /opt/mastodon
ENTRYPOINT ["/tini", "--"]
================================================
FILE: Gemfile
================================================
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '>= 2.4.0', '< 2.7.0'
gem 'pkg-config', '~> 1.3'
gem 'puma', '~> 3.12'
gem 'rails', '~> 5.2.3'
gem 'thor', '~> 0.20'
gem 'hamlit-rails', '~> 0.2'
gem 'pg', '~> 1.1'
gem 'makara', '~> 0.4'
gem 'pghero', '~> 2.2'
gem 'dotenv-rails', '~> 2.7'
gem 'aws-sdk-s3', '~> 1.41', require: false
gem 'fog-core', '<= 2.1.0'
gem 'fog-openstack', '~> 0.3', require: false
gem 'paperclip', '~> 6.0'
gem 'paperclip-av-transcoder', '~> 0.6'
gem 'streamio-ffmpeg', '~> 3.0'
gem 'blurhash', '~> 0.1'
gem 'active_model_serializers', '~> 0.10'
gem 'addressable', '~> 2.6'
gem 'bootsnap', '~> 1.4', require: false
gem 'browser'
gem 'charlock_holmes', '~> 0.7.6'
gem 'iso-639'
gem 'chewy', '~> 5.0'
gem 'cld3', '~> 3.2.4'
gem 'devise', '~> 4.7'
gem 'devise-two-factor', '~> 3.0'
group :pam_authentication, optional: true do
gem 'devise_pam_authenticatable2', '~> 9.2'
end
gem 'net-ldap', '~> 0.10'
gem 'omniauth-cas', '~> 1.1'
gem 'omniauth-rails_csrf_protection', '~> 0.1'
gem 'omniauth-saml', '~> 1.10'
gem 'omniauth', '~> 1.9'
gem 'doorkeeper', '~> 5.1'
gem 'fast_blank', '~> 1.0'
gem 'fastimage'
gem 'goldfinger', '~> 2.1'
gem 'hiredis', '~> 0.6'
gem 'redis-namespace', '~> 1.5'
gem 'htmlentities', '~> 4.3'
gem 'http', '~> 3.3'
gem 'http_accept_language', '~> 2.1'
gem 'http_parser.rb', '~> 0.6', git: 'https://github.com/tmm1/http_parser.rb', ref: '54b17ba8c7d8d20a16dfc65d1775241833219cf2'
gem 'httplog', '~> 1.3'
gem 'idn-ruby', require: 'idn'
gem 'kaminari', '~> 1.1'
gem 'link_header', '~> 0.0'
gem 'mime-types', '~> 3.2', require: 'mime/types/columnar'
gem 'nokogiri', '~> 1.10'
gem 'nsa', '~> 0.2'
gem 'oj', '~> 3.7'
gem 'ostatus2', '~> 2.0'
gem 'ox', '~> 2.10'
gem 'posix-spawn', git: 'https://github.com/rtomayko/posix-spawn', ref: '58465d2e213991f8afb13b984854a49fcdcc980c'
gem 'pundit', '~> 2.0'
gem 'premailer-rails'
gem 'rack-attack', '~> 6.0'
gem 'rack-cors', '~> 1.0', require: 'rack/cors'
gem 'rails-i18n', '~> 5.1'
gem 'rails-settings-cached', '~> 0.6'
gem 'redis', '~> 4.1', require: ['redis', 'redis/connection/hiredis']
gem 'mario-redis-lock', '~> 1.2', require: 'redis_lock'
gem 'rqrcode', '~> 0.10'
gem 'sanitize', '~> 5.0'
gem 'sidekiq', '~> 5.2'
gem 'sidekiq-scheduler', '~> 3.0'
gem 'sidekiq-unique-jobs', '~> 6.0'
gem 'sidekiq-bulk', '~>0.2.0'
gem 'simple-navigation', '~> 4.0'
gem 'simple_form', '~> 4.1'
gem 'sprockets-rails', '~> 3.2', require: 'sprockets/railtie'
gem 'stoplight', '~> 2.1.3'
gem 'strong_migrations', '~> 0.4'
gem 'tty-command', '~> 0.8', require: false
gem 'tty-prompt', '~> 0.19', require: false
gem 'twitter-text', '~> 1.14'
gem 'tzinfo-data', '~> 1.2019'
gem 'webpacker', '~> 4.0'
gem 'webpush'
gem 'json-ld', '~> 3.0'
gem 'json-ld-preloaded', '~> 3.0'
gem 'rdf-normalize', '~> 0.3'
group :development, :test do
gem 'fabrication', '~> 2.20'
gem 'fuubar', '~> 2.4'
gem 'i18n-tasks', '~> 0.9', require: false
gem 'pry-byebug', '~> 3.7'
gem 'pry-rails', '~> 0.3'
gem 'rspec-rails', '~> 3.8'
end
group :production, :test do
gem 'private_address_check', '~> 0.5'
end
group :test do
gem 'capybara', '~> 3.22'
gem 'climate_control', '~> 0.2'
gem 'faker', '~> 1.9'
gem 'microformats', '~> 4.1'
gem 'rails-controller-testing', '~> 1.0'
gem 'rspec-sidekiq', '~> 3.0'
gem 'simplecov', '~> 0.16', require: false
gem 'webmock', '~> 3.5'
gem 'parallel_tests', '~> 2.29'
end
group :development do
gem 'active_record_query_trace', '~> 1.6'
gem 'annotate', '~> 2.7'
gem 'better_errors', '~> 2.5'
gem 'binding_of_caller', '~> 0.7'
gem 'bullet', '~> 6.0'
gem 'letter_opener', '~> 1.7'
gem 'letter_opener_web', '~> 1.3'
gem 'memory_profiler'
gem 'rubocop', '~> 0.71', require: false
gem 'rubocop-rails', '~> 2.0', require: false
gem 'brakeman', '~> 4.5', require: false
gem 'bundler-audit', '~> 0.6', require: false
gem 'capistrano', '~> 3.11'
gem 'capistrano-rails', '~> 1.4'
gem 'capistrano-rbenv', '~> 2.1'
gem 'capistrano-yarn', '~> 2.0'
gem 'derailed_benchmarks'
gem 'stackprof'
end
group :production do
gem 'lograge', '~> 0.11'
gem 'redis-rails', '~> 5.0'
end
gem 'concurrent-ruby', require: false
================================================
FILE: LICENSE
================================================
GNU AFFERO GENERAL PUBLIC LICENSE
Version 3, 19 November 2007
Copyright (C) 2007 Free Software Foundation, Inc.
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU Affero General Public License is a free, copyleft license for
software and other kinds of works, specifically designed to ensure
cooperation with the community in the case of network server software.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
our General Public Licenses are intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
Developers that use our General Public Licenses protect your rights
with two steps: (1) assert copyright on the software, and (2) offer
you this License which gives you legal permission to copy, distribute
and/or modify the software.
A secondary benefit of defending all users' freedom is that
improvements made in alternate versions of the program, if they
receive widespread use, become available for other developers to
incorporate. Many developers of free software are heartened and
encouraged by the resulting cooperation. However, in the case of
software used on network servers, this result may fail to come about.
The GNU General Public License permits making a modified version and
letting the public access it on a server without ever releasing its
source code to the public.
The GNU Affero General Public License is designed specifically to
ensure that, in such cases, the modified source code becomes available
to the community. It requires the operator of a network server to
provide the source code of the modified version running there to the
users of that server. Therefore, public use of a modified version, on
a publicly accessible server, gives the public access to the source
code of the modified version.
An older license, called the Affero General Public License and
published by Affero, was designed to accomplish similar goals. This is
a different license, not a version of the Affero GPL, but Affero has
released a new version of the Affero GPL which permits relicensing under
this license.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU Affero General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Remote Network Interaction; Use with the GNU General Public License.
Notwithstanding any other provision of this License, if you modify the
Program, your modified version must prominently offer all users
interacting with it remotely through a computer network (if your version
supports such interaction) an opportunity to receive the Corresponding
Source of your version by providing access to the Corresponding Source
from a network server at no charge, through some standard or customary
means of facilitating copying of software. This Corresponding Source
shall include the Corresponding Source for any work covered by version 3
of the GNU General Public License that is incorporated pursuant to the
following paragraph.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the work with which it is combined will remain governed by version
3 of the GNU General Public License.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU Affero General Public License from time to time. Such new versions
will be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU Affero General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU Affero General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU Affero General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
Copyright (C)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see .
Also add information on how to contact you by electronic and paper mail.
If your software can interact with users remotely through a computer
network, you should also make sure that it provides a way for users to
get its source. For example, if your program is a web application, its
interface could display a "Source" link that leads users to an archive
of the code. There are many ways you could offer source, and different
solutions will be better for different programs; see section 13 for the
specific requirements.
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU AGPL, see
.
================================================
FILE: Procfile
================================================
web: bundle exec puma -C config/puma.rb
worker: bundle exec sidekiq
================================================
FILE: Procfile.dev
================================================
web: env PORT=3000 bundle exec puma -C config/puma.rb
sidekiq: env PORT=3000 bundle exec sidekiq
stream: env PORT=4000 yarn run start
webpack: ./bin/webpack-dev-server --listen-host 0.0.0.0
================================================
FILE: README.md
================================================
Florence Mastodon
=================
Mastodon is a **free, open-source social network server** based on ActivityPub. This is *not* the
official version of Mastodon; this is a separate version (i.e. a fork) maintained by Florence. For
more information on Mastodon, you can see the [official website] and the [upstream repo].
[official website]: https://joinmastodon.org
[upstream repo]: https://github.com/tootsuite/mastodon
This version of Mastodon will include much-wanted changes by the community that are not included
in the upstream version of Mastodon. Migrating from the latest stable release of Mastodon to
Florence's Mastodon will always be possible, to ensure that everyone can benefit from these
changes.
## Versioning
Florence Mastodon uses a four-numbered versioning system, loosely based upon [semantic
versioning]. The four numbers are:
* **Compatibility**: Increased when federation, app compatibility, etc. are changed in a
non-compatibile way.
* **Feel**: Increased when user experience is changed strongly enough to feel different, i.e. more
than just small new features.
* **Features**: Increased when new features are added. Reset to zero when **feel** version is
bumped.
* **Hotfixes**: Increased when fixes are substantial enough to release a new version without any new
features. Reset to zero when **feature** version is bumped.
For now, because this versioning system hasn't been strongly adopted, releases will be annotated as
**Pre-Release x.y.z**, which is equivalent to version 0.x.y.z.
[semantic versioning]: https://semver.org
## Release timeline
Pre-release 0.1.0 is mostly equivalent to Mastodon 2.9.0, with some extra changes added in.
Right now, the goal before pre-release 1.0.0 is to incorporate existing, already-developed changes
into the fork so that people have a central version to upgrade to. Once we've finally gotten the
software to the point where we like it, we will release the first official release, which will be
named something special. Stay tuned!
## License
Copyright (C) 2016-2019 Florence, Eugen Rochko, and many other Mastodon contributors; see [AUTHORS.md](AUTHORS.md).
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with this program. If not, see .
================================================
FILE: Rakefile
================================================
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
require File.expand_path('../config/application', __FILE__)
Rails.application.load_tasks
================================================
FILE: Vagrantfile
================================================
# -*- mode: ruby -*-
# vi: set ft=ruby :
ENV["PORT"] ||= "3000"
$provision = <
中国域名网站