Initial import

This commit is contained in:
2026-01-18 00:53:18 +00:00
parent fb78291fb1
commit 940191502e
115 changed files with 15524 additions and 0 deletions

10
public/.htaccess Normal file
View File

@@ -0,0 +1,10 @@
RewriteEngine On
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]
# Send Requests To Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]

2250
public/app.js Normal file

File diff suppressed because one or more lines are too long

BIN
public/d192.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

BIN
public/d512.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

3
public/index.php Normal file
View File

@@ -0,0 +1,3 @@
<?php
require_once(__DIR__ . "/../app.php");

BIN
public/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 270 KiB

View File

@@ -0,0 +1,20 @@
{
"short_name": "DECPDF",
"name": "DECPDF",
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff",
"icons": [
{
"src": "/d192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/d512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}

5
public/sys.css Normal file
View File

@@ -0,0 +1,5 @@
.table td.fit,
.table th.fit {
white-space: nowrap;
width: 1%
}