Commit 983535f
1 parent a4e4999 commit 983535f
File tree
46 files changed
+4203
-278
lines changed- python/plugins
- sextante
- core
- database
- gdal
- grass
- gui
- images
- modeler
- ModelerUtils.pyhas 3 comments
- models
- outputs
- pymorph
- r
- script
- servertools
- geoserver
- store.pyhas 3 comments
- httplib2
- sextanteexampleprovider
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
46 files changed
+4203
-278
lines changedLines changed: 3 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
45 | 45 |
| |
46 | 46 |
| |
47 | 47 |
| |
48 |
| - | |
| 48 | + | |
| 49 | + | |
| 50 | + |
Lines changed: 2 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
16 | 16 |
| |
17 | 17 |
| |
18 | 18 |
| |
| 19 | + | |
19 | 20 |
| |
20 | 21 |
| |
21 | 22 |
| |
| |||
130 | 131 |
| |
131 | 132 |
| |
132 | 133 |
| |
| 134 | + | |
133 | 135 |
| |
134 | 136 |
| |
135 | 137 |
| |
|
7 commit comments
slarosa commentedon Nov 5, 2012
Hi Victor,
Sextante seems broken to this revision !
Can you take a look at it, please ?
volaya commentedon Nov 5, 2012
volaya commentedon Nov 5, 2012
dakcarto commentedon Nov 5, 2012
Hi Victor,
Don't know if it is related to this commit, but now getting the following on Sextante load, at launch of QGIS:
slarosa commentedon Nov 5, 2012
Doesn't work here !
Traceback (most recent call last):
File "/usr/local/share/qgis/python/qgis/utils.py", line 188, in startPlugin
plugins[packageName] = package.classFactory(iface)
File "/usr/local/share/qgis/python/plugins/sextante/init.py", line 45, in classFactory
from sextante.SextantePlugin import SextantePlugin
File "/usr/local/share/qgis/python/qgis/utils.py", line 384, in _import
mod = _builtin_import(name, globals, locals, fromlist, level)
File "/usr/local/share/qgis/python/plugins/sextante/SextantePlugin.py", line 34, in
from sextante.core.Sextante import Sextante
File "/usr/local/share/qgis/python/qgis/utils.py", line 384, in _import
mod = _builtin_import(name, globals, locals, fromlist, level)
File "/usr/local/share/qgis/python/plugins/sextante/core/Sextante.py", line 19, in
from sextante.servertools.GeoServerToolsAlgorithmProvider import GeoServerToolsAlgorithmProvider
File "/usr/local/share/qgis/python/qgis/utils.py", line 384, in _import
mod = _builtin_import(name, globals, locals, fromlist, level)
ImportError: No module named servertools.GeoServerToolsAlgorithmProvider
volaya commentedon Nov 5, 2012
Ok, I think I fixed it. I forgot to add the folder to the cmakelists file, so it was not being built. Since I work with a 1.8 install and not with the git version, I could not see the problem (I have my own ant task to do the deploying). Now it should copy the new folder as well and everything should be fine :-)
Sorry for this
slarosa commentedon Nov 6, 2012
...and to get it to work ;-) , add CMakeLists.txt in dir servertools:
in geoserver dir:
and finally httplib2 dir:
this should solve the problem !
Thanks !