summaryrefslogtreecommitdiffstats
path: root/tdeio
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2018-06-30 16:23:22 +0200
committerSlávek Banko <slavek.banko@axis.cz>2018-06-30 16:28:39 +0200
commitaa83c86cd30e77bad7fdb2b047ce256a24c883b5 (patch)
tree6a8cbf9e98ea9e136140365baa5cdfcee80160d2 /tdeio
parent6734f5e47f496ca1b89e2fd6c51e46ec447e3de1 (diff)
downloadtdelibs-aa83c86cd30e77bad7fdb2b047ce256a24c883b5.tar.gz
tdelibs-aa83c86cd30e77bad7fdb2b047ce256a24c883b5.zip
Fix bug reports link in about dialog
Update bug reports url to bugs.trinitydesktop.org This resolves bug 2935 Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'tdeio')
-rw-r--r--tdeio/misc/tdesendbugmail/main.cpp8
-rw-r--r--tdeio/tdeio/global.cpp10
-rw-r--r--tdeio/tdeio/kautomount.cpp2
-rw-r--r--tdeio/tests/kprotocolinfotest.cpp2
-rw-r--r--tdeio/tests/kurifiltertest.cpp2
5 files changed, 12 insertions, 12 deletions
diff --git a/tdeio/misc/tdesendbugmail/main.cpp b/tdeio/misc/tdesendbugmail/main.cpp
index 32465039d..bf3099094 100644
--- a/tdeio/misc/tdesendbugmail/main.cpp
+++ b/tdeio/misc/tdesendbugmail/main.cpp
@@ -20,7 +20,7 @@
static TDECmdLineOptions options[] = {
{ "subject <argument>", I18N_NOOP("Subject line"), 0 },
- { "recipient <argument>", I18N_NOOP("Recipient"), "submit@bugs.kde.org" },
+ { "recipient <argument>", I18N_NOOP("Recipient"), "submit@bugs.trinitydesktop.org" },
TDECmdLineLastOption
};
@@ -60,7 +60,7 @@ int main(int argc, char **argv) {
TDELocale::setMainCatalogue("tdelibs");
TDEAboutData d("tdesendbugmail", I18N_NOOP("KSendBugMail"), "1.0",
- I18N_NOOP("Sends a short bug report to submit@bugs.kde.org"),
+ I18N_NOOP("Sends a short bug report to submit@bugs.trinitydesktop.org"),
TDEAboutData::License_GPL, "(c) 2000 Stephan Kulow");
d.addAuthor("Stephan Kulow", I18N_NOOP("Author"), "coolo@kde.org");
@@ -72,7 +72,7 @@ int main(int argc, char **argv) {
TQCString recipient = args->getOption("recipient");
if (recipient.isEmpty())
- recipient = "submit@bugs.kde.org";
+ recipient = "submit@bugs.trinitydesktop.org";
else {
if (recipient.at(0) == '\'') {
recipient = recipient.mid(1).left(recipient.length() - 2);
@@ -117,7 +117,7 @@ int main(int argc, char **argv) {
TQString server = emailConfig.getSetting(KEMailSettings::OutServer);
if (server.isEmpty())
- server=TQString::fromLatin1("bugs.kde.org");
+ server=TQString::fromLatin1("bugs.trinitydesktop.org");
SMTP *sm = new SMTP;
BugMailer bm(sm);
diff --git a/tdeio/tdeio/global.cpp b/tdeio/tdeio/global.cpp
index a75cc223f..4a5819bad 100644
--- a/tdeio/tdeio/global.cpp
+++ b/tdeio/tdeio/global.cpp
@@ -243,7 +243,7 @@ TDEIO_EXPORT TQString TDEIO::buildErrorString(int errorCode, const TQString &err
result = i18n( "Could not start process %1." ).arg( errorText );
break;
case TDEIO::ERR_INTERNAL:
- result = i18n( "Internal Error\nPlease send a full bug report at http://bugs.kde.org\n%1" ).arg( errorText );
+ result = i18n( "Internal Error\nPlease send a full bug report at http://bugs.trinitydesktop.org\n%1" ).arg( errorText );
break;
case TDEIO::ERR_MALFORMED_URL:
result = i18n( "Malformed URL %1." ).arg( errorText );
@@ -429,7 +429,7 @@ TDEIO_EXPORT TQString TDEIO::buildErrorString(int errorCode, const TQString &err
result = i18n( "Could not access %1.\nOffline mode active.").arg( errorText );
break;
default:
- result = i18n( "Unknown error code %1\n%2\nPlease send a full bug report at http://bugs.kde.org." ).arg( errorCode ).arg( errorText );
+ result = i18n( "Unknown error code %1\n%2\nPlease send a full bug report at http://bugs.trinitydesktop.org." ).arg( errorCode ).arg( errorText );
break;
}
@@ -608,7 +608,7 @@ TDEIO_EXPORT TQByteArray TDEIO::rawErrorDetail(int errorCode, const TQString &er
"high quality bug report. If the software is provided by a third party, "
"please contact them directly. Otherwise, first look to see if "
"the same bug has been submitted by someone else by searching at the "
- "<a href=\"http://bugs.pearsoncomputing.net//\">TDE bug reporting website</a>. If not, take "
+ "<a href=\"http://bugs.trinitydesktop.org/\">TDE bug reporting website</a>. If not, take "
"note of the details given above, and include them in your bug report, along "
"with as many other details as you think might help." );
TQString cNetwork = i18n( "There may have been a problem with your network "
@@ -1118,8 +1118,8 @@ TDEIO_EXPORT TQByteArray TDEIO::rawErrorDetail(int errorCode, const TQString &er
"authentication details, the authentication failed because the "
"method that the server is using is not supported by the TDE "
"program implementing the protocol %1." ).arg( protocol );
- solutions << i18n( "Please file a bug at <a href=\"http://bugs.kde.org/\">"
- "http://bugs.pearsoncomputing.net/</a> to inform the TDE team of the unsupported "
+ solutions << i18n( "Please file a bug at <a href=\"http://bugs.trinitydesktop.org/\">"
+ "http://bugs.trinitydesktop.org/</a> to inform the TDE team of the unsupported "
"authentication method." ) << sSysadmin;
break;
diff --git a/tdeio/tdeio/kautomount.cpp b/tdeio/tdeio/kautomount.cpp
index f167a6ccb..c6fa72371 100644
--- a/tdeio/tdeio/kautomount.cpp
+++ b/tdeio/tdeio/kautomount.cpp
@@ -57,7 +57,7 @@ void KAutoMount::slotResult( TDEIO::Job * job )
if ( mountpoint.path().isEmpty() )
kdWarning(7015) << m_strDevice << " was correctly mounted, but TDEIO::findDeviceMountPoint didn't find it. "
- << "This looks like a bug, please report it on http://bugs.kde.org, together with your /etc/fstab line" << endl;
+ << "This looks like a bug, please report it on http://bugs.trinitydesktop.org, together with your /etc/fstab line" << endl;
else if ( m_bShowFilemanagerWindow )
KRun::runURL( mountpoint, "inode/directory" );
diff --git a/tdeio/tests/kprotocolinfotest.cpp b/tdeio/tests/kprotocolinfotest.cpp
index d951f3696..8285396b8 100644
--- a/tdeio/tests/kprotocolinfotest.cpp
+++ b/tdeio/tests/kprotocolinfotest.cpp
@@ -48,7 +48,7 @@ int main(int argc, char **argv) {
assert( TDEGlobalSettings::showFilePreview( "audiocd:/" ) == false );
TQString proxy;
- TQString protocol = KProtocolManager::slaveProtocol( "http://bugs.kde.org", proxy );
+ TQString protocol = KProtocolManager::slaveProtocol( "http://bugs.trinitydesktop.org", proxy );
assert( protocol == "http" );
TQStringList capabilities = KProtocolInfo::capabilities( "imap" );
diff --git a/tdeio/tests/kurifiltertest.cpp b/tdeio/tests/kurifiltertest.cpp
index d9f6cdf87..9de62e134 100644
--- a/tdeio/tests/kurifiltertest.cpp
+++ b/tdeio/tests/kurifiltertest.cpp
@@ -343,7 +343,7 @@ int main(int argc, char **argv)
TQCString sc;
filter( sc.sprintf("gg%cfoo bar",delimiter), "http://www.google.com/search?q=foo+bar&ie=UTF-8&oe=UTF-8", KURIFilterData::NET_PROTOCOL );
- filter( sc.sprintf("bug%c55798", delimiter), "http://bugs.pearsoncomputing.net/show_bug.cgi?id=55798", KURIFilterData::NET_PROTOCOL );
+ filter( sc.sprintf("bug%c55798", delimiter), "http://bugs.trinitydesktop.org/show_bug.cgi?id=55798", KURIFilterData::NET_PROTOCOL );
filter( sc.sprintf("gg%cC++", delimiter), "http://www.google.com/search?q=C%2B%2B&ie=UTF-8&oe=UTF-8", KURIFilterData::NET_PROTOCOL );
filter( sc.sprintf("ya%cfoo bar was here", delimiter), 0, -1 ); // this triggers default search, i.e. google