42448 Commits

Author SHA1 Message Date
Sandro Mani
abaeb9e9c1 [Feature][OGR] Support Triangle, TIN and PolyhedralSurface geometry types by mapping them to Triangle and MultiPolygon respectively 2017-10-04 22:15:43 +02:00
Sandro Mani
e38eec12a5 Remove debug leftover 2017-10-04 22:11:34 +02:00
Sandro Mani
4d51b3d9e9 Fix QgsTriangle::fromWkb possibly not setting ring geometry 2017-10-04 22:11:34 +02:00
Sandro Mani
e151f20ee1 Also handle triangles in QgsGeometryFactory::geomFromWkbType 2017-10-04 22:11:34 +02:00
Larry Shaffer
3852e5db98 [auth] Update wording of auth settings widget; add formatted warnings 2017-10-04 13:58:50 -06:00
Stelios Vitalis
042bf97336 Change triangulation algorithm for 3D planes 2017-10-04 14:52:03 +02:00
Matthias Kuhn
ab9e2fcb68
Fix multiline docstring 2017-10-04 14:50:42 +02:00
Harrissou Sant-anna
d1a9d3f1cf Remove the unneeded close button on select by expression (#5273)
fixes #17207
2017-10-04 14:46:20 +02:00
Matthias Kuhn
7428516d20
Less executable files in codebase 2017-10-04 14:38:27 +02:00
Stelios Vitalis
cb241e8f69 Remove validation of geometries (GEOS validation is not 3D enabled) 2017-10-04 14:06:10 +02:00
Larry Shaffer
74e9242d44 [auth] Update embedded QgsAuthSettingsWidget spacing
- Minimize all text-wrapped QLabel text in QgsAuthSettingsWidget
  (wrapped text defaulted to 3 lines of spacing, even if not used)
- Remove default 'Basic' text
- Hide Basic QLabel if there is no text
- Add 'Optional' placholder text for Password of Basic
- Fix non-expanded Name and URL fields for newhttpconnectionbase.ui
- Smaller minimum size for QgsAuthConfigSelect
- Minimize 'Convert to configuration' button width
2017-10-04 04:41:01 -06:00
Sandro Mani
7eb247525b [OGR] Don't call repack after OGR_L_SyncToDisk if compiled against gdal-2.2.0+
OGR_L_SyncToDisk internally does a repack with gdal-2.2.0 onwards
2017-10-04 12:17:20 +02:00
Sandro Mani
4e2e3608f0 [OGR] Pass AUTO_REPACK=OFF when opening datasets for non-implicit update modes 2017-10-04 12:17:20 +02:00
Matthias Kuhn
1cdbbf4d7f
Private classes should not be exported 2017-10-04 12:16:26 +02:00
Matthias Kuhn
4d1fea0b04
CMakeLists.txt does not need to be executable 2017-10-04 12:16:25 +02:00
Matthias Kuhn
70dc92c4f2
conversions.sip does not need to be executable 2017-10-04 12:16:25 +02:00
rldhont
3e45f997a6 Merge pull request #4912 from dmarteau/svg-marker-size
[FEATURE][needs-docs] Svg marker size: change aspect ratio
2017-10-04 12:02:32 +02:00
Matthias Kuhn
c764d9c177 Merge pull request #5256 from qgis/docker2
[travis] Use docker to run test
2017-10-04 11:11:52 +02:00
Harrissou Sant-anna
1ed95f4855 Fix Select tools switch settings 2017-10-04 17:06:37 +10:00
Nyall Dawson
0b47ea8011 Fix dxf export when CRS is not canvas CRS and not limiting to canvas extent 2017-10-04 13:50:17 +10:00
Nyall Dawson
83fdc5d3cb Fix windows build 2017-10-04 09:46:03 +10:00
Nyall Dawson
38fd985390 Fix build warning 2017-10-04 09:40:18 +10:00
Nyall Dawson
4f34f9442c Added better version info to QgsRectangle::buffered 2017-10-04 09:05:21 +10:00
Martin Dobias
7874d4b6d6 Merge pull request #5183 from wonder-sk/cad-utils
Refactor CAD editing alignment logic to new QgsCadUtils class
2017-10-04 00:04:03 +02:00
Alessandro Pasotti
9256d00606 Merge pull request #5289 from boundlessgeo/bugfix_16427
[bugfix] Do not cache invalid WM(T)S responses
2017-10-03 17:58:35 +02:00
Matthias Kuhn
159486515b
Add sanitized landsat2.nc
@rouault
> [landsat2.nc.zip](https://github.com/qgis/QGIS/files/1352514/landsat2.nc.zip)
> "gdal_translate -of NETCDF landsat.tif landsat2.nc" will not work as expected
> since the driver doesn't support creating subdatasets. I have used ncdump +
> manual changing of _FillValue to 0 + ncgen to recreate it. Hopefully it
> should work (untested) Result attached
2017-10-03 17:36:40 +02:00
Matthias Kuhn
52449f915d
Ignore missing logfile 2017-10-03 17:36:39 +02:00
Matthias Kuhn
6d683230de
Disable unstable tests
Parts of the following tests behave unstable because of enironment changes
(distro upgrade, running in docker, ...) or dependency updates.

- qgis_rastersublayertest (Failed)
- PyQgsShapefileProvider (Failed)
- PyQgsWFSProvider (Failed)

They are unlikely to be introduced by the new continuous integration
environment.

Therefore, the affected parts have been disabled. Help by knowledgeable
developers to make the tests more stable or fix real underlying issues.
2017-10-03 17:36:39 +02:00
Martin Dobias
0bffe1c1d6 Added forgotten SIP file 2017-10-03 17:01:54 +02:00
Martin Dobias
5172a339ca Finished unit tests 2017-10-03 17:01:54 +02:00
Martin Dobias
878dfddd3b Refactor CAD editing alignment logic to new QgsCadUtils class 2017-10-03 17:01:54 +02:00
Alessandro Pasotti
afecc21012 [:)] Make a developer happy 2017-10-03 16:34:50 +02:00
Alessandro Pasotti
d102404b5e [bugfix] Do not cache invalid WM(T)S responses
The problem here was that in case of http->https redirect
from a misconfigured server (that advertizes http and then
redirects all request to https) all http redirect requests
were cached, making all subsequent requests to the same
url hit the 301 Moved Permanently reponse page intead of
the redirected content.

Fixes #16427 WMTS rendering problems in 2.18 and Master
2017-10-03 15:20:43 +02:00
Mathieu Pellerin
22d4d22b93 fix highlight showing when hidden (#5278) 2017-10-03 16:17:22 +07:00
Pete King
da4cfd5777 Update and vectorize the DB manager icon (#5262) 2017-10-03 16:03:47 +07:00
Nyall Dawson
b27382d011 [processing] Fix history doesn't correctly escape values
Fixes #17229
2017-10-03 19:01:13 +10:00
Juergen E. Fischer
9cbff3af3f translation string fix 2017-10-03 10:01:57 +02:00
Nyall Dawson
8d6f4467a2 Fix duplicate WFS item in browser (fixes #17176) 2017-10-03 17:12:56 +10:00
Alessandro Pasotti
191942abf0 [auth] Proxy settings use the new auth settings dialog 2017-10-03 09:12:28 +02:00
Blottiere Paul
8a09a197cc Merge pull request #5150 from pblottiere/server_bugfix_ogc_getfeatureinfo_invalid_format
[server][bugfix] Fix OGC test getfeatureinfo:invalid-info_format
2017-10-03 06:24:46 +01:00
Nyall Dawson
58f64bb4af Merge pull request #5276 from nyalldawson/build_dep
Update some Windows build instructions
2017-10-03 10:21:46 +10:00
Juergen E. Fischer
f3a4a6b2ec debian packaging: add 3d for sid and artful 2017-10-02 23:58:37 +02:00
Martin Dobias
68bb68d176 [FEATURE] QGIS 3D (pull request #5203) 2017-10-02 23:02:37 +02:00
Alessandro Pasotti
c856ba3ec2 [auth] XYX use the new authentication widget 2017-10-02 17:26:59 +02:00
Alessandro Pasotti
4e4a660a51 [auth] PG uses the new authentication widget 2017-10-02 17:12:14 +02:00
Alessandro Pasotti
f09e5b16e0 [auth] Renamed setters to better follow Qt5 conventions 2017-10-02 17:12:02 +02:00
Alessandro Pasotti
6378042bd1 [auth] DB2 use the new authentication widget 2017-10-02 16:40:07 +02:00
Alessandro Pasotti
dfdf2ceeac [auth] Added support for "Store" checkboxes 2017-10-02 16:39:31 +02:00
Matthias Kuhn
143c4bf677 Merge pull request #5275 from daniviga/qgis3-rpm
Initial RPM sources update for QGIS3
2017-10-02 16:16:15 +02:00
Alessandro Pasotti
7ee03a6a0b [auth] Use new auth settings widget in http connections dialogs 2017-10-02 14:44:18 +02:00