Change bugreports.qt-project.org -> bugreports.qt.io
The Qt bug tracker URL changes as part of the qt.io transition Change-Id: Icb4ab198943b93639b5e3a8d99262303785c6459 Reviewed-by: Kai Koehne <kai.koehne@theqtcompany.com>
This commit is contained in:
parent
2dbbff0364
commit
8eb4b281d9
@ -29,7 +29,7 @@
|
||||
\title Qt Homepage
|
||||
*/
|
||||
/*!
|
||||
\externalpage http://bugreports.qt-project.org
|
||||
\externalpage http://bugreports.qt.io
|
||||
\title Qt Bug Tracker
|
||||
*/
|
||||
/*!
|
||||
|
@ -117,7 +117,7 @@ HTML.postheader = \
|
||||
" <li><a href=\"http://qt-project.org/wiki\">Wiki</a></li>\n" \
|
||||
" <li><a href=\"http://doc.qt.io/\" class=\"active\">Documentation</a></li>\n" \
|
||||
" <li><a href=\"http://qt-project.org/forums\">Forum</a></li>\n" \
|
||||
" <li><a href=\"https://bugreports.qt-project.org/\">Bug Reports</a></li>\n" \
|
||||
" <li><a href=\"https://bugreports.qt.io/\">Bug Reports</a></li>\n" \
|
||||
" <li><a href=\"https://codereview.qt-project.org/\">Code Review</a></li>\n" \
|
||||
" </ul>\n" \
|
||||
" <div id=\"main_title_bar\">\n" \
|
||||
|
@ -298,7 +298,7 @@ entered (localStorage), but credit-card data s/b absent
|
||||
<div id="feedcloseX" class="feedclose t_button">X</div>
|
||||
<form id="feedform" action="http://doc.qt.nokia.com/docFeedbck/feedback.php" method="get">
|
||||
<p id="noteHead">Thank you for giving your feedback.</p> <p class="note">Make sure it is related to this specific page. For more general bugs and
|
||||
requests, please use the <a href="http://bugreports.qt-project.org/secure/Dashboard.jspa">Qt Bug Tracker</a>.</p>
|
||||
requests, please use the <a href="http://bugreports.qt.io/secure/Dashboard.jspa">Qt Bug Tracker</a>.</p>
|
||||
<p><textarea id="feedbox" name="feedText" rows="5" cols="40"></textarea></p>
|
||||
<p><input id="feedsubmit" class="feedclose" type="submit" name="feedback" /></p>
|
||||
</form>
|
||||
|
@ -2612,7 +2612,7 @@
|
||||
\value ElideNone Ellipsis should NOT appear in the text.
|
||||
|
||||
Qt::ElideMiddle is normally the most appropriate choice for URLs (e.g.,
|
||||
"\l{http://bugreports.qt-project.org/browse/QTWEBSITE-13}{http://bugreports.qt.../QTWEBSITE-13/}"),
|
||||
"\l{http://bugreports.qt.io/browse/QTWEBSITE-13}{http://bugreports.qt.../QTWEBSITE-13/}"),
|
||||
whereas Qt::ElideRight is appropriate
|
||||
for other strings (e.g.,
|
||||
"\l{http://doc.qt.digia.com/qq/qq09-mac-deployment.html}{Deploying Applications on Ma...}").
|
||||
|
@ -502,7 +502,7 @@ QVariant QSystemLocale::query(QueryType type, QVariant in = QVariant()) const
|
||||
} else if (typeId == CFStringGetTypeID()) {
|
||||
result = QStringList(QCFString::toQString(languages.as<CFStringRef>()));
|
||||
} else {
|
||||
qWarning("QLocale::uiLanguages(): CFPreferencesCopyValue returned unhandled type \"%s\"; please report to http://bugreports.qt-project.org",
|
||||
qWarning("QLocale::uiLanguages(): CFPreferencesCopyValue returned unhandled type \"%s\"; please report to http://bugreports.qt.io",
|
||||
qPrintable(QCFString::toQString(CFCopyTypeIDDescription(typeId))));
|
||||
}
|
||||
return QVariant(result);
|
||||
|
@ -361,7 +361,7 @@ void QHttpNetworkConnectionChannel::allDone()
|
||||
Q_ASSERT(reply);
|
||||
|
||||
if (!reply) {
|
||||
qWarning() << "QHttpNetworkConnectionChannel::allDone() called without reply. Please report at http://bugreports.qt-project.org/";
|
||||
qWarning() << "QHttpNetworkConnectionChannel::allDone() called without reply. Please report at http://bugreports.qt.io/";
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -1006,7 +1006,7 @@ QList<QNetworkCookie> QNetworkCookiePrivate::parseSetCookieHeaderLine(const QByt
|
||||
*/
|
||||
void QNetworkCookie::normalize(const QUrl &url)
|
||||
{
|
||||
// don't do path checking. See http://bugreports.qt-project.org/browse/QTBUG-5815
|
||||
// don't do path checking. See QTBUG-5815
|
||||
if (d->path.isEmpty()) {
|
||||
QString pathAndFileName = url.path();
|
||||
QString defaultPath = pathAndFileName.left(pathAndFileName.lastIndexOf(QLatin1Char('/'))+1);
|
||||
|
@ -67,7 +67,7 @@ VisualID QXlibEglIntegration::getCompatibleVisualId(Display *display, EGLDisplay
|
||||
chosenVisualInfo = XGetVisualInfo(display, VisualIDMask, &visualInfoTemplate, &matchingCount);
|
||||
if (chosenVisualInfo) {
|
||||
// Skip size checks if implementation supports non-matching visual
|
||||
// and config (http://bugreports.qt-project.org/browse/QTBUG-9444).
|
||||
// and config (QTBUG-9444).
|
||||
if (q_hasEglExtension(eglDisplay,"EGL_NV_post_convert_rounding")) {
|
||||
XFree(chosenVisualInfo);
|
||||
return visualId;
|
||||
|
@ -791,7 +791,7 @@ void tst_QImageReader::animatedGif()
|
||||
}
|
||||
}
|
||||
|
||||
// http://bugreports.qt-project.org/browse/QTBUG-6696
|
||||
// QTBUG-6696
|
||||
// Check the count of images in various call orders...
|
||||
void tst_QImageReader::gifImageCount()
|
||||
{
|
||||
|
@ -7236,7 +7236,7 @@ void tst_QNetworkReply::synchronousRequest()
|
||||
// workaround for HTTPS requests: add self-signed server cert to list of CA certs,
|
||||
// since we cannot react to the sslErrors() signal
|
||||
// to fix this properly we would need to have an ignoreSslErrors() method in the
|
||||
// QNetworkRequest, see http://bugreports.qt-project.org/browse/QTBUG-14774
|
||||
// QNetworkRequest, see QTBUG-14774
|
||||
if (url.scheme() == "https") {
|
||||
QSslConfiguration sslConf;
|
||||
QList<QSslCertificate> certs = QSslCertificate::fromPath(testDataDir + "/certs/qt-test-server-cacert.pem");
|
||||
|
@ -47,7 +47,7 @@ private slots:
|
||||
void tst_QNetworkConfigurationManager::staticsInitialization()
|
||||
{
|
||||
// This code should not crash. The test was introduced as
|
||||
// a fix for https://bugreports.qt-project.org/browse/QTBUG-36897
|
||||
// a fix for QTBUG-36897
|
||||
for (int i = 0; i < 2; i++)
|
||||
{
|
||||
int argc = 1;
|
||||
|
@ -195,7 +195,7 @@ void tst_QGLBuffer::testBuffer(QGLBuffer::Type type)
|
||||
void tst_QGLBuffer::bufferSharing()
|
||||
{
|
||||
#if defined(Q_OS_WIN)
|
||||
// Needs investigation on Windows: https://bugreports.qt-project.org/browse/QTBUG-29692
|
||||
// Needs investigation on Windows: QTBUG-29692
|
||||
QSKIP("Unreproducible timeout on Windows (MSVC/MinGW) CI bots");
|
||||
#endif
|
||||
|
||||
|
@ -735,7 +735,7 @@ void tst_QPrinter::customPaperNameSettingBySize()
|
||||
// Fail with the original values
|
||||
if (!paperNameFound) {
|
||||
qDebug() << "supportedPageSizes() = " << sizes;
|
||||
QEXPECT_FAIL("", "Paper Name mismatch: please report this failure at bugreports.qt-project.org", Continue);
|
||||
QEXPECT_FAIL("", "Paper Name mismatch: please report this failure at bugreports.qt.io", Continue);
|
||||
QCOMPARE(sizes.at(i).name(), printer.paperName());
|
||||
}
|
||||
}
|
||||
|
@ -356,7 +356,7 @@ void tst_QScroller::scrollerProperties()
|
||||
void tst_QScroller::scrollTo()
|
||||
{
|
||||
#ifdef Q_OS_MAC
|
||||
QSKIP("Flakey test - https://bugreports.qt-project.org/browse/QTBUG-29950");
|
||||
QSKIP("Flakey test - QTBUG-29950");
|
||||
#endif
|
||||
{
|
||||
tst_QScrollerWidget *sw = new tst_QScrollerWidget();
|
||||
@ -385,7 +385,7 @@ void tst_QScroller::scrollTo()
|
||||
void tst_QScroller::scroll()
|
||||
{
|
||||
#ifdef Q_OS_MAC
|
||||
QSKIP("Flakey test - https://bugreports.qt-project.org/browse/QTBUG-30133");
|
||||
QSKIP("Flakey test - QTBUG-30133");
|
||||
#endif
|
||||
#ifndef QT_NO_GESTURES
|
||||
// -- good case. normal scroll
|
||||
@ -430,7 +430,7 @@ void tst_QScroller::scroll()
|
||||
void tst_QScroller::overshoot()
|
||||
{
|
||||
#ifdef Q_OS_MAC
|
||||
QSKIP("Flakey test - https://bugreports.qt-project.org/browse/QTBUG-29950");
|
||||
QSKIP("Flakey test - QTBUG-29950");
|
||||
#endif
|
||||
#ifndef QT_NO_GESTURES
|
||||
tst_QScrollerWidget *sw = new tst_QScrollerWidget();
|
||||
|
@ -151,7 +151,7 @@ void tst_QScrollBar::task_209492()
|
||||
#define WHEEL_DELTA 120 // copied from tst_QAbstractSlider / tst_QComboBox
|
||||
void tst_QScrollBar::QTBUG_27308()
|
||||
{
|
||||
// https://bugreports.qt-project.org/browse/QTBUG-27308
|
||||
// QTBUG-27308
|
||||
// Check that a disabled scrollbar doesn't react on wheel events anymore
|
||||
|
||||
QScrollBar testWidget(Qt::Horizontal);
|
||||
|
Loading…
Reference in New Issue
Block a user