diff options
| author | Paul Buetow <git@mx.buetow.org> | 2021-05-01 08:40:57 +0100 |
|---|---|---|
| committer | Paul Buetow <git@mx.buetow.org> | 2021-05-01 08:40:57 +0100 |
| commit | a1f66fa1ff1b518d47e5e732d36efc60e6b930e2 (patch) | |
| tree | e0b01a8786b96464c1ea260f76e83c9b5b5e1968 /sources/client | |
| parent | 039f3549126aa58adb030fcca29dc486f49dec25 (diff) | |
fix URIs in headers
Diffstat (limited to 'sources/client')
| -rw-r--r-- | sources/client/AboutWindow.java | 4 | ||||
| -rw-r--r-- | sources/client/CalendarTableCellRenderer.java | 2 | ||||
| -rw-r--r-- | sources/client/CalendarTableModel.java | 2 | ||||
| -rw-r--r-- | sources/client/InfoWindow.java | 2 | ||||
| -rw-r--r-- | sources/client/JCalendarDatePicker.java | 2 | ||||
| -rw-r--r-- | sources/client/LicenseWindow.java | 2 | ||||
| -rw-r--r-- | sources/client/NetCalendarClient.java | 2 | ||||
| -rw-r--r-- | sources/client/ServerRequester.java | 2 | ||||
| -rw-r--r-- | sources/client/SplashScreen.java | 2 | ||||
| -rw-r--r-- | sources/client/SubWindow.java | 2 | ||||
| -rw-r--r-- | sources/client/helper/DateSpinner.java | 2 | ||||
| -rw-r--r-- | sources/client/helper/GUIHelper.java | 2 | ||||
| -rw-r--r-- | sources/client/inputforms/AdvancedSearching.java | 2 | ||||
| -rw-r--r-- | sources/client/inputforms/CreateNewEvent.java | 2 | ||||
| -rw-r--r-- | sources/client/inputforms/EditExistingEvent.java | 2 | ||||
| -rw-r--r-- | sources/client/inputforms/InputForm.java | 2 | ||||
| -rw-r--r-- | sources/client/inputforms/Preferences.java | 2 | ||||
| -rw-r--r-- | sources/client/inputforms/RenameCategory.java | 2 |
18 files changed, 19 insertions, 19 deletions
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; |
