Refactor application name to "Soselo"
This commit is contained in:
parent
4ddbb0277e
commit
858dd99418
|
@ -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.
|
||||
|
||||
|
|
2
cli.php
2
cli.php
|
@ -92,7 +92,7 @@ function cli__cache($args) {
|
|||
}
|
||||
|
||||
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 ' Parameters:'."\n";
|
||||
if ($full === false) return;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
|
||||
$GLOBALS['appconf'] = [
|
||||
'data_dir' => '/var/tmp/apub-ctpanel',
|
||||
'data_dir' => '/var/tmp/soselo-data',
|
||||
];
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php require 'base.php' ?>
|
||||
<html>
|
||||
<head>
|
||||
<title>APub Control - Panel</title>
|
||||
<title>Soselo - Panel</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="fonts/forkawesome/css/fork-awesome.min.css">
|
||||
<script type="application/javascript" src="js/dayjs.min.js"></script>
|
||||
|
@ -24,7 +24,7 @@ window.cache = {};
|
|||
</script>
|
||||
<script>
|
||||
function apcontrol_title(str) {
|
||||
document.title = `APub Control - ${str}`;
|
||||
document.title = `Soselo - ${str}`;
|
||||
}
|
||||
</script>
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ if (isset($_POST['username']) && isset($_POST['password']))
|
|||
?>
|
||||
<html>
|
||||
<head>
|
||||
<title>APub Control - Login</title>
|
||||
<title>Soselo - Login</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="fonts/forkawesome/css/fork-awesome.min.css">
|
||||
</head>
|
||||
|
@ -31,7 +31,7 @@ if (isset($_POST['username']) && isset($_POST['password']))
|
|||
|
||||
<main class="flex">
|
||||
<div class="center">
|
||||
<h3>APub Control Panel</h3>
|
||||
<h3>Soselo Tool</h3>
|
||||
<form action="login.php" method="POST">
|
||||
<input type="text" name="username" placeholder="Username"/>
|
||||
<br><div style="margin-bottom:.5em"></div>
|
||||
|
|
Loading…
Reference in New Issue