Custom Query (1132 matches)
Results (55 - 57 of 1132)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#2116 | fixed | Workshop shortcut points to outdated link | ||
Description |
See https://github.com/geographika/OSGeoLive/pull/1 Currently points to http://trac.osgeo.org/osgeo/wiki/Live_GIS_Workshop_Install I believe it should be: https://trac.osgeo.org/osgeolive/wiki/Live_GIS_Workshop_Install |
|||
#2309 | fixed | vbox notify-send errors on v14-beta | ||
Description |
When running the ISO on Virtual Box (6.1) the following errors continually pop-up:
Possbily related link: https://bugs.launchpad.net/ubuntu/+source/virtualbox/+bug/1873922 From IRC: kalxas[m]> yes, those errors come from the vbox utilities installed by default <kalxas[m]> looks like a vbox driver issue |
|||
#1731 | fixed | pywps: Execute request fails ('NoneType' object has no attribute 'lower') | ||
Description |
The hello-world process in pywps fails Execute requests reporting: NoneType' object has no attribute 'lower' The Apache error logs contains the stacktrace: PyWPS [2016-06-10 17:58:40,353] INFO: Reading processes from directory [/usr/local/share/pywps/processes] PyWPS [2016-06-10 17:58:40,354] INFO: Following processes are imported: ['hello-world'] PyWPS [2016-06-10 17:58:40,357] INFO: Status [processpaused]: Getting input name of process hello-world Traceback (most recent call last): File "/usr/lib/python2.7/dist-packages/pywps/Wps/Execute/__init__.py", line 386, in __init__ self.consolidateInputs() File "/usr/lib/python2.7/dist-packages/pywps/Wps/Execute/__init__.py", line 537, in consolidateInputs resp = input.setValue(inp) File "/usr/lib/python2.7/dist-packages/pywps/Process/InAndOutputs.py", line 404, in setValue self.storeData(input["value"]) File "/usr/lib/python2.7/dist-packages/pywps/Process/InAndOutputs.py", line 457, in storeData if (self.format["mimetype"].lower().split("/")[0] != "text" and self.format["mimetype"].lower() != "application/xml"): AttributeError: 'NoneType' object has no attribute 'lower' PyWPS [2016-06-10 17:58:40,359] INFO: Status [processfailed]: 'NoneType' object has no attribute 'lower' To reproduce: $ wget -q "http://localhost/pywps/wps.py?SERVICE=WPS&Version=1.0.0&REQUEST=Execute&Identifier=hello-world&DataInputs=name=foo" -O - |