Branch: master

8d5ef692 2019-07-27 12:46:53 Chris
Remove old upstream URL of KWrite and Kate.

Signed-off-by: Chris <xchrisx@...>
M kate/app/katemain.cpp
M kate/app/kwritemain.cpp

kate/app/katemain.cpp

diff --git a/kate/app/katemain.cpp b/kate/app/katemain.cpp
index 7b9903d..8cdd3a5 100644
--- a/kate/app/katemain.cpp
+++ b/kate/app/katemain.cpp
@@ -66,7 +66,7 @@
 
   TDEAboutData aboutData ("kate", I18N_NOOP("Kate"), kateVersion.latin1(),
                         I18N_NOOP( "Kate - Advanced Text Editor" ), TDEAboutData::License_LGPL_V2,
-                        I18N_NOOP( "(c) 2000-2005 The Kate Authors" ), 0, "http://kate.kde.org");
+                        I18N_NOOP( "(c) 2000-2005 The Kate Authors" ), 0);
 
   aboutData.addAuthor ("Christoph Cullmann", I18N_NOOP("Maintainer"), "cullmann@...", "http://www.babylon2k.de");
   aboutData.addAuthor ("Anders Lund", I18N_NOOP("Core Developer"), "anders@...", "http://www.alweb.dk");

kate/app/kwritemain.cpp

diff --git a/kate/app/kwritemain.cpp b/kate/app/kwritemain.cpp
index f427b00..5fc602d 100644
--- a/kate/app/kwritemain.cpp
+++ b/kate/app/kwritemain.cpp
@@ -553,7 +553,7 @@
                          I18N_NOOP("KWrite"),
                          kWriteVersion.latin1(),
                          I18N_NOOP( "KWrite - Text Editor" ), TDEAboutData::License_LGPL_V2,
-                         I18N_NOOP( "(c) 2000-2005 The Kate Authors" ), 0, "http://kate.kde.org" );
+                         I18N_NOOP( "(c) 2000-2005 The Kate Authors" ), 0 );
 
   aboutData.addAuthor ("Christoph Cullmann", I18N_NOOP("Maintainer"), "cullmann@...", "http://www.babylon2k.de");
   aboutData.addAuthor ("Anders Lund", I18N_NOOP("Core Developer"), "anders@...", "http://www.alweb.dk");
9dce7722 2019-07-28 00:48:09 Chris
Remove old upstream URLs of tdebase.

Signed-off-by: Chris <xchrisx@...>
M kcontrol/kthememanager/kthememanager.cpp
M knetattach/main.cpp
M kpager/main.cpp
M ksplashml/main.cpp

kcontrol/kthememanager/kthememanager.cpp

diff --git a/kcontrol/kthememanager/kthememanager.cpp b/kcontrol/kthememanager/kthememanager.cpp
index 969e377..6afd487 100644
--- a/kcontrol/kthememanager/kthememanager.cpp
+++ b/kcontrol/kthememanager/kthememanager.cpp
@@ -49,8 +49,7 @@
     TDEAboutData *about = new TDEAboutData("kthememanager", I18N_NOOP("TDE Theme Manager"),
                                        "0.4", I18N_NOOP("This control module handles installing, removing and "
                                                         "creating visual TDE themes."),
-                                       TDEAboutData::License_GPL, "(c) 2003, 2004, 2006 Lukáš Tinkl", 0,
-                                       "http://developer.kde.org/~lukas/kthememanager");
+                                       TDEAboutData::License_GPL, "(c) 2003, 2004, 2006 Lukáš Tinkl", 0);
     setAboutData( about );
 
     setQuickHelp( i18n("This control module handles installing, removing and "

knetattach/main.cpp

diff --git a/knetattach/main.cpp b/knetattach/main.cpp
index b2cb63d..35b5867 100644
--- a/knetattach/main.cpp
+++ b/knetattach/main.cpp
@@ -29,8 +29,7 @@
 	TDEAboutData about("knetattach", I18N_NOOP("TDE Network Wizard"), "1.0",
 		I18N_NOOP("TDE Network Wizard"),
 		TDEAboutData::License_GPL,
-		I18N_NOOP("(c) 2004 George Staikos"), 0,
-		"http://www.kde.org/");
+		I18N_NOOP("(c) 2004 George Staikos"), 0);
 
 	about.addAuthor("George Staikos", I18N_NOOP("Primary author and maintainer"), "staikos@...");
 

kpager/main.cpp

diff --git a/kpager/main.cpp b/kpager/main.cpp
index 4a6ab2b..20c8e26 100644
--- a/kpager/main.cpp
+++ b/kpager/main.cpp
@@ -66,8 +66,7 @@
 {
     TDEAboutData *aboutdata = new TDEAboutData("kpager", "KPager", "1.5",
 					   I18N_NOOP("Desktop Overview"), TDEAboutData::License_GPL,
-					   "(C) 1998-2002, Antonio Larrosa Jimenez","",
-					   "http://developer.kde.org/~larrosa/kpager.html");
+					   "(C) 1998-2002, Antonio Larrosa Jimenez","");
 
     aboutdata->addAuthor("Antonio Larrosa Jimenez",
 			 I18N_NOOP("Original Developer/Maintainer"),"larrosa@...",

ksplashml/main.cpp

diff --git a/ksplashml/main.cpp b/ksplashml/main.cpp
index b36c6a2..52391d8 100644
--- a/ksplashml/main.cpp
+++ b/ksplashml/main.cpp
@@ -45,8 +45,7 @@
     VERSION,
     I18N_NOOP("Trinity splash screen"),
     TDEAboutData::License_GPL,
-    I18N_NOOP("(c) 2001 - 2003, Flaming Sword Productions\n (c) 2003 KDE developers"),
-    "http://www.kde.org");
+    I18N_NOOP("(c) 2001 - 2003, Flaming Sword Productions\n (c) 2003 KDE developers"));
   about.addAuthor( "Ravikiran Rajagopal", I18N_NOOP("Author and maintainer"), "ravi@..." );
   about.addAuthor( "Brian Ledbetter", I18N_NOOP("Original author"), "brian@..." );
 

Branch: r14.0.x

a88cf82d 2019-07-28 00:48:47 Chris
Remove old upstream URLs of tdebase.

Signed-off-by: Chris <xchrisx@...>
(cherry picked from commit 9dce7722962d0afc07e43ad61ef9db82ace194f1)
M kcontrol/kthememanager/kthememanager.cpp
M knetattach/main.cpp
M kpager/main.cpp
M ksplashml/main.cpp

kcontrol/kthememanager/kthememanager.cpp

diff --git a/kcontrol/kthememanager/kthememanager.cpp b/kcontrol/kthememanager/kthememanager.cpp
index 969e377..6afd487 100644
--- a/kcontrol/kthememanager/kthememanager.cpp
+++ b/kcontrol/kthememanager/kthememanager.cpp
@@ -49,8 +49,7 @@
     TDEAboutData *about = new TDEAboutData("kthememanager", I18N_NOOP("TDE Theme Manager"),
                                        "0.4", I18N_NOOP("This control module handles installing, removing and "
                                                         "creating visual TDE themes."),
-                                       TDEAboutData::License_GPL, "(c) 2003, 2004, 2006 Lukáš Tinkl", 0,
-                                       "http://developer.kde.org/~lukas/kthememanager");
+                                       TDEAboutData::License_GPL, "(c) 2003, 2004, 2006 Lukáš Tinkl", 0);
     setAboutData( about );
 
     setQuickHelp( i18n("This control module handles installing, removing and "

knetattach/main.cpp

diff --git a/knetattach/main.cpp b/knetattach/main.cpp
index b2cb63d..35b5867 100644
--- a/knetattach/main.cpp
+++ b/knetattach/main.cpp
@@ -29,8 +29,7 @@
 	TDEAboutData about("knetattach", I18N_NOOP("TDE Network Wizard"), "1.0",
 		I18N_NOOP("TDE Network Wizard"),
 		TDEAboutData::License_GPL,
-		I18N_NOOP("(c) 2004 George Staikos"), 0,
-		"http://www.kde.org/");
+		I18N_NOOP("(c) 2004 George Staikos"), 0);
 
 	about.addAuthor("George Staikos", I18N_NOOP("Primary author and maintainer"), "staikos@...");
 

kpager/main.cpp

diff --git a/kpager/main.cpp b/kpager/main.cpp
index 4a6ab2b..20c8e26 100644
--- a/kpager/main.cpp
+++ b/kpager/main.cpp
@@ -66,8 +66,7 @@
 {
     TDEAboutData *aboutdata = new TDEAboutData("kpager", "KPager", "1.5",
 					   I18N_NOOP("Desktop Overview"), TDEAboutData::License_GPL,
-					   "(C) 1998-2002, Antonio Larrosa Jimenez","",
-					   "http://developer.kde.org/~larrosa/kpager.html");
+					   "(C) 1998-2002, Antonio Larrosa Jimenez","");
 
     aboutdata->addAuthor("Antonio Larrosa Jimenez",
 			 I18N_NOOP("Original Developer/Maintainer"),"larrosa@...",

ksplashml/main.cpp

diff --git a/ksplashml/main.cpp b/ksplashml/main.cpp
index b36c6a2..52391d8 100644
--- a/ksplashml/main.cpp
+++ b/ksplashml/main.cpp
@@ -45,8 +45,7 @@
     VERSION,
     I18N_NOOP("Trinity splash screen"),
     TDEAboutData::License_GPL,
-    I18N_NOOP("(c) 2001 - 2003, Flaming Sword Productions\n (c) 2003 KDE developers"),
-    "http://www.kde.org");
+    I18N_NOOP("(c) 2001 - 2003, Flaming Sword Productions\n (c) 2003 KDE developers"));
   about.addAuthor( "Ravikiran Rajagopal", I18N_NOOP("Author and maintainer"), "ravi@..." );
   about.addAuthor( "Brian Ledbetter", I18N_NOOP("Original author"), "brian@..." );