From a0b4f1759cbb0a44bdea7731a39a566a5cefd4c2 Mon Sep 17 00:00:00 2001 From: alcapurrias Date: Tue, 5 Sep 2023 23:35:17 +0200 Subject: [PATCH 1/4] Update 'resources/views/front/about.blade.php' Minor spelling and grammar changes, updated the case for headings as well. --- resources/views/front/about.blade.php | 34 +++++++++++++-------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/resources/views/front/about.blade.php b/resources/views/front/about.blade.php index f3fb414..4de0f76 100644 --- a/resources/views/front/about.blade.php +++ b/resources/views/front/about.blade.php @@ -4,58 +4,58 @@ @parent
-

What is The Bad Space?

+

What Is The Bad Space?

The Bad Space project was born from a need to effectively identify instances that house bad actors and are poorly moderated, which puts marginalized communities at risk.

It is an extension of the #fediblock hashtag created by - Artist Marcia X + Artist Marcia X, with additional support from - Ginger + Ginger, to provide a catalog of instances that seek to cause harm and reduce the quality of experience in the fediverse.

Technical support provided by - Ro. + Ro.

-

How does it work?

-

The Bad Space is a collaboration of instances committed to actively moderating against racism, sexism, heterosexism, transphobia, ableism, casteism, or religion.

+

How Does It Work?

+

The Bad Space is a collaboration of instances committed to actively moderating against racism, sexism, heterosexism, transphobia, ableism, casteism, and religion.

These instances have permitted The Bad Space to read their respective blocklists to create a composite directory of sites tagged for the behavior above that can be searched and, through a public API, can be integrated into external services.

Current Sources:

- Maston:
+ Mastodon:
@foreach($sources as $source) @if($source->format == 'json') {{$source->url}}
@endif - @endforeach - Custom CSV
+ @endforeach
+ Custom CSV:
@foreach($sources as $source) @if($source->format == 'csv') {{$source->url}}
@endif @endforeach -

How do I use it?

+

How Do I Use It?

The Bad Space is meant to be a resource for anyone looking to improve the quality of their online experience by creating a tool that catalogs sources for harassment and abuse. There are several options for how it can be used.

Search

- To see if a site is listed in the database, use the + To see if an instance is listed in the database, use the search feature - to search for that URL. If it is in the database, information for that instance will be returned and associated instances if applicable. + to search for its URL. If it is in the database, information for that instance will be returned and include associated instances, if applicable.

CSV Exports

- For a list of the current locations being tracked, click on one of the links below to download a dynamically generated CSV file that can be consumed as a blocklist. More formats will be added over time. -
+ For a list of the current instances being tracked, click on one of the links below to download a dynamically generated CSV file that can be consumed as a blocklist. More formats will be added over time. +

For Mastodon

API

- The Bad Space has a public api that can be used to search the database programatically and return results in the JSON format. The API can be accsess at
+ The Bad Space has a public API that can be used to search the database programatically and return results in the JSON format. The API can be accessed at
https://thebad.space/api/v1/search by posting a JSON object with the following format: - {"url":"search.url"}
- Data from API request will be returned in the follow format:
+ {"url":"search.url"}

+ Data from API requests will be returned in the following format:
         {
-- 
2.30.2


From 1f65756bddaa69f16a655670e1377b65c117d4fc Mon Sep 17 00:00:00 2001
From: alcapurrias 
Date: Tue, 5 Sep 2023 23:52:43 +0200
Subject: [PATCH 2/4] Update 'README.md'

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index c59d562..f660d95 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 # The Bad Space
 
-A searcable catalog of the worst places on the web.
+A searchable catalog of the worst places on the web.
 
 More features incoming
 
-- 
2.30.2


From faef26e528f991564c2351ac9cbd90076ef5c7ae Mon Sep 17 00:00:00 2001
From: alcapurrias 
Date: Tue, 5 Sep 2023 23:59:09 +0200
Subject: [PATCH 3/4] Update 'resources/views/front/location.blade.php'

---
 resources/views/front/location.blade.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/resources/views/front/location.blade.php b/resources/views/front/location.blade.php
index cad5f39..d9a7859 100644
--- a/resources/views/front/location.blade.php
+++ b/resources/views/front/location.blade.php
@@ -25,10 +25,10 @@
           Suspended Count: {{$location->block_count}}
 
         @endif
-        
- This count reflects the number of times this instance has been suspended or silenced be two or more Current Sources +

+ This count reflects the number of times this instance has been suspended or silenced by two or more Current Sources. -
UPDATED : {{$updated}} +

UPDATED: {{$updated}}
@endsection \ No newline at end of file -- 2.30.2 From 971e744057b22b8a844551f61a037214dd062d5b Mon Sep 17 00:00:00 2001 From: alcapurrias Date: Wed, 6 Sep 2023 00:36:13 +0200 Subject: [PATCH 4/4] Update 'app/Http/Controllers/LocationController.php' --- app/Http/Controllers/LocationController.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Http/Controllers/LocationController.php b/app/Http/Controllers/LocationController.php index b45c26b..afb5503 100644 --- a/app/Http/Controllers/LocationController.php +++ b/app/Http/Controllers/LocationController.php @@ -45,12 +45,12 @@ class LocationController extends Controller return back()->with('message', 'New Location Added. Take a break!'); } else { return back()->withErrors([ - 'error' => 'Uh oh. There was an inssue', + 'error' => 'Uh oh. There was an issue.', ]); } } else { return back()->withErrors([ - 'error' => 'All fields are required', + 'error' => 'All fields are required.', ]); } } @@ -65,7 +65,7 @@ class LocationController extends Controller $duplicates = 0; $fresh = 0; // ['url' => "rage.love"], - //['url' => "indyapocalypse.social"], + //['url' => "indiepocalypse.social"], $unified = []; //$denycount = array_map('str_getcsv', file($this->defed)); @@ -145,7 +145,7 @@ class LocationController extends Controller 'uuid' => Uuid::uuid4(), 'name' => $item['url'], 'url' => $item['url'], - 'description' => ($item['comment'] != null) ? $item['comment'] : "no description", + 'description' => ($item['comment'] != null) ? $item['comment'] : "No description provided.", 'active' => true, 'rating' => $item['rating'], 'added_by' => 1, -- 2.30.2