Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove extra space added before first line of docstring
  • Loading branch information
nyalldawson committed May 27, 2018
1 parent ea0c1d8 commit f8bc970
Show file tree
Hide file tree
Showing 238 changed files with 533 additions and 533 deletions.
6 changes: 3 additions & 3 deletions python/analysis/auto_generated/network/qgsgraph.sip.in
Expand Up @@ -16,7 +16,7 @@ class QgsGraphEdge
%Docstring

.. versionadded:: 3.0
This class implements a graph edge
This class implements a graph edge
%End

%TypeHeaderCode
Expand Down Expand Up @@ -63,7 +63,7 @@ typedef QList< int > QgsGraphEdgeIds;
class QgsGraphVertex
{
%Docstring
This class implements a graph vertex
This class implements a graph vertex

.. versionadded:: 3.0
%End
Expand Down Expand Up @@ -109,7 +109,7 @@ Returns point associated with graph vertex.
class QgsGraph
{
%Docstring
Mathematical graph representation
Mathematical graph representation

.. versionadded:: 3.0
%End
Expand Down
Expand Up @@ -14,7 +14,7 @@
class QgsGraphBuilder : QgsGraphBuilderInterface
{
%Docstring
This class used for making the QgsGraph object
This class used for making the QgsGraph object
%End

%TypeHeaderCode
Expand Down
Expand Up @@ -16,7 +16,7 @@
class QgsGraphBuilderInterface
{
%Docstring
Determine interface for creating a graph. Contains the settings of the graph.
Determine interface for creating a graph. Contains the settings of the graph.
QgsGraphBuilder and QgsGraphDirector both use a "builder" design pattern
%End

Expand Down
Expand Up @@ -17,7 +17,7 @@
class QgsGraphDirector : QObject
{
%Docstring
Determine making the graph. QgsGraphBuilder and QgsGraphDirector implemented
Determine making the graph. QgsGraphBuilder and QgsGraphDirector implemented
using "builder" design patter.
%End

Expand Down
Expand Up @@ -13,7 +13,7 @@ class QgsNetworkDistanceStrategy : QgsNetworkStrategy
%Docstring

.. versionadded:: 3.0
Strategy for calculating edge cost based on its length. Should be
Strategy for calculating edge cost based on its length. Should be
used for finding shortest path between two points.
%End

Expand Down
Expand Up @@ -11,7 +11,7 @@
class QgsNetworkSpeedStrategy : QgsNetworkStrategy
{
%Docstring
Strategy for calculating edge cost based on travel time. Should be
Strategy for calculating edge cost based on travel time. Should be
used for finding fastest path between two points.

.. versionadded:: 3.0
Expand Down
Expand Up @@ -20,7 +20,7 @@ class QgsNetworkStrategy
%Docstring

.. versionadded:: 3.0
QgsNetworkStrategy defines strategy used for calculation of the edge cost. For example it can
QgsNetworkStrategy defines strategy used for calculation of the edge cost. For example it can
take into account travel distance, amount of time or money. Currently there are two strategies
implemented in the analysis library: QgsNetworkDistanceStrategy and QgsNetworkSpeedStrategy.
QgsNetworkStrategy implemented using "strategy" design pattern.
Expand Down
Expand Up @@ -15,7 +15,7 @@ class QgsVectorLayerDirector : QgsGraphDirector
%Docstring

.. versionadded:: 3.0
Determine making the graph from vector line layer
Determine making the graph from vector line layer
%End

%TypeHeaderCode
Expand Down
Expand Up @@ -14,7 +14,7 @@ class QgsNativeAlgorithms: QgsProcessingProvider
%Docstring

.. versionadded:: 3.0
Native c++ processing algorithm provider.
Native c++ processing algorithm provider.
%End

%TypeHeaderCode
Expand Down
Expand Up @@ -14,7 +14,7 @@
class QgsAlignRaster
{
%Docstring
QgsAlignRaster takes one or more raster layers and warps (resamples) them
QgsAlignRaster takes one or more raster layers and warps (resamples) them
so they have the same:
- coordinate reference system
- cell size and raster size
Expand Down
Expand Up @@ -16,7 +16,7 @@ class QgsAnnotation : QObject

.. versionadded:: 3.0

Abstract base class for annotation items which are drawn over a map.
Abstract base class for annotation items which are drawn over a map.

QgsAnnotation is an abstract base class for map annotation items. These annotations can be
drawn within a map, and have either a fixed map position (retrieved using mapPosition())
Expand Down
Expand Up @@ -16,7 +16,7 @@ class QgsAnnotationManager : QObject

.. versionadded:: 3.0

Manages storage of a set of QgsAnnotation annotation objects.
Manages storage of a set of QgsAnnotation annotation objects.

QgsAnnotationManager handles the storage, serializing and deserializing
of QgsAnnotations. Usually this class is not constructed directly, but
Expand Down
18 changes: 9 additions & 9 deletions python/core/auto_generated/auth/qgsauthcertutils.sip.in
Expand Up @@ -16,7 +16,7 @@
class QgsAuthCertUtils
{
%Docstring
Utilities for working with certificates and keys
Utilities for working with certificates and keys
%End

%TypeHeaderCode
Expand Down Expand Up @@ -105,7 +105,7 @@ Returns the first cert from a PEM or DER formatted file
static QList<QSslCertificate> casMerge( const QList<QSslCertificate> &bundle1,
const QList<QSslCertificate> &bundle2 );
%Docstring
casMerge merges two certificate bundles in a single one removing duplicates, the certificates
casMerge merges two certificate bundles in a single one removing duplicates, the certificates
from the ``bundle2`` are appended to ``bundle1`` if not already there

:param bundle1: first bundle
Expand Down Expand Up @@ -133,7 +133,7 @@ Returns a list of concatenated certs from a PEM Base64 text block

static QList<QSslCertificate> casRemoveSelfSigned( const QList<QSslCertificate> &caList );
%Docstring
casRemoveSelfSigned remove self-signed CA certificates from ``caList``
casRemoveSelfSigned remove self-signed CA certificates from ``caList``

:param caList: list of CA certificates

Expand Down Expand Up @@ -193,7 +193,7 @@ Returns list of CA certificates (as QSslCertificate) for a PKCS#12 bundle

static QByteArray certsToPemText( const QList<QSslCertificate> &certs );
%Docstring
certsToPemText dump a list of QSslCertificates to PEM text
certsToPemText dump a list of QSslCertificates to PEM text

:param certs: list of certs

Expand Down Expand Up @@ -287,14 +287,14 @@ Gets short strings describing an SSL error

static bool certIsCurrent( const QSslCertificate &cert );
%Docstring
certIsCurrent checks if ``cert`` is viable for its not before and not after dates
certIsCurrent checks if ``cert`` is viable for its not before and not after dates

:param cert: certificate to be checked
%End

static QList<QSslError> certViabilityErrors( const QSslCertificate &cert );
%Docstring
certViabilityErrors checks basic characteristics (validity dates, blacklisting, etc.) of given ``cert``
certViabilityErrors checks basic characteristics (validity dates, blacklisting, etc.) of given ``cert``

:param cert: certificate to be checked

Expand All @@ -303,7 +303,7 @@ Gets short strings describing an SSL error

static bool certIsViable( const QSslCertificate &cert );
%Docstring
certIsViable checks for viability errors of ``cert`` and whether it is NULL
certIsViable checks for viability errors of ``cert`` and whether it is NULL

:param cert: certificate to be checked

Expand All @@ -314,7 +314,7 @@ Gets short strings describing an SSL error
const QString &hostName = QString(),
bool trustRootCa = false );
%Docstring
validateCertChain validates the given ``certificateChain``
validateCertChain validates the given ``certificateChain``

:param certificateChain: list of certificates to be checked, with leaf first and with optional root CA last
:param hostName: (optional) name of the host to be verified
Expand All @@ -325,7 +325,7 @@ Gets short strings describing an SSL error

static QStringList validatePKIBundle( QgsPkiBundle &bundle, bool useIntermediates = true, bool trustRootCa = false );
%Docstring
validatePKIBundle validate the PKI bundle by checking the certificate chain, the
validatePKIBundle validate the PKI bundle by checking the certificate chain, the
expiration and effective dates, optionally trusts the root CA

:param bundle:
Expand Down
12 changes: 6 additions & 6 deletions python/core/auto_generated/auth/qgsauthconfig.sip.in
Expand Up @@ -14,7 +14,7 @@
class QgsAuthMethodConfig
{
%Docstring
Configuration storage class for authentication method configurations
Configuration storage class for authentication method configurations
%End

%TypeHeaderCode
Expand Down Expand Up @@ -195,7 +195,7 @@ typedef QHash<QString, QgsAuthMethodConfig> QgsAuthMethodConfigsMap;
class QgsPkiBundle
{
%Docstring
Storage set for PKI bundle: SSL certificate, key, optional CA cert chain
Storage set for PKI bundle: SSL certificate, key, optional CA cert chain

.. note::

Expand Down Expand Up @@ -288,7 +288,7 @@ Sets chain of Certificate Authorities for client certificate
class QgsPkiConfigBundle
{
%Docstring
Storage set for constructed SSL certificate, key, associated with an authentication config
Storage set for constructed SSL certificate, key, associated with an authentication config
%End

%TypeHeaderCode
Expand Down Expand Up @@ -346,14 +346,14 @@ Sets private key object

QList<QSslCertificate> caChain() const;
%Docstring
caChain return the CA chain
caChain return the CA chain

:return: list of CA certificates
%End

void setCaChain( const QList<QSslCertificate> &caChain );
%Docstring
setCaChain set the CA chain
setCaChain set the CA chain

:param caChain:
%End
Expand Down Expand Up @@ -414,7 +414,7 @@ Sets private key object
class QgsAuthConfigSslServer
{
%Docstring
Configuration container for SSL server connection exceptions or overrides
Configuration container for SSL server connection exceptions or overrides
%End

%TypeHeaderCode
Expand Down

0 comments on commit f8bc970

Please sign in to comment.