From 1ce413a7636ea658ea3370d6cd354083c0350e56 Mon Sep 17 00:00:00 2001 From: Xenomporio <> Date: Fri, 14 Oct 2022 14:18:26 +0200 Subject: [PATCH] OpenXE rebranding --- INSTALL.md | 8 +- README.md | 4 +- SERVER_INSTALL.md | 14 +- .../Definition/FactoryMethodDefinition.php | 2 +- classes/Core/ErrorHandler/ErrorPageData.php | 2 +- cronjobs/chat.php | 2 +- cronjobs/githash.php | 2 +- database/struktur.sql | 2 +- tools/module_creator/module_creator.php | 12 +- .../module_creator_php_template.txt | 2 +- version.php | 2 +- www/eproosystem.php | 10 +- www/pages/emailbackup.php | 4 +- www/pages/firmendaten.php | 2 +- www/pages/kalender.php | 8 +- www/pages/ticket.php | 2 +- www/pages/ticketregeln.php | 2 +- www/pages/uservorlage.php | 2 +- www/pages/warteschlangen.php | 2 +- www/pages/welcome.php | 2 +- www/setup/setup.php | 6 +- www/themes/new/css/styles.css | 12 + .../new/images/favicon/favicon-16x16.png | Bin 2542 -> 2236 bytes .../new/images/favicon/favicon-32x32.png | Bin 5148 -> 4345 bytes www/themes/new/images/favicon/favicon.ico | Bin 12290 -> 15086 bytes www/themes/new/images/openxe_logo.svg | 92 ++++ www/themes/new/templates/loginpage.tpl | 8 +- .../new/templates/passwortvergessenpage.tpl | 6 +- www/themes/new/templates/sidebar.tpl | 2 +- .../new/templates/sidebar_icon_logo.svg | 46 ++ www/themes/new/templates/sidebar_logo.svg | 489 +++--------------- www/update.tpl | 8 +- 32 files changed, 292 insertions(+), 463 deletions(-) create mode 100644 www/themes/new/images/openxe_logo.svg create mode 100644 www/themes/new/templates/sidebar_icon_logo.svg diff --git a/INSTALL.md b/INSTALL.md index 6afa5384..386791fd 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -1,4 +1,4 @@ -# Xenomporio installation +# OpenXE installation ## Place the installation files into a folder in /var/www/html/. @@ -6,17 +6,17 @@ e.g. Release 1.0: -`sudo wget https://github.com/xenomporio-org/Xenomporio/archive/refs/tags/V.1.0.zip` +`sudo wget https://github.com/openxe-org/OpenXE/archive/refs/tags/V.1.0.zip` `unzip V.1.0.zip` ## Set folder permissions: -`sudo chown www-data:www-data Xenomporio-V.1.0 -R` +`sudo chown www-data:www-data OpenXE-V.1.0 -R` ## Fire up the setup page in a browser -http://yourserverip/Xenomporio-V.1.0 (watch out, its case sensitive) +http://yourserverip/OpenXE-V.1.0 (watch out, its case sensitive) diff --git a/README.md b/README.md index 81c925de..0e1c0c0e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # OpenXE - The free ERP -![Xenomporio overview](https://github.com/xenomporio-org/Xenomporio/blob/master/www/themes/new/images/login_screen_picture.jpg "Xenomporio") +![OpenXE overview](https://github.com/openxe-org/OpenXE/blob/master/www/themes/new/images/login_screen_picture.jpg "OpenXE") OpenXE ist eine umfassende webbasierte Anwendung zur Abwicklung aller kaufmännischen Prozesse. Zu den Funktionen gehören unter Anderem: @@ -23,7 +23,7 @@ Wir freuen uns über Eure Teilnahme, egal ob als stiller Mitleser oder aktiver U # Letzte Änderungen: Ticket System -Neu in [V.1.3](https://github.com/xenomporio-org/Xenomporio/releases/tag/V.1.3): +Neu in [V.1.3](https://github.com/openxe-org/OpenXE/releases/tag/V.1.3): Neuimplementierung des Xentral 20 Enterprise Ticketsystems mit vielen Verbesserungen, z.B.: - Anhänge werden auch bei ausgehenden Nachrichten gespeichert - Verbesserte Kommentarfunktion diff --git a/SERVER_INSTALL.md b/SERVER_INSTALL.md index 9546128d..56944873 100644 --- a/SERVER_INSTALL.md +++ b/SERVER_INSTALL.md @@ -129,7 +129,7 @@ installation should now be secure. Thanks for using MariaDB! ``` -## Create database for xenomporio +## Create database for openxe `mysql -u root -p` ``` @@ -141,13 +141,13 @@ Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. -MariaDB [(none)]> CREATE DATABASE xenomporio; +MariaDB [(none)]> CREATE DATABASE openxe; Query OK, 1 row affected (0.001 sec) -MariaDB [(none)]> CREATE USER 'xenomporio'@'localhost' IDENTIFIED BY 'enteryourpasswordhere'; +MariaDB [(none)]> CREATE USER 'openxe'@'localhost' IDENTIFIED BY 'enteryourpasswordhere'; Query OK, 0 rows affected (0.015 sec) -MariaDB [(none)]> GRANT ALL PRIVILEGES ON xenomporio.* TO 'xenomporio'@'localhost' WITH GRANT OPTION; +MariaDB [(none)]> GRANT ALL PRIVILEGES ON openxe.* TO 'openxe'@'localhost' WITH GRANT OPTION; Query OK, 0 rows affected (0.012 sec) MariaDB [(none)]> FLUSH PRIVILEGES; @@ -159,7 +159,7 @@ Bye ``` You can test your database like this: -`mysql -u xenomporio -p` +`mysql -u openxe -p` ``` Enter password: @@ -176,7 +176,7 @@ MariaDB [(none)]> show databases; | Database | +--------------------+ | information_schema | -| xenomporio | +| openxe | +--------------------+ 2 rows in set (0.001 sec) @@ -185,4 +185,4 @@ Bye ``` ## --> Reset your server -Continue with [Xenomporio Installation](INSTALL.md) +Continue with [OpenXE Installation](INSTALL.md) diff --git a/classes/Core/DependencyInjection/Definition/FactoryMethodDefinition.php b/classes/Core/DependencyInjection/Definition/FactoryMethodDefinition.php index 971f7714..e43eb095 100644 --- a/classes/Core/DependencyInjection/Definition/FactoryMethodDefinition.php +++ b/classes/Core/DependencyInjection/Definition/FactoryMethodDefinition.php @@ -23,7 +23,7 @@ final class FactoryMethodDefinition if (!is_callable($callable, false)) { /* - xenomporio + OpenXE-todo unknown compatibility issue commented out as hotfix diff --git a/classes/Core/ErrorHandler/ErrorPageData.php b/classes/Core/ErrorHandler/ErrorPageData.php index dcc16f42..469d65df 100644 --- a/classes/Core/ErrorHandler/ErrorPageData.php +++ b/classes/Core/ErrorHandler/ErrorPageData.php @@ -20,7 +20,7 @@ final class ErrorPageData implements JsonSerializable public function __construct($exception, $title = null) { $this->exception = $exception; - $this->title = !empty($title) ? (string)$title : 'Xenomporio: Es ist ein unerwarteter Fehler aufgetreten!'; + $this->title = !empty($title) ? (string)$title : 'OpenXE: Es ist ein unerwarteter Fehler aufgetreten!'; } diff --git a/cronjobs/chat.php b/cronjobs/chat.php index 3c148555..6010eceb 100644 --- a/cronjobs/chat.php +++ b/cronjobs/chat.php @@ -421,7 +421,7 @@ function GetHtmlMessage($receipientName, $messageTotalCount, $messages = [])
-