1
0
mirror of https://github.com/qgis/QGIS.git synced 2025-04-03 00:05:24 -04:00

36687 Commits

Author SHA1 Message Date
rldhont
16eac9f243 Merge pull request from rldhont/server-selection-tests
[Server] SELECTION tests
2017-01-19 17:19:21 +01:00
Alessandro Pasotti
95ca471e22 Merge pull request from elpaso/store-urls-in-qsettings
Store URLs in QSettings
2017-01-19 16:52:56 +01:00
rldhont
d1f233d083 [Server] SELECTION tests
Update GetMap SELECTION test
Add GetPrint SELECTION test

!GetPrint SELECTION has to be fixed!
2017-01-19 16:41:43 +01:00
Alessandro Pasotti
8776e3cf64 Store URLs in QSettings
Make URLs overrideable through QSettings.
The idea is to eventually make all hardcoded URLs
and paths user-overrideable through a QSettings entry.
2017-01-19 15:24:20 +01:00
Matthias Kuhn
eb7a235dc1 Print messages from QgsMessageLog to the console when testing 2017-01-19 14:41:04 +01:00
Matthias Kuhn
534cb9e738 Add QgsApplication.instance() to python bindings 2017-01-19 13:15:35 +01:00
Matthias Kuhn
0001856e3f Save readOnly state, constraints and default values to style
They should be handled equal to the edit form config.
Fix 
2017-01-19 13:15:35 +01:00
volaya
5e479fc67e [processing] always use only selected features in 'save selected features' 2017-01-19 10:33:52 +01:00
Alessandro Pasotti
b44b9f8892 Replace broken WMS demo URLs with working URLs
I'd liked to add a UMN MapServer Demo too but
I couldn't find a working one.

Needs backporting
2017-01-19 10:10:03 +01:00
rldhont
53752ba365 Merge pull request from dmarteau/wms_cleanup
Clean WMS service
2017-01-19 09:51:56 +01:00
Nikolay Korotkiy
b45469f137 Fix some errors/typos 2017-01-19 08:51:14 +01:00
Martin Dobias
ff8d912147 Make the one band raster creation method return data provider 2017-01-19 15:46:46 +08:00
Martin Dobias
7b27079de9 Convenience API call to create empty raster file 2017-01-19 15:46:46 +08:00
Martin Dobias
15cd8331ac Make setEditable() return true/false to indicate success/error 2017-01-19 15:46:46 +08:00
Martin Dobias
f6f6ebdb44 [FEATURE] API to enable/disable editing of raster data
To create a 2x2 raster block with one byte per pixel:

```
block = QgsRasterBlock(Qgis.Byte, 2, 2)
block.setData(b'\xaa\xbb\xcc\xdd')
```

To overwrite existing raster data at position 0,0 by the 2x2 block:

```
provider.setEditable(True)
provider.writeBlock(block, band, 0, 0)
provider.setEditable(False)
```
2017-01-19 15:46:46 +08:00
Nyall Dawson
f5e4c9d617 Fix 'bytes can only contain ASCII' error on python3 2017-01-19 08:43:49 +01:00
lbartoletti
01cd784ee7 [FEATURE][processing] Add overlay option to GridLine and GridPolygon 2017-01-19 16:49:35 +10:00
Nyall Dawson
1f3c67f8e3 Add missing ~ operator to expression builder 2017-01-19 16:03:48 +10:00
Harrissou Sant-anna
f43dc8e134 Enable icons visibility in Evis dialogs ()
- Add + and - icons
- Also move some "what's this" comments to "tooltip"
2017-01-19 08:00:53 +07:00
David Marteau
a80497e3de Clean WMS service
- Remove "transitional" code
    - Remove duplicated code (or functionaly equivalent code)
    - Remove dead code
    - Sanitize error checking
    - Ensure correct build with HAVE_SERVER_PYTHON_PLUGINS not defined
2017-01-19 00:08:56 +01:00
Nyall Dawson
d0a46972d4 Merge pull request from tudorbarascu/fixdescription
fix setRelationId description
2017-01-19 06:19:29 +10:00
Nyall Dawson
7161b5a842 Merge pull request from jgrocha/postgisstyles
DDL update: saving layer styles on databases
2017-01-19 06:17:59 +10:00
Nyall Dawson
819c9ec03e Merge pull request from SrNetoChan/replace_pngs
Replace pngs by SVGs
2017-01-19 06:17:17 +10:00
Nyall Dawson
2183887759 Don't use canvas mapSettings when composer maps respond to layer changes 2017-01-19 06:08:44 +10:00
Jorge Gustavo Rocha
65c01775f6 DDL update: saving layer styles on databases
Fix 
2017-01-18 20:02:48 +00:00
rldhont
07c54e5496 Merge pull request from dmarteau/wfs_as_module
WFS & WCS as module
2017-01-18 13:07:32 +01:00
Alexander Bruy
08e0eacfef [processing] return string from selection type setting when necessary 2017-01-18 08:46:56 +02:00
Martin Dobias
90d233ad30 Remove draw() method from QgsRasterDataProvider interface ()
It was redundant in the API - one always wants to use block() to get data
2017-01-18 13:32:26 +08:00
Nyall Dawson
df3fdf52a8 Merge pull request from nyalldawson/comp_mapsettings
Remove some more QgsComposition::mapSettings use, also support different CRS in composer map items
2017-01-18 12:57:46 +10:00
Nyall Dawson
710a12cabd Avoid use of composition map settings to set initial composer map extent 2017-01-18 12:30:47 +10:00
Nyall Dawson
a3dd380d35 [needs-docs] Composer maps default to a "use project CRS" setting
And overriding projection is only done if user has manually
chosen a different CRS from the list.

This means that templates and compositions in server can still
adapt to follow the project CRS, but if desired specific map
items (eg an overview map) can use the CRS override to always
show in a particular CRS.
2017-01-18 12:30:47 +10:00
Martin Dobias
433d04b68e QgsRasterBlock::data() for efficient access to pixel data also in Python ()
Also adds some unit tests and API cleanups
2017-01-18 09:52:45 +08:00
Nyall Dawson
6a4d605256 Fix some test failures 2017-01-18 07:38:06 +10:00
David Marteau
e17a7d4e21 Move wcs as service module 2017-01-17 22:02:02 +01:00
David Marteau
56b2f08865 Move wfs as service module 2017-01-17 17:21:25 +01:00
Alessandro Pasotti
c80e5d131d [bugfix] Fixes WFS HTTP auth basic username/password
Fixes  and 
2017-01-17 13:57:23 +01:00
Jorge Gustavo Rocha
6bab0c6913 DDL update: saving layer styles on databases
Fix 
2017-01-17 12:48:43 +00:00
Nyall Dawson
4896569626 More removal of QgsComposition::mapSettings use 2017-01-17 19:25:12 +10:00
Nyall Dawson
9a6d714061 [FEATURE][composer] Allow choice of CRS for map items
This allows the CRS for map items to differ from the canvas/project
CRS. It also allows different map items to have different CRS,
eg an overview map can be set to a different CRS to the main map.

An unfortunate side effect of this change and the ongoing work
to separate compositions from canvas is that datum transforms
are no longer supported in composer. This cannot be fixed until
the datum transform store is rewritten to not depend on canvas
(ie, it's also broken for upcoming multi-canvas work)
2017-01-17 19:18:47 +10:00
Nyall Dawson
305f9f0e98 Remove some more QgsComposition::mapSettings use 2017-01-17 15:44:46 +10:00
Nyall Dawson
308fc569ce Remove some more QgsComposition::mapSettings use 2017-01-17 13:23:12 +10:00
Nyall Dawson
e3ad5b1e3b [composer] Remove more use of composition map settings
Use relevant composer map item CRS instead of composition mapsetting's
CRS. For items directly linked to a map (eg scalebar, legend) we
use that map's CRS, for others (eg labels, html items) we use the
composition's reference map CRS.

(Note that the CRS cannot be set for a map, and is still currently
linked to the canvas CRS. Fixing that is a future TODO.)
2017-01-17 13:23:12 +10:00
Jorge Gustavo Rocha
5c2fec325a SLD parsing: handling ogc:Literal within CssParameter 2017-01-17 01:39:01 +00:00
Denis Rouzaud
b119744773 replace cancelling, cancelled and cancellation by canceling, canceled and cancelation, respectively ()
* replace cancelling and cancelled by canceling and canceled, respectively

see https://github.com/qgis/qgis3_UIX_discussion/issues/19

* replace cancellation by cancelation
2017-01-16 22:27:14 +01:00
Denis Rouzaud
0a63d1f2c2 [spellcheck] properly look into various cases and add more fixes" 2017-01-16 16:39:20 +01:00
Juergen E. Fischer
f2e556a446 creatensis.pl: handle release names with blanks 2017-01-16 16:08:24 +01:00
Tudor Bărăscu
e7c9b74afa Show warning when adding more than 1 part to single geometry layers 2017-01-16 16:07:56 +01:00
Denis Rouzaud
50e5d97a17 [spellcheck] fix using whole dictionary 2017-01-16 15:12:48 +01:00
Tudor Bărăscu
783fae1bc9 fix setRelationId description 2017-01-16 13:22:43 +02:00
Alexandre Neto
14c4dea4db Replaces ProjectionEnable Icons and text
Replaces the OFT enable and Disable Icons to use the same CRS Icon as in options

Changes behavior on CRS TEXT showing when OTF is off, instead of when it's ON.
2017-01-16 11:16:12 +00:00