Compare commits
7 Commits
df15387f84
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 48128e78ab | |||
| 50bf7b13a7 | |||
| 76687cc725 | |||
| 3098e5c010 | |||
| 7c41c06d16 | |||
| 8b0a27358d | |||
| a077f2e95f |
28
index.php
28
index.php
@@ -1,9 +1,16 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
$files = array();
|
$files = array();
|
||||||
foreach (scandir("/home/") as $file) {
|
|
||||||
if (in_array($file, array('.', '..'))) continue;
|
foreach (scandir("/home/") as $user) {
|
||||||
$files[$file] = filemtime("/home/".$file);
|
if (in_array($user, array('.', '..'))) continue;
|
||||||
|
|
||||||
|
$public_html = "/home/$user/public_html";
|
||||||
|
|
||||||
|
// Sprawdź czy katalog public_html istnieje
|
||||||
|
if (is_dir($public_html)) {
|
||||||
|
$files[$user] = filemtime($public_html);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
arsort($files);
|
arsort($files);
|
||||||
@@ -48,14 +55,27 @@ $slogan = $slogans[rand(0, count($slogans) - 1)];
|
|||||||
<h2>Ostatnio edytowane strony:</h2>
|
<h2>Ostatnio edytowane strony:</h2>
|
||||||
<p class="user_home" style="margin-bottom: 1rem">$ ls -lt /home/</p>
|
<p class="user_home" style="margin-bottom: 1rem">$ ls -lt /home/</p>
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
foreach($recent as $user => $date) {
|
foreach($recent as $user => $date) {
|
||||||
echo "<a class=\"link\" href=\"/~".$user."/\"><p class=\"user_home\"><span>drwxr-xr-x</span><span>".rand(1,9)."</span><span>".$user."</span><span>".$user."</span><span>".rand(1,19)."</span><span>".date("M d H:i", $date)."</span><span>".$user."</span></p></a>";
|
echo "<a class=\"link\" href=\"/~".$user."/\">
|
||||||
|
<p class=\"user_home\">
|
||||||
|
<span>drwxr-xr-x</span>
|
||||||
|
<span>".rand(1,9)."</span>
|
||||||
|
<span>".$user."</span>
|
||||||
|
<span>".$user."</span>
|
||||||
|
<span>".rand(1,19)."</span>
|
||||||
|
<span>".date("M d H:i", $date)."</span>
|
||||||
|
<span>".$user."</span>
|
||||||
|
</p>
|
||||||
|
</a>";
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
include 'news.php';
|
||||||
include 'footer.php';
|
include 'footer.php';
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|||||||
60
news.php
Normal file
60
news.php
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
|
||||||
|
<h1>> Niusy </h1>
|
||||||
|
<article id="content">
|
||||||
|
|
||||||
|
<h2> 2025/10/09 </h2>
|
||||||
|
<p>
|
||||||
|
<ul>
|
||||||
|
<li>Założyliśmy instancję <a href="https://cloud.tylda.org">nextcloud</a>. Powoli odzywamy się do środowiska linuxowego i fediverse promując inicjatywę.</li>
|
||||||
|
<li>Niusy dodane na główną</li>
|
||||||
|
</ul>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2> 2025/10/08 </h2>
|
||||||
|
<p>
|
||||||
|
Nowa strona listująca wszystkich <a href="/users.php">użytkowników</a>.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2> 2025/10/03 </h2>
|
||||||
|
<p>
|
||||||
|
Poprawiony interaktywny layout strony. Głównie css @media.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2> 2025/09/30 </h2>
|
||||||
|
<p>
|
||||||
|
Formularz rejestracji wymusza podanie klucza SSH.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2> 2025/09/25 </h2>
|
||||||
|
<p>
|
||||||
|
<ul>
|
||||||
|
<li>Podstawowe wsparcie gemini protocol. Używamy serwera satellite</li>
|
||||||
|
<li>Strona wiki</li>
|
||||||
|
</ul>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2> 2025/09/20 </h2>
|
||||||
|
<p>
|
||||||
|
<ul>
|
||||||
|
<li>Smoorg dołącza do tyldy jako wolontariusz, developer i admin</li>
|
||||||
|
<li>Dodany podstawowy formularz rejestracji</li>
|
||||||
|
</ul>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
|
||||||
|
<h2> 2025/09/18 </h2>
|
||||||
|
<p>
|
||||||
|
v0id1st stworzył podwaliny serwera
|
||||||
|
<ul>
|
||||||
|
<li>skrypt dodający użytkowników</li>
|
||||||
|
<li>konfiguracja irc</li>
|
||||||
|
<li>podstawowa strona html+php</li>
|
||||||
|
</ul>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2> 2025/07/22 </h2>
|
||||||
|
<p>
|
||||||
|
Początek prac.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</article>
|
||||||
@@ -22,7 +22,7 @@ Otrzymaliśmy twój formularz rejestracji. Oczekuj na dalsze informacje na swoje
|
|||||||
$interests=htmlspecialchars($_POST["interests"]);
|
$interests=htmlspecialchars($_POST["interests"]);
|
||||||
$pubkey=htmlspecialchars($_POST["pubkey"]);
|
$pubkey=htmlspecialchars($_POST["pubkey"]);
|
||||||
|
|
||||||
$to = 'smoorg@tylda.org';
|
$to = 'register@tylda.org';
|
||||||
$subject = 'Rejestracja usera ' . "$nick";
|
$subject = 'Rejestracja usera ' . "$nick";
|
||||||
$message = "Nick:\t\t$nick\n" .
|
$message = "Nick:\t\t$nick\n" .
|
||||||
"Email:\t\t$email\n" .
|
"Email:\t\t$email\n" .
|
||||||
|
|||||||
@@ -17,6 +17,14 @@ body {
|
|||||||
font-family: "Helvetica", "Arial", sans-serif;
|
font-family: "Helvetica", "Arial", sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
h2, h3, h4, h5, h6 {
|
||||||
|
margin: 0.5rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
div.main-content {
|
div.main-content {
|
||||||
display: flex;
|
display: flex;
|
||||||
@@ -27,7 +35,6 @@ div.main-content {
|
|||||||
|
|
||||||
header#menu {
|
header#menu {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
|
||||||
border-width: 5px;
|
border-width: 5px;
|
||||||
border-color: var(--main);
|
border-color: var(--main);
|
||||||
border-style: double;
|
border-style: double;
|
||||||
@@ -65,7 +72,7 @@ article#content {
|
|||||||
border-color: var(--main);
|
border-color: var(--main);
|
||||||
border-style: double;
|
border-style: double;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
margin-top: 2rem;
|
margin: 2rem 0;
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
gap: .5rem;
|
gap: .5rem;
|
||||||
padding-block: 2rem;
|
padding-block: 2rem;
|
||||||
@@ -146,26 +153,67 @@ ul li {
|
|||||||
padding: 0.5rem;
|
padding: 0.5rem;
|
||||||
margin-left: 2rem;
|
margin-left: 2rem;
|
||||||
}
|
}
|
||||||
@media only screen and (min-width: 900px) {
|
@media only screen and (min-width: 1200px) {
|
||||||
div.main-content {
|
div.main-content {
|
||||||
width: 60%;
|
width: 60%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen
|
@media only screen
|
||||||
and (min-width: 480px)
|
and (min-width: 576px)
|
||||||
and (max-width: 900px) {
|
and (max-width: 768px) {
|
||||||
header#menu {
|
header#menu {
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.form-row {
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
}
|
}
|
||||||
|
pre.ascii {
|
||||||
|
font-size: 0.8rem;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media only screen
|
||||||
|
and (min-width: 768px)
|
||||||
|
and (max-width: 992px) {
|
||||||
|
header#menu {
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.form-row {
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media only screen
|
||||||
|
and (min-width: 992px)
|
||||||
|
and (max-width: 1200px) {
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen
|
||||||
|
and (min-width: 1200px)
|
||||||
|
and (max-width: 1400px) {
|
||||||
|
header#menu {
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
.form-row {
|
.form-row {
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (max-device-width: 480px) {
|
@media only screen and (max-width: 576px) {
|
||||||
article {
|
header#menu {
|
||||||
font-size: 1em;
|
flex-direction: column;
|
||||||
|
margin-bottom: 2rem;
|
||||||
}
|
}
|
||||||
|
article#content {
|
||||||
|
font-size: 1em;
|
||||||
|
border: none;
|
||||||
|
border-color: none;
|
||||||
|
border-style: none;
|
||||||
|
border-radius: 0;
|
||||||
|
padding: 0rem;
|
||||||
|
}
|
||||||
|
pre.ascii {
|
||||||
|
font-size: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
28
stats.php
Normal file
28
stats.php
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
<?php
|
||||||
|
include 'header.php';
|
||||||
|
|
||||||
|
ini_set("display_errors", "On");
|
||||||
|
error_reporting(E_ALL);
|
||||||
|
|
||||||
|
$users = array();
|
||||||
|
foreach (scandir("/home/") as $file) {
|
||||||
|
if (in_array($file, array('.', '..'))) continue;
|
||||||
|
array_push($users, $file);
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
|
||||||
|
<h1>> Statystyki</h1>
|
||||||
|
<article id="content">
|
||||||
|
Statystyki z tego serwera tilde
|
||||||
|
<ul>
|
||||||
|
<li>Liczba użytkowników: <?=count($users);?></li>
|
||||||
|
<li>Liczba wiadomości na IRC: TODO </li>
|
||||||
|
<li>Liczba wiadomości na IRC dziś: TODO</li>
|
||||||
|
<li>Ostatni server load: <?=shell_exec("/usr/bin/top -n 1 | grep Load | cut -d' ' -f3,4,5");?></li>
|
||||||
|
<li>Wolny RAM: <?=shell_exec("/usr/bin/free -h | grep Mem | awk '{print \$NF}'");?>
|
||||||
|
</ul>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
include 'footer.php';
|
||||||
|
?>
|
||||||
@@ -1,7 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
include 'header.php';
|
include 'header.php';
|
||||||
?>
|
?>
|
||||||
<article>
|
<h1>> Users </h1>
|
||||||
|
<article id="content">
|
||||||
Lista użytkowników i linki do ich blogów
|
Lista użytkowników i linki do ich blogów
|
||||||
<ul>
|
<ul>
|
||||||
<?php
|
<?php
|
||||||
@@ -17,3 +18,9 @@ foreach (scandir("/home/") as $file) {
|
|||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
|
||||||
|
include 'footer.php';
|
||||||
|
|
||||||
|
?>
|
||||||
|
|||||||
Reference in New Issue
Block a user