Commit 991e32f2 authored by Leena Miettinen's avatar Leena Miettinen
Browse files

Doc: edit WebEngineCertificateError QML type docs


Change-Id: I658eaaefa422a0393318140a345e5114a3c085e6
Reviewed-by: default avatarJoerg Bornemann <joerg.bornemann@theqtcompany.com>
Showing with 11 additions and 9 deletions
...@@ -64,10 +64,10 @@ public: ...@@ -64,10 +64,10 @@ public:
\inqmlmodule QtWebEngine 1.1 \inqmlmodule QtWebEngine 1.1
\since QtWebEngine 1.1 \since QtWebEngine 1.1
\brief A utility class for accepting or denying certificate exceptions when a certificate error occurs. \brief A utility type for ignoring certificate errors or rejecting erroneous certificates.
This class contains information about a certificate error that happened and provides a way to accept or This QML type contains information about a certificate error that occurred and provides a way
deny a certificate exception. to ignore the error or reject the certificate.
\sa WebEngineView::certificateError \sa WebEngineView::certificateError
*/ */
...@@ -86,8 +86,9 @@ QQuickWebEngineCertificateError::~QQuickWebEngineCertificateError() ...@@ -86,8 +86,9 @@ QQuickWebEngineCertificateError::~QQuickWebEngineCertificateError()
/*! /*!
\qmlmethod void WebEngineCertificateError::defer() \qmlmethod void WebEngineCertificateError::defer()
This function should be called when there is a need to postpone the decision to ignore or not the certificate error. This is useful to This function should be called when there is a need to postpone the decision whether to ignore a
wait for user input. When called it will pause the url request until WebEngineCertificateError::ignoreCertificateError() or certificate error, for example, while waiting for user input. When called, the function pauses the
URL request until WebEngineCertificateError::ignoreCertificateError() or
WebEngineCertificateError::rejectCertificate() is called. WebEngineCertificateError::rejectCertificate() is called.
*/ */
void QQuickWebEngineCertificateError::defer() void QQuickWebEngineCertificateError::defer()
...@@ -98,7 +99,7 @@ void QQuickWebEngineCertificateError::defer() ...@@ -98,7 +99,7 @@ void QQuickWebEngineCertificateError::defer()
/*! /*!
\qmlmethod void WebEngineCertificateError::ignoreCertificateError() \qmlmethod void WebEngineCertificateError::ignoreCertificateError()
The certificate error is ignored and the WebEngineView continues to load the requested url. The certificate error is ignored, and the web engine view continues to load the requested URL.
*/ */
void QQuickWebEngineCertificateError::ignoreCertificateError() void QQuickWebEngineCertificateError::ignoreCertificateError()
{ {
...@@ -114,7 +115,7 @@ void QQuickWebEngineCertificateError::ignoreCertificateError() ...@@ -114,7 +115,7 @@ void QQuickWebEngineCertificateError::ignoreCertificateError()
/*! /*!
\qmlmethod void WebEngineCertificateError::rejectCertificate() \qmlmethod void WebEngineCertificateError::rejectCertificate()
The WebEngineView stops loading the requested url. The certificate is rejected, and the web engine view stops loading the requested URL.
*/ */
void QQuickWebEngineCertificateError::rejectCertificate() void QQuickWebEngineCertificateError::rejectCertificate()
{ {
...@@ -148,7 +149,8 @@ QUrl QQuickWebEngineCertificateError::url() const ...@@ -148,7 +149,8 @@ QUrl QQuickWebEngineCertificateError::url() const
The type of the error. The type of the error.
\value SslPinnedKeyNotInCertificateChain The certificate did not match the built-in public key pins for the host name. \value SslPinnedKeyNotInCertificateChain The certificate did not match the built-in public keys
pinned for the host name.
\value CertificateCommonNameInvalid The certificate's common name did not match the host name. \value CertificateCommonNameInvalid The certificate's common name did not match the host name.
\value CertificateDateInvalid The certificate is not valid at the current date and time. \value CertificateDateInvalid The certificate is not valid at the current date and time.
\value CertificateAuthorityInvalid The certificate is not signed by a trusted authority. \value CertificateAuthorityInvalid The certificate is not signed by a trusted authority.
...@@ -184,7 +186,7 @@ QString QQuickWebEngineCertificateError::description() const ...@@ -184,7 +186,7 @@ QString QQuickWebEngineCertificateError::description() const
\qmlproperty bool WebEngineCertificateError::overridable \qmlproperty bool WebEngineCertificateError::overridable
\readonly \readonly
A boolean that indicates if the certificate error can be overridden and accepted. A boolean that indicates whether the certificate error can be overridden and ignored.
*/ */
bool QQuickWebEngineCertificateError::overridable() const bool QQuickWebEngineCertificateError::overridable() const
{ {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment