From 9b46943686e1db475eb057c8955e931649cd2705 Mon Sep 17 00:00:00 2001 From: Peter Hartmann Date: Mon, 27 Jun 2011 15:55:42 +0200 Subject: SSL example: update secure socket client example to use new cert API issuerInfo and subjectInfo now return a QStringList instead of a QString Change-Id: I04174a7f6319ae156ac8de964d04c0525c9c5a9a Reviewed-on: http://codereview.qt.nokia.com/799 Reviewed-by: Qt Sanity Bot Reviewed-by: Sergio Ahumada --- .../network/securesocketclient/certificateinfo.cpp | 28 +++++++++++----------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'examples/network') diff --git a/examples/network/securesocketclient/certificateinfo.cpp b/examples/network/securesocketclient/certificateinfo.cpp index b1a9acb0b2..9c9ffdeb4c 100644 --- a/examples/network/securesocketclient/certificateinfo.cpp +++ b/examples/network/securesocketclient/certificateinfo.cpp @@ -65,8 +65,8 @@ void CertificateInfo::setCertificateChain(const QList &chain) for (int i = 0; i < chain.size(); ++i) { const QSslCertificate &cert = chain.at(i); form->certificationPathView->addItem(tr("%1%2 (%3)").arg(!i ? QString() : tr("Issued by: ")) - .arg(cert.subjectInfo(QSslCertificate::Organization)) - .arg(cert.subjectInfo(QSslCertificate::CommonName))); + .arg(cert.subjectInfo(QSslCertificate::Organization).join(QLatin1String(" "))) + .arg(cert.subjectInfo(QSslCertificate::CommonName).join(QLatin1String(" ")))); } form->certificationPathView->setCurrentIndex(0); @@ -78,19 +78,19 @@ void CertificateInfo::updateCertificateInfo(int index) if (index >= 0 && index < chain.size()) { const QSslCertificate &cert = chain.at(index); QStringList lines; - lines << tr("Organization: %1").arg(cert.subjectInfo(QSslCertificate::Organization)) - << tr("Subunit: %1").arg(cert.subjectInfo(QSslCertificate::OrganizationalUnitName)) - << tr("Country: %1").arg(cert.subjectInfo(QSslCertificate::CountryName)) - << tr("Locality: %1").arg(cert.subjectInfo(QSslCertificate::LocalityName)) - << tr("State/Province: %1").arg(cert.subjectInfo(QSslCertificate::StateOrProvinceName)) - << tr("Common Name: %1").arg(cert.subjectInfo(QSslCertificate::CommonName)) + lines << tr("Organization: %1").arg(cert.subjectInfo(QSslCertificate::Organization).join(QLatin1String(" "))) + << tr("Subunit: %1").arg(cert.subjectInfo(QSslCertificate::OrganizationalUnitName).join(QLatin1String(" "))) + << tr("Country: %1").arg(cert.subjectInfo(QSslCertificate::CountryName).join(QLatin1String(" "))) + << tr("Locality: %1").arg(cert.subjectInfo(QSslCertificate::LocalityName).join(QLatin1String(" "))) + << tr("State/Province: %1").arg(cert.subjectInfo(QSslCertificate::StateOrProvinceName).join(QLatin1String(" "))) + << tr("Common Name: %1").arg(cert.subjectInfo(QSslCertificate::CommonName).join(QLatin1String(" "))) << QString() - << tr("Issuer Organization: %1").arg(cert.issuerInfo(QSslCertificate::Organization)) - << tr("Issuer Unit Name: %1").arg(cert.issuerInfo(QSslCertificate::OrganizationalUnitName)) - << tr("Issuer Country: %1").arg(cert.issuerInfo(QSslCertificate::CountryName)) - << tr("Issuer Locality: %1").arg(cert.issuerInfo(QSslCertificate::LocalityName)) - << tr("Issuer State/Province: %1").arg(cert.issuerInfo(QSslCertificate::StateOrProvinceName)) - << tr("Issuer Common Name: %1").arg(cert.issuerInfo(QSslCertificate::CommonName)); + << tr("Issuer Organization: %1").arg(cert.issuerInfo(QSslCertificate::Organization).join(QLatin1String(" "))) + << tr("Issuer Unit Name: %1").arg(cert.issuerInfo(QSslCertificate::OrganizationalUnitName).join(QLatin1String(" "))) + << tr("Issuer Country: %1").arg(cert.issuerInfo(QSslCertificate::CountryName).join(QLatin1String(" "))) + << tr("Issuer Locality: %1").arg(cert.issuerInfo(QSslCertificate::LocalityName).join(QLatin1String(" "))) + << tr("Issuer State/Province: %1").arg(cert.issuerInfo(QSslCertificate::StateOrProvinceName).join(QLatin1String(" "))) + << tr("Issuer Common Name: %1").arg(cert.issuerInfo(QSslCertificate::CommonName).join(QLatin1String(" "))); foreach (QString line, lines) form->certificateInfoView->addItem(line); } else { -- cgit v1.2.3 From 192eae5797fdd8b68eef8697fd75717fd537d15b Mon Sep 17 00:00:00 2001 From: Casper van Donderen Date: Mon, 4 Jul 2011 10:16:53 +0200 Subject: Remove references to demos from docs. Change-Id: I1ae723af883c305ea64a4e46cc3ce889dd3c021b Reviewed-on: http://codereview.qt.nokia.com/1032 Reviewed-by: Qt Sanity Bot Reviewed-by: David Boddie --- examples/network/README | 33 +-------------------------------- 1 file changed, 1 insertion(+), 32 deletions(-) (limited to 'examples/network') diff --git a/examples/network/README b/examples/network/README index 23721df4c3..23682e4aef 100644 --- a/examples/network/README +++ b/examples/network/README @@ -5,36 +5,5 @@ These examples demonstrate the fundamental aspects of network programming with Qt. -The example launcher provided with Qt can be used to explore each of the -examples in this directory. - -Documentation for these examples can be found via the Tutorial and Examples +Documentation for these examples can be found via the Examples link in the main Qt documentation. - - -Finding the Qt Examples and Demos launcher -========================================== - -On Windows: - -The launcher can be accessed via the Windows Start menu. Select the menu -entry entitled "Qt Examples and Demos" entry in the submenu containing -the Qt tools. - -On Mac OS X: - -For the binary distribution, the qtdemo executable is installed in the -/Developer/Applications/Qt directory. For the source distribution, it is -installed alongside the other Qt tools on the path specified when Qt is -configured. - -On Unix/Linux: - -The qtdemo executable is installed alongside the other Qt tools on the path -specified when Qt is configured. - -On all platforms: - -The source code for the launcher can be found in the demos/qtdemo directory -in the Qt package. This example is built at the same time as the Qt libraries, -tools, examples, and demonstrations. -- cgit v1.2.3