From: Michael Wagner Date: Wed, 10 Jul 2024 11:28:43 +0000 (+0200) Subject: D12-Anpassung X-Git-Tag: verleihnix_0.2-0 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=26dbaca006150f6e80a2a031c66f7bf54f5ba573;p=projects.git D12-Anpassung --- diff --git a/debian/verleihnix.changelog b/debian/verleihnix.changelog index c24ef63..d41f946 100644 --- a/debian/verleihnix.changelog +++ b/debian/verleihnix.changelog @@ -1,4 +1,8 @@ -projects (0.1-%BUILD%) unstable; urgency=medium +projects (0.2-%BUILD%) unstable; urgency=medium + * debian12-Anpassungen + -- Michael Wagner Wen, 10 Jul 2024 20:03:04 +0100 + +projects (0.1) unstable; urgency=medium * initial version -- Michael Wagner Sat, 06 Jun 2020 20:03:04 +0100 diff --git a/debian/verleihnix.conf b/debian/verleihnix.conf new file mode 100644 index 0000000..4f91cd7 --- /dev/null +++ b/debian/verleihnix.conf @@ -0,0 +1,2 @@ +compile_type=NONE +target_type=DEB diff --git a/verleihnix/Verleihnix/VNAdministration.php b/verleihnix/Verleihnix/VNAdministration.php index 458edc2..4729383 100644 --- a/verleihnix/Verleihnix/VNAdministration.php +++ b/verleihnix/Verleihnix/VNAdministration.php @@ -6,7 +6,7 @@ require_once 'util/Config.php'; class VNAdministration extends GenericAdmin { - function VNAdministration() { + function __construct() { // Generic Administration configuration data include 'Verleihnix/impl/GenadData.php'; parent::setDscrData($mocd_tab, $atdc_tab); diff --git a/verleihnix/gui/mKrimiGui.php b/verleihnix/gui/mKrimiGui.php index 3cc01a7..c9e8f51 100644 --- a/verleihnix/gui/mKrimiGui.php +++ b/verleihnix/gui/mKrimiGui.php @@ -21,11 +21,11 @@ $logger = Logger::getInstance(); $requestMethod = $_SERVER["REQUEST_METHOD"]; $logger->log(__FILE__, $requestMethod); $logger->log(__FILE__, "GET-Variabeles:"); -while ( list($key, $value) = each($_GET) ) { +foreach ( $_GET as $key => $value) { $logger->log(__FILE__, $key . " : " . $value);; } $logger->log(__FILE__, "POST-Variabeles:"); -while ( list($key, $value) = each($_POST) ) { +foreach ( $_POST as $key => $value) { $logger->log(__FILE__, $key . " : " . $value);; } $logger->log(__FILE__,"Redirect-URL:".$_SERVER["REDIRECT_URL"]); diff --git a/verleihnix/gui/view/gfx b/verleihnix/gui/view/gfx deleted file mode 120000 index ac9994b..0000000 --- a/verleihnix/gui/view/gfx +++ /dev/null @@ -1 +0,0 @@ -/usr/share/php/mLohn/gui/view/gfx/ \ No newline at end of file diff --git a/verleihnix/gui/view/gfx/add.png b/verleihnix/gui/view/gfx/add.png new file mode 100644 index 0000000..60987e8 Binary files /dev/null and b/verleihnix/gui/view/gfx/add.png differ diff --git a/verleihnix/gui/view/gfx/admin.png b/verleihnix/gui/view/gfx/admin.png new file mode 100644 index 0000000..e7544df Binary files /dev/null and b/verleihnix/gui/view/gfx/admin.png differ diff --git a/verleihnix/gui/view/gfx/copy.png b/verleihnix/gui/view/gfx/copy.png new file mode 100644 index 0000000..8cecf2b Binary files /dev/null and b/verleihnix/gui/view/gfx/copy.png differ diff --git a/verleihnix/gui/view/gfx/delete.png b/verleihnix/gui/view/gfx/delete.png new file mode 100644 index 0000000..c0f2661 Binary files /dev/null and b/verleihnix/gui/view/gfx/delete.png differ diff --git a/verleihnix/gui/view/gfx/details.png b/verleihnix/gui/view/gfx/details.png new file mode 100644 index 0000000..64d101e Binary files /dev/null and b/verleihnix/gui/view/gfx/details.png differ diff --git a/verleihnix/gui/view/gfx/edit.png b/verleihnix/gui/view/gfx/edit.png new file mode 100644 index 0000000..f33fb7c Binary files /dev/null and b/verleihnix/gui/view/gfx/edit.png differ diff --git a/verleihnix/gui/view/gfx/info.png b/verleihnix/gui/view/gfx/info.png new file mode 100644 index 0000000..fd1c37b Binary files /dev/null and b/verleihnix/gui/view/gfx/info.png differ diff --git a/verleihnix/gui/view/gfx/monitor.png b/verleihnix/gui/view/gfx/monitor.png new file mode 100644 index 0000000..40282b0 Binary files /dev/null and b/verleihnix/gui/view/gfx/monitor.png differ diff --git a/verleihnix/gui/view/gfx/new.png b/verleihnix/gui/view/gfx/new.png new file mode 100644 index 0000000..5923ac5 Binary files /dev/null and b/verleihnix/gui/view/gfx/new.png differ diff --git a/verleihnix/gui/view/gfx/save.png b/verleihnix/gui/view/gfx/save.png new file mode 100644 index 0000000..6179345 Binary files /dev/null and b/verleihnix/gui/view/gfx/save.png differ diff --git a/verleihnix/gui/view/gfx/ui_settings.png b/verleihnix/gui/view/gfx/ui_settings.png new file mode 100644 index 0000000..e082d51 Binary files /dev/null and b/verleihnix/gui/view/gfx/ui_settings.png differ