Initialer Commit: Kundenverwaltung (PHP/Smarty)
Bestehende Codebasis als Ausgangsstand aufgenommen. - .gitignore: Kundendaten (uploads_*), Smarty-Compile-Cache (templates_c), Laufzeit-Temp und Datenbank-Dumps ausgeschlossen; Verzeichnisstruktur ueber .gitkeep erhalten - .gitattributes: Zeilenenden normalisiert (LF im Repo), Binaerformate markiert - db-backup.php: MySQL-Zugangsdaten kommen jetzt wie im Rest der Anwendung aus der externen Konfiguration statt hartkodiert aus der Datei; Passwort wird ueber eine temporaere Optionsdatei statt per Kommandozeile uebergeben, Fehler von mysqldump/gzip werden gemeldet, Aufraeumen aelterer Backups berechnet Jahr und Monat konsistent Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 4.2 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 4.3 KiB |
@@ -0,0 +1,43 @@
|
||||
body{
|
||||
font-family:Arial, Helvetica, sans-serif;
|
||||
font-size:13px;
|
||||
background-color: #F9F8F7;
|
||||
margin:30px;
|
||||
}
|
||||
.tick, .warn, .warning, .error, .validation, .info , .reup, .reupclean {
|
||||
border: 1px solid;
|
||||
margin: 10px 0px;
|
||||
padding:15px 10px 15px 50px;
|
||||
background-repeat: no-repeat;
|
||||
background-position: 10px center;
|
||||
}
|
||||
.tick {
|
||||
color: #00529B;
|
||||
background-color: #BDE5F8;
|
||||
background-image: url('tick.png');
|
||||
}
|
||||
.warn {
|
||||
color: #4F8A10;
|
||||
background-color: #DFF2BF;
|
||||
background-image:url('warn.png');
|
||||
}
|
||||
.error {
|
||||
color: #9F6000;
|
||||
background-color: #FEEFB3;
|
||||
background-image: url('error.png');
|
||||
}
|
||||
.info {
|
||||
color: #333;
|
||||
background-color: #BAFFBA;
|
||||
background-image: url('info.png');
|
||||
}
|
||||
.reup {
|
||||
color: #D8000C;
|
||||
background-color: #FFBABA;
|
||||
background-image: url('reup.png');
|
||||
}
|
||||
.reupclean {
|
||||
color: #666;
|
||||
background-color: #BDE5F8;
|
||||
background-image: url('reup.png');
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 4.9 KiB |
@@ -0,0 +1,12 @@
|
||||
<%option explicit%><%
|
||||
Server.ScriptTimeout=20
|
||||
Response.Expires = 0
|
||||
Response.Expiresabsolute = Now() - 1
|
||||
Response.AddHeader "pragma","no-cache"
|
||||
Response.AddHeader "cache-control","private"
|
||||
Response.CacheControl = "no-cache"
|
||||
|
||||
Response.Write("No Command")
|
||||
|
||||
|
||||
%>
|
||||
@@ -0,0 +1 @@
|
||||
<%@ Page Language="C#" AutoEventWireup="true" %>No Command
|
||||
@@ -0,0 +1 @@
|
||||
No Command
|
||||
@@ -0,0 +1,3 @@
|
||||
<?php
|
||||
echo "No Command"
|
||||
?>
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 4.3 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 4.5 KiB |
Reference in New Issue
Block a user