diff -r de0723fab049 -r 48190a225699 Documentation/Source/eric5.Helpviewer.SslCertificatesDialog.html --- a/Documentation/Source/eric5.Helpviewer.SslCertificatesDialog.html Sun Dec 19 15:26:00 2010 +0100 +++ b/Documentation/Source/eric5.Helpviewer.SslCertificatesDialog.html Sun Dec 19 19:51:37 2010 +0100 @@ -63,15 +63,36 @@ <td><a href="#SslCertificatesDialog.__createServerCertificateEntry">__createServerCertificateEntry</a></td> <td>Private method to create a server certificate entry.</td> </tr><tr> +<td><a href="#SslCertificatesDialog.__exportCertificate">__exportCertificate</a></td> +<td>Private slot to export a certificate.</td> +</tr><tr> +<td><a href="#SslCertificatesDialog.__getSystemCaCertificates">__getSystemCaCertificates</a></td> +<td>Private method to get the list of system certificates.</td> +</tr><tr> +<td><a href="#SslCertificatesDialog.__importCertificate">__importCertificate</a></td> +<td>Private method to read a certificate.</td> +</tr><tr> <td><a href="#SslCertificatesDialog.__populateCaCertificatesTree">__populateCaCertificatesTree</a></td> <td>Private slot to populate the CA certificates tree.</td> </tr><tr> <td><a href="#SslCertificatesDialog.__populateServerCertificatesTree">__populateServerCertificatesTree</a></td> <td>Private slot to populate the server certificates tree.</td> </tr><tr> +<td><a href="#SslCertificatesDialog.__updateDefaultConfiguration">__updateDefaultConfiguration</a></td> +<td>Private method to update the default SSL configuration.</td> +</tr><tr> <td><a href="#SslCertificatesDialog.on_caCertificatesTree_currentItemChanged">on_caCertificatesTree_currentItemChanged</a></td> <td>Private slot handling a change of the current item in the CA certificates list.</td> </tr><tr> +<td><a href="#SslCertificatesDialog.on_caDeleteButton_clicked">on_caDeleteButton_clicked</a></td> +<td>Private slot to delete the selected CA certificate.</td> +</tr><tr> +<td><a href="#SslCertificatesDialog.on_caExportButton_clicked">on_caExportButton_clicked</a></td> +<td>Private slot to export the selected CA certificate.</td> +</tr><tr> +<td><a href="#SslCertificatesDialog.on_caImportButton_clicked">on_caImportButton_clicked</a></td> +<td>Private slot to import server certificates.</td> +</tr><tr> <td><a href="#SslCertificatesDialog.on_caViewButton_clicked">on_caViewButton_clicked</a></td> <td>Private slot to show data of the selected CA certificate.</td> </tr><tr> @@ -81,6 +102,12 @@ <td><a href="#SslCertificatesDialog.on_serversDeleteButton_clicked">on_serversDeleteButton_clicked</a></td> <td>Private slot to delete the selected server certificate.</td> </tr><tr> +<td><a href="#SslCertificatesDialog.on_serversExportButton_clicked">on_serversExportButton_clicked</a></td> +<td>Private slot to export the selected server certificate.</td> +</tr><tr> +<td><a href="#SslCertificatesDialog.on_serversImportButton_clicked">on_serversImportButton_clicked</a></td> +<td>Private slot to import server certificates.</td> +</tr><tr> <td><a href="#SslCertificatesDialog.on_serversViewButton_clicked">on_serversViewButton_clicked</a></td> <td>Private slot to show data of the selected server certificate.</td> </tr> @@ -118,6 +145,39 @@ <dd> certificate to insert (QSslCertificate) </dd> +</dl><a NAME="SslCertificatesDialog.__exportCertificate" ID="SslCertificatesDialog.__exportCertificate"></a> +<h4>SslCertificatesDialog.__exportCertificate</h4> +<b>__exportCertificate</b>(<i>name, cert</i>) +<p> + Private slot to export a certificate. +</p><dl> +<dt><i>name</i></dt> +<dd> +default file name without extension (string) +</dd><dt><i>cert</i></dt> +<dd> +certificate to be exported (QSslCertificate) +</dd> +</dl><a NAME="SslCertificatesDialog.__getSystemCaCertificates" ID="SslCertificatesDialog.__getSystemCaCertificates"></a> +<h4>SslCertificatesDialog.__getSystemCaCertificates</h4> +<b>__getSystemCaCertificates</b>(<i></i>) +<p> + Private method to get the list of system certificates. +</p><dl> +<dt>Returns:</dt> +<dd> +list of system certificates (list of QSslCertificate) +</dd> +</dl><a NAME="SslCertificatesDialog.__importCertificate" ID="SslCertificatesDialog.__importCertificate"></a> +<h4>SslCertificatesDialog.__importCertificate</h4> +<b>__importCertificate</b>(<i></i>) +<p> + Private method to read a certificate. +</p><dl> +<dt>Returns:</dt> +<dd> +certificates read (list of QSslCertificate) +</dd> </dl><a NAME="SslCertificatesDialog.__populateCaCertificatesTree" ID="SslCertificatesDialog.__populateCaCertificatesTree"></a> <h4>SslCertificatesDialog.__populateCaCertificatesTree</h4> <b>__populateCaCertificatesTree</b>(<i></i>) @@ -128,6 +188,11 @@ <b>__populateServerCertificatesTree</b>(<i></i>) <p> Private slot to populate the server certificates tree. +</p><a NAME="SslCertificatesDialog.__updateDefaultConfiguration" ID="SslCertificatesDialog.__updateDefaultConfiguration"></a> +<h4>SslCertificatesDialog.__updateDefaultConfiguration</h4> +<b>__updateDefaultConfiguration</b>(<i></i>) +<p> + Private method to update the default SSL configuration. </p><a NAME="SslCertificatesDialog.on_caCertificatesTree_currentItemChanged" ID="SslCertificatesDialog.on_caCertificatesTree_currentItemChanged"></a> <h4>SslCertificatesDialog.on_caCertificatesTree_currentItemChanged</h4> <b>on_caCertificatesTree_currentItemChanged</b>(<i>current, previous</i>) @@ -142,7 +207,22 @@ <dd> previous current item (QTreeWidgetItem) </dd> -</dl><a NAME="SslCertificatesDialog.on_caViewButton_clicked" ID="SslCertificatesDialog.on_caViewButton_clicked"></a> +</dl><a NAME="SslCertificatesDialog.on_caDeleteButton_clicked" ID="SslCertificatesDialog.on_caDeleteButton_clicked"></a> +<h4>SslCertificatesDialog.on_caDeleteButton_clicked</h4> +<b>on_caDeleteButton_clicked</b>(<i></i>) +<p> + Private slot to delete the selected CA certificate. +</p><a NAME="SslCertificatesDialog.on_caExportButton_clicked" ID="SslCertificatesDialog.on_caExportButton_clicked"></a> +<h4>SslCertificatesDialog.on_caExportButton_clicked</h4> +<b>on_caExportButton_clicked</b>(<i></i>) +<p> + Private slot to export the selected CA certificate. +</p><a NAME="SslCertificatesDialog.on_caImportButton_clicked" ID="SslCertificatesDialog.on_caImportButton_clicked"></a> +<h4>SslCertificatesDialog.on_caImportButton_clicked</h4> +<b>on_caImportButton_clicked</b>(<i></i>) +<p> + Private slot to import server certificates. +</p><a NAME="SslCertificatesDialog.on_caViewButton_clicked" ID="SslCertificatesDialog.on_caViewButton_clicked"></a> <h4>SslCertificatesDialog.on_caViewButton_clicked</h4> <b>on_caViewButton_clicked</b>(<i></i>) <p> @@ -166,6 +246,16 @@ <b>on_serversDeleteButton_clicked</b>(<i></i>) <p> Private slot to delete the selected server certificate. +</p><a NAME="SslCertificatesDialog.on_serversExportButton_clicked" ID="SslCertificatesDialog.on_serversExportButton_clicked"></a> +<h4>SslCertificatesDialog.on_serversExportButton_clicked</h4> +<b>on_serversExportButton_clicked</b>(<i></i>) +<p> + Private slot to export the selected server certificate. +</p><a NAME="SslCertificatesDialog.on_serversImportButton_clicked" ID="SslCertificatesDialog.on_serversImportButton_clicked"></a> +<h4>SslCertificatesDialog.on_serversImportButton_clicked</h4> +<b>on_serversImportButton_clicked</b>(<i></i>) +<p> + Private slot to import server certificates. </p><a NAME="SslCertificatesDialog.on_serversViewButton_clicked" ID="SslCertificatesDialog.on_serversViewButton_clicked"></a> <h4>SslCertificatesDialog.on_serversViewButton_clicked</h4> <b>on_serversViewButton_clicked</b>(<i></i>)