forked from mastodon/mastodon
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add public blocks to /about/blocks (mastodon#11298)
* Add automatic blocklist display in /about/blocks Inspired by https://github.com/Gargron/mastodon.social-misc * Add admin option to set who can see instance blocks * Normalize locales files * Rename “Sandbox” to “Silence” for consistency * Disable /about/blocks when in whitelist mode * Optionally display rationale for domain blocks * Only display domain blocks that have user-facing limitations, and order them * Redesign table of blocked domains to better handle long domain names and rationales * Change domain blocks ordering now that rationales aren't displayed right away * Only show explanation for block severities actually in use * Reword instance block explanations and add disclaimer for public fetch mode
- Loading branch information
1 parent
fc5684b
commit 18629b4
Showing
10 changed files
with
197 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
- content_for :page_title do | ||
= t('domain_blocks.title', instance: site_hostname) | ||
|
||
.grid | ||
.column-0 | ||
.box-widget.rich-formatting | ||
%h2= t('domain_blocks.blocked_domains') | ||
%p= t('domain_blocks.description', instance: site_hostname) | ||
.table-wrapper | ||
%table.blocks-table | ||
%thead | ||
%tr | ||
%th= t('domain_blocks.domain') | ||
%th.severity-column= t('domain_blocks.severity') | ||
- if @show_rationale | ||
%th.button-column | ||
%tbody | ||
- if @blocks.empty? | ||
%tr | ||
%td{ colspan: @show_rationale ? 3 : 2 }= t('domain_blocks.no_domain_blocks') | ||
- else | ||
- @blocks.each_with_index do |block, i| | ||
%tr{ class: i % 2 == 0 ? 'even': nil } | ||
%td{ title: block.domain }= block.domain | ||
%td= block_severity_text(block) | ||
- if @show_rationale | ||
%td | ||
- if block.public_comment.present? | ||
%button.icon-button{ title: t('domain_blocks.show_rationale'), 'aria-label' => t('domain_blocks.show_rationale') } | ||
= fa_icon 'chevron-down fw', 'aria-hidden' => true | ||
- if @show_rationale | ||
- if block.public_comment.present? | ||
%tr.rationale.hidden | ||
%td{ colspan: 3 }= block.public_comment.presence | ||
%h2= t('domain_blocks.severity_legend.title') | ||
- if @blocks.any? { |block| block.reject_media? } | ||
%h3= t('domain_blocks.media_block') | ||
%p= t('domain_blocks.severity_legend.media_block') | ||
- if @blocks.any? { |block| block.severity == 'silence' } | ||
%h3= t('domain_blocks.silence') | ||
%p= t('domain_blocks.severity_legend.silence') | ||
- if @blocks.any? { |block| block.severity == 'suspend' } | ||
%h3= t('domain_blocks.suspension') | ||
%p= t('domain_blocks.severity_legend.suspension') | ||
- if public_fetch_mode? | ||
%p= t('domain_blocks.severity_legend.suspension_disclaimer') | ||
.column-1 | ||
= render 'application/sidebar' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters