mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-17 00:09:36 -04:00
34 lines
1.4 KiB
Python
34 lines
1.4 KiB
Python
"""
|
|
***************************************************************************
|
|
g_version.py
|
|
------------------
|
|
Date : May 2023
|
|
Copyright : (C) 2023 by Alister Hood
|
|
Email : alister.hood at gmail dot com
|
|
***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************
|
|
"""
|
|
|
|
__author__ = "Alister Hood"
|
|
__date__ = "May 2023"
|
|
__copyright__ = "(C) 2023, Alister Hood"
|
|
|
|
|
|
def processInputs(alg, parameters, context, feedback):
|
|
pass
|
|
|
|
|
|
def convertToHtml(alg, fileName, outputs):
|
|
# don't copy this for something that will have lots of data like r.stats
|
|
# it will be very slow
|
|
with open(fileName) as f:
|
|
outputs["GRASS_VERSIONINFO"] = f.read()
|
|
# this will read the file a second time, but calling it saves us duplicating the code here
|
|
alg.convertToHtml(fileName)
|