Refactor application name to "Soselo"

This commit is contained in:
Bofh 2022-12-15 14:56:43 +01:00
parent 4ddbb0277e
commit 858dd99418
5 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
# Apub-ctpanel # Soselo
**ActivityPub-based software Control Panel** for: controlling bad actors, watching new users activity (until you build up trust, then whitelist it), filter posts (federated, unlisted, followers-only and DM (for example, for spamming via DM)), filter on user, automations on configured filters (auto suspend/silence/report users, auto delete posts, manual reporting and management of positives)... **Soselo** is a web tool for moderating all your **ActivityPub-based servers**: controlling bad actors, watching new users activity (until you build up trust, then whitelist it), filter posts (federated, unlisted, followers-only and DM (for example, for spamming via DM)), filter on user, automations on configured filters (auto suspend/silence/report users, auto delete posts, manual reporting and management of positives)...
In short: manage your ActivityPub implementation software (ex: Mastodon) in a next level way. In short: manage your ActivityPub implementation software (ex: Mastodon) in a next level way.

View File

@ -92,7 +92,7 @@ function cli__cache($args) {
} }
function cli__help($full=true) { function cli__help($full=true) {
echo 'APub Control cli.php 1.0 author: bofh@nogafam.es'."\n"; echo 'Soselo cli.php 1.0 author: bofh@nogafam.es'."\n";
echo "\n"; echo "\n";
echo ' Parameters:'."\n"; echo ' Parameters:'."\n";
if ($full === false) return; if ($full === false) return;

View File

@ -1,5 +1,5 @@
<?php <?php
$GLOBALS['appconf'] = [ $GLOBALS['appconf'] = [
'data_dir' => '/var/tmp/apub-ctpanel', 'data_dir' => '/var/tmp/soselo-data',
]; ];

View File

@ -1,7 +1,7 @@
<?php require 'base.php' ?> <?php require 'base.php' ?>
<html> <html>
<head> <head>
<title>APub Control - Panel</title> <title>Soselo - Panel</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="fonts/forkawesome/css/fork-awesome.min.css"> <link rel="stylesheet" href="fonts/forkawesome/css/fork-awesome.min.css">
<script type="application/javascript" src="js/dayjs.min.js"></script> <script type="application/javascript" src="js/dayjs.min.js"></script>
@ -24,7 +24,7 @@ window.cache = {};
</script> </script>
<script> <script>
function apcontrol_title(str) { function apcontrol_title(str) {
document.title = `APub Control - ${str}`; document.title = `Soselo - ${str}`;
} }
</script> </script>

View File

@ -21,7 +21,7 @@ if (isset($_POST['username']) && isset($_POST['password']))
?> ?>
<html> <html>
<head> <head>
<title>APub Control - Login</title> <title>Soselo - Login</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="fonts/forkawesome/css/fork-awesome.min.css"> <link rel="stylesheet" href="fonts/forkawesome/css/fork-awesome.min.css">
</head> </head>
@ -31,7 +31,7 @@ if (isset($_POST['username']) && isset($_POST['password']))
<main class="flex"> <main class="flex">
<div class="center"> <div class="center">
<h3>APub Control Panel</h3> <h3>Soselo Tool</h3>
<form action="login.php" method="POST"> <form action="login.php" method="POST">
<input type="text" name="username" placeholder="Username"/> <input type="text" name="username" placeholder="Username"/>
<br><div style="margin-bottom:.5em"></div> <br><div style="margin-bottom:.5em"></div>