publish/logging.properties
@@ -35,7 +35,7 @@ ############################################################ # default file output is in user's home directory. java.util.logging.FileHandler.pattern = %h/mediaz-%u.log java.util.logging.FileHandler.pattern = %h/tango-%u.log # java.util.logging.FileHandler.pattern = /media/extmirror/tomcat747/logs/tv_%u.log # java.util.logging.FileHandler.pattern = ${catalina.base}/logs/file-cms_%u.log # java.util.logging.FileHandler.limit = 50000 @@ -68,5 +68,5 @@ # de.uhilger.filecms.level = FINEST # de.uhilger.wbx.handlers = java.util.logging.ConsoleHandler # de.uhilger.wbx.level = FINEST de.uhilger.mediaz.handlers = java.util.logging.FileHandler, java.util.logging.ConsoleHandler de.uhilger.mediaz.level = FINEST de.uhilger.tango.handlers = java.util.logging.FileHandler, java.util.logging.ConsoleHandler de.uhilger.tango.level = FINEST src/de/uhilger/tango/App.java
File was renamed from src/de/uhilger/mediaz/App.java @@ -1,5 +1,5 @@ /* Mediazentrale - Personal Media Center Tango - Personal Media Center Copyright (C) 2021 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -15,7 +15,7 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ package de.uhilger.mediaz; package de.uhilger.tango; import java.io.File; import java.io.IOException; @@ -46,7 +46,7 @@ private static ResourceBundle rb; /* Name des ResourceBundles dieser App */ private static final String RB_NAME = "mediaz"; private static final String RB_NAME = "tango"; /* Der Server dieser App */ private static Server server; src/de/uhilger/tango/Initialiser.java
File was renamed from src/de/uhilger/mediaz/Initialiser.java @@ -1,5 +1,5 @@ /* Mediazentrale - Personal Media Center Tango - Personal Media Center Copyright (C) 2021 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -15,7 +15,7 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ package de.uhilger.mediaz; package de.uhilger.tango; /** * Der Initialiser sorgt fur die Herstellung der Rahmenbedingungen fuer src/de/uhilger/tango/Mediazentrale.java
File was renamed from src/de/uhilger/mediaz/Mediazentrale.java @@ -1,5 +1,5 @@ /* Mediazentrale - Personal Media Center Tango - Personal Media Center Copyright (C) 2021 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -15,7 +15,7 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ package de.uhilger.mediaz; package de.uhilger.tango; /** * src/de/uhilger/tango/Server.java
File was renamed from src/de/uhilger/mediaz/Server.java @@ -1,5 +1,5 @@ /* Mediazentrale - Personal Media Center Tango - Personal Media Center Copyright (C) 2021 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -15,25 +15,25 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ package de.uhilger.mediaz; package de.uhilger.tango; import com.sun.net.httpserver.HttpServer; import de.uhilger.mediaz.api.FileHandler; import de.uhilger.mediaz.api.GeraetSteuerung; import de.uhilger.mediaz.api.ListFileHandler; import de.uhilger.mediaz.api.ListHandler; import de.uhilger.mediaz.api.MediaSteuerung; import de.uhilger.mediaz.api.StopServerHandler; import de.uhilger.mediaz.api.StorageHandler; import de.uhilger.mediaz.store.FileStorage; import de.uhilger.mediaz.entity.Ablageort; import de.uhilger.tango.api.FileHandler; import de.uhilger.tango.api.GeraetSteuerung; import de.uhilger.tango.api.ListFileHandler; import de.uhilger.tango.api.ListHandler; import de.uhilger.tango.api.MediaSteuerung; import de.uhilger.tango.api.StopServerHandler; import de.uhilger.tango.api.StorageHandler; import de.uhilger.tango.store.FileStorage; import de.uhilger.tango.entity.Ablageort; import java.io.File; import java.io.IOException; import java.util.logging.Logger; import java.net.InetSocketAddress; import java.util.concurrent.Executors; import java.util.logging.Level; import de.uhilger.mediaz.entity.Entity; import de.uhilger.tango.entity.Entity; import java.util.Iterator; import java.util.List; src/de/uhilger/tango/api/AbstractHandler.java
File was renamed from src/de/uhilger/mediaz/api/AbstractHandler.java @@ -1,5 +1,5 @@ /* Mediazentrale - Personal Media Center Tango - Personal Media Center Copyright (C) 2021 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -15,7 +15,7 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ package de.uhilger.mediaz.api; package de.uhilger.tango.api; import com.sun.net.httpserver.Headers; import com.sun.net.httpserver.HttpExchange; src/de/uhilger/tango/api/FileHandler.java
File was renamed from src/de/uhilger/mediaz/api/FileHandler.java @@ -1,5 +1,5 @@ /* Mediazentrale - Personal Media Center Tango - Personal Media Center Copyright (C) 2021 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -15,13 +15,13 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ package de.uhilger.mediaz.api; package de.uhilger.tango.api; import com.sun.net.httpserver.Headers; import com.sun.net.httpserver.HttpExchange; import com.sun.net.httpserver.HttpHandler; import de.uhilger.mediaz.App; import de.uhilger.mediaz.Server; import de.uhilger.tango.App; import de.uhilger.tango.Server; import java.io.File; import java.io.FileInputStream; import java.io.IOException; src/de/uhilger/tango/api/GeraetSteuerung.java
File was renamed from src/de/uhilger/mediaz/api/GeraetSteuerung.java @@ -1,5 +1,5 @@ /* Mediazentrale - Personal Media Center Tango - Personal Media Center Copyright (C) 2021 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -15,14 +15,14 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ package de.uhilger.mediaz.api; package de.uhilger.tango.api; import com.sun.net.httpserver.HttpExchange; import de.uhilger.mediaz.App; import de.uhilger.mediaz.Server; import de.uhilger.mediaz.entity.Entity; import de.uhilger.mediaz.entity.Geraet; import de.uhilger.mediaz.store.FileStorage; import de.uhilger.tango.App; import de.uhilger.tango.Server; import de.uhilger.tango.entity.Entity; import de.uhilger.tango.entity.Geraet; import de.uhilger.tango.store.FileStorage; import java.io.IOException; import java.net.HttpURLConnection; import java.net.URL; src/de/uhilger/tango/api/JsonHelper.java
File was renamed from src/de/uhilger/mediaz/api/JsonHelper.java @@ -1,5 +1,5 @@ /* Mediazentrale - Personal Media Center Tango - Personal Media Center Copyright (C) 2021 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -15,7 +15,7 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ package de.uhilger.mediaz.api; package de.uhilger.tango.api; import com.google.gson.Gson; src/de/uhilger/tango/api/ListFileHandler.java
File was renamed from src/de/uhilger/mediaz/api/ListFileHandler.java @@ -1,5 +1,5 @@ /* Mediazentrale - Personal Media Center Tango - Personal Media Center Copyright (C) 2021 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -15,18 +15,18 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ package de.uhilger.mediaz.api; package de.uhilger.tango.api; import com.sun.net.httpserver.Headers; import com.sun.net.httpserver.HttpExchange; import de.uhilger.mediaz.App; import de.uhilger.mediaz.Server; import de.uhilger.mediaz.entity.Einstellung; import de.uhilger.mediaz.entity.Entity; import de.uhilger.mediaz.store.FileStorage; import de.uhilger.mediaz.store.Storage; import de.uhilger.mediaz.store.StorageFile; import de.uhilger.mediaz.store.Track; import de.uhilger.tango.App; import de.uhilger.tango.Server; import de.uhilger.tango.entity.Einstellung; import de.uhilger.tango.entity.Entity; import de.uhilger.tango.store.FileStorage; import de.uhilger.tango.store.Storage; import de.uhilger.tango.store.StorageFile; import de.uhilger.tango.store.Track; import java.io.File; import java.io.FileFilter; import java.io.IOException; src/de/uhilger/tango/api/ListHandler.java
File was renamed from src/de/uhilger/mediaz/api/ListHandler.java @@ -1,5 +1,5 @@ /* Mediazentrale - Personal Media Center Tango - Personal Media Center Copyright (C) 2021 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -15,16 +15,16 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ package de.uhilger.mediaz.api; package de.uhilger.tango.api; import com.google.gson.Gson; import com.sun.net.httpserver.HttpExchange; import de.uhilger.mediaz.App; import de.uhilger.mediaz.Server; import de.uhilger.mediaz.entity.Abspielliste; import de.uhilger.mediaz.entity.Entity; import de.uhilger.mediaz.entity.Titel; import de.uhilger.mediaz.store.FileStorage; import de.uhilger.tango.App; import de.uhilger.tango.Server; import de.uhilger.tango.entity.Abspielliste; import de.uhilger.tango.entity.Entity; import de.uhilger.tango.entity.Titel; import de.uhilger.tango.store.FileStorage; import java.io.IOException; import java.util.logging.Logger; src/de/uhilger/tango/api/MediaSteuerung.java
File was renamed from src/de/uhilger/mediaz/api/MediaSteuerung.java @@ -1,5 +1,5 @@ /* Mediazentrale - Personal Media Center Tango - Personal Media Center Copyright (C) 2021 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -15,21 +15,21 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ package de.uhilger.mediaz.api; package de.uhilger.tango.api; import com.google.gson.Gson; import com.sun.net.httpserver.HttpExchange; import de.uhilger.mediaz.App; import de.uhilger.mediaz.Server; import de.uhilger.mediaz.entity.Abspielvorgang; import de.uhilger.mediaz.entity.Abspieler; import de.uhilger.mediaz.entity.Abspielliste; import de.uhilger.mediaz.entity.Einstellung; import de.uhilger.mediaz.entity.Entity; import de.uhilger.mediaz.entity.Livestream; import de.uhilger.mediaz.entity.Titel; import de.uhilger.mediaz.store.FileStorage; import de.uhilger.mediaz.store.Storage; import de.uhilger.tango.App; import de.uhilger.tango.Server; import de.uhilger.tango.entity.Abspielvorgang; import de.uhilger.tango.entity.Abspieler; import de.uhilger.tango.entity.Abspielliste; import de.uhilger.tango.entity.Einstellung; import de.uhilger.tango.entity.Entity; import de.uhilger.tango.entity.Livestream; import de.uhilger.tango.entity.Titel; import de.uhilger.tango.store.FileStorage; import de.uhilger.tango.store.Storage; import java.io.IOException; import java.net.HttpURLConnection; import java.net.URL; src/de/uhilger/tango/api/StopServerHandler.java
File was renamed from src/de/uhilger/mediaz/api/StopServerHandler.java @@ -1,5 +1,5 @@ /* Mediazentrale - Personal Media Center Tango - Personal Media Center Copyright (C) 2021 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -15,11 +15,11 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ package de.uhilger.mediaz.api; package de.uhilger.tango.api; import com.sun.net.httpserver.HttpExchange; import com.sun.net.httpserver.HttpHandler; import de.uhilger.mediaz.App; import de.uhilger.tango.App; import java.io.IOException; import java.io.OutputStream; import java.util.Timer; src/de/uhilger/tango/api/StorageHandler.java
File was renamed from src/de/uhilger/mediaz/api/StorageHandler.java @@ -1,5 +1,5 @@ /* Mediazentrale - Personal Media Center Tango - Personal Media Center Copyright (C) 2021 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -15,21 +15,21 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ package de.uhilger.mediaz.api; package de.uhilger.tango.api; import com.google.gson.Gson; import com.sun.net.httpserver.HttpExchange; import de.uhilger.mediaz.App; import static de.uhilger.mediaz.App.RB_EP_LISTE; import static de.uhilger.mediaz.App.RB_EP_LISTE_ALLES; import de.uhilger.mediaz.Server; import de.uhilger.mediaz.entity.Ablageort; import de.uhilger.mediaz.store.FileStorage; import de.uhilger.mediaz.entity.Entity; import de.uhilger.mediaz.entity.Geraet; import static de.uhilger.mediaz.store.FileStorage.ST_ABLAGEORT; import static de.uhilger.mediaz.store.FileStorage.ST_GERAET; import de.uhilger.mediaz.store.Storage; import de.uhilger.tango.App; import static de.uhilger.tango.App.RB_EP_LISTE; import static de.uhilger.tango.App.RB_EP_LISTE_ALLES; import de.uhilger.tango.Server; import de.uhilger.tango.entity.Ablageort; import de.uhilger.tango.store.FileStorage; import de.uhilger.tango.entity.Entity; import de.uhilger.tango.entity.Geraet; import static de.uhilger.tango.store.FileStorage.ST_ABLAGEORT; import static de.uhilger.tango.store.FileStorage.ST_GERAET; import de.uhilger.tango.store.Storage; import java.io.IOException; import java.net.URI; import java.util.Iterator; src/de/uhilger/tango/entity/Ablageort.java
File was renamed from src/de/uhilger/mediaz/entity/Ablageort.java @@ -1,5 +1,5 @@ /* Mediazentrale - Personal Media Center Tango - Personal Media Center Copyright (C) 2021 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -15,7 +15,7 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ package de.uhilger.mediaz.entity; package de.uhilger.tango.entity; /** * src/de/uhilger/tango/entity/Abspieler.java
File was renamed from src/de/uhilger/mediaz/entity/Abspieler.java @@ -1,5 +1,5 @@ /* Mediazentrale - Personal Media Center Tango - Personal Media Center Copyright (C) 2021 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -15,7 +15,7 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ package de.uhilger.mediaz.entity; package de.uhilger.tango.entity; /** * Abspieler src/de/uhilger/tango/entity/Abspielliste.java
File was renamed from src/de/uhilger/mediaz/entity/Abspielliste.java @@ -1,5 +1,5 @@ /* Mediazentrale - Personal Media Center Tango - Personal Media Center Copyright (C) 2021 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -15,7 +15,7 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ package de.uhilger.mediaz.entity; package de.uhilger.tango.entity; import java.util.ArrayList; import java.util.List; src/de/uhilger/tango/entity/Abspielvorgang.java
File was renamed from src/de/uhilger/mediaz/entity/Abspielvorgang.java @@ -1,5 +1,5 @@ /* Mediazentrale - Personal Media Center Tango - Personal Media Center Copyright (C) 2021 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -15,7 +15,7 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ package de.uhilger.mediaz.entity; package de.uhilger.tango.entity; /** * Hier merkt sich die Mediazentrale, welcher Titel einer Abspielliste src/de/uhilger/tango/entity/Einstellung.java
File was renamed from src/de/uhilger/mediaz/entity/Einstellung.java @@ -1,5 +1,5 @@ /* Mediazentrale - Personal Media Center Tango - Personal Media Center Copyright (C) 2021 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -15,7 +15,7 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ package de.uhilger.mediaz.entity; package de.uhilger.tango.entity; /** * Einstellung src/de/uhilger/tango/entity/Entity.java
File was renamed from src/de/uhilger/mediaz/entity/Entity.java @@ -3,7 +3,7 @@ * To change this template file, choose Tools | Templates * and open the template in the editor. */ package de.uhilger.mediaz.entity; package de.uhilger.tango.entity; /** * src/de/uhilger/tango/entity/Geraet.java
File was renamed from src/de/uhilger/mediaz/entity/Geraet.java @@ -1,5 +1,5 @@ /* Mediazentrale - Personal Media Center Tango - Personal Media Center Copyright (C) 2021 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -15,7 +15,7 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ package de.uhilger.mediaz.entity; package de.uhilger.tango.entity; /** * src/de/uhilger/tango/entity/Livestream.java
File was renamed from src/de/uhilger/mediaz/entity/Livestream.java @@ -1,5 +1,5 @@ /* Mediazentrale - Personal Media Center Tango - Personal Media Center Copyright (C) 2021 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -15,7 +15,7 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ package de.uhilger.mediaz.entity; package de.uhilger.tango.entity; /** * src/de/uhilger/tango/entity/Titel.java
File was renamed from src/de/uhilger/mediaz/entity/Titel.java @@ -1,5 +1,5 @@ /* Mediazentrale - Personal Media Center Tango - Personal Media Center Copyright (C) 2021 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -15,7 +15,7 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ package de.uhilger.mediaz.entity; package de.uhilger.tango.entity; /** * src/de/uhilger/tango/store/FileStorage.java
File was renamed from src/de/uhilger/mediaz/store/FileStorage.java @@ -1,5 +1,5 @@ /* Mediazentrale - Personal Media Center Tango - Personal Media Center Copyright (C) 2021 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -15,15 +15,15 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ package de.uhilger.mediaz.store; package de.uhilger.tango.store; import com.google.gson.Gson; import com.google.gson.reflect.TypeToken; import de.uhilger.mediaz.Server; import de.uhilger.mediaz.entity.Ablageort; import de.uhilger.mediaz.entity.Abspieler; import de.uhilger.mediaz.entity.Abspielliste; import de.uhilger.mediaz.entity.Einstellung; import de.uhilger.tango.Server; import de.uhilger.tango.entity.Ablageort; import de.uhilger.tango.entity.Abspieler; import de.uhilger.tango.entity.Abspielliste; import de.uhilger.tango.entity.Einstellung; import java.io.BufferedReader; import java.io.File; import java.io.FileNotFoundException; @@ -31,10 +31,10 @@ import java.io.FileWriter; import java.io.IOException; import java.util.logging.Logger; import de.uhilger.mediaz.entity.Entity; import de.uhilger.mediaz.entity.Geraet; import de.uhilger.mediaz.entity.Livestream; import de.uhilger.mediaz.entity.Titel; import de.uhilger.tango.entity.Entity; import de.uhilger.tango.entity.Geraet; import de.uhilger.tango.entity.Livestream; import de.uhilger.tango.entity.Titel; import java.util.ArrayList; import java.util.HashMap; import java.util.List; src/de/uhilger/tango/store/Storage.java
File was renamed from src/de/uhilger/mediaz/store/Storage.java @@ -1,5 +1,5 @@ /* Mediazentrale - Personal Media Center Tango - Personal Media Center Copyright (C) 2021 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -15,10 +15,10 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ package de.uhilger.mediaz.store; package de.uhilger.tango.store; import com.google.gson.reflect.TypeToken; import de.uhilger.mediaz.entity.Entity; import de.uhilger.tango.entity.Entity; import java.util.List; /** src/de/uhilger/tango/store/StorageFile.java
File was renamed from src/de/uhilger/mediaz/store/StorageFile.java @@ -1,5 +1,5 @@ /* Mediazentrale - Personal Media Center Tango - Personal Media Center Copyright (C) 2021 Ulrich Hilger This program is free software: you can redistribute it and/or modify @@ -15,7 +15,7 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. */ package de.uhilger.mediaz.store; package de.uhilger.tango.store; import java.util.Objects; src/de/uhilger/tango/store/Track.java
File was renamed from src/de/uhilger/mediaz/store/Track.java @@ -1,5 +1,5 @@ /* Mediacenter - Central Media Store and Raspberry Pi remote control Tango - Central Media Store and Raspberry Pi remote control Copyright (C) 2013, 2014 Ulrich Hilger, http://uhilger.de This program is free software: you can redistribute it and/or modify @@ -18,7 +18,7 @@ */ package de.uhilger.mediaz.store; package de.uhilger.tango.store; import java.io.File; import java.util.HashMap; src/tango_de_DE.properties