Skip to content

Commit

Permalink
named properly and added short description
Browse files Browse the repository at this point in the history
  • Loading branch information
signedav authored and nyalldawson committed Aug 27, 2024
1 parent 7290a7a commit 8027ee5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/analysis/processing/qgsalgorithmfiledownloader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,12 @@ QString QgsFileDownloaderAlgorithm::name() const

QString QgsFileDownloaderAlgorithm::displayName() const
{
return tr( "Download file (HTTP request)" );
return tr( "Download file via HTTP(S)" );
}

QString QgsFileDownloaderAlgorithm::shortDescription() const
{
return tr( "Downloads a URL on the file system with an HTTP(S) GET or POST request" );
}

QStringList QgsFileDownloaderAlgorithm::tags() const
Expand All @@ -55,7 +60,7 @@ QString QgsFileDownloaderAlgorithm::groupId() const

QString QgsFileDownloaderAlgorithm::shortHelpString() const
{
return tr( "This algorithm downloads a URL on the file system with an HTTP GET or POST request" );
return tr( "This algorithm downloads a URL on the file system with an HTTP(S) GET or POST request" );
}

QgsFileDownloaderAlgorithm *QgsFileDownloaderAlgorithm::createInstance() const
Expand Down
1 change: 1 addition & 0 deletions src/analysis/processing/qgsalgorithmfiledownloader.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ class QgsFileDownloaderAlgorithm : public QObject, public QgsProcessingAlgorithm
void initAlgorithm( const QVariantMap &configuration = QVariantMap() ) override;
QString name() const override;
QString displayName() const override;
QString shortDescription() const override;
QStringList tags() const override;
QString group() const override;
QString groupId() const override;
Expand Down

0 comments on commit 8027ee5

Please sign in to comment.