summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <git@mx.buetow.org>2021-05-01 08:40:57 +0100
committerPaul Buetow <git@mx.buetow.org>2021-05-01 08:40:57 +0100
commita1f66fa1ff1b518d47e5e732d36efc60e6b930e2 (patch)
treee0b01a8786b96464c1ea260f76e83c9b5b5e1968
parent039f3549126aa58adb030fcca29dc486f49dec25 (diff)
fix URIs in headersHEADmaster
-rw-r--r--LICENSE.txt2
-rw-r--r--sources/client/AboutWindow.java4
-rw-r--r--sources/client/CalendarTableCellRenderer.java2
-rw-r--r--sources/client/CalendarTableModel.java2
-rw-r--r--sources/client/InfoWindow.java2
-rw-r--r--sources/client/JCalendarDatePicker.java2
-rw-r--r--sources/client/LicenseWindow.java2
-rw-r--r--sources/client/NetCalendarClient.java2
-rw-r--r--sources/client/ServerRequester.java2
-rw-r--r--sources/client/SplashScreen.java2
-rw-r--r--sources/client/SubWindow.java2
-rw-r--r--sources/client/helper/DateSpinner.java2
-rw-r--r--sources/client/helper/GUIHelper.java2
-rw-r--r--sources/client/inputforms/AdvancedSearching.java2
-rw-r--r--sources/client/inputforms/CreateNewEvent.java2
-rw-r--r--sources/client/inputforms/EditExistingEvent.java2
-rw-r--r--sources/client/inputforms/InputForm.java2
-rw-r--r--sources/client/inputforms/Preferences.java2
-rw-r--r--sources/client/inputforms/RenameCategory.java2
-rw-r--r--sources/server/CalendarDatabase.java2
-rw-r--r--sources/server/CalendarFormatParser.java2
-rw-r--r--sources/server/NetCalendarServer.java2
-rw-r--r--sources/shared/CalendarCategory.java2
-rw-r--r--sources/shared/CalendarEvent.java2
-rw-r--r--sources/shared/Config.java2
-rw-r--r--sources/shared/DoCallback.java2
-rw-r--r--sources/shared/Main.java2
-rw-r--r--sources/shared/MyDate.java2
-rw-r--r--sources/shared/MyVector.java2
-rw-r--r--sources/shared/remotecall/ClientRequest.java2
-rw-r--r--sources/shared/remotecall/RemoteCall.java2
-rw-r--r--sources/shared/remotecall/ServerResponse.java2
32 files changed, 33 insertions, 33 deletions
diff --git a/LICENSE.txt b/LICENSE.txt
index 8b32486..156bf6e 100644
--- a/LICENSE.txt
+++ b/LICENSE.txt
@@ -1,5 +1,5 @@
NetCalendar (c) by Dipl.-Inform. (FH) Paul C. Buetow
-http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+http://buetow.org - netcalendar@dev.buetow.org
GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
diff --git a/sources/client/AboutWindow.java b/sources/client/AboutWindow.java
index f55b5e1..8b39114 100644
--- a/sources/client/AboutWindow.java
+++ b/sources/client/AboutWindow.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
package client;
@@ -22,7 +22,7 @@ public class AboutWindow extends InfoWindow {
super(netCalendarClient, "About",
Config.VERSION + "\n" +
"(c) 2006, 2009 by Dipl.-Inform. (FH) Paul C. Buetow; " +
- "Web: netcalendar.buetow.org; E-Mail: " + getEmailAddr() + "\n\n" +
+ "Web: buetow.org; E-Mail: " + getEmailAddr() + "\n\n" +
"NetCalendar is a network capable and mostly UNIX /usr/bin/calendar database compatible Calendar application " +
"programmed in Java. Its initial motivation was a programming project at the Aachen " +
"University of Applied Sciences (www.fh-aachen.de) for the object oriented " +
diff --git a/sources/client/CalendarTableCellRenderer.java b/sources/client/CalendarTableCellRenderer.java
index 4266815..c2ce5a3 100644
--- a/sources/client/CalendarTableCellRenderer.java
+++ b/sources/client/CalendarTableCellRenderer.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
package client;
diff --git a/sources/client/CalendarTableModel.java b/sources/client/CalendarTableModel.java
index f55ff58..b93b74a 100644
--- a/sources/client/CalendarTableModel.java
+++ b/sources/client/CalendarTableModel.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
package client;
diff --git a/sources/client/InfoWindow.java b/sources/client/InfoWindow.java
index 2fc7725..d5200e1 100644
--- a/sources/client/InfoWindow.java
+++ b/sources/client/InfoWindow.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
package client;
diff --git a/sources/client/JCalendarDatePicker.java b/sources/client/JCalendarDatePicker.java
index c1113c7..3d71a57 100644
--- a/sources/client/JCalendarDatePicker.java
+++ b/sources/client/JCalendarDatePicker.java
@@ -1,6 +1,6 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
/**
diff --git a/sources/client/LicenseWindow.java b/sources/client/LicenseWindow.java
index fcf3f4f..0ca797a 100644
--- a/sources/client/LicenseWindow.java
+++ b/sources/client/LicenseWindow.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
package client;
diff --git a/sources/client/NetCalendarClient.java b/sources/client/NetCalendarClient.java
index fff3223..1cca78a 100644
--- a/sources/client/NetCalendarClient.java
+++ b/sources/client/NetCalendarClient.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
/**
diff --git a/sources/client/ServerRequester.java b/sources/client/ServerRequester.java
index 35135a4..be73537 100644
--- a/sources/client/ServerRequester.java
+++ b/sources/client/ServerRequester.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
/**
diff --git a/sources/client/SplashScreen.java b/sources/client/SplashScreen.java
index ec9f0a8..bb67438 100644
--- a/sources/client/SplashScreen.java
+++ b/sources/client/SplashScreen.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
package client;
diff --git a/sources/client/SubWindow.java b/sources/client/SubWindow.java
index 6525aa7..e4f9a71 100644
--- a/sources/client/SubWindow.java
+++ b/sources/client/SubWindow.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
package client;
diff --git a/sources/client/helper/DateSpinner.java b/sources/client/helper/DateSpinner.java
index ed5ada1..a2c2971 100644
--- a/sources/client/helper/DateSpinner.java
+++ b/sources/client/helper/DateSpinner.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
package client.helper;
diff --git a/sources/client/helper/GUIHelper.java b/sources/client/helper/GUIHelper.java
index ddf5155..bf988c0 100644
--- a/sources/client/helper/GUIHelper.java
+++ b/sources/client/helper/GUIHelper.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
package client.helper;
diff --git a/sources/client/inputforms/AdvancedSearching.java b/sources/client/inputforms/AdvancedSearching.java
index 0837a71..43fe01d 100644
--- a/sources/client/inputforms/AdvancedSearching.java
+++ b/sources/client/inputforms/AdvancedSearching.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
/*
diff --git a/sources/client/inputforms/CreateNewEvent.java b/sources/client/inputforms/CreateNewEvent.java
index 8d16738..b3df322 100644
--- a/sources/client/inputforms/CreateNewEvent.java
+++ b/sources/client/inputforms/CreateNewEvent.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
package client.inputforms;
diff --git a/sources/client/inputforms/EditExistingEvent.java b/sources/client/inputforms/EditExistingEvent.java
index b0e9631..ba42277 100644
--- a/sources/client/inputforms/EditExistingEvent.java
+++ b/sources/client/inputforms/EditExistingEvent.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
package client.inputforms;
diff --git a/sources/client/inputforms/InputForm.java b/sources/client/inputforms/InputForm.java
index 8b665c5..3247dbb 100644
--- a/sources/client/inputforms/InputForm.java
+++ b/sources/client/inputforms/InputForm.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
package client.inputforms;
diff --git a/sources/client/inputforms/Preferences.java b/sources/client/inputforms/Preferences.java
index b7f783c..3fa6df0 100644
--- a/sources/client/inputforms/Preferences.java
+++ b/sources/client/inputforms/Preferences.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
package client.inputforms;
diff --git a/sources/client/inputforms/RenameCategory.java b/sources/client/inputforms/RenameCategory.java
index e55c547..a60fb57 100644
--- a/sources/client/inputforms/RenameCategory.java
+++ b/sources/client/inputforms/RenameCategory.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
package client.inputforms;
diff --git a/sources/server/CalendarDatabase.java b/sources/server/CalendarDatabase.java
index f277a06..4bc969e 100644
--- a/sources/server/CalendarDatabase.java
+++ b/sources/server/CalendarDatabase.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
package server;
diff --git a/sources/server/CalendarFormatParser.java b/sources/server/CalendarFormatParser.java
index a1f3cb0..bc3527e 100644
--- a/sources/server/CalendarFormatParser.java
+++ b/sources/server/CalendarFormatParser.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
/**
diff --git a/sources/server/NetCalendarServer.java b/sources/server/NetCalendarServer.java
index a8e4e99..7d670fa 100644
--- a/sources/server/NetCalendarServer.java
+++ b/sources/server/NetCalendarServer.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
/**
diff --git a/sources/shared/CalendarCategory.java b/sources/shared/CalendarCategory.java
index a6cb85e..dbfe04f 100644
--- a/sources/shared/CalendarCategory.java
+++ b/sources/shared/CalendarCategory.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
/**
diff --git a/sources/shared/CalendarEvent.java b/sources/shared/CalendarEvent.java
index 54c636a..34b68c9 100644
--- a/sources/shared/CalendarEvent.java
+++ b/sources/shared/CalendarEvent.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
/**
diff --git a/sources/shared/Config.java b/sources/shared/Config.java
index 15a7591..9643970 100644
--- a/sources/shared/Config.java
+++ b/sources/shared/Config.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
package shared;
diff --git a/sources/shared/DoCallback.java b/sources/shared/DoCallback.java
index d6e2e5c..62398cf 100644
--- a/sources/shared/DoCallback.java
+++ b/sources/shared/DoCallback.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
package shared;
diff --git a/sources/shared/Main.java b/sources/shared/Main.java
index 36edd81..f9f8ca7 100644
--- a/sources/shared/Main.java
+++ b/sources/shared/Main.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
package shared;
diff --git a/sources/shared/MyDate.java b/sources/shared/MyDate.java
index 5ff35ab..97cded4 100644
--- a/sources/shared/MyDate.java
+++ b/sources/shared/MyDate.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
package shared;
diff --git a/sources/shared/MyVector.java b/sources/shared/MyVector.java
index f6c72dc..d0ad1e1 100644
--- a/sources/shared/MyVector.java
+++ b/sources/shared/MyVector.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
package shared;
diff --git a/sources/shared/remotecall/ClientRequest.java b/sources/shared/remotecall/ClientRequest.java
index 16fc52f..b6372ba 100644
--- a/sources/shared/remotecall/ClientRequest.java
+++ b/sources/shared/remotecall/ClientRequest.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
package shared.remotecall;
diff --git a/sources/shared/remotecall/RemoteCall.java b/sources/shared/remotecall/RemoteCall.java
index 3e7609d..c7ebb2f 100644
--- a/sources/shared/remotecall/RemoteCall.java
+++ b/sources/shared/remotecall/RemoteCall.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
package shared.remotecall;
diff --git a/sources/shared/remotecall/ServerResponse.java b/sources/shared/remotecall/ServerResponse.java
index 9cd2cc8..43a85b6 100644
--- a/sources/shared/remotecall/ServerResponse.java
+++ b/sources/shared/remotecall/ServerResponse.java
@@ -1,5 +1,5 @@
/* NetCalendar 2006, 2009 (c) Dipl.-Inform. (FH) Paul C. Buetow
- * http://netcalendar.buetow.org - netcalendar@dev.buetow.org
+ * http://buetow.org - netcalendar@dev.buetow.org
*/
package shared.remotecall;