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
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
View File
File diff suppressed because one or more lines are too long
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

+3
View File
@@ -0,0 +1,3 @@
<?php
require_once(__DIR__ . "/../app.php");
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 270 KiB

+20
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
View File
@@ -0,0 +1,5 @@
.table td.fit,
.table th.fit {
white-space: nowrap;
width: 1%
}