Feature request #8259
Documentation SAGA GIS in Sextante
Status: | Closed | ||
---|---|---|---|
Priority: | Normal | ||
Assignee: | Victor Olaya | ||
Category: | Processing/SAGA | ||
Pull Request or Patch supplied: | Yes | Resolution: | |
Easy fix?: | No | Copied to github as #: | 17063 |
Description
You may change the code of the function helpFile() in file SagaAlgorithm.py:
def helpFile(self): return os.path.join(os.path.dirname(__file__), "help", self.name.replace(" ", "") + ".html")
[[https://github.com/qgis/Quantum-GIS/blob/master/python/plugins/sextante/saga/SagaAlgorithm.py#L370]]
For the following code:
def helpFile(self): import re return os.path.join(os.path.dirname(__file__), "help", re.sub('[^A-Za-z0-9]+', '', self.name).title() + ".html")
This is to remove invalid characters from the names of the commands and make compactible with SAGA help html files that attached to this request.
Related issues
History
#1 Updated by Giovanni Manghi about 10 years ago
- Category deleted (
56) - Project changed from 78 to QGIS Application
#2 Updated by Giovanni Manghi about 10 years ago
- Category set to Processing/SAGA
#3 Updated by Alexander Bruy almost 10 years ago
- Status changed from Open to Closed
As Processing now used documentation in RST format and we decide to put it into User Guide, this can be closed